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

50226 строки
1.2 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.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon",
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon",
  358. "plant",
  359. "animal"
  360. ]
  361. },
  362. "mouse": {
  363. name: "Mouse",
  364. parents: [
  365. "rodent"
  366. ]
  367. },
  368. "rat": {
  369. name: "Rat",
  370. parents: [
  371. "mammal"
  372. ]
  373. },
  374. "hoshiko-beast": {
  375. name: "Hoshiko Beast",
  376. parents: ["animal"]
  377. },
  378. "snow-jugani": {
  379. name: "Snow Jugani",
  380. parents: ["cat"]
  381. },
  382. "patamon": {
  383. name: "Patamon",
  384. parents: ["digimon", "guinea-pig"]
  385. },
  386. "digimon": {
  387. name: "Digimon",
  388. },
  389. "jugani": {
  390. name: "Jugani",
  391. parents: ["cat"]
  392. },
  393. "luxray": {
  394. name: "Luxray",
  395. parents: ["pokemon", "lion"]
  396. },
  397. "mech": {
  398. name: "Mech",
  399. parents: ["machine"]
  400. },
  401. "zoid": {
  402. name: "Zoid",
  403. parents: ["mech"]
  404. },
  405. "monster": {
  406. name: "Monster",
  407. parents: ["animal"]
  408. },
  409. "foo-dog": {
  410. name: "Foo Dog",
  411. parents: ["mammal"]
  412. },
  413. "elephant": {
  414. name: "Elephant",
  415. parents: ["mammal"]
  416. },
  417. "eagle": {
  418. name: "Eagle",
  419. parents: ["avian"]
  420. },
  421. "cow": {
  422. name: "Cow",
  423. parents: ["mammal"]
  424. },
  425. "crocodile": {
  426. name: "Crocodile",
  427. parents: ["reptile"]
  428. },
  429. "borzoi": {
  430. name: "Borzoi",
  431. parents: ["dog"]
  432. },
  433. "snake": {
  434. name: "Snake",
  435. parents: ["reptile"]
  436. },
  437. "horned-bush-viper": {
  438. name: "Horned Bush Viper",
  439. parents: ["viper"]
  440. },
  441. "cobra": {
  442. name: "Cobra",
  443. parents: ["snake"]
  444. },
  445. "harpy-eagle": {
  446. name: "Harpy Eagle",
  447. parents: ["eagle"]
  448. },
  449. "raptor": {
  450. name: "Raptor",
  451. parents: ["dinosaur"]
  452. },
  453. "dinosaur": {
  454. name: "Dinosaur",
  455. parents: ["reptile"]
  456. },
  457. "veilhound": {
  458. name: "Veilhound",
  459. parents: ["hellhound"]
  460. },
  461. "hellhound": {
  462. name: "Hellhound",
  463. parents: ["canine", "demon"]
  464. },
  465. "insect": {
  466. name: "Insect",
  467. parents: ["animal"]
  468. },
  469. "beetle": {
  470. name: "Beetle",
  471. parents: ["insect"]
  472. },
  473. "moth": {
  474. name: "Moth",
  475. parents: ["insect"]
  476. },
  477. "eastern-dragon": {
  478. name: "Eastern Dragon",
  479. parents: ["dragon"]
  480. },
  481. "jaguar": {
  482. name: "Jaguar",
  483. parents: ["cat"]
  484. },
  485. "horse": {
  486. name: "Horse",
  487. parents: ["mammal"]
  488. },
  489. "sergal": {
  490. name: "Sergal",
  491. parents: ["mammal"]
  492. },
  493. "gryphon": {
  494. name: "Gryphon",
  495. parents: ["lion", "eagle"]
  496. },
  497. "robot": {
  498. name: "Robot",
  499. parents: ["machine"]
  500. },
  501. "medihound": {
  502. name: "Medihound",
  503. parents: ["robot", "dog"]
  504. },
  505. "sylveon": {
  506. name: "Sylveon",
  507. parents: ["pokemon"]
  508. },
  509. "catgirl": {
  510. name: "Catgirl",
  511. parents: ["mammal"]
  512. },
  513. "cowgirl": {
  514. name: "Cowgirl",
  515. parents: ["mammal"]
  516. },
  517. "pony": {
  518. name: "Pony",
  519. parents: ["horse"]
  520. },
  521. "rabbit": {
  522. name: "Rabbit",
  523. parents: ["leporidae"]
  524. },
  525. "fennec-fox": {
  526. name: "Fennec Fox",
  527. parents: ["fox"]
  528. },
  529. "azodian": {
  530. name: "Azodian",
  531. parents: ["mouse"]
  532. },
  533. "shiba-inu": {
  534. name: "Shiba Inu",
  535. parents: ["dog"]
  536. },
  537. "changeling": {
  538. name: "Changeling",
  539. parents: ["insect"]
  540. },
  541. "cheetah": {
  542. name: "Cheetah",
  543. parents: ["cat"]
  544. },
  545. "golden-jackal": {
  546. name: "Golden Jackal",
  547. parents: ["jackal"]
  548. },
  549. "manectric": {
  550. name: "Manectric",
  551. parents: ["pokemon", "wolf"]
  552. },
  553. "rat": {
  554. name: "Rat",
  555. parents: ["rodent"]
  556. },
  557. "rodent": {
  558. name: "Rodent",
  559. parents: ["mammal"]
  560. },
  561. "octocoon": {
  562. name: "Octocoon",
  563. parents: ["raccoon", "octopus"]
  564. },
  565. "octopus": {
  566. name: "Octopus",
  567. parents: ["fish"]
  568. },
  569. "werewolf": {
  570. name: "Werewolf",
  571. parents: ["wolf", "werebeast"]
  572. },
  573. "werebeast": {
  574. name: "Werebeast",
  575. parents: ["monster"]
  576. },
  577. "meerkat": {
  578. name: "Meerkat",
  579. parents: ["mammal"]
  580. },
  581. "human": {
  582. name: "Human",
  583. parents: ["mammal"]
  584. },
  585. "geth": {
  586. name: "Geth",
  587. parents: ["android"]
  588. },
  589. "husky": {
  590. name: "Husky",
  591. parents: ["dog"]
  592. },
  593. "long-eared-bat": {
  594. name: "Long Eared Bat",
  595. parents: ["bat"]
  596. },
  597. "lizard": {
  598. name: "Lizard",
  599. parents: ["reptile"]
  600. },
  601. "salamander": {
  602. name: "Salamander",
  603. parents: ["lizard"]
  604. },
  605. "chameleon": {
  606. name: "Chameleon",
  607. parents: ["lizard"]
  608. },
  609. "gecko": {
  610. name: "Gecko",
  611. parents: ["lizard"]
  612. },
  613. "kobold": {
  614. name: "Kobold",
  615. parents: ["reptile"]
  616. },
  617. "charizard": {
  618. name: "Charizard",
  619. parents: ["pokemon", "dragon"]
  620. },
  621. "lugia": {
  622. name: "Lugia",
  623. parents: ["pokemon", "avian"]
  624. },
  625. "cerberus": {
  626. name: "Cerberus",
  627. parents: ["dog"]
  628. },
  629. "tyrantrum": {
  630. name: "Tyrantrum",
  631. parents: ["pokemon"]
  632. },
  633. "lemur": {
  634. name: "Lemur",
  635. parents: ["mammal"]
  636. },
  637. "kelpie": {
  638. name: "Kelpie",
  639. parents: ["horse", "monster"]
  640. },
  641. "labrador": {
  642. name: "Labrador",
  643. parents: ["dog"]
  644. },
  645. "sylveon": {
  646. name: "Sylveon",
  647. parents: ["eeveelution"]
  648. },
  649. "eeveelution": {
  650. name: "Eeveelution",
  651. parents: ["pokemon", "cat"]
  652. },
  653. "polar-bear": {
  654. name: "Polar Bear",
  655. parents: ["bear"]
  656. },
  657. "bear": {
  658. name: "Bear",
  659. parents: ["mammal"]
  660. },
  661. "absol": {
  662. name: "Absol",
  663. parents: ["pokemon", "cat"]
  664. },
  665. "wolver": {
  666. name: "Wolver",
  667. parents: ["mammal"]
  668. },
  669. "rottweiler": {
  670. name: "Rottweiler",
  671. parents: ["dog"]
  672. },
  673. "zebra": {
  674. name: "Zebra",
  675. parents: ["horse"]
  676. },
  677. "yoshi": {
  678. name: "Yoshi",
  679. parents: ["lizard"]
  680. },
  681. "lynx": {
  682. name: "Lynx",
  683. parents: ["cat"]
  684. },
  685. "unknown": {
  686. name: "Unknown",
  687. parents: []
  688. },
  689. "thylacine": {
  690. name: "Thylacine",
  691. parents: ["mammal"]
  692. },
  693. "gabumon": {
  694. name: "Gabumon",
  695. parents: ["digimon"]
  696. },
  697. "border-collie": {
  698. name: "Border Collie",
  699. parents: ["dog"]
  700. },
  701. "imp": {
  702. name: "Imp",
  703. parents: ["demon"]
  704. },
  705. "kangaroo": {
  706. name: "Kangaroo",
  707. parents: ["marsupial"]
  708. },
  709. "renamon": {
  710. name: "Renamon",
  711. parents: ["digimon", "fox"]
  712. },
  713. "candy-orca-dragon": {
  714. name: "Candy Orca Dragon",
  715. parents: ["fish", "dragon", "candy"]
  716. },
  717. "sabertooth-tiger": {
  718. name: "Sabertooth Tiger",
  719. parents: ["cat"]
  720. },
  721. "espurr": {
  722. name: "Espurr",
  723. parents: ["pokemon", "cat"]
  724. },
  725. "otter": {
  726. name: "Otter",
  727. parents: ["mustelid"]
  728. },
  729. "elemental": {
  730. name: "Elemental",
  731. parents: ["mammal"]
  732. },
  733. "mew": {
  734. name: "Mew",
  735. parents: ["pokemon"]
  736. },
  737. "goodra": {
  738. name: "Goodra",
  739. parents: ["pokemon"]
  740. },
  741. "fairy": {
  742. name: "Fairy",
  743. parents: ["magical"]
  744. },
  745. "typhlosion": {
  746. name: "Typhlosion",
  747. parents: ["pokemon"]
  748. },
  749. "magical": {
  750. name: "Magical",
  751. parents: []
  752. },
  753. "xenomorph": {
  754. name: "Xenomorph",
  755. parents: ["monster", "alien"]
  756. },
  757. "charr": {
  758. name: "Charr",
  759. parents: ["cat"]
  760. },
  761. "siberian-husky": {
  762. name: "Siberian Husky",
  763. parents: ["husky"]
  764. },
  765. "alligator": {
  766. name: "Alligator",
  767. parents: ["reptile"]
  768. },
  769. "bernese-mountain-dog": {
  770. name: "Bernese Mountain Dog",
  771. parents: ["dog"]
  772. },
  773. "reshiram": {
  774. name: "Reshiram",
  775. parents: ["pokemon", "dragon"]
  776. },
  777. "grizzly-bear": {
  778. name: "Grizzly Bear",
  779. parents: ["bear"]
  780. },
  781. "water-monitor": {
  782. name: "Water Monitor",
  783. parents: ["lizard"]
  784. },
  785. "banchofossa": {
  786. name: "Banchofossa",
  787. parents: ["mammal"]
  788. },
  789. "kirin": {
  790. name: "Kirin",
  791. parents: ["monster"]
  792. },
  793. "quilava": {
  794. name: "Quilava",
  795. parents: ["pokemon"]
  796. },
  797. "seviper": {
  798. name: "Seviper",
  799. parents: ["pokemon", "viper"]
  800. },
  801. "flying-fox": {
  802. name: "Flying Fox",
  803. parents: ["bat"]
  804. },
  805. "keynain": {
  806. name: "Keynain",
  807. parents: ["avian"]
  808. },
  809. "lucario": {
  810. name: "Lucario",
  811. parents: ["pokemon", "jackal"]
  812. },
  813. "siamese-cat": {
  814. name: "Siamese Cat",
  815. parents: ["cat"]
  816. },
  817. "spider": {
  818. name: "Spider",
  819. parents: ["insect"]
  820. },
  821. "samurott": {
  822. name: "Samurott",
  823. parents: ["pokemon", "otter"]
  824. },
  825. "megalodon": {
  826. name: "Megalodon",
  827. parents: ["shark"]
  828. },
  829. "unicorn": {
  830. name: "Unicorn",
  831. parents: ["horse"]
  832. },
  833. "greninja": {
  834. name: "Greninja",
  835. parents: ["pokemon", "frog"]
  836. },
  837. "water-dragon": {
  838. name: "Water Dragon",
  839. parents: ["dragon"]
  840. },
  841. "cross-fox": {
  842. name: "Cross Fox",
  843. parents: ["fox"]
  844. },
  845. "synth": {
  846. name: "Synth",
  847. parents: ["machine"]
  848. },
  849. "construct": {
  850. name: "Construct",
  851. parents: []
  852. },
  853. "mexican-wolf": {
  854. name: "Mexican Wolf",
  855. parents: ["wolf"]
  856. },
  857. "leopard": {
  858. name: "Leopard",
  859. parents: ["cat"]
  860. },
  861. "pig": {
  862. name: "Pig",
  863. parents: ["mammal"]
  864. },
  865. "ampharos": {
  866. name: "Ampharos",
  867. parents: ["pokemon", "sheep"]
  868. },
  869. "orca": {
  870. name: "Orca",
  871. parents: ["fish"]
  872. },
  873. "lycanroc": {
  874. name: "Lycanroc",
  875. parents: ["pokemon", "wolf"]
  876. },
  877. "surkanu": {
  878. name: "Surkanu",
  879. parents: ["monster"]
  880. },
  881. "seal": {
  882. name: "Seal",
  883. parents: ["mammal"]
  884. },
  885. "keldeo": {
  886. name: "Keldeo",
  887. parents: ["pokemon"]
  888. },
  889. "great-dane": {
  890. name: "Great Dane",
  891. parents: ["dog"]
  892. },
  893. "black-backed-jackal": {
  894. name: "Black Backed Jackal",
  895. parents: ["jackal"]
  896. },
  897. "sheep": {
  898. name: "Sheep",
  899. parents: ["mammal"]
  900. },
  901. "leopard-seal": {
  902. name: "Leopard Seal",
  903. parents: ["seal"]
  904. },
  905. "zoroark": {
  906. name: "Zoroark",
  907. parents: ["pokemon", "fox"]
  908. },
  909. "maned-wolf": {
  910. name: "Maned Wolf",
  911. parents: ["canine"]
  912. },
  913. "dracha": {
  914. name: "Dracha",
  915. parents: ["dragon"]
  916. },
  917. "wolxi": {
  918. name: "Wolxi",
  919. parents: ["mammal", "alien"]
  920. },
  921. "dratini": {
  922. name: "Dratini",
  923. parents: ["pokemon", "dragon"]
  924. },
  925. "skaven": {
  926. name: "Skaven",
  927. parents: ["rat"]
  928. },
  929. "mongoose": {
  930. name: "Mongoose",
  931. parents: ["mammal"]
  932. },
  933. "lopunny": {
  934. name: "Lopunny",
  935. parents: ["pokemon", "rabbit"]
  936. },
  937. "feraligatr": {
  938. name: "Feraligatr",
  939. parents: ["pokemon", "alligator"]
  940. },
  941. "houndoom": {
  942. name: "Houndoom",
  943. parents: ["pokemon", "dog"]
  944. },
  945. "protogen": {
  946. name: "Protogen",
  947. parents: ["machine"]
  948. },
  949. "saint-bernard": {
  950. name: "Saint Bernard",
  951. parents: ["dog"]
  952. },
  953. "crow": {
  954. name: "Crow",
  955. parents: ["corvid"]
  956. },
  957. "delphox": {
  958. name: "Delphox",
  959. parents: ["pokemon", "fox"]
  960. },
  961. "moose": {
  962. name: "Moose",
  963. parents: ["mammal"]
  964. },
  965. "joraxian": {
  966. name: "Joraxian",
  967. parents: ["monster", "canine", "demon"]
  968. },
  969. "nimbat": {
  970. name: "Nimbat",
  971. parents: ["mammal"]
  972. },
  973. "aardwolf": {
  974. name: "Aardwolf",
  975. parents: ["canine"]
  976. },
  977. "fluudrani": {
  978. name: "Fluudrani",
  979. parents: ["animal"]
  980. },
  981. "arcanine": {
  982. name: "Arcanine",
  983. parents: ["pokemon", "dog"]
  984. },
  985. "inteleon": {
  986. name: "Inteleon",
  987. parents: ["pokemon", "fish"]
  988. },
  989. "ninetales": {
  990. name: "Ninetales",
  991. parents: ["pokemon", "kitsune"]
  992. },
  993. "tigrex": {
  994. name: "Tigrex",
  995. parents: ["tiger"]
  996. },
  997. "zorua": {
  998. name: "Zorua",
  999. parents: ["pokemon", "fox"]
  1000. },
  1001. "vulpix": {
  1002. name: "Vulpix",
  1003. parents: ["pokemon", "fox"]
  1004. },
  1005. "barghest": {
  1006. name: "Barghest",
  1007. parents: ["monster"]
  1008. },
  1009. "gray-wolf": {
  1010. name: "Gray Wolf",
  1011. parents: ["wolf"]
  1012. },
  1013. "ruppells-fox": {
  1014. name: "Rüppell's Fox",
  1015. parents: ["fox"]
  1016. },
  1017. "bull-terrier": {
  1018. name: "Bull Terrier",
  1019. parents: ["dog"]
  1020. },
  1021. "european-honey-buzzard": {
  1022. name: "European Honey Buzzard",
  1023. parents: ["avian"]
  1024. },
  1025. "t-rex": {
  1026. name: "Tyrannosaurus Rex",
  1027. parents: ["dinosaur"]
  1028. },
  1029. "mactarian": {
  1030. name: "Mactarian",
  1031. parents: ["shark", "monster"]
  1032. },
  1033. "mewtwo-y": {
  1034. name: "Mewtwo Y",
  1035. parents: ["mewtwo"]
  1036. },
  1037. "mewtwo": {
  1038. name: "Mewtwo",
  1039. parents: ["pokemon"]
  1040. },
  1041. "eevee": {
  1042. name: "Eevee",
  1043. parents: ["eeveelution"]
  1044. },
  1045. "mienshao": {
  1046. name: "Mienshao",
  1047. parents: ["pokemon"]
  1048. },
  1049. "sugar-glider": {
  1050. name: "Sugar Glider",
  1051. parents: ["opossum"]
  1052. },
  1053. "spectral-bat": {
  1054. name: "Spectral Bat",
  1055. parents: ["bat"]
  1056. },
  1057. "scolipede": {
  1058. name: "Scolipede",
  1059. parents: ["pokemon", "insect"]
  1060. },
  1061. "jackalope": {
  1062. name: "Jackalope",
  1063. parents: ["rabbit", "antelope"]
  1064. },
  1065. "caracal": {
  1066. name: "Caracal",
  1067. parents: ["cat"]
  1068. },
  1069. "stoat": {
  1070. name: "Stoat",
  1071. parents: ["mammal"]
  1072. },
  1073. "african-golden-cat": {
  1074. name: "African Golden Cat",
  1075. parents: ["cat"]
  1076. },
  1077. "gigantosaurus": {
  1078. name: "Gigantosaurus",
  1079. parents: ["dinosaur"]
  1080. },
  1081. "zorgoia": {
  1082. name: "Zorgoia",
  1083. parents: ["mammal"]
  1084. },
  1085. "monitor-lizard": {
  1086. name: "Monitor Lizard",
  1087. parents: ["lizard"]
  1088. },
  1089. "ziralkia": {
  1090. name: "Ziralkia",
  1091. parents: ["mammal"]
  1092. },
  1093. "kiiasi": {
  1094. name: "Kiiasi",
  1095. parents: ["animal"]
  1096. },
  1097. "synx": {
  1098. name: "Synx",
  1099. parents: ["monster"]
  1100. },
  1101. "panther": {
  1102. name: "Panther",
  1103. parents: ["cat"]
  1104. },
  1105. "azumarill": {
  1106. name: "Azumarill",
  1107. parents: ["pokemon"]
  1108. },
  1109. "river-snaptail": {
  1110. name: "River Snaptail",
  1111. parents: ["otter", "crocodile"]
  1112. },
  1113. "great-blue-heron": {
  1114. name: "Great Blue Heron",
  1115. parents: ["avian"]
  1116. },
  1117. "smeargle": {
  1118. name: "Smeargle",
  1119. parents: ["pokemon"]
  1120. },
  1121. "vendeilen": {
  1122. name: "Vendeilen",
  1123. parents: ["monster"]
  1124. },
  1125. "ventura": {
  1126. name: "Ventura",
  1127. parents: ["canine"]
  1128. },
  1129. "clouded-leopard": {
  1130. name: "Clouded Leopard",
  1131. parents: ["leopard"]
  1132. },
  1133. "argonian": {
  1134. name: "Argonian",
  1135. parents: ["lizard"]
  1136. },
  1137. "salazzle": {
  1138. name: "Salazzle",
  1139. parents: ["pokemon", "lizard"]
  1140. },
  1141. "je-stoff-drachen": {
  1142. name: "Je-Stoff Drachen",
  1143. parents: ["dragon"]
  1144. },
  1145. "finnish-spitz-dog": {
  1146. name: "Finnish Spitz Dog",
  1147. parents: ["dog"]
  1148. },
  1149. "gray-fox": {
  1150. name: "Gray Fox",
  1151. parents: ["fox"]
  1152. },
  1153. "opossum": {
  1154. name: "Opossum",
  1155. parents: ["mammal"]
  1156. },
  1157. "antelope": {
  1158. name: "Antelope",
  1159. parents: ["mammal"]
  1160. },
  1161. "weavile": {
  1162. name: "Weavile",
  1163. parents: ["pokemon"]
  1164. },
  1165. "pikachu": {
  1166. name: "Pikachu",
  1167. parents: ["pokemon", "mouse"]
  1168. },
  1169. "grovyle": {
  1170. name: "Grovyle",
  1171. parents: ["pokemon", "plant"]
  1172. },
  1173. "sthara": {
  1174. name: "Sthara",
  1175. parents: ["snow-leopard", "reptile"]
  1176. },
  1177. "star-warrior": {
  1178. name: "Star Warrior",
  1179. parents: ["magical"]
  1180. },
  1181. "dragonoid": {
  1182. name: "Dragonoid",
  1183. parents: ["dragon"]
  1184. },
  1185. "suicune": {
  1186. name: "Suicune",
  1187. parents: ["pokemon"]
  1188. },
  1189. "vole": {
  1190. name: "Vole",
  1191. parents: ["mammal"]
  1192. },
  1193. "blaziken": {
  1194. name: "Blaziken",
  1195. parents: ["pokemon", "avian"]
  1196. },
  1197. "buizel": {
  1198. name: "Buizel",
  1199. parents: ["pokemon", "fish"]
  1200. },
  1201. "floatzel": {
  1202. name: "Floatzel",
  1203. parents: ["pokemon", "fish"]
  1204. },
  1205. "umok": {
  1206. name: "Umok",
  1207. parents: ["avian"]
  1208. },
  1209. "sea-monster": {
  1210. name: "Sea Monster",
  1211. parents: ["monster", "fish"]
  1212. },
  1213. "egyptian-vulture": {
  1214. name: "Egyptian Vulture",
  1215. parents: ["avian"]
  1216. },
  1217. "doberman": {
  1218. name: "Doberman",
  1219. parents: ["dog"]
  1220. },
  1221. "zangoose": {
  1222. name: "Zangoose",
  1223. parents: ["pokemon", "mongoose"]
  1224. },
  1225. "mongoose": {
  1226. name: "Mongoose",
  1227. parents: ["mammal"]
  1228. },
  1229. "wickerbeast": {
  1230. name: "Wickerbeast",
  1231. parents: ["monster"]
  1232. },
  1233. "zenari": {
  1234. name: "Zenari",
  1235. parents: ["lizard"]
  1236. },
  1237. "plant": {
  1238. name: "Plant",
  1239. parents: []
  1240. },
  1241. "raskatox": {
  1242. name: "Raskatox",
  1243. parents: ["raccoon", "skunk", "cat", "fox"]
  1244. },
  1245. "mikromare": {
  1246. name: "mikromare",
  1247. parents: ["alien"]
  1248. },
  1249. "alien": {
  1250. name: "Alien",
  1251. parents: ["animal"]
  1252. },
  1253. "deity": {
  1254. name: "Deity",
  1255. parents: []
  1256. },
  1257. "skarlan": {
  1258. name: "Skarlan",
  1259. parents: ["slug", "dragon"]
  1260. },
  1261. "slug": {
  1262. name: "Slug",
  1263. parents: ["mollusk"]
  1264. },
  1265. "mollusk": {
  1266. name: "Mollusk",
  1267. parents: ["animal"]
  1268. },
  1269. "chimera": {
  1270. name: "Chimera",
  1271. parents: ["monster"]
  1272. },
  1273. "gestalt": {
  1274. name: "Gestalt",
  1275. parents: ["construct"]
  1276. },
  1277. "mimic": {
  1278. name: "Mimic",
  1279. parents: ["monster"]
  1280. },
  1281. "calico-rat": {
  1282. name: "Calico Rat",
  1283. parents: ["rat"]
  1284. },
  1285. "panda": {
  1286. name: "Panda",
  1287. parents: ["mammal"]
  1288. },
  1289. "oni": {
  1290. name: "Oni",
  1291. parents: ["monster"]
  1292. },
  1293. "pegasus": {
  1294. name: "Pegasus",
  1295. parents: ["horse"]
  1296. },
  1297. "vulpera": {
  1298. name: "Vulpera",
  1299. parents: ["fennec-fox"]
  1300. },
  1301. "ceratosaurus": {
  1302. name: "Ceratosaurus",
  1303. parents: ["dinosaur"]
  1304. },
  1305. "nykur": {
  1306. name: "Nykur",
  1307. parents: ["horse", "monster"]
  1308. },
  1309. "giraffe": {
  1310. name: "Giraffe",
  1311. parents: ["mammal"]
  1312. },
  1313. "tauren": {
  1314. name: "Tauren",
  1315. parents: ["cow"]
  1316. },
  1317. "draconi": {
  1318. name: "Draconi",
  1319. parents: ["alien", "cat", "cyborg"]
  1320. },
  1321. "dire-wolf": {
  1322. name: "Dire Wolf",
  1323. parents: ["wolf"]
  1324. },
  1325. "ferromorph": {
  1326. name: "Ferromorph",
  1327. parents: ["construct"]
  1328. },
  1329. "meowth": {
  1330. name: "Meowth",
  1331. parents: ["cat", "pokemon"]
  1332. },
  1333. "pavodragon": {
  1334. name: "Pavodragon",
  1335. parents: ["dragon"]
  1336. },
  1337. "aaltranae": {
  1338. name: "Aaltranae",
  1339. parents: ["dragon"]
  1340. },
  1341. "cyborg": {
  1342. name: "Cyborg",
  1343. parents: ["machine"]
  1344. },
  1345. "draptor": {
  1346. name: "Draptor",
  1347. parents: ["dragon"]
  1348. },
  1349. "candy": {
  1350. name: "Candy",
  1351. parents: []
  1352. },
  1353. "drenath": {
  1354. name: "Drenath",
  1355. parents: ["dragon", "snake", "rabbit"]
  1356. },
  1357. "coyju": {
  1358. name: "Coyju",
  1359. parents: ["coyote", "kaiju"]
  1360. },
  1361. "kaiju": {
  1362. name: "Kaiju",
  1363. parents: ["monster"]
  1364. },
  1365. "nickit": {
  1366. name: "Nickit",
  1367. parents: ["pokemon", "cat"]
  1368. },
  1369. "lopunny": {
  1370. name: "Lopunny",
  1371. parents: ["pokemon", "rabbit"]
  1372. },
  1373. "korean-jindo-dog": {
  1374. name: "Korean Jindo Dog",
  1375. parents: ["dog"]
  1376. },
  1377. "naga": {
  1378. name: "Naga",
  1379. parents: ["snake", "monster"]
  1380. },
  1381. "undead": {
  1382. name: "Undead",
  1383. parents: ["monster"]
  1384. },
  1385. "whale": {
  1386. name: "Whale",
  1387. parents: ["fish"]
  1388. },
  1389. "gelato-bee": {
  1390. name: "Gelato Bee",
  1391. parents: ["bee"]
  1392. },
  1393. "bee": {
  1394. name: "Bee",
  1395. parents: ["insect"]
  1396. },
  1397. "gardevoir": {
  1398. name: "Gardevoir",
  1399. parents: ["pokemon"]
  1400. },
  1401. "ant": {
  1402. name: "Ant",
  1403. parents: ["insect"]
  1404. },
  1405. "frog": {
  1406. name: "Frog",
  1407. parents: ["amphibian"]
  1408. },
  1409. "amphibian": {
  1410. name: "Amphibian",
  1411. parents: ["animal"]
  1412. },
  1413. "pangolin": {
  1414. name: "Pangolin",
  1415. parents: ["mammal"]
  1416. },
  1417. "uragi'viidorn": {
  1418. name: "Uragi'viidorn",
  1419. parents: ["avian", "bear"]
  1420. },
  1421. "gryphdelphais": {
  1422. name: "Gryphdelphais",
  1423. parents: ["dolphin", "gryphon"]
  1424. },
  1425. "plush": {
  1426. name: "Plush",
  1427. parents: ["construct"]
  1428. },
  1429. "draiger": {
  1430. name: "Draiger",
  1431. parents: ["dragon","tiger"]
  1432. },
  1433. "foxsky": {
  1434. name: "Foxsky",
  1435. parents: ["fox", "husky"]
  1436. },
  1437. "umbreon": {
  1438. name: "Umbreon",
  1439. parents: ["eeveelution"]
  1440. },
  1441. "slime-dragon": {
  1442. name: "Slime Dragon",
  1443. parents: ["dragon", "goo"]
  1444. },
  1445. "enderman": {
  1446. name: "Enderman",
  1447. parents: ["monster"]
  1448. },
  1449. "gremlin": {
  1450. name: "Gremlin",
  1451. parents: ["monster"]
  1452. },
  1453. "dragonsune": {
  1454. name: "Dragonsune",
  1455. parents: ["dragon", "kitsune"]
  1456. },
  1457. "ghost": {
  1458. name: "Ghost",
  1459. parents: ["supernatural"]
  1460. },
  1461. "false-vampire-bat": {
  1462. name: "False Vampire Bat",
  1463. parents: ["bat"]
  1464. },
  1465. "succubus": {
  1466. name: "Succubus",
  1467. parents: ["demon"]
  1468. },
  1469. "mia": {
  1470. name: "Mia",
  1471. parents: ["canine"]
  1472. },
  1473. "rainbow": {
  1474. name: "Rainbow",
  1475. parents: ["monster"]
  1476. },
  1477. "solgaleo": {
  1478. name: "Solgaleo",
  1479. parents: ["pokemon"]
  1480. },
  1481. "lucent-nargacuga": {
  1482. name: "Lucent Nargacuga",
  1483. parents: ["monster-hunter"]
  1484. },
  1485. "monster-hunter": {
  1486. name: "Monster Hunter",
  1487. parents: ["monster"]
  1488. },
  1489. "leviathan": {
  1490. "name": "Leviathan",
  1491. "url": "sea-monster"
  1492. },
  1493. "bull": {
  1494. name: "Bull",
  1495. parents: ["mammal"]
  1496. },
  1497. "tanuki": {
  1498. name: "Tanuki",
  1499. parents: ["monster"]
  1500. },
  1501. "chakat": {
  1502. name: "Chakat",
  1503. parents: ["cat"]
  1504. },
  1505. "hydra": {
  1506. name: "Hydra",
  1507. parents: ["monster"]
  1508. },
  1509. "zigzagoon": {
  1510. name: "Zigzagoon",
  1511. parents: ["raccoon", "pokemon"]
  1512. },
  1513. "vulture": {
  1514. name: "Vulture",
  1515. parents: ["avian"]
  1516. },
  1517. "eastern-dragon": {
  1518. name: "Eastern Dragon",
  1519. parents: ["dragon"]
  1520. },
  1521. "gryffon": {
  1522. name: "Gryffon",
  1523. parents: ["phoenix", "red-panda"]
  1524. },
  1525. "amtsvane": {
  1526. name: "Amtsvane",
  1527. parents: ["reptile"]
  1528. },
  1529. "kigavi": {
  1530. name: "Kigavi",
  1531. parents: ["avian"]
  1532. },
  1533. "turian": {
  1534. name: "Turian",
  1535. parents: ["avian"]
  1536. },
  1537. "zeraora": {
  1538. name: "Zeraora",
  1539. parents: ["pokemon", "cat"]
  1540. },
  1541. "sandshrew": {
  1542. name: "Sandshrew",
  1543. parents: ["pokemon", "pangolin"]
  1544. },
  1545. "valais-blacknose-sheep": {
  1546. name: "Valais Blacknose Sheep",
  1547. parents: ["sheep"]
  1548. },
  1549. "novaleit": {
  1550. name: "Novaleit",
  1551. parents: ["mammal"]
  1552. },
  1553. "dunnoh": {
  1554. name: "Dunnoh",
  1555. parents: ["mammal"]
  1556. },
  1557. "lunaral-dragon": {
  1558. name: "Lunaral Dragon",
  1559. parents: ["dragon"]
  1560. },
  1561. "arctic-wolf": {
  1562. name: "Arctic Wolf",
  1563. parents: ["wolf"]
  1564. },
  1565. "donkey": {
  1566. name: "Donkey",
  1567. parents: ["horse"]
  1568. },
  1569. "chinchilla": {
  1570. name: "Chinchilla",
  1571. parents: ["rodent"]
  1572. },
  1573. "felkin": {
  1574. name: "Felkin",
  1575. parents: ["dragon"]
  1576. },
  1577. "tykeriel": {
  1578. name: "Tykeriel",
  1579. parents: ["avian"]
  1580. },
  1581. "folf": {
  1582. name: "Folf",
  1583. parents: ["fox", "wolf"]
  1584. },
  1585. "pooltoy": {
  1586. name: "Pooltoy",
  1587. parents: ["construct"]
  1588. },
  1589. "demi": {
  1590. name: "Demi",
  1591. parents: ["human"]
  1592. },
  1593. "stegosaurus": {
  1594. name: "Stegosaurus",
  1595. parents: ["dinosaur"]
  1596. },
  1597. "computer-virus": {
  1598. name: "Computer Virus",
  1599. parents: ["program"]
  1600. },
  1601. "program": {
  1602. name: "Program",
  1603. parents: ["construct"]
  1604. },
  1605. "space-springhare": {
  1606. name: "Space Springhare",
  1607. parents: ["hare"]
  1608. },
  1609. "river-drake": {
  1610. name: "River Drake",
  1611. parents: ["dragon"]
  1612. },
  1613. "djinn": {
  1614. "name": "Djinn",
  1615. "url": "supernatural"
  1616. },
  1617. "supernatural": {
  1618. name: "Supernatural",
  1619. parents: ["monster"]
  1620. },
  1621. "grasshopper-mouse": {
  1622. name: "Grasshopper Mouse",
  1623. parents: ["mouse"]
  1624. },
  1625. "somali-cat": {
  1626. name: "Somali Cat",
  1627. parents: ["cat"]
  1628. },
  1629. "minccino": {
  1630. name: "Minccino",
  1631. parents: ["pokemon", "chinchilla"]
  1632. },
  1633. "pine-marten": {
  1634. name: "Pine Marten",
  1635. parents: ["marten"]
  1636. },
  1637. "marten": {
  1638. name: "Marten",
  1639. parents: ["mustelid"]
  1640. },
  1641. "mustelid": {
  1642. name: "Mustelid",
  1643. parents: ["mammal"]
  1644. },
  1645. "caribou": {
  1646. name: "Caribou",
  1647. parents: ["deer"]
  1648. },
  1649. "gnoll": {
  1650. name: "Gnoll",
  1651. parents: ["hyena", "monster"]
  1652. },
  1653. "peacekeeper": {
  1654. name: "Peacekeeper",
  1655. parents: ["human"]
  1656. },
  1657. "river-otter": {
  1658. name: "River Otter",
  1659. parents: ["otter"]
  1660. },
  1661. "dhole": {
  1662. name: "Dhole",
  1663. parents: ["canine"]
  1664. },
  1665. "springbok": {
  1666. name: "Springbok",
  1667. parents: ["antelope"]
  1668. },
  1669. "marsupial": {
  1670. name: "Marsupial",
  1671. parents: ["mammal"]
  1672. },
  1673. "townsend-big-eared-bat": {
  1674. name: "Townsend Big-eared Bat",
  1675. parents: ["bat"]
  1676. },
  1677. "squirrel": {
  1678. name: "Squirrel",
  1679. parents: ["rodent"]
  1680. },
  1681. "magpie": {
  1682. name: "Magpie",
  1683. parents: ["corvid"]
  1684. },
  1685. "civet": {
  1686. name: "Civet",
  1687. parents: ["feliform"]
  1688. },
  1689. "feliform": {
  1690. name: "Feliform",
  1691. parents: ["mammal"]
  1692. },
  1693. "tiefling": {
  1694. name: "Tiefling",
  1695. parents: ["devil"]
  1696. },
  1697. "devil": {
  1698. name: "Devil",
  1699. parents: ["supernatural"]
  1700. },
  1701. "sika-deer": {
  1702. name: "Sika Deer",
  1703. parents: ["deer"]
  1704. },
  1705. "vaporeon": {
  1706. name: "Vaporeon",
  1707. parents: ["eeveelution"]
  1708. },
  1709. "leafeon": {
  1710. name: "Leafeon",
  1711. parents: ["eeveelution"]
  1712. },
  1713. "jolteon": {
  1714. name: "Jolteon",
  1715. parents: ["eeveelution"]
  1716. },
  1717. "spireborn": {
  1718. name: "Spireborn",
  1719. parents: ["zorgoia"]
  1720. },
  1721. "vampire": {
  1722. name: "Vampire",
  1723. parents: ["monster"]
  1724. },
  1725. "extraplanar": {
  1726. name: "Extraplanar",
  1727. parents: []
  1728. },
  1729. "goo": {
  1730. name: "Goo",
  1731. parents: []
  1732. },
  1733. "skink": {
  1734. name: "Skink",
  1735. parents: ["lizard"]
  1736. },
  1737. "bat-eared-fox": {
  1738. name: "Bat-eared Fox",
  1739. parents: ["fox"]
  1740. },
  1741. "belted-kingfisher": {
  1742. name: "Belted Kingfisher",
  1743. parents: ["avian"]
  1744. },
  1745. "omnifalcon": {
  1746. name: "Omnifalcon",
  1747. parents: ["gryphon", "falcon", "harpy-eagle"]
  1748. },
  1749. "falcon": {
  1750. name: "Falcon",
  1751. parents: ["avian"]
  1752. },
  1753. "avali": {
  1754. name: "Avali",
  1755. parents: ["avian", "alien"]
  1756. },
  1757. "arctic-fox": {
  1758. name: "Arctic Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "snow-tiger": {
  1762. name: "Snow Tiger",
  1763. parents: ["tiger"]
  1764. },
  1765. "marble-fox": {
  1766. name: "Marble Fox",
  1767. parents: ["fox"]
  1768. },
  1769. "king-wickerbeast": {
  1770. name: "King Wickerbeast",
  1771. parents: ["wickerbeast"]
  1772. },
  1773. "wickerbeast": {
  1774. name: "Wickerbeast",
  1775. parents: ["mammal"]
  1776. },
  1777. "european-polecat": {
  1778. name: "European Polecat",
  1779. parents: ["mustelid"]
  1780. },
  1781. "teshari": {
  1782. name: "Teshari",
  1783. parents: ["avian", "raptor"]
  1784. },
  1785. "alicorn": {
  1786. name: "Alicorn",
  1787. parents: ["horse"]
  1788. },
  1789. "atlas-moth": {
  1790. name: "Atlas Moth",
  1791. parents: ["moth"]
  1792. },
  1793. "owlbear": {
  1794. name: "Owlbear",
  1795. parents: ["owl", "bear", "monster"]
  1796. },
  1797. "owl": {
  1798. name: "Owl",
  1799. parents: ["avian"]
  1800. },
  1801. "silvertongue": {
  1802. name: "Silvertongue",
  1803. parents: ["reptile"]
  1804. },
  1805. "ahuizotl": {
  1806. name: "Ahuizotl",
  1807. parents: ["monster"]
  1808. },
  1809. "ender-dragon": {
  1810. name: "Ender Dragon",
  1811. parents: ["dragon"]
  1812. },
  1813. "bruhathkayosaurus": {
  1814. name: "Bruhathkayosaurus",
  1815. parents: ["sauropod"]
  1816. },
  1817. "sauropod": {
  1818. name: "Sauropod",
  1819. parents: ["dinosaur"]
  1820. },
  1821. "black-sable-antelope": {
  1822. name: "Black Sable Antelope",
  1823. parents: ["antelope"]
  1824. },
  1825. "slime": {
  1826. name: "Slime",
  1827. parents: ["goo"]
  1828. },
  1829. "utahraptor": {
  1830. name: "Utahraptor",
  1831. parents: ["raptor"]
  1832. },
  1833. "indian-giant-squirrel": {
  1834. name: "Indian Giant Squirrel",
  1835. parents: ["squirrel"]
  1836. },
  1837. "golden-retriever": {
  1838. name: "Golden Retriever",
  1839. parents: ["dog"]
  1840. },
  1841. "triceratops": {
  1842. name: "Triceratops",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "drake": {
  1846. name: "Drake",
  1847. parents: ["dragon"]
  1848. },
  1849. "okapi": {
  1850. name: "Okapi",
  1851. parents: ["giraffe"]
  1852. },
  1853. "arctic-hare": {
  1854. name: "Arctic Hare",
  1855. parents: ["hare"]
  1856. },
  1857. "hare": {
  1858. name: "Hare",
  1859. parents: ["leporidae"]
  1860. },
  1861. "leporidae": {
  1862. name: "Leporidae",
  1863. parents: ["mammal"]
  1864. },
  1865. "leopard-gecko": {
  1866. name: "Leopard Gecko",
  1867. parents: ["gecko"]
  1868. },
  1869. "dreamspawn": {
  1870. name: "Dreamspawn",
  1871. parents: ["illusion"]
  1872. },
  1873. "illusion": {
  1874. name: "Illusion",
  1875. parents: []
  1876. },
  1877. "purrloin": {
  1878. name: "Purrloin",
  1879. parents: ["cat", "pokemon"]
  1880. },
  1881. "noivern": {
  1882. name: "Noivern",
  1883. parents: ["bat", "dragon", "pokemon"]
  1884. },
  1885. "hedgehog": {
  1886. name: "Hedgehog",
  1887. parents: ["mammal"]
  1888. },
  1889. "liger": {
  1890. name: "Liger",
  1891. parents: ["lion", "tiger", "hybrid"]
  1892. },
  1893. "hybrid": {
  1894. name: "Hybrid",
  1895. parents: []
  1896. },
  1897. "drider": {
  1898. name: "Drider",
  1899. parents: ["spider"]
  1900. },
  1901. "sabresune": {
  1902. name: "Sabresune",
  1903. parents: ["kitsune", "sabertooth-tiger"]
  1904. },
  1905. "ditto": {
  1906. name: "Ditto",
  1907. parents: ["pokemon", "goo"]
  1908. },
  1909. "amogus": {
  1910. name: "Amogus",
  1911. parents: ["deity"]
  1912. },
  1913. "ferret": {
  1914. name: "Ferret",
  1915. parents: ["mustelid"]
  1916. },
  1917. "guinea-pig": {
  1918. name: "Guinea Pig",
  1919. parents: ["rodent"]
  1920. },
  1921. "viper": {
  1922. name: "Viper",
  1923. parents: ["snake"]
  1924. },
  1925. }
  1926. //species
  1927. function getSpeciesInfo(speciesList) {
  1928. let result = new Set();
  1929. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1930. result.add(entry)
  1931. });
  1932. return Array.from(result);
  1933. };
  1934. function getSpeciesInfoHelper(species) {
  1935. if (!speciesData[species]) {
  1936. console.warn(species + " doesn't exist");
  1937. return [];
  1938. }
  1939. if (speciesData[species].parents) {
  1940. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1941. } else {
  1942. return [species];
  1943. }
  1944. }
  1945. characterMakers.push(() => makeCharacter(
  1946. {
  1947. name: "Fen",
  1948. species: ["crux"],
  1949. description: {
  1950. title: "Bio",
  1951. text: "Very furry. Sheds on everything."
  1952. },
  1953. tags: [
  1954. "anthro",
  1955. "goo"
  1956. ]
  1957. },
  1958. {
  1959. front: {
  1960. height: math.unit(12, "feet"),
  1961. weight: math.unit(2400, "lb"),
  1962. name: "Front",
  1963. image: {
  1964. source: "./media/characters/fen/front.svg",
  1965. extra: 1804/1562,
  1966. bottom: 205/2009
  1967. }
  1968. },
  1969. diving: {
  1970. height: math.unit(4.9, "meters"),
  1971. weight: math.unit(2400, "lb"),
  1972. name: "Diving",
  1973. image: {
  1974. source: "./media/characters/fen/diving.svg"
  1975. }
  1976. },
  1977. goo: {
  1978. height: math.unit(12, "feet"),
  1979. weight: math.unit(3600, "lb"),
  1980. volume: math.unit(1000, "liters"),
  1981. capacity: math.unit(6, "people"),
  1982. name: "Goo",
  1983. image: {
  1984. source: "./media/characters/fen/goo.svg",
  1985. extra: 1307/1071,
  1986. bottom: 134/1441
  1987. }
  1988. },
  1989. maw: {
  1990. height: math.unit(5.03, "feet"),
  1991. name: "Maw",
  1992. image: {
  1993. source: "./media/characters/fen/maw.svg"
  1994. }
  1995. },
  1996. gooCeiling: {
  1997. height: math.unit(6.6, "feet"),
  1998. weight: math.unit(3000, "lb"),
  1999. volume: math.unit(1000, "liters"),
  2000. capacity: math.unit(6, "people"),
  2001. name: "Goo (Ceiling)",
  2002. image: {
  2003. source: "./media/characters/fen/goo-ceiling.svg"
  2004. }
  2005. },
  2006. back: {
  2007. height: math.unit(12, "feet"),
  2008. weight: math.unit(2400, "lb"),
  2009. name: "Back",
  2010. image: {
  2011. source: "./media/characters/fen/back.svg",
  2012. },
  2013. info: {
  2014. description: {
  2015. mode: "append",
  2016. text: "\n\nHe is not currently looking at you."
  2017. }
  2018. }
  2019. },
  2020. full: {
  2021. height: math.unit(1.6, "meter"),
  2022. weight: math.unit(3200, "lb"),
  2023. name: "Full",
  2024. image: {
  2025. source: "./media/characters/fen/full.svg",
  2026. extra: 1133/859,
  2027. bottom: 145/1278
  2028. },
  2029. info: {
  2030. description: {
  2031. mode: "append",
  2032. text: "\n\nMunch."
  2033. }
  2034. }
  2035. },
  2036. gooLounging: {
  2037. height: math.unit(4.53, "feet"),
  2038. weight: math.unit(3000, "lb"),
  2039. capacity: math.unit(6, "people"),
  2040. name: "Goo (Lounging)",
  2041. image: {
  2042. source: "./media/characters/fen/goo-lounging.svg",
  2043. bottom: 116 / 613
  2044. }
  2045. },
  2046. lounging: {
  2047. height: math.unit(10.52, "feet"),
  2048. weight: math.unit(2400, "lb"),
  2049. name: "Lounging",
  2050. image: {
  2051. source: "./media/characters/fen/lounging.svg"
  2052. }
  2053. },
  2054. },
  2055. [
  2056. {
  2057. name: "Small",
  2058. height: math.unit(2.2428, "meter")
  2059. },
  2060. {
  2061. name: "Normal",
  2062. height: math.unit(12, "feet"),
  2063. default: true,
  2064. },
  2065. {
  2066. name: "Big",
  2067. height: math.unit(20, "feet")
  2068. },
  2069. {
  2070. name: "Minimacro",
  2071. height: math.unit(40, "feet"),
  2072. info: {
  2073. description: {
  2074. mode: "append",
  2075. text: "\n\nTOO DAMN BIG"
  2076. }
  2077. }
  2078. },
  2079. {
  2080. name: "Macro",
  2081. height: math.unit(100, "feet"),
  2082. info: {
  2083. description: {
  2084. mode: "append",
  2085. text: "\n\nTOO DAMN BIG"
  2086. }
  2087. }
  2088. },
  2089. {
  2090. name: "Megamacro",
  2091. height: math.unit(2, "miles")
  2092. },
  2093. {
  2094. name: "Gigamacro",
  2095. height: math.unit(10, "earths")
  2096. },
  2097. ]
  2098. ))
  2099. characterMakers.push(() => makeCharacter(
  2100. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2101. {
  2102. front: {
  2103. height: math.unit(183, "cm"),
  2104. weight: math.unit(80, "kg"),
  2105. name: "Front",
  2106. image: {
  2107. source: "./media/characters/sofia-fluttertail/front.svg",
  2108. bottom: 0.01,
  2109. extra: 2154 / 2081
  2110. }
  2111. },
  2112. frontAlt: {
  2113. height: math.unit(183, "cm"),
  2114. weight: math.unit(80, "kg"),
  2115. name: "Front (alt)",
  2116. image: {
  2117. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2118. }
  2119. },
  2120. back: {
  2121. height: math.unit(183, "cm"),
  2122. weight: math.unit(80, "kg"),
  2123. name: "Back",
  2124. image: {
  2125. source: "./media/characters/sofia-fluttertail/back.svg"
  2126. }
  2127. },
  2128. kneeling: {
  2129. height: math.unit(125, "cm"),
  2130. weight: math.unit(80, "kg"),
  2131. name: "Kneeling",
  2132. image: {
  2133. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2134. extra: 1033 / 977,
  2135. bottom: 23.7 / 1057
  2136. }
  2137. },
  2138. maw: {
  2139. height: math.unit(183 / 5, "cm"),
  2140. name: "Maw",
  2141. image: {
  2142. source: "./media/characters/sofia-fluttertail/maw.svg"
  2143. }
  2144. },
  2145. mawcloseup: {
  2146. height: math.unit(183 / 5 * 0.41, "cm"),
  2147. name: "Maw (Closeup)",
  2148. image: {
  2149. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2150. }
  2151. },
  2152. paws: {
  2153. height: math.unit(1.17, "feet"),
  2154. name: "Paws",
  2155. image: {
  2156. source: "./media/characters/sofia-fluttertail/paws.svg",
  2157. extra: 851 / 851,
  2158. bottom: 17 / 868
  2159. }
  2160. },
  2161. },
  2162. [
  2163. {
  2164. name: "Normal",
  2165. height: math.unit(1.83, "meter")
  2166. },
  2167. {
  2168. name: "Size Thief",
  2169. height: math.unit(18, "feet")
  2170. },
  2171. {
  2172. name: "50 Foot Collie",
  2173. height: math.unit(50, "feet")
  2174. },
  2175. {
  2176. name: "Macro",
  2177. height: math.unit(96, "feet"),
  2178. default: true
  2179. },
  2180. {
  2181. name: "Megamerger",
  2182. height: math.unit(650, "feet")
  2183. },
  2184. ]
  2185. ))
  2186. characterMakers.push(() => makeCharacter(
  2187. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2188. {
  2189. front: {
  2190. height: math.unit(7, "feet"),
  2191. weight: math.unit(100, "kg"),
  2192. name: "Front",
  2193. image: {
  2194. source: "./media/characters/march/front.svg",
  2195. extra: 1992/1851,
  2196. bottom: 39/2031
  2197. }
  2198. },
  2199. foot: {
  2200. height: math.unit(0.9, "feet"),
  2201. name: "Foot",
  2202. image: {
  2203. source: "./media/characters/march/foot.svg"
  2204. }
  2205. },
  2206. },
  2207. [
  2208. {
  2209. name: "Normal",
  2210. height: math.unit(7.9, "feet")
  2211. },
  2212. {
  2213. name: "Macro",
  2214. height: math.unit(220, "meters")
  2215. },
  2216. {
  2217. name: "Megamacro",
  2218. height: math.unit(2.98, "km"),
  2219. default: true
  2220. },
  2221. {
  2222. name: "Gigamacro",
  2223. height: math.unit(15963, "km")
  2224. },
  2225. {
  2226. name: "Teramacro",
  2227. height: math.unit(2980000000, "km")
  2228. },
  2229. {
  2230. name: "Examacro",
  2231. height: math.unit(250, "parsecs")
  2232. },
  2233. ]
  2234. ))
  2235. characterMakers.push(() => makeCharacter(
  2236. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2237. {
  2238. front: {
  2239. height: math.unit(6, "feet"),
  2240. weight: math.unit(60, "kg"),
  2241. name: "Front",
  2242. image: {
  2243. source: "./media/characters/noir/front.svg",
  2244. extra: 1,
  2245. bottom: 0.032
  2246. }
  2247. },
  2248. },
  2249. [
  2250. {
  2251. name: "Normal",
  2252. height: math.unit(6.6, "feet")
  2253. },
  2254. {
  2255. name: "Macro",
  2256. height: math.unit(500, "feet")
  2257. },
  2258. {
  2259. name: "Megamacro",
  2260. height: math.unit(2.5, "km"),
  2261. default: true
  2262. },
  2263. {
  2264. name: "Gigamacro",
  2265. height: math.unit(22500, "km")
  2266. },
  2267. {
  2268. name: "Teramacro",
  2269. height: math.unit(2500000000, "km")
  2270. },
  2271. {
  2272. name: "Examacro",
  2273. height: math.unit(200, "parsecs")
  2274. },
  2275. ]
  2276. ))
  2277. characterMakers.push(() => makeCharacter(
  2278. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2279. {
  2280. front: {
  2281. height: math.unit(7, "feet"),
  2282. weight: math.unit(100, "kg"),
  2283. name: "Front",
  2284. image: {
  2285. source: "./media/characters/okuri/front.svg",
  2286. extra: 739/665,
  2287. bottom: 39/778
  2288. }
  2289. },
  2290. back: {
  2291. height: math.unit(7, "feet"),
  2292. weight: math.unit(100, "kg"),
  2293. name: "Back",
  2294. image: {
  2295. source: "./media/characters/okuri/back.svg",
  2296. extra: 734/653,
  2297. bottom: 13/747
  2298. }
  2299. },
  2300. sitting: {
  2301. height: math.unit(2.95, "feet"),
  2302. weight: math.unit(100, "kg"),
  2303. name: "Sitting",
  2304. image: {
  2305. source: "./media/characters/okuri/sitting.svg",
  2306. extra: 370/318,
  2307. bottom: 99/469
  2308. }
  2309. },
  2310. },
  2311. [
  2312. {
  2313. name: "Smallest",
  2314. height: math.unit(5 + 2/12, "feet")
  2315. },
  2316. {
  2317. name: "Smaller",
  2318. height: math.unit(300, "feet")
  2319. },
  2320. {
  2321. name: "Small",
  2322. height: math.unit(1000, "feet")
  2323. },
  2324. {
  2325. name: "Macro",
  2326. height: math.unit(1, "mile")
  2327. },
  2328. {
  2329. name: "Mega Macro (Small)",
  2330. height: math.unit(20, "km")
  2331. },
  2332. {
  2333. name: "Mega Macro (Large)",
  2334. height: math.unit(600, "km")
  2335. },
  2336. {
  2337. name: "Giga Macro",
  2338. height: math.unit(10000, "km")
  2339. },
  2340. {
  2341. name: "Normal",
  2342. height: math.unit(577560, "km"),
  2343. default: true
  2344. },
  2345. {
  2346. name: "Large",
  2347. height: math.unit(4, "galaxies")
  2348. },
  2349. {
  2350. name: "Largest",
  2351. height: math.unit(15, "multiverses")
  2352. },
  2353. ]
  2354. ))
  2355. characterMakers.push(() => makeCharacter(
  2356. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2357. {
  2358. front: {
  2359. height: math.unit(7, "feet"),
  2360. weight: math.unit(100, "kg"),
  2361. name: "Front",
  2362. image: {
  2363. source: "./media/characters/manny/front.svg",
  2364. extra: 1,
  2365. bottom: 0.06
  2366. }
  2367. },
  2368. back: {
  2369. height: math.unit(7, "feet"),
  2370. weight: math.unit(100, "kg"),
  2371. name: "Back",
  2372. image: {
  2373. source: "./media/characters/manny/back.svg",
  2374. extra: 1,
  2375. bottom: 0.014
  2376. }
  2377. },
  2378. },
  2379. [
  2380. {
  2381. name: "Normal",
  2382. height: math.unit(7, "feet"),
  2383. },
  2384. {
  2385. name: "Macro",
  2386. height: math.unit(78, "feet"),
  2387. default: true
  2388. },
  2389. {
  2390. name: "Macro+",
  2391. height: math.unit(300, "meters")
  2392. },
  2393. {
  2394. name: "Macro++",
  2395. height: math.unit(2400, "meters")
  2396. },
  2397. {
  2398. name: "Megamacro",
  2399. height: math.unit(5167, "meters")
  2400. },
  2401. {
  2402. name: "Gigamacro",
  2403. height: math.unit(41769, "miles")
  2404. },
  2405. ]
  2406. ))
  2407. characterMakers.push(() => makeCharacter(
  2408. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2409. {
  2410. front: {
  2411. height: math.unit(7, "feet"),
  2412. weight: math.unit(100, "kg"),
  2413. name: "Front",
  2414. image: {
  2415. source: "./media/characters/adake/front-1.svg"
  2416. }
  2417. },
  2418. frontAlt: {
  2419. height: math.unit(7, "feet"),
  2420. weight: math.unit(100, "kg"),
  2421. name: "Front (Alt)",
  2422. image: {
  2423. source: "./media/characters/adake/front-2.svg",
  2424. extra: 1,
  2425. bottom: 0.01
  2426. }
  2427. },
  2428. back: {
  2429. height: math.unit(7, "feet"),
  2430. weight: math.unit(100, "kg"),
  2431. name: "Back",
  2432. image: {
  2433. source: "./media/characters/adake/back.svg",
  2434. }
  2435. },
  2436. kneel: {
  2437. height: math.unit(5.385, "feet"),
  2438. weight: math.unit(100, "kg"),
  2439. name: "Kneeling",
  2440. image: {
  2441. source: "./media/characters/adake/kneel.svg",
  2442. bottom: 0.052
  2443. }
  2444. },
  2445. },
  2446. [
  2447. {
  2448. name: "Normal",
  2449. height: math.unit(7, "feet"),
  2450. },
  2451. {
  2452. name: "Macro",
  2453. height: math.unit(78, "feet"),
  2454. default: true
  2455. },
  2456. {
  2457. name: "Macro+",
  2458. height: math.unit(300, "meters")
  2459. },
  2460. {
  2461. name: "Macro++",
  2462. height: math.unit(2400, "meters")
  2463. },
  2464. {
  2465. name: "Megamacro",
  2466. height: math.unit(5167, "meters")
  2467. },
  2468. {
  2469. name: "Gigamacro",
  2470. height: math.unit(41769, "miles")
  2471. },
  2472. ]
  2473. ))
  2474. characterMakers.push(() => makeCharacter(
  2475. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2476. {
  2477. front: {
  2478. height: math.unit(1.65, "meters"),
  2479. weight: math.unit(50, "kg"),
  2480. name: "Front",
  2481. image: {
  2482. source: "./media/characters/elijah/front.svg",
  2483. extra: 858 / 830,
  2484. bottom: 95.5 / 953.8559
  2485. }
  2486. },
  2487. back: {
  2488. height: math.unit(1.65, "meters"),
  2489. weight: math.unit(50, "kg"),
  2490. name: "Back",
  2491. image: {
  2492. source: "./media/characters/elijah/back.svg",
  2493. extra: 895 / 850,
  2494. bottom: 5.3 / 897.956
  2495. }
  2496. },
  2497. frontNsfw: {
  2498. height: math.unit(1.65, "meters"),
  2499. weight: math.unit(50, "kg"),
  2500. name: "Front (NSFW)",
  2501. image: {
  2502. source: "./media/characters/elijah/front-nsfw.svg",
  2503. extra: 858 / 830,
  2504. bottom: 95.5 / 953.8559
  2505. }
  2506. },
  2507. backNsfw: {
  2508. height: math.unit(1.65, "meters"),
  2509. weight: math.unit(50, "kg"),
  2510. name: "Back (NSFW)",
  2511. image: {
  2512. source: "./media/characters/elijah/back-nsfw.svg",
  2513. extra: 895 / 850,
  2514. bottom: 5.3 / 897.956
  2515. }
  2516. },
  2517. dick: {
  2518. height: math.unit(1, "feet"),
  2519. name: "Dick",
  2520. image: {
  2521. source: "./media/characters/elijah/dick.svg"
  2522. }
  2523. },
  2524. beakOpen: {
  2525. height: math.unit(1.25, "feet"),
  2526. name: "Beak (Open)",
  2527. image: {
  2528. source: "./media/characters/elijah/beak-open.svg"
  2529. }
  2530. },
  2531. beakShut: {
  2532. height: math.unit(1.25, "feet"),
  2533. name: "Beak (Shut)",
  2534. image: {
  2535. source: "./media/characters/elijah/beak-shut.svg"
  2536. }
  2537. },
  2538. footFlexing: {
  2539. height: math.unit(1.61, "feet"),
  2540. name: "Foot (Flexing)",
  2541. image: {
  2542. source: "./media/characters/elijah/foot-flexing.svg"
  2543. }
  2544. },
  2545. footStepping: {
  2546. height: math.unit(1.44, "feet"),
  2547. name: "Foot (Stepping)",
  2548. image: {
  2549. source: "./media/characters/elijah/foot-stepping.svg"
  2550. }
  2551. },
  2552. plantigradeLeg: {
  2553. height: math.unit(2.34, "feet"),
  2554. name: "Plantigrade Leg",
  2555. image: {
  2556. source: "./media/characters/elijah/plantigrade-leg.svg"
  2557. }
  2558. },
  2559. plantigradeFootLeft: {
  2560. height: math.unit(0.9, "feet"),
  2561. name: "Plantigrade Foot (Left)",
  2562. image: {
  2563. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2564. }
  2565. },
  2566. plantigradeFootRight: {
  2567. height: math.unit(0.9, "feet"),
  2568. name: "Plantigrade Foot (Right)",
  2569. image: {
  2570. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2571. }
  2572. },
  2573. },
  2574. [
  2575. {
  2576. name: "Normal",
  2577. height: math.unit(1.65, "meters")
  2578. },
  2579. {
  2580. name: "Macro",
  2581. height: math.unit(55, "meters"),
  2582. default: true
  2583. },
  2584. {
  2585. name: "Macro+",
  2586. height: math.unit(105, "meters")
  2587. },
  2588. ]
  2589. ))
  2590. characterMakers.push(() => makeCharacter(
  2591. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2592. {
  2593. front: {
  2594. height: math.unit(7 + 2/12, "feet"),
  2595. weight: math.unit(320, "kg"),
  2596. name: "Front",
  2597. image: {
  2598. source: "./media/characters/rai/front.svg",
  2599. extra: 1802/1696,
  2600. bottom: 68/1870
  2601. }
  2602. },
  2603. frontDressed: {
  2604. height: math.unit(7 + 2/12, "feet"),
  2605. weight: math.unit(320, "kg"),
  2606. name: "Front (Dressed)",
  2607. image: {
  2608. source: "./media/characters/rai/front-dressed.svg",
  2609. extra: 1802/1696,
  2610. bottom: 68/1870
  2611. }
  2612. },
  2613. side: {
  2614. height: math.unit(7 + 2/12, "feet"),
  2615. weight: math.unit(320, "kg"),
  2616. name: "Side",
  2617. image: {
  2618. source: "./media/characters/rai/side.svg",
  2619. extra: 1789/1710,
  2620. bottom: 115/1904
  2621. }
  2622. },
  2623. back: {
  2624. height: math.unit(7 + 2/12, "feet"),
  2625. weight: math.unit(320, "kg"),
  2626. name: "Back",
  2627. image: {
  2628. source: "./media/characters/rai/back.svg",
  2629. extra: 1770/1707,
  2630. bottom: 28/1798
  2631. }
  2632. },
  2633. feral: {
  2634. height: math.unit(9.5, "feet"),
  2635. weight: math.unit(640, "kg"),
  2636. name: "Feral",
  2637. image: {
  2638. source: "./media/characters/rai/feral.svg",
  2639. extra: 945/553,
  2640. bottom: 176/1121
  2641. }
  2642. },
  2643. dragon: {
  2644. height: math.unit(23, "feet"),
  2645. weight: math.unit(50000, "lb"),
  2646. name: "Dragon",
  2647. image: {
  2648. source: "./media/characters/rai/dragon.svg",
  2649. extra: 2498 / 2030,
  2650. bottom: 85.2 / 2584
  2651. }
  2652. },
  2653. maw: {
  2654. height: math.unit(1.69, "feet"),
  2655. name: "Maw",
  2656. image: {
  2657. source: "./media/characters/rai/maw.svg"
  2658. }
  2659. },
  2660. },
  2661. [
  2662. {
  2663. name: "Normal",
  2664. height: math.unit(7 + 2/12, "feet")
  2665. },
  2666. {
  2667. name: "Big",
  2668. height: math.unit(11, "feet")
  2669. },
  2670. {
  2671. name: "Macro",
  2672. height: math.unit(302, "feet"),
  2673. default: true
  2674. },
  2675. ]
  2676. ))
  2677. characterMakers.push(() => makeCharacter(
  2678. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2679. {
  2680. frontDressed: {
  2681. height: math.unit(216, "feet"),
  2682. weight: math.unit(7000000, "lb"),
  2683. name: "Front (Dressed)",
  2684. image: {
  2685. source: "./media/characters/jazzy/front-dressed.svg",
  2686. extra: 2738 / 2651,
  2687. bottom: 41.8 / 2786
  2688. }
  2689. },
  2690. backDressed: {
  2691. height: math.unit(216, "feet"),
  2692. weight: math.unit(7000000, "lb"),
  2693. name: "Back (Dressed)",
  2694. image: {
  2695. source: "./media/characters/jazzy/back-dressed.svg",
  2696. extra: 2775 / 2673,
  2697. bottom: 36.8 / 2817
  2698. }
  2699. },
  2700. front: {
  2701. height: math.unit(216, "feet"),
  2702. weight: math.unit(7000000, "lb"),
  2703. name: "Front",
  2704. image: {
  2705. source: "./media/characters/jazzy/front.svg",
  2706. extra: 2738 / 2651,
  2707. bottom: 41.8 / 2786
  2708. }
  2709. },
  2710. back: {
  2711. height: math.unit(216, "feet"),
  2712. weight: math.unit(7000000, "lb"),
  2713. name: "Back",
  2714. image: {
  2715. source: "./media/characters/jazzy/back.svg",
  2716. extra: 2775 / 2673,
  2717. bottom: 36.8 / 2817
  2718. }
  2719. },
  2720. maw: {
  2721. height: math.unit(20, "feet"),
  2722. name: "Maw",
  2723. image: {
  2724. source: "./media/characters/jazzy/maw.svg"
  2725. }
  2726. },
  2727. paws: {
  2728. height: math.unit(27.5, "feet"),
  2729. name: "Paws",
  2730. image: {
  2731. source: "./media/characters/jazzy/paws.svg"
  2732. }
  2733. },
  2734. eye: {
  2735. height: math.unit(4.4, "feet"),
  2736. name: "Eye",
  2737. image: {
  2738. source: "./media/characters/jazzy/eye.svg"
  2739. }
  2740. },
  2741. droneOffense: {
  2742. height: math.unit(9.5, "inches"),
  2743. name: "Drone (Offense)",
  2744. image: {
  2745. source: "./media/characters/jazzy/drone-offense.svg"
  2746. }
  2747. },
  2748. droneRecon: {
  2749. height: math.unit(9.5, "inches"),
  2750. name: "Drone (Recon)",
  2751. image: {
  2752. source: "./media/characters/jazzy/drone-recon.svg"
  2753. }
  2754. },
  2755. droneDefense: {
  2756. height: math.unit(9.5, "inches"),
  2757. name: "Drone (Defense)",
  2758. image: {
  2759. source: "./media/characters/jazzy/drone-defense.svg"
  2760. }
  2761. },
  2762. },
  2763. [
  2764. {
  2765. name: "Macro",
  2766. height: math.unit(216, "feet"),
  2767. default: true
  2768. },
  2769. ]
  2770. ))
  2771. characterMakers.push(() => makeCharacter(
  2772. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2773. {
  2774. front: {
  2775. height: math.unit(9 + 6/12, "feet"),
  2776. weight: math.unit(700, "lb"),
  2777. name: "Front",
  2778. image: {
  2779. source: "./media/characters/flamm/front.svg",
  2780. extra: 1751/1632,
  2781. bottom: 46/1797
  2782. }
  2783. },
  2784. buff: {
  2785. height: math.unit(9 + 6/12, "feet"),
  2786. weight: math.unit(950, "lb"),
  2787. name: "Buff",
  2788. image: {
  2789. source: "./media/characters/flamm/buff.svg",
  2790. extra: 3018/2874,
  2791. bottom: 221/3239
  2792. }
  2793. },
  2794. },
  2795. [
  2796. {
  2797. name: "Normal",
  2798. height: math.unit(9.5, "feet")
  2799. },
  2800. {
  2801. name: "Macro",
  2802. height: math.unit(200, "feet"),
  2803. default: true
  2804. },
  2805. ]
  2806. ))
  2807. characterMakers.push(() => makeCharacter(
  2808. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2809. {
  2810. front: {
  2811. height: math.unit(5 + 3/12, "feet"),
  2812. weight: math.unit(60, "kg"),
  2813. name: "Front",
  2814. image: {
  2815. source: "./media/characters/zephiro/front.svg",
  2816. extra: 2309 / 2162,
  2817. bottom: 0.069
  2818. }
  2819. },
  2820. side: {
  2821. height: math.unit(5 + 3/12, "feet"),
  2822. weight: math.unit(60, "kg"),
  2823. name: "Side",
  2824. image: {
  2825. source: "./media/characters/zephiro/side.svg",
  2826. extra: 2403 / 2279,
  2827. bottom: 0.015
  2828. }
  2829. },
  2830. back: {
  2831. height: math.unit(5 + 3/12, "feet"),
  2832. weight: math.unit(60, "kg"),
  2833. name: "Back",
  2834. image: {
  2835. source: "./media/characters/zephiro/back.svg",
  2836. extra: 2373 / 2244,
  2837. bottom: 0.013
  2838. }
  2839. },
  2840. hand: {
  2841. height: math.unit(0.68, "feet"),
  2842. name: "Hand",
  2843. image: {
  2844. source: "./media/characters/zephiro/hand.svg"
  2845. }
  2846. },
  2847. paw: {
  2848. height: math.unit(1, "feet"),
  2849. name: "Paw",
  2850. image: {
  2851. source: "./media/characters/zephiro/paw.svg"
  2852. }
  2853. },
  2854. beans: {
  2855. height: math.unit(0.93, "feet"),
  2856. name: "Beans",
  2857. image: {
  2858. source: "./media/characters/zephiro/beans.svg"
  2859. }
  2860. },
  2861. },
  2862. [
  2863. {
  2864. name: "Micro",
  2865. height: math.unit(3, "inches")
  2866. },
  2867. {
  2868. name: "Normal",
  2869. height: math.unit(5 + 3 / 12, "feet"),
  2870. default: true
  2871. },
  2872. {
  2873. name: "Macro",
  2874. height: math.unit(118, "feet")
  2875. },
  2876. ]
  2877. ))
  2878. characterMakers.push(() => makeCharacter(
  2879. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2880. {
  2881. front: {
  2882. height: math.unit(5, "feet"),
  2883. weight: math.unit(90, "kg"),
  2884. name: "Front",
  2885. image: {
  2886. source: "./media/characters/fory/front.svg",
  2887. extra: 2862 / 2674,
  2888. bottom: 180 / 3043.8
  2889. }
  2890. },
  2891. back: {
  2892. height: math.unit(5, "feet"),
  2893. weight: math.unit(90, "kg"),
  2894. name: "Back",
  2895. image: {
  2896. source: "./media/characters/fory/back.svg",
  2897. extra: 2962 / 2791,
  2898. bottom: 106 / 3071.8
  2899. }
  2900. },
  2901. foot: {
  2902. height: math.unit(2.14, "feet"),
  2903. name: "Foot",
  2904. image: {
  2905. source: "./media/characters/fory/foot.svg"
  2906. }
  2907. },
  2908. },
  2909. [
  2910. {
  2911. name: "Normal",
  2912. height: math.unit(5, "feet")
  2913. },
  2914. {
  2915. name: "Macro",
  2916. height: math.unit(50, "feet"),
  2917. default: true
  2918. },
  2919. {
  2920. name: "Megamacro",
  2921. height: math.unit(10, "miles")
  2922. },
  2923. {
  2924. name: "Gigamacro",
  2925. height: math.unit(5, "earths")
  2926. },
  2927. ]
  2928. ))
  2929. characterMakers.push(() => makeCharacter(
  2930. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2931. {
  2932. front: {
  2933. height: math.unit(7, "feet"),
  2934. weight: math.unit(90, "kg"),
  2935. name: "Front",
  2936. image: {
  2937. source: "./media/characters/kurrikage/front.svg",
  2938. extra: 1845/1733,
  2939. bottom: 119/1964
  2940. }
  2941. },
  2942. back: {
  2943. height: math.unit(7, "feet"),
  2944. weight: math.unit(90, "kg"),
  2945. name: "Back",
  2946. image: {
  2947. source: "./media/characters/kurrikage/back.svg",
  2948. extra: 1790/1677,
  2949. bottom: 61/1851
  2950. }
  2951. },
  2952. dressed: {
  2953. height: math.unit(7, "feet"),
  2954. weight: math.unit(90, "kg"),
  2955. name: "Dressed",
  2956. image: {
  2957. source: "./media/characters/kurrikage/dressed.svg",
  2958. extra: 1845/1733,
  2959. bottom: 119/1964
  2960. }
  2961. },
  2962. foot: {
  2963. height: math.unit(1.5, "feet"),
  2964. name: "Foot",
  2965. image: {
  2966. source: "./media/characters/kurrikage/foot.svg"
  2967. }
  2968. },
  2969. staff: {
  2970. height: math.unit(6.7, "feet"),
  2971. name: "Staff",
  2972. image: {
  2973. source: "./media/characters/kurrikage/staff.svg"
  2974. }
  2975. },
  2976. peek: {
  2977. height: math.unit(1.05, "feet"),
  2978. name: "Peeking",
  2979. image: {
  2980. source: "./media/characters/kurrikage/peek.svg",
  2981. bottom: 0.08
  2982. }
  2983. },
  2984. },
  2985. [
  2986. {
  2987. name: "Normal",
  2988. height: math.unit(12, "feet"),
  2989. default: true
  2990. },
  2991. {
  2992. name: "Big",
  2993. height: math.unit(20, "feet")
  2994. },
  2995. {
  2996. name: "Macro",
  2997. height: math.unit(500, "feet")
  2998. },
  2999. {
  3000. name: "Megamacro",
  3001. height: math.unit(20, "miles")
  3002. },
  3003. ]
  3004. ))
  3005. characterMakers.push(() => makeCharacter(
  3006. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3007. {
  3008. front: {
  3009. height: math.unit(6, "feet"),
  3010. weight: math.unit(75, "kg"),
  3011. name: "Front",
  3012. image: {
  3013. source: "./media/characters/shingo/front.svg",
  3014. extra: 1900/1825,
  3015. bottom: 82/1982
  3016. }
  3017. },
  3018. side: {
  3019. height: math.unit(6, "feet"),
  3020. weight: math.unit(75, "kg"),
  3021. name: "Side",
  3022. image: {
  3023. source: "./media/characters/shingo/side.svg",
  3024. extra: 1930/1865,
  3025. bottom: 16/1946
  3026. }
  3027. },
  3028. back: {
  3029. height: math.unit(6, "feet"),
  3030. weight: math.unit(75, "kg"),
  3031. name: "Back",
  3032. image: {
  3033. source: "./media/characters/shingo/back.svg",
  3034. extra: 1922/1852,
  3035. bottom: 16/1938
  3036. }
  3037. },
  3038. frontDressed: {
  3039. height: math.unit(6, "feet"),
  3040. weight: math.unit(150, "lb"),
  3041. name: "Front-dressed",
  3042. image: {
  3043. source: "./media/characters/shingo/front-dressed.svg",
  3044. extra: 1900/1825,
  3045. bottom: 82/1982
  3046. }
  3047. },
  3048. paw: {
  3049. height: math.unit(1.29, "feet"),
  3050. name: "Paw",
  3051. image: {
  3052. source: "./media/characters/shingo/paw.svg"
  3053. }
  3054. },
  3055. hand: {
  3056. height: math.unit(1.07, "feet"),
  3057. name: "Hand",
  3058. image: {
  3059. source: "./media/characters/shingo/hand.svg"
  3060. }
  3061. },
  3062. frontAlt: {
  3063. height: math.unit(6, "feet"),
  3064. weight: math.unit(75, "kg"),
  3065. name: "Front (Alt)",
  3066. image: {
  3067. source: "./media/characters/shingo/front-alt.svg",
  3068. extra: 3511 / 3338,
  3069. bottom: 0.005
  3070. }
  3071. },
  3072. frontAlt2: {
  3073. height: math.unit(6, "feet"),
  3074. weight: math.unit(75, "kg"),
  3075. name: "Front (Alt 2)",
  3076. image: {
  3077. source: "./media/characters/shingo/front-alt-2.svg",
  3078. extra: 706/681,
  3079. bottom: 11/717
  3080. }
  3081. },
  3082. pawAlt: {
  3083. height: math.unit(1, "feet"),
  3084. name: "Paw (Alt)",
  3085. image: {
  3086. source: "./media/characters/shingo/paw-alt.svg"
  3087. }
  3088. },
  3089. },
  3090. [
  3091. {
  3092. name: "Micro",
  3093. height: math.unit(4, "inches")
  3094. },
  3095. {
  3096. name: "Normal",
  3097. height: math.unit(6, "feet"),
  3098. default: true
  3099. },
  3100. {
  3101. name: "Macro",
  3102. height: math.unit(108, "feet")
  3103. },
  3104. {
  3105. name: "Macro+",
  3106. height: math.unit(1500, "feet")
  3107. },
  3108. ]
  3109. ))
  3110. characterMakers.push(() => makeCharacter(
  3111. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3112. {
  3113. side: {
  3114. height: math.unit(6, "feet"),
  3115. weight: math.unit(75, "kg"),
  3116. name: "Side",
  3117. image: {
  3118. source: "./media/characters/aigey/side.svg"
  3119. }
  3120. },
  3121. },
  3122. [
  3123. {
  3124. name: "Macro",
  3125. height: math.unit(200, "feet"),
  3126. default: true
  3127. },
  3128. {
  3129. name: "Megamacro",
  3130. height: math.unit(100, "miles")
  3131. },
  3132. ]
  3133. )
  3134. )
  3135. characterMakers.push(() => makeCharacter(
  3136. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3137. {
  3138. front: {
  3139. height: math.unit(5 + 5 / 12, "feet"),
  3140. weight: math.unit(75, "kg"),
  3141. name: "Front",
  3142. image: {
  3143. source: "./media/characters/natasha/front.svg",
  3144. extra: 859 / 824,
  3145. bottom: 23 / 879.6
  3146. }
  3147. },
  3148. frontNsfw: {
  3149. height: math.unit(5 + 5 / 12, "feet"),
  3150. weight: math.unit(75, "kg"),
  3151. name: "Front (NSFW)",
  3152. image: {
  3153. source: "./media/characters/natasha/front-nsfw.svg",
  3154. extra: 859 / 824,
  3155. bottom: 23 / 879.6
  3156. }
  3157. },
  3158. frontErect: {
  3159. height: math.unit(5 + 5 / 12, "feet"),
  3160. weight: math.unit(75, "kg"),
  3161. name: "Front (Erect)",
  3162. image: {
  3163. source: "./media/characters/natasha/front-erect.svg",
  3164. extra: 859 / 824,
  3165. bottom: 23 / 879.6
  3166. }
  3167. },
  3168. back: {
  3169. height: math.unit(5 + 5 / 12, "feet"),
  3170. weight: math.unit(75, "kg"),
  3171. name: "Back",
  3172. image: {
  3173. source: "./media/characters/natasha/back.svg",
  3174. extra: 887.9 / 852.6,
  3175. bottom: 9.7 / 896.4
  3176. }
  3177. },
  3178. backAlt: {
  3179. height: math.unit(5 + 5 / 12, "feet"),
  3180. weight: math.unit(75, "kg"),
  3181. name: "Back (Alt)",
  3182. image: {
  3183. source: "./media/characters/natasha/back-alt.svg",
  3184. extra: 1236.7 / 1192,
  3185. bottom: 22.3 / 1258.2
  3186. }
  3187. },
  3188. dick: {
  3189. height: math.unit(1.772, "feet"),
  3190. name: "Dick",
  3191. image: {
  3192. source: "./media/characters/natasha/dick.svg"
  3193. }
  3194. },
  3195. paw: {
  3196. height: math.unit(0.250, "meters"),
  3197. name: "Paw",
  3198. image: {
  3199. source: "./media/characters/natasha/paw.svg"
  3200. }
  3201. },
  3202. },
  3203. [
  3204. {
  3205. name: "Normal",
  3206. height: math.unit(5 + 5 / 12, "feet")
  3207. },
  3208. {
  3209. name: "Large",
  3210. height: math.unit(12, "feet")
  3211. },
  3212. {
  3213. name: "Macro",
  3214. height: math.unit(100, "feet"),
  3215. default: true
  3216. },
  3217. {
  3218. name: "Macro+",
  3219. height: math.unit(260, "feet")
  3220. },
  3221. {
  3222. name: "Macro++",
  3223. height: math.unit(1, "mile")
  3224. },
  3225. ]
  3226. ))
  3227. characterMakers.push(() => makeCharacter(
  3228. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3229. {
  3230. front: {
  3231. height: math.unit(6, "feet"),
  3232. weight: math.unit(75, "kg"),
  3233. name: "Front",
  3234. image: {
  3235. source: "./media/characters/malik/front.svg"
  3236. }
  3237. },
  3238. side: {
  3239. height: math.unit(6, "feet"),
  3240. weight: math.unit(75, "kg"),
  3241. name: "Side",
  3242. image: {
  3243. source: "./media/characters/malik/side.svg",
  3244. extra: 1.1539
  3245. }
  3246. },
  3247. back: {
  3248. height: math.unit(6, "feet"),
  3249. weight: math.unit(75, "kg"),
  3250. name: "Back",
  3251. image: {
  3252. source: "./media/characters/malik/back.svg"
  3253. }
  3254. },
  3255. },
  3256. [
  3257. {
  3258. name: "Macro",
  3259. height: math.unit(156, "feet"),
  3260. default: true
  3261. },
  3262. {
  3263. name: "Macro+",
  3264. height: math.unit(1188, "feet")
  3265. },
  3266. ]
  3267. ))
  3268. characterMakers.push(() => makeCharacter(
  3269. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3270. {
  3271. front: {
  3272. height: math.unit(6, "feet"),
  3273. weight: math.unit(75, "kg"),
  3274. name: "Front",
  3275. image: {
  3276. source: "./media/characters/sefer/front.svg",
  3277. extra: 848 / 659,
  3278. bottom: 28.3 / 876.442
  3279. }
  3280. },
  3281. back: {
  3282. height: math.unit(6, "feet"),
  3283. weight: math.unit(75, "kg"),
  3284. name: "Back",
  3285. image: {
  3286. source: "./media/characters/sefer/back.svg",
  3287. extra: 864 / 695,
  3288. bottom: 10 / 871
  3289. }
  3290. },
  3291. frontDressed: {
  3292. height: math.unit(6, "feet"),
  3293. weight: math.unit(75, "kg"),
  3294. name: "Front (Dressed)",
  3295. image: {
  3296. source: "./media/characters/sefer/front-dressed.svg",
  3297. extra: 839 / 653,
  3298. bottom: 37.6 / 878
  3299. }
  3300. },
  3301. },
  3302. [
  3303. {
  3304. name: "Normal",
  3305. height: math.unit(6, "feet"),
  3306. default: true
  3307. },
  3308. ]
  3309. ))
  3310. characterMakers.push(() => makeCharacter(
  3311. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3312. {
  3313. body: {
  3314. height: math.unit(2.2428, "meter"),
  3315. weight: math.unit(124.738, "kg"),
  3316. name: "Body",
  3317. image: {
  3318. extra: 1225 / 1050,
  3319. source: "./media/characters/north/front.svg"
  3320. }
  3321. }
  3322. },
  3323. [
  3324. {
  3325. name: "Micro",
  3326. height: math.unit(4, "inches")
  3327. },
  3328. {
  3329. name: "Macro",
  3330. height: math.unit(63, "meters")
  3331. },
  3332. {
  3333. name: "Megamacro",
  3334. height: math.unit(101, "miles"),
  3335. default: true
  3336. }
  3337. ]
  3338. ))
  3339. characterMakers.push(() => makeCharacter(
  3340. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3341. {
  3342. angled: {
  3343. height: math.unit(4, "meter"),
  3344. weight: math.unit(150, "kg"),
  3345. name: "Angled",
  3346. image: {
  3347. source: "./media/characters/talan/angled-sfw.svg",
  3348. bottom: 29 / 3734
  3349. }
  3350. },
  3351. angledNsfw: {
  3352. height: math.unit(4, "meter"),
  3353. weight: math.unit(150, "kg"),
  3354. name: "Angled (NSFW)",
  3355. image: {
  3356. source: "./media/characters/talan/angled-nsfw.svg",
  3357. bottom: 29 / 3734
  3358. }
  3359. },
  3360. frontNsfw: {
  3361. height: math.unit(4, "meter"),
  3362. weight: math.unit(150, "kg"),
  3363. name: "Front (NSFW)",
  3364. image: {
  3365. source: "./media/characters/talan/front-nsfw.svg",
  3366. bottom: 29 / 3734
  3367. }
  3368. },
  3369. sideNsfw: {
  3370. height: math.unit(4, "meter"),
  3371. weight: math.unit(150, "kg"),
  3372. name: "Side (NSFW)",
  3373. image: {
  3374. source: "./media/characters/talan/side-nsfw.svg",
  3375. bottom: 29 / 3734
  3376. }
  3377. },
  3378. back: {
  3379. height: math.unit(4, "meter"),
  3380. weight: math.unit(150, "kg"),
  3381. name: "Back",
  3382. image: {
  3383. source: "./media/characters/talan/back.svg"
  3384. }
  3385. },
  3386. dickBottom: {
  3387. height: math.unit(0.621, "meter"),
  3388. name: "Dick (Bottom)",
  3389. image: {
  3390. source: "./media/characters/talan/dick-bottom.svg"
  3391. }
  3392. },
  3393. dickTop: {
  3394. height: math.unit(0.621, "meter"),
  3395. name: "Dick (Top)",
  3396. image: {
  3397. source: "./media/characters/talan/dick-top.svg"
  3398. }
  3399. },
  3400. dickSide: {
  3401. height: math.unit(0.305, "meter"),
  3402. name: "Dick (Side)",
  3403. image: {
  3404. source: "./media/characters/talan/dick-side.svg"
  3405. }
  3406. },
  3407. dickFront: {
  3408. height: math.unit(0.305, "meter"),
  3409. name: "Dick (Front)",
  3410. image: {
  3411. source: "./media/characters/talan/dick-front.svg"
  3412. }
  3413. },
  3414. },
  3415. [
  3416. {
  3417. name: "Normal",
  3418. height: math.unit(4, "meters")
  3419. },
  3420. {
  3421. name: "Macro",
  3422. height: math.unit(100, "meters")
  3423. },
  3424. {
  3425. name: "Megamacro",
  3426. height: math.unit(2, "miles"),
  3427. default: true
  3428. },
  3429. {
  3430. name: "Gigamacro",
  3431. height: math.unit(5000, "miles")
  3432. },
  3433. {
  3434. name: "Teramacro",
  3435. height: math.unit(100, "parsecs")
  3436. }
  3437. ]
  3438. ))
  3439. characterMakers.push(() => makeCharacter(
  3440. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3441. {
  3442. front: {
  3443. height: math.unit(2, "meter"),
  3444. weight: math.unit(90, "kg"),
  3445. name: "Front",
  3446. image: {
  3447. source: "./media/characters/gael'rathus/front.svg"
  3448. }
  3449. },
  3450. frontAlt: {
  3451. height: math.unit(2, "meter"),
  3452. weight: math.unit(90, "kg"),
  3453. name: "Front (alt)",
  3454. image: {
  3455. source: "./media/characters/gael'rathus/front-alt.svg"
  3456. }
  3457. },
  3458. frontAlt2: {
  3459. height: math.unit(2, "meter"),
  3460. weight: math.unit(90, "kg"),
  3461. name: "Front (alt 2)",
  3462. image: {
  3463. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3464. }
  3465. }
  3466. },
  3467. [
  3468. {
  3469. name: "Normal",
  3470. height: math.unit(9, "feet"),
  3471. default: true
  3472. },
  3473. {
  3474. name: "Large",
  3475. height: math.unit(25, "feet")
  3476. },
  3477. {
  3478. name: "Macro",
  3479. height: math.unit(0.25, "miles")
  3480. },
  3481. {
  3482. name: "Megamacro",
  3483. height: math.unit(10, "miles")
  3484. }
  3485. ]
  3486. ))
  3487. characterMakers.push(() => makeCharacter(
  3488. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3489. {
  3490. side: {
  3491. height: math.unit(2, "meter"),
  3492. weight: math.unit(140, "kg"),
  3493. name: "Side",
  3494. image: {
  3495. source: "./media/characters/sosha/side.svg",
  3496. bottom: 0.042
  3497. }
  3498. },
  3499. },
  3500. [
  3501. {
  3502. name: "Normal",
  3503. height: math.unit(12, "feet"),
  3504. default: true
  3505. }
  3506. ]
  3507. ))
  3508. characterMakers.push(() => makeCharacter(
  3509. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3510. {
  3511. side: {
  3512. height: math.unit(5 + 5 / 12, "feet"),
  3513. weight: math.unit(170, "kg"),
  3514. name: "Side",
  3515. image: {
  3516. source: "./media/characters/runnola/side.svg",
  3517. extra: 741 / 448,
  3518. bottom: 0.05
  3519. }
  3520. },
  3521. },
  3522. [
  3523. {
  3524. name: "Small",
  3525. height: math.unit(3, "feet")
  3526. },
  3527. {
  3528. name: "Normal",
  3529. height: math.unit(5 + 5 / 12, "feet"),
  3530. default: true
  3531. },
  3532. {
  3533. name: "Big",
  3534. height: math.unit(10, "feet")
  3535. },
  3536. ]
  3537. ))
  3538. characterMakers.push(() => makeCharacter(
  3539. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3540. {
  3541. front: {
  3542. height: math.unit(2, "meter"),
  3543. weight: math.unit(50, "kg"),
  3544. name: "Front",
  3545. image: {
  3546. source: "./media/characters/kurribird/front.svg",
  3547. bottom: 0.015
  3548. }
  3549. },
  3550. frontAlt: {
  3551. height: math.unit(1.5, "meter"),
  3552. weight: math.unit(50, "kg"),
  3553. name: "Front (Alt)",
  3554. image: {
  3555. source: "./media/characters/kurribird/front-alt.svg",
  3556. extra: 1.45
  3557. }
  3558. },
  3559. },
  3560. [
  3561. {
  3562. name: "Normal",
  3563. height: math.unit(7, "feet")
  3564. },
  3565. {
  3566. name: "Big",
  3567. height: math.unit(12, "feet"),
  3568. default: true
  3569. },
  3570. {
  3571. name: "Macro",
  3572. height: math.unit(1500, "feet")
  3573. },
  3574. {
  3575. name: "Megamacro",
  3576. height: math.unit(2, "miles")
  3577. }
  3578. ]
  3579. ))
  3580. characterMakers.push(() => makeCharacter(
  3581. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3582. {
  3583. front: {
  3584. height: math.unit(2, "meter"),
  3585. weight: math.unit(80, "kg"),
  3586. name: "Front",
  3587. image: {
  3588. source: "./media/characters/elbial/front.svg",
  3589. extra: 1643 / 1556,
  3590. bottom: 60.2 / 1696
  3591. }
  3592. },
  3593. side: {
  3594. height: math.unit(2, "meter"),
  3595. weight: math.unit(80, "kg"),
  3596. name: "Side",
  3597. image: {
  3598. source: "./media/characters/elbial/side.svg",
  3599. extra: 1601/1528,
  3600. bottom: 97/1698
  3601. }
  3602. },
  3603. back: {
  3604. height: math.unit(2, "meter"),
  3605. weight: math.unit(80, "kg"),
  3606. name: "Back",
  3607. image: {
  3608. source: "./media/characters/elbial/back.svg",
  3609. extra: 1653/1569,
  3610. bottom: 20/1673
  3611. }
  3612. },
  3613. frontDressed: {
  3614. height: math.unit(2, "meter"),
  3615. weight: math.unit(80, "kg"),
  3616. name: "Front (Dressed)",
  3617. image: {
  3618. source: "./media/characters/elbial/front-dressed.svg",
  3619. extra: 1638/1569,
  3620. bottom: 70/1708
  3621. }
  3622. },
  3623. genitals: {
  3624. height: math.unit(2 / 3.367, "meter"),
  3625. name: "Genitals",
  3626. image: {
  3627. source: "./media/characters/elbial/genitals.svg"
  3628. }
  3629. },
  3630. },
  3631. [
  3632. {
  3633. name: "Large",
  3634. height: math.unit(100, "feet")
  3635. },
  3636. {
  3637. name: "Macro",
  3638. height: math.unit(500, "feet"),
  3639. default: true
  3640. },
  3641. {
  3642. name: "Megamacro",
  3643. height: math.unit(10, "miles")
  3644. },
  3645. {
  3646. name: "Gigamacro",
  3647. height: math.unit(25000, "miles")
  3648. },
  3649. {
  3650. name: "Full-Size",
  3651. height: math.unit(8000000, "gigaparsecs")
  3652. }
  3653. ]
  3654. ))
  3655. characterMakers.push(() => makeCharacter(
  3656. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3657. {
  3658. front: {
  3659. height: math.unit(2, "meter"),
  3660. weight: math.unit(60, "kg"),
  3661. name: "Front",
  3662. image: {
  3663. source: "./media/characters/noah/front.svg"
  3664. }
  3665. },
  3666. talons: {
  3667. height: math.unit(0.315, "meter"),
  3668. name: "Talons",
  3669. image: {
  3670. source: "./media/characters/noah/talons.svg"
  3671. }
  3672. }
  3673. },
  3674. [
  3675. {
  3676. name: "Large",
  3677. height: math.unit(50, "feet")
  3678. },
  3679. {
  3680. name: "Macro",
  3681. height: math.unit(750, "feet"),
  3682. default: true
  3683. },
  3684. {
  3685. name: "Megamacro",
  3686. height: math.unit(50, "miles")
  3687. },
  3688. {
  3689. name: "Gigamacro",
  3690. height: math.unit(100000, "miles")
  3691. },
  3692. {
  3693. name: "Full-Size",
  3694. height: math.unit(3000000000, "miles")
  3695. }
  3696. ]
  3697. ))
  3698. characterMakers.push(() => makeCharacter(
  3699. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3700. {
  3701. front: {
  3702. height: math.unit(2, "meter"),
  3703. weight: math.unit(80, "kg"),
  3704. name: "Front",
  3705. image: {
  3706. source: "./media/characters/natalya/front.svg"
  3707. }
  3708. },
  3709. back: {
  3710. height: math.unit(2, "meter"),
  3711. weight: math.unit(80, "kg"),
  3712. name: "Back",
  3713. image: {
  3714. source: "./media/characters/natalya/back.svg"
  3715. }
  3716. }
  3717. },
  3718. [
  3719. {
  3720. name: "Normal",
  3721. height: math.unit(150, "feet"),
  3722. default: true
  3723. },
  3724. {
  3725. name: "Megamacro",
  3726. height: math.unit(5, "miles")
  3727. },
  3728. {
  3729. name: "Full-Size",
  3730. height: math.unit(600, "kiloparsecs")
  3731. }
  3732. ]
  3733. ))
  3734. characterMakers.push(() => makeCharacter(
  3735. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3736. {
  3737. front: {
  3738. height: math.unit(2, "meter"),
  3739. weight: math.unit(50, "kg"),
  3740. name: "Front",
  3741. image: {
  3742. source: "./media/characters/erestrebah/front.svg",
  3743. extra: 1262/1162,
  3744. bottom: 96/1358
  3745. }
  3746. },
  3747. back: {
  3748. height: math.unit(2, "meter"),
  3749. weight: math.unit(50, "kg"),
  3750. name: "Back",
  3751. image: {
  3752. source: "./media/characters/erestrebah/back.svg",
  3753. extra: 1257/1139,
  3754. bottom: 13/1270
  3755. }
  3756. },
  3757. wing: {
  3758. height: math.unit(2, "meter"),
  3759. weight: math.unit(50, "kg"),
  3760. name: "Wing",
  3761. image: {
  3762. source: "./media/characters/erestrebah/wing.svg",
  3763. extra: 1262/1162,
  3764. bottom: 96/1358
  3765. }
  3766. },
  3767. mouth: {
  3768. height: math.unit(0.39, "feet"),
  3769. name: "Mouth",
  3770. image: {
  3771. source: "./media/characters/erestrebah/mouth.svg"
  3772. }
  3773. }
  3774. },
  3775. [
  3776. {
  3777. name: "Normal",
  3778. height: math.unit(10, "feet")
  3779. },
  3780. {
  3781. name: "Large",
  3782. height: math.unit(50, "feet"),
  3783. default: true
  3784. },
  3785. {
  3786. name: "Macro",
  3787. height: math.unit(300, "feet")
  3788. },
  3789. {
  3790. name: "Macro+",
  3791. height: math.unit(750, "feet")
  3792. },
  3793. {
  3794. name: "Megamacro",
  3795. height: math.unit(3, "miles")
  3796. }
  3797. ]
  3798. ))
  3799. characterMakers.push(() => makeCharacter(
  3800. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3801. {
  3802. front: {
  3803. height: math.unit(2, "meter"),
  3804. weight: math.unit(80, "kg"),
  3805. name: "Front",
  3806. image: {
  3807. source: "./media/characters/jennifer/front.svg",
  3808. bottom: 0.11,
  3809. extra: 1.16
  3810. }
  3811. },
  3812. frontAlt: {
  3813. height: math.unit(2, "meter"),
  3814. weight: math.unit(80, "kg"),
  3815. name: "Front (Alt)",
  3816. image: {
  3817. source: "./media/characters/jennifer/front-alt.svg"
  3818. }
  3819. }
  3820. },
  3821. [
  3822. {
  3823. name: "Canon Height",
  3824. height: math.unit(120, "feet"),
  3825. default: true
  3826. },
  3827. {
  3828. name: "Macro+",
  3829. height: math.unit(300, "feet")
  3830. },
  3831. {
  3832. name: "Megamacro",
  3833. height: math.unit(20000, "feet")
  3834. }
  3835. ]
  3836. ))
  3837. characterMakers.push(() => makeCharacter(
  3838. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3839. {
  3840. front: {
  3841. height: math.unit(2, "meter"),
  3842. weight: math.unit(50, "kg"),
  3843. name: "Front",
  3844. image: {
  3845. source: "./media/characters/kalista/front.svg",
  3846. extra: 1314/1145,
  3847. bottom: 101/1415
  3848. }
  3849. },
  3850. back: {
  3851. height: math.unit(2, "meter"),
  3852. weight: math.unit(50, "kg"),
  3853. name: "Back",
  3854. image: {
  3855. source: "./media/characters/kalista/back.svg",
  3856. extra: 1366 / 1156,
  3857. bottom: 33.9 / 1362.78
  3858. }
  3859. }
  3860. },
  3861. [
  3862. {
  3863. name: "Uncomfortably Small",
  3864. height: math.unit(10, "feet")
  3865. },
  3866. {
  3867. name: "Small",
  3868. height: math.unit(30, "feet")
  3869. },
  3870. {
  3871. name: "Macro",
  3872. height: math.unit(100, "feet"),
  3873. default: true
  3874. },
  3875. {
  3876. name: "Macro+",
  3877. height: math.unit(2000, "feet")
  3878. },
  3879. {
  3880. name: "True Form",
  3881. height: math.unit(8924, "miles")
  3882. }
  3883. ]
  3884. ))
  3885. characterMakers.push(() => makeCharacter(
  3886. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3887. {
  3888. front: {
  3889. height: math.unit(2, "meter"),
  3890. weight: math.unit(120, "kg"),
  3891. name: "Front",
  3892. image: {
  3893. source: "./media/characters/ggv/front.svg"
  3894. }
  3895. },
  3896. side: {
  3897. height: math.unit(2, "meter"),
  3898. weight: math.unit(120, "kg"),
  3899. name: "Side",
  3900. image: {
  3901. source: "./media/characters/ggv/side.svg"
  3902. }
  3903. }
  3904. },
  3905. [
  3906. {
  3907. name: "Extremely Puny",
  3908. height: math.unit(9 + 5 / 12, "feet")
  3909. },
  3910. {
  3911. name: "Horribly Small",
  3912. height: math.unit(47.7, "miles"),
  3913. default: true
  3914. },
  3915. {
  3916. name: "Reasonably Sized",
  3917. height: math.unit(25000, "parsecs")
  3918. },
  3919. {
  3920. name: "Slightly Uncompressed",
  3921. height: math.unit(7.77e31, "parsecs")
  3922. },
  3923. {
  3924. name: "Omniversal",
  3925. height: math.unit(1e300, "meters")
  3926. },
  3927. ]
  3928. ))
  3929. characterMakers.push(() => makeCharacter(
  3930. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3931. {
  3932. front: {
  3933. height: math.unit(2, "meter"),
  3934. weight: math.unit(75, "lb"),
  3935. name: "Front",
  3936. image: {
  3937. source: "./media/characters/napalm/front.svg"
  3938. }
  3939. },
  3940. back: {
  3941. height: math.unit(2, "meter"),
  3942. weight: math.unit(75, "lb"),
  3943. name: "Back",
  3944. image: {
  3945. source: "./media/characters/napalm/back.svg"
  3946. }
  3947. }
  3948. },
  3949. [
  3950. {
  3951. name: "Standard",
  3952. height: math.unit(55, "feet"),
  3953. default: true
  3954. }
  3955. ]
  3956. ))
  3957. characterMakers.push(() => makeCharacter(
  3958. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3959. {
  3960. front: {
  3961. height: math.unit(7 + 5 / 6, "feet"),
  3962. weight: math.unit(325, "lb"),
  3963. name: "Front",
  3964. image: {
  3965. source: "./media/characters/asana/front.svg",
  3966. extra: 1133 / 1060,
  3967. bottom: 15.2 / 1148.6
  3968. }
  3969. },
  3970. back: {
  3971. height: math.unit(7 + 5 / 6, "feet"),
  3972. weight: math.unit(325, "lb"),
  3973. name: "Back",
  3974. image: {
  3975. source: "./media/characters/asana/back.svg",
  3976. extra: 1114 / 1043,
  3977. bottom: 5 / 1120
  3978. }
  3979. },
  3980. dressedDark: {
  3981. height: math.unit(7 + 5 / 6, "feet"),
  3982. weight: math.unit(325, "lb"),
  3983. name: "Dressed (Dark)",
  3984. image: {
  3985. source: "./media/characters/asana/dressed-dark.svg",
  3986. extra: 1133 / 1060,
  3987. bottom: 15.2 / 1148.6
  3988. }
  3989. },
  3990. dressedLight: {
  3991. height: math.unit(7 + 5 / 6, "feet"),
  3992. weight: math.unit(325, "lb"),
  3993. name: "Dressed (Light)",
  3994. image: {
  3995. source: "./media/characters/asana/dressed-light.svg",
  3996. extra: 1133 / 1060,
  3997. bottom: 15.2 / 1148.6
  3998. }
  3999. },
  4000. },
  4001. [
  4002. {
  4003. name: "Standard",
  4004. height: math.unit(7 + 5 / 6, "feet"),
  4005. default: true
  4006. },
  4007. {
  4008. name: "Large",
  4009. height: math.unit(10, "meters")
  4010. },
  4011. {
  4012. name: "Macro",
  4013. height: math.unit(2500, "meters")
  4014. },
  4015. {
  4016. name: "Megamacro",
  4017. height: math.unit(5e6, "meters")
  4018. },
  4019. {
  4020. name: "Examacro",
  4021. height: math.unit(5e12, "lightyears")
  4022. },
  4023. {
  4024. name: "Max Size",
  4025. height: math.unit(1e31, "lightyears")
  4026. }
  4027. ]
  4028. ))
  4029. characterMakers.push(() => makeCharacter(
  4030. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4031. {
  4032. front: {
  4033. height: math.unit(2, "meter"),
  4034. weight: math.unit(60, "kg"),
  4035. name: "Front",
  4036. image: {
  4037. source: "./media/characters/ebony/front.svg",
  4038. bottom: 0.03,
  4039. extra: 1045 / 810 + 0.03
  4040. }
  4041. },
  4042. side: {
  4043. height: math.unit(2, "meter"),
  4044. weight: math.unit(60, "kg"),
  4045. name: "Side",
  4046. image: {
  4047. source: "./media/characters/ebony/side.svg",
  4048. bottom: 0.03,
  4049. extra: 1045 / 810 + 0.03
  4050. }
  4051. },
  4052. back: {
  4053. height: math.unit(2, "meter"),
  4054. weight: math.unit(60, "kg"),
  4055. name: "Back",
  4056. image: {
  4057. source: "./media/characters/ebony/back.svg",
  4058. bottom: 0.01,
  4059. extra: 1045 / 810 + 0.01
  4060. }
  4061. },
  4062. },
  4063. [
  4064. // TODO check why I did this lol
  4065. {
  4066. name: "Standard",
  4067. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4068. default: true
  4069. },
  4070. {
  4071. name: "Macro",
  4072. height: math.unit(200, "feet")
  4073. },
  4074. {
  4075. name: "Gigamacro",
  4076. height: math.unit(13000, "km")
  4077. }
  4078. ]
  4079. ))
  4080. characterMakers.push(() => makeCharacter(
  4081. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4082. {
  4083. front: {
  4084. height: math.unit(6, "feet"),
  4085. weight: math.unit(175, "lb"),
  4086. name: "Front",
  4087. image: {
  4088. source: "./media/characters/mountain/front.svg",
  4089. extra: 972 / 955,
  4090. bottom: 64 / 1036.6
  4091. }
  4092. },
  4093. back: {
  4094. height: math.unit(6, "feet"),
  4095. weight: math.unit(175, "lb"),
  4096. name: "Back",
  4097. image: {
  4098. source: "./media/characters/mountain/back.svg",
  4099. extra: 970 / 950,
  4100. bottom: 28.25 / 999
  4101. }
  4102. },
  4103. },
  4104. [
  4105. {
  4106. name: "Large",
  4107. height: math.unit(20, "meters")
  4108. },
  4109. {
  4110. name: "Macro",
  4111. height: math.unit(300, "meters")
  4112. },
  4113. {
  4114. name: "Gigamacro",
  4115. height: math.unit(10000, "km"),
  4116. default: true
  4117. },
  4118. {
  4119. name: "Examacro",
  4120. height: math.unit(10e9, "lightyears")
  4121. }
  4122. ]
  4123. ))
  4124. characterMakers.push(() => makeCharacter(
  4125. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4126. {
  4127. front: {
  4128. height: math.unit(8, "feet"),
  4129. weight: math.unit(500, "lb"),
  4130. name: "Front",
  4131. image: {
  4132. source: "./media/characters/rick/front.svg"
  4133. }
  4134. }
  4135. },
  4136. [
  4137. {
  4138. name: "Normal",
  4139. height: math.unit(8, "feet"),
  4140. default: true
  4141. },
  4142. {
  4143. name: "Macro",
  4144. height: math.unit(5, "km")
  4145. }
  4146. ]
  4147. ))
  4148. characterMakers.push(() => makeCharacter(
  4149. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4150. {
  4151. front: {
  4152. height: math.unit(8, "feet"),
  4153. weight: math.unit(120, "lb"),
  4154. name: "Front",
  4155. image: {
  4156. source: "./media/characters/ona/front.svg"
  4157. }
  4158. },
  4159. frontAlt: {
  4160. height: math.unit(8, "feet"),
  4161. weight: math.unit(120, "lb"),
  4162. name: "Front (Alt)",
  4163. image: {
  4164. source: "./media/characters/ona/front-alt.svg"
  4165. }
  4166. },
  4167. back: {
  4168. height: math.unit(8, "feet"),
  4169. weight: math.unit(120, "lb"),
  4170. name: "Back",
  4171. image: {
  4172. source: "./media/characters/ona/back.svg"
  4173. }
  4174. },
  4175. foot: {
  4176. height: math.unit(1.1, "feet"),
  4177. name: "Foot",
  4178. image: {
  4179. source: "./media/characters/ona/foot.svg"
  4180. }
  4181. }
  4182. },
  4183. [
  4184. {
  4185. name: "Megamacro",
  4186. height: math.unit(70, "km"),
  4187. default: true
  4188. },
  4189. {
  4190. name: "Gigamacro",
  4191. height: math.unit(681818, "miles")
  4192. },
  4193. {
  4194. name: "Examacro",
  4195. height: math.unit(3800000, "lightyears")
  4196. },
  4197. ]
  4198. ))
  4199. characterMakers.push(() => makeCharacter(
  4200. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4201. {
  4202. front: {
  4203. height: math.unit(12, "feet"),
  4204. weight: math.unit(3000, "lb"),
  4205. name: "Front",
  4206. image: {
  4207. source: "./media/characters/mech/front.svg",
  4208. extra: 2900 / 2770,
  4209. bottom: 110 / 3010
  4210. }
  4211. },
  4212. back: {
  4213. height: math.unit(12, "feet"),
  4214. weight: math.unit(3000, "lb"),
  4215. name: "Back",
  4216. image: {
  4217. source: "./media/characters/mech/back.svg",
  4218. extra: 3011 / 2890,
  4219. bottom: 94 / 3105
  4220. }
  4221. },
  4222. maw: {
  4223. height: math.unit(3.07, "feet"),
  4224. name: "Maw",
  4225. image: {
  4226. source: "./media/characters/mech/maw.svg"
  4227. }
  4228. },
  4229. head: {
  4230. height: math.unit(2.82, "feet"),
  4231. name: "Head",
  4232. image: {
  4233. source: "./media/characters/mech/head.svg"
  4234. }
  4235. },
  4236. dick: {
  4237. height: math.unit(1.43, "feet"),
  4238. name: "Dick",
  4239. image: {
  4240. source: "./media/characters/mech/dick.svg"
  4241. }
  4242. },
  4243. },
  4244. [
  4245. {
  4246. name: "Normal",
  4247. height: math.unit(12, "feet")
  4248. },
  4249. {
  4250. name: "Macro",
  4251. height: math.unit(300, "feet"),
  4252. default: true
  4253. },
  4254. {
  4255. name: "Macro+",
  4256. height: math.unit(1500, "feet")
  4257. },
  4258. ]
  4259. ))
  4260. characterMakers.push(() => makeCharacter(
  4261. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4262. {
  4263. front: {
  4264. height: math.unit(1.3, "meter"),
  4265. weight: math.unit(30, "kg"),
  4266. name: "Front",
  4267. image: {
  4268. source: "./media/characters/gregory/front.svg",
  4269. }
  4270. }
  4271. },
  4272. [
  4273. {
  4274. name: "Normal",
  4275. height: math.unit(1.3, "meter"),
  4276. default: true
  4277. },
  4278. {
  4279. name: "Macro",
  4280. height: math.unit(20, "meter")
  4281. }
  4282. ]
  4283. ))
  4284. characterMakers.push(() => makeCharacter(
  4285. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4286. {
  4287. front: {
  4288. height: math.unit(2.8, "meter"),
  4289. weight: math.unit(200, "kg"),
  4290. name: "Front",
  4291. image: {
  4292. source: "./media/characters/elory/front.svg",
  4293. }
  4294. }
  4295. },
  4296. [
  4297. {
  4298. name: "Normal",
  4299. height: math.unit(2.8, "meter"),
  4300. default: true
  4301. },
  4302. {
  4303. name: "Macro",
  4304. height: math.unit(38, "meter")
  4305. }
  4306. ]
  4307. ))
  4308. characterMakers.push(() => makeCharacter(
  4309. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4310. {
  4311. front: {
  4312. height: math.unit(470, "feet"),
  4313. weight: math.unit(924, "tons"),
  4314. name: "Front",
  4315. image: {
  4316. source: "./media/characters/angelpatamon/front.svg",
  4317. }
  4318. }
  4319. },
  4320. [
  4321. {
  4322. name: "Normal",
  4323. height: math.unit(470, "feet"),
  4324. default: true
  4325. },
  4326. {
  4327. name: "Deity Size I",
  4328. height: math.unit(28651.2, "km")
  4329. },
  4330. {
  4331. name: "Deity Size II",
  4332. height: math.unit(171907.2, "km")
  4333. }
  4334. ]
  4335. ))
  4336. characterMakers.push(() => makeCharacter(
  4337. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4338. {
  4339. side: {
  4340. height: math.unit(7.2, "meter"),
  4341. weight: math.unit(8.2, "tons"),
  4342. name: "Side",
  4343. image: {
  4344. source: "./media/characters/cryae/side.svg",
  4345. extra: 3500 / 1500
  4346. }
  4347. }
  4348. },
  4349. [
  4350. {
  4351. name: "Normal",
  4352. height: math.unit(7.2, "meter"),
  4353. default: true
  4354. }
  4355. ]
  4356. ))
  4357. characterMakers.push(() => makeCharacter(
  4358. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4359. {
  4360. front: {
  4361. height: math.unit(6, "feet"),
  4362. weight: math.unit(175, "lb"),
  4363. name: "Front",
  4364. image: {
  4365. source: "./media/characters/xera/front.svg",
  4366. extra: 2377 / 1972,
  4367. bottom: 75.5 / 2452
  4368. }
  4369. },
  4370. side: {
  4371. height: math.unit(6, "feet"),
  4372. weight: math.unit(175, "lb"),
  4373. name: "Side",
  4374. image: {
  4375. source: "./media/characters/xera/side.svg",
  4376. extra: 2345 / 2019,
  4377. bottom: 39.7 / 2384
  4378. }
  4379. },
  4380. back: {
  4381. height: math.unit(6, "feet"),
  4382. weight: math.unit(175, "lb"),
  4383. name: "Back",
  4384. image: {
  4385. source: "./media/characters/xera/back.svg",
  4386. extra: 2095 / 1984,
  4387. bottom: 67 / 2166
  4388. }
  4389. },
  4390. },
  4391. [
  4392. {
  4393. name: "Small",
  4394. height: math.unit(10, "feet")
  4395. },
  4396. {
  4397. name: "Macro",
  4398. height: math.unit(500, "meters"),
  4399. default: true
  4400. },
  4401. {
  4402. name: "Macro+",
  4403. height: math.unit(10, "km")
  4404. },
  4405. {
  4406. name: "Gigamacro",
  4407. height: math.unit(25000, "km")
  4408. },
  4409. {
  4410. name: "Teramacro",
  4411. height: math.unit(3e6, "km")
  4412. }
  4413. ]
  4414. ))
  4415. characterMakers.push(() => makeCharacter(
  4416. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4417. {
  4418. front: {
  4419. height: math.unit(6, "feet"),
  4420. weight: math.unit(175, "lb"),
  4421. name: "Front",
  4422. image: {
  4423. source: "./media/characters/nebula/front.svg",
  4424. extra: 2566 / 2362,
  4425. bottom: 81 / 2644
  4426. }
  4427. }
  4428. },
  4429. [
  4430. {
  4431. name: "Small",
  4432. height: math.unit(4.5, "meters")
  4433. },
  4434. {
  4435. name: "Macro",
  4436. height: math.unit(1500, "meters"),
  4437. default: true
  4438. },
  4439. {
  4440. name: "Megamacro",
  4441. height: math.unit(150, "km")
  4442. },
  4443. {
  4444. name: "Gigamacro",
  4445. height: math.unit(27000, "km")
  4446. }
  4447. ]
  4448. ))
  4449. characterMakers.push(() => makeCharacter(
  4450. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4451. {
  4452. front: {
  4453. height: math.unit(6, "feet"),
  4454. weight: math.unit(225, "lb"),
  4455. name: "Front",
  4456. image: {
  4457. source: "./media/characters/abysgar/front.svg"
  4458. }
  4459. }
  4460. },
  4461. [
  4462. {
  4463. name: "Small",
  4464. height: math.unit(4.5, "meters")
  4465. },
  4466. {
  4467. name: "Macro",
  4468. height: math.unit(1250, "meters"),
  4469. default: true
  4470. },
  4471. {
  4472. name: "Megamacro",
  4473. height: math.unit(125, "km")
  4474. },
  4475. {
  4476. name: "Gigamacro",
  4477. height: math.unit(26000, "km")
  4478. }
  4479. ]
  4480. ))
  4481. characterMakers.push(() => makeCharacter(
  4482. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4483. {
  4484. front: {
  4485. height: math.unit(6, "feet"),
  4486. weight: math.unit(180, "lb"),
  4487. name: "Front",
  4488. image: {
  4489. source: "./media/characters/yakuz/front.svg"
  4490. }
  4491. }
  4492. },
  4493. [
  4494. {
  4495. name: "Small",
  4496. height: math.unit(5, "meters")
  4497. },
  4498. {
  4499. name: "Macro",
  4500. height: math.unit(1500, "meters"),
  4501. default: true
  4502. },
  4503. {
  4504. name: "Megamacro",
  4505. height: math.unit(200, "km")
  4506. },
  4507. {
  4508. name: "Gigamacro",
  4509. height: math.unit(100000, "km")
  4510. }
  4511. ]
  4512. ))
  4513. characterMakers.push(() => makeCharacter(
  4514. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4515. {
  4516. front: {
  4517. height: math.unit(6, "feet"),
  4518. weight: math.unit(175, "lb"),
  4519. name: "Front",
  4520. image: {
  4521. source: "./media/characters/mirova/front.svg",
  4522. extra: 3334 / 3071,
  4523. bottom: 42 / 3375.6
  4524. }
  4525. }
  4526. },
  4527. [
  4528. {
  4529. name: "Small",
  4530. height: math.unit(5, "meters")
  4531. },
  4532. {
  4533. name: "Macro",
  4534. height: math.unit(900, "meters"),
  4535. default: true
  4536. },
  4537. {
  4538. name: "Megamacro",
  4539. height: math.unit(135, "km")
  4540. },
  4541. {
  4542. name: "Gigamacro",
  4543. height: math.unit(20000, "km")
  4544. }
  4545. ]
  4546. ))
  4547. characterMakers.push(() => makeCharacter(
  4548. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4549. {
  4550. side: {
  4551. height: math.unit(28.35, "feet"),
  4552. weight: math.unit(99.75, "tons"),
  4553. name: "Side",
  4554. image: {
  4555. source: "./media/characters/asana-mech/side.svg",
  4556. extra: 923 / 699,
  4557. bottom: 50 / 975
  4558. }
  4559. },
  4560. chaingun: {
  4561. height: math.unit(7, "feet"),
  4562. weight: math.unit(2400, "lb"),
  4563. name: "Chaingun",
  4564. image: {
  4565. source: "./media/characters/asana-mech/chaingun.svg"
  4566. }
  4567. },
  4568. laser: {
  4569. height: math.unit(7.12, "feet"),
  4570. weight: math.unit(2000, "lb"),
  4571. name: "Laser",
  4572. image: {
  4573. source: "./media/characters/asana-mech/laser.svg"
  4574. }
  4575. },
  4576. },
  4577. [
  4578. {
  4579. name: "Normal",
  4580. height: math.unit(28.35, "feet"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "Macro",
  4585. height: math.unit(2500, "feet")
  4586. },
  4587. {
  4588. name: "Megamacro",
  4589. height: math.unit(25, "miles")
  4590. },
  4591. {
  4592. name: "Examacro",
  4593. height: math.unit(6e8, "lightyears")
  4594. },
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4599. {
  4600. front: {
  4601. height: math.unit(5, "meters"),
  4602. weight: math.unit(1000, "kg"),
  4603. name: "Front",
  4604. image: {
  4605. source: "./media/characters/asche/front.svg",
  4606. extra: 1258 / 1190,
  4607. bottom: 47 / 1305
  4608. }
  4609. },
  4610. frontUnderwear: {
  4611. height: math.unit(5, "meters"),
  4612. weight: math.unit(1000, "kg"),
  4613. name: "Front (Underwear)",
  4614. image: {
  4615. source: "./media/characters/asche/front-underwear.svg",
  4616. extra: 1258 / 1190,
  4617. bottom: 47 / 1305
  4618. }
  4619. },
  4620. frontDressed: {
  4621. height: math.unit(5, "meters"),
  4622. weight: math.unit(1000, "kg"),
  4623. name: "Front (Dressed)",
  4624. image: {
  4625. source: "./media/characters/asche/front-dressed.svg",
  4626. extra: 1258 / 1190,
  4627. bottom: 47 / 1305
  4628. }
  4629. },
  4630. frontArmor: {
  4631. height: math.unit(5, "meters"),
  4632. weight: math.unit(1000, "kg"),
  4633. name: "Front (Armored)",
  4634. image: {
  4635. source: "./media/characters/asche/front-armored.svg",
  4636. extra: 1374 / 1308,
  4637. bottom: 23 / 1397
  4638. }
  4639. },
  4640. mp724: {
  4641. height: math.unit(0.96, "meters"),
  4642. weight: math.unit(38, "kg"),
  4643. name: "H&K MP724",
  4644. image: {
  4645. source: "./media/characters/asche/h&k-mp724.svg"
  4646. }
  4647. },
  4648. side: {
  4649. height: math.unit(5, "meters"),
  4650. weight: math.unit(1000, "kg"),
  4651. name: "Side",
  4652. image: {
  4653. source: "./media/characters/asche/side.svg",
  4654. extra: 1717 / 1609,
  4655. bottom: 0.005
  4656. }
  4657. },
  4658. back: {
  4659. height: math.unit(5, "meters"),
  4660. weight: math.unit(1000, "kg"),
  4661. name: "Back",
  4662. image: {
  4663. source: "./media/characters/asche/back.svg",
  4664. extra: 1570 / 1501
  4665. }
  4666. },
  4667. },
  4668. [
  4669. {
  4670. name: "DEFCON 5",
  4671. height: math.unit(5, "meters")
  4672. },
  4673. {
  4674. name: "DEFCON 4",
  4675. height: math.unit(500, "meters"),
  4676. default: true
  4677. },
  4678. {
  4679. name: "DEFCON 3",
  4680. height: math.unit(5, "km")
  4681. },
  4682. {
  4683. name: "DEFCON 2",
  4684. height: math.unit(500, "km")
  4685. },
  4686. {
  4687. name: "DEFCON 1",
  4688. height: math.unit(500000, "km")
  4689. },
  4690. {
  4691. name: "DEFCON 0",
  4692. height: math.unit(3, "gigaparsecs")
  4693. },
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4698. {
  4699. front: {
  4700. height: math.unit(2, "meters"),
  4701. weight: math.unit(76, "kg"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/gale/front.svg"
  4705. }
  4706. },
  4707. frontAlt1: {
  4708. height: math.unit(2, "meters"),
  4709. weight: math.unit(76, "kg"),
  4710. name: "Front (Alt 1)",
  4711. image: {
  4712. source: "./media/characters/gale/front-alt-1.svg"
  4713. }
  4714. },
  4715. frontAlt2: {
  4716. height: math.unit(2, "meters"),
  4717. weight: math.unit(76, "kg"),
  4718. name: "Front (Alt 2)",
  4719. image: {
  4720. source: "./media/characters/gale/front-alt-2.svg"
  4721. }
  4722. },
  4723. },
  4724. [
  4725. {
  4726. name: "Normal",
  4727. height: math.unit(7, "feet")
  4728. },
  4729. {
  4730. name: "Macro",
  4731. height: math.unit(150, "feet"),
  4732. default: true
  4733. },
  4734. {
  4735. name: "Macro+",
  4736. height: math.unit(300, "feet")
  4737. },
  4738. ]
  4739. ))
  4740. characterMakers.push(() => makeCharacter(
  4741. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4742. {
  4743. front: {
  4744. height: math.unit(5 + 10/12, "feet"),
  4745. weight: math.unit(67, "kg"),
  4746. name: "Front",
  4747. image: {
  4748. source: "./media/characters/draylen/front.svg",
  4749. extra: 832/777,
  4750. bottom: 85/917
  4751. }
  4752. }
  4753. },
  4754. [
  4755. {
  4756. name: "Normal",
  4757. height: math.unit(5 + 10/12, "feet")
  4758. },
  4759. {
  4760. name: "Macro",
  4761. height: math.unit(150, "feet"),
  4762. default: true
  4763. }
  4764. ]
  4765. ))
  4766. characterMakers.push(() => makeCharacter(
  4767. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4768. {
  4769. front: {
  4770. height: math.unit(7 + 9 / 12, "feet"),
  4771. weight: math.unit(379, "lbs"),
  4772. name: "Front",
  4773. image: {
  4774. source: "./media/characters/chez/front.svg"
  4775. }
  4776. },
  4777. side: {
  4778. height: math.unit(7 + 9 / 12, "feet"),
  4779. weight: math.unit(379, "lbs"),
  4780. name: "Side",
  4781. image: {
  4782. source: "./media/characters/chez/side.svg"
  4783. }
  4784. }
  4785. },
  4786. [
  4787. {
  4788. name: "Normal",
  4789. height: math.unit(7 + 9 / 12, "feet"),
  4790. default: true
  4791. },
  4792. {
  4793. name: "God King",
  4794. height: math.unit(9750000, "meters")
  4795. }
  4796. ]
  4797. ))
  4798. characterMakers.push(() => makeCharacter(
  4799. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4800. {
  4801. front: {
  4802. height: math.unit(6, "feet"),
  4803. weight: math.unit(275, "lbs"),
  4804. name: "Front",
  4805. image: {
  4806. source: "./media/characters/kaylum/front.svg",
  4807. bottom: 0.01,
  4808. extra: 1166 / 1031
  4809. }
  4810. },
  4811. frontWingless: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(275, "lbs"),
  4814. name: "Front (Wingless)",
  4815. image: {
  4816. source: "./media/characters/kaylum/front-wingless.svg",
  4817. bottom: 0.01,
  4818. extra: 1117 / 1031
  4819. }
  4820. }
  4821. },
  4822. [
  4823. {
  4824. name: "Normal",
  4825. height: math.unit(3.05, "meters")
  4826. },
  4827. {
  4828. name: "Master",
  4829. height: math.unit(5.5, "meters")
  4830. },
  4831. {
  4832. name: "Rampage",
  4833. height: math.unit(19, "meters")
  4834. },
  4835. {
  4836. name: "Macro Lite",
  4837. height: math.unit(37, "meters")
  4838. },
  4839. {
  4840. name: "Hyper Predator",
  4841. height: math.unit(61, "meters")
  4842. },
  4843. {
  4844. name: "Macro",
  4845. height: math.unit(138, "meters"),
  4846. default: true
  4847. }
  4848. ]
  4849. ))
  4850. characterMakers.push(() => makeCharacter(
  4851. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4852. {
  4853. front: {
  4854. height: math.unit(5 + 5 / 12, "feet"),
  4855. weight: math.unit(120, "lbs"),
  4856. name: "Front",
  4857. image: {
  4858. source: "./media/characters/geta/front.svg",
  4859. extra: 1003/933,
  4860. bottom: 21/1024
  4861. }
  4862. },
  4863. paw: {
  4864. height: math.unit(0.35, "feet"),
  4865. name: "Paw",
  4866. image: {
  4867. source: "./media/characters/geta/paw.svg"
  4868. }
  4869. },
  4870. },
  4871. [
  4872. {
  4873. name: "Micro",
  4874. height: math.unit(3, "inches"),
  4875. default: true
  4876. },
  4877. {
  4878. name: "Normal",
  4879. height: math.unit(5 + 5 / 12, "feet")
  4880. }
  4881. ]
  4882. ))
  4883. characterMakers.push(() => makeCharacter(
  4884. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4885. {
  4886. front: {
  4887. height: math.unit(6, "feet"),
  4888. weight: math.unit(300, "lbs"),
  4889. name: "Front",
  4890. image: {
  4891. source: "./media/characters/tyrnn/front.svg"
  4892. }
  4893. }
  4894. },
  4895. [
  4896. {
  4897. name: "Main Height",
  4898. height: math.unit(355, "feet"),
  4899. default: true
  4900. },
  4901. {
  4902. name: "Fave. Height",
  4903. height: math.unit(2400, "feet")
  4904. }
  4905. ]
  4906. ))
  4907. characterMakers.push(() => makeCharacter(
  4908. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4909. {
  4910. front: {
  4911. height: math.unit(6, "feet"),
  4912. weight: math.unit(300, "lbs"),
  4913. name: "Front",
  4914. image: {
  4915. source: "./media/characters/appledectomy/front.svg"
  4916. }
  4917. }
  4918. },
  4919. [
  4920. {
  4921. name: "Macro",
  4922. height: math.unit(2500, "feet")
  4923. },
  4924. {
  4925. name: "Megamacro",
  4926. height: math.unit(50, "miles"),
  4927. default: true
  4928. },
  4929. {
  4930. name: "Gigamacro",
  4931. height: math.unit(5000, "miles")
  4932. },
  4933. {
  4934. name: "Teramacro",
  4935. height: math.unit(250000, "miles")
  4936. },
  4937. ]
  4938. ))
  4939. characterMakers.push(() => makeCharacter(
  4940. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4941. {
  4942. front: {
  4943. height: math.unit(6, "feet"),
  4944. weight: math.unit(200, "lbs"),
  4945. name: "Front",
  4946. image: {
  4947. source: "./media/characters/vulpes/front.svg",
  4948. extra: 573 / 543,
  4949. bottom: 0.033
  4950. }
  4951. },
  4952. side: {
  4953. height: math.unit(6, "feet"),
  4954. weight: math.unit(200, "lbs"),
  4955. name: "Side",
  4956. image: {
  4957. source: "./media/characters/vulpes/side.svg",
  4958. extra: 577 / 549,
  4959. bottom: 11 / 588
  4960. }
  4961. },
  4962. back: {
  4963. height: math.unit(6, "feet"),
  4964. weight: math.unit(200, "lbs"),
  4965. name: "Back",
  4966. image: {
  4967. source: "./media/characters/vulpes/back.svg",
  4968. extra: 573 / 549,
  4969. bottom: 20 / 593
  4970. }
  4971. },
  4972. feet: {
  4973. height: math.unit(1.276, "feet"),
  4974. name: "Feet",
  4975. image: {
  4976. source: "./media/characters/vulpes/feet.svg"
  4977. }
  4978. },
  4979. maw: {
  4980. height: math.unit(1.18, "feet"),
  4981. name: "Maw",
  4982. image: {
  4983. source: "./media/characters/vulpes/maw.svg"
  4984. }
  4985. },
  4986. },
  4987. [
  4988. {
  4989. name: "Micro",
  4990. height: math.unit(2, "inches")
  4991. },
  4992. {
  4993. name: "Normal",
  4994. height: math.unit(6.3, "feet")
  4995. },
  4996. {
  4997. name: "Macro",
  4998. height: math.unit(850, "feet")
  4999. },
  5000. {
  5001. name: "Megamacro",
  5002. height: math.unit(7500, "feet"),
  5003. default: true
  5004. },
  5005. {
  5006. name: "Gigamacro",
  5007. height: math.unit(570000, "miles")
  5008. }
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5013. {
  5014. front: {
  5015. height: math.unit(6, "feet"),
  5016. weight: math.unit(210, "lbs"),
  5017. name: "Front",
  5018. image: {
  5019. source: "./media/characters/rain-fallen/front.svg"
  5020. }
  5021. },
  5022. side: {
  5023. height: math.unit(6, "feet"),
  5024. weight: math.unit(210, "lbs"),
  5025. name: "Side",
  5026. image: {
  5027. source: "./media/characters/rain-fallen/side.svg"
  5028. }
  5029. },
  5030. back: {
  5031. height: math.unit(6, "feet"),
  5032. weight: math.unit(210, "lbs"),
  5033. name: "Back",
  5034. image: {
  5035. source: "./media/characters/rain-fallen/back.svg"
  5036. }
  5037. },
  5038. feral: {
  5039. height: math.unit(9, "feet"),
  5040. weight: math.unit(700, "lbs"),
  5041. name: "Feral",
  5042. image: {
  5043. source: "./media/characters/rain-fallen/feral.svg"
  5044. }
  5045. },
  5046. },
  5047. [
  5048. {
  5049. name: "Meddling with Mortals",
  5050. height: math.unit(8 + 8/12, "feet")
  5051. },
  5052. {
  5053. name: "Normal",
  5054. height: math.unit(5, "meter")
  5055. },
  5056. {
  5057. name: "Macro",
  5058. height: math.unit(150, "meter"),
  5059. default: true
  5060. },
  5061. {
  5062. name: "Megamacro",
  5063. height: math.unit(278e6, "meter")
  5064. },
  5065. {
  5066. name: "Gigamacro",
  5067. height: math.unit(2e9, "meter")
  5068. },
  5069. {
  5070. name: "Teramacro",
  5071. height: math.unit(8e12, "meter")
  5072. },
  5073. {
  5074. name: "Devourer",
  5075. height: math.unit(14, "zettameters")
  5076. },
  5077. {
  5078. name: "Scarlet King",
  5079. height: math.unit(18, "yottameters")
  5080. },
  5081. {
  5082. name: "Void",
  5083. height: math.unit(1e88, "yottameters")
  5084. }
  5085. ]
  5086. ))
  5087. characterMakers.push(() => makeCharacter(
  5088. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5089. {
  5090. standing: {
  5091. height: math.unit(6, "feet"),
  5092. weight: math.unit(180, "lbs"),
  5093. name: "Standing",
  5094. image: {
  5095. source: "./media/characters/zaakira/standing.svg",
  5096. extra: 1599/1504,
  5097. bottom: 39/1638
  5098. }
  5099. },
  5100. laying: {
  5101. height: math.unit(3, "feet"),
  5102. weight: math.unit(180, "lbs"),
  5103. name: "Laying",
  5104. image: {
  5105. source: "./media/characters/zaakira/laying.svg"
  5106. }
  5107. },
  5108. },
  5109. [
  5110. {
  5111. name: "Normal",
  5112. height: math.unit(12, "feet")
  5113. },
  5114. {
  5115. name: "Macro",
  5116. height: math.unit(279, "feet"),
  5117. default: true
  5118. }
  5119. ]
  5120. ))
  5121. characterMakers.push(() => makeCharacter(
  5122. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5123. {
  5124. femSfw: {
  5125. height: math.unit(8, "feet"),
  5126. weight: math.unit(350, "lb"),
  5127. name: "Fem",
  5128. image: {
  5129. source: "./media/characters/sigvald/fem-sfw.svg",
  5130. extra: 182 / 164,
  5131. bottom: 8.7 / 190.5
  5132. }
  5133. },
  5134. femNsfw: {
  5135. height: math.unit(8, "feet"),
  5136. weight: math.unit(350, "lb"),
  5137. name: "Fem (NSFW)",
  5138. image: {
  5139. source: "./media/characters/sigvald/fem-nsfw.svg",
  5140. extra: 182 / 164,
  5141. bottom: 8.7 / 190.5
  5142. }
  5143. },
  5144. maleNsfw: {
  5145. height: math.unit(8, "feet"),
  5146. weight: math.unit(350, "lb"),
  5147. name: "Male (NSFW)",
  5148. image: {
  5149. source: "./media/characters/sigvald/male-nsfw.svg",
  5150. extra: 182 / 164,
  5151. bottom: 8.7 / 190.5
  5152. }
  5153. },
  5154. hermNsfw: {
  5155. height: math.unit(8, "feet"),
  5156. weight: math.unit(350, "lb"),
  5157. name: "Herm (NSFW)",
  5158. image: {
  5159. source: "./media/characters/sigvald/herm-nsfw.svg",
  5160. extra: 182 / 164,
  5161. bottom: 8.7 / 190.5
  5162. }
  5163. },
  5164. dick: {
  5165. height: math.unit(2.36, "feet"),
  5166. name: "Dick",
  5167. image: {
  5168. source: "./media/characters/sigvald/dick.svg"
  5169. }
  5170. },
  5171. eye: {
  5172. height: math.unit(0.31, "feet"),
  5173. name: "Eye",
  5174. image: {
  5175. source: "./media/characters/sigvald/eye.svg"
  5176. }
  5177. },
  5178. mouth: {
  5179. height: math.unit(0.92, "feet"),
  5180. name: "Mouth",
  5181. image: {
  5182. source: "./media/characters/sigvald/mouth.svg"
  5183. }
  5184. },
  5185. paws: {
  5186. height: math.unit(2.2, "feet"),
  5187. name: "Paws",
  5188. image: {
  5189. source: "./media/characters/sigvald/paws.svg"
  5190. }
  5191. }
  5192. },
  5193. [
  5194. {
  5195. name: "Normal",
  5196. height: math.unit(8, "feet")
  5197. },
  5198. {
  5199. name: "Large",
  5200. height: math.unit(12, "feet")
  5201. },
  5202. {
  5203. name: "Larger",
  5204. height: math.unit(20, "feet")
  5205. },
  5206. {
  5207. name: "Macro",
  5208. height: math.unit(150, "feet")
  5209. },
  5210. {
  5211. name: "Macro+",
  5212. height: math.unit(200, "feet"),
  5213. default: true
  5214. },
  5215. ]
  5216. ))
  5217. characterMakers.push(() => makeCharacter(
  5218. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5219. {
  5220. side: {
  5221. height: math.unit(12, "feet"),
  5222. weight: math.unit(2000, "kg"),
  5223. name: "Side",
  5224. image: {
  5225. source: "./media/characters/scott/side.svg",
  5226. extra: 754 / 724,
  5227. bottom: 0.069
  5228. }
  5229. },
  5230. upright: {
  5231. height: math.unit(12, "feet"),
  5232. weight: math.unit(2000, "kg"),
  5233. name: "Upright",
  5234. image: {
  5235. source: "./media/characters/scott/upright.svg",
  5236. extra: 3881 / 3722,
  5237. bottom: 0.05
  5238. }
  5239. },
  5240. },
  5241. [
  5242. {
  5243. name: "Normal",
  5244. height: math.unit(12, "feet"),
  5245. default: true
  5246. },
  5247. ]
  5248. ))
  5249. characterMakers.push(() => makeCharacter(
  5250. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5251. {
  5252. side: {
  5253. height: math.unit(8, "meters"),
  5254. weight: math.unit(84755, "lbs"),
  5255. name: "Side",
  5256. image: {
  5257. source: "./media/characters/tobias/side.svg",
  5258. extra: 1474 / 1096,
  5259. bottom: 38.9 / 1513.1235
  5260. }
  5261. },
  5262. },
  5263. [
  5264. {
  5265. name: "Normal",
  5266. height: math.unit(8, "meters"),
  5267. default: true
  5268. },
  5269. ]
  5270. ))
  5271. characterMakers.push(() => makeCharacter(
  5272. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5273. {
  5274. front: {
  5275. height: math.unit(5.5, "feet"),
  5276. weight: math.unit(400, "lbs"),
  5277. name: "Front",
  5278. image: {
  5279. source: "./media/characters/kieran/front.svg",
  5280. extra: 2694 / 2364,
  5281. bottom: 217 / 2908
  5282. }
  5283. },
  5284. side: {
  5285. height: math.unit(5.5, "feet"),
  5286. weight: math.unit(400, "lbs"),
  5287. name: "Side",
  5288. image: {
  5289. source: "./media/characters/kieran/side.svg",
  5290. extra: 875 / 777,
  5291. bottom: 84.6 / 959
  5292. }
  5293. },
  5294. },
  5295. [
  5296. {
  5297. name: "Normal",
  5298. height: math.unit(5.5, "feet"),
  5299. default: true
  5300. },
  5301. ]
  5302. ))
  5303. characterMakers.push(() => makeCharacter(
  5304. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5305. {
  5306. side: {
  5307. height: math.unit(2, "meters"),
  5308. weight: math.unit(70, "kg"),
  5309. name: "Side",
  5310. image: {
  5311. source: "./media/characters/sanya/side.svg",
  5312. bottom: 0.02,
  5313. extra: 1.02
  5314. }
  5315. },
  5316. },
  5317. [
  5318. {
  5319. name: "Small",
  5320. height: math.unit(2, "meters")
  5321. },
  5322. {
  5323. name: "Normal",
  5324. height: math.unit(3, "meters")
  5325. },
  5326. {
  5327. name: "Macro",
  5328. height: math.unit(16, "meters"),
  5329. default: true
  5330. },
  5331. ]
  5332. ))
  5333. characterMakers.push(() => makeCharacter(
  5334. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5335. {
  5336. front: {
  5337. height: math.unit(2, "meters"),
  5338. weight: math.unit(120, "kg"),
  5339. name: "Front",
  5340. image: {
  5341. source: "./media/characters/miranda/front.svg",
  5342. extra: 195 / 185,
  5343. bottom: 10.9 / 206.5
  5344. }
  5345. },
  5346. back: {
  5347. height: math.unit(2, "meters"),
  5348. weight: math.unit(120, "kg"),
  5349. name: "Back",
  5350. image: {
  5351. source: "./media/characters/miranda/back.svg",
  5352. extra: 201 / 193,
  5353. bottom: 2.3 / 203.7
  5354. }
  5355. },
  5356. },
  5357. [
  5358. {
  5359. name: "Normal",
  5360. height: math.unit(10, "feet"),
  5361. default: true
  5362. }
  5363. ]
  5364. ))
  5365. characterMakers.push(() => makeCharacter(
  5366. { name: "James", species: ["deer"], tags: ["anthro"] },
  5367. {
  5368. side: {
  5369. height: math.unit(2, "meters"),
  5370. weight: math.unit(100, "kg"),
  5371. name: "Front",
  5372. image: {
  5373. source: "./media/characters/james/front.svg",
  5374. extra: 10 / 8.5
  5375. }
  5376. },
  5377. },
  5378. [
  5379. {
  5380. name: "Normal",
  5381. height: math.unit(8.5, "feet"),
  5382. default: true
  5383. }
  5384. ]
  5385. ))
  5386. characterMakers.push(() => makeCharacter(
  5387. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5388. {
  5389. side: {
  5390. height: math.unit(9.5, "feet"),
  5391. weight: math.unit(2500, "lbs"),
  5392. name: "Side",
  5393. image: {
  5394. source: "./media/characters/heather/side.svg"
  5395. }
  5396. },
  5397. },
  5398. [
  5399. {
  5400. name: "Normal",
  5401. height: math.unit(9.5, "feet"),
  5402. default: true
  5403. }
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5408. {
  5409. side: {
  5410. height: math.unit(6.5, "feet"),
  5411. weight: math.unit(400, "lbs"),
  5412. name: "Side",
  5413. image: {
  5414. source: "./media/characters/lukas/side.svg",
  5415. extra: 7.25 / 6.5
  5416. }
  5417. },
  5418. },
  5419. [
  5420. {
  5421. name: "Normal",
  5422. height: math.unit(6.5, "feet"),
  5423. default: true
  5424. }
  5425. ]
  5426. ))
  5427. characterMakers.push(() => makeCharacter(
  5428. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5429. {
  5430. side: {
  5431. height: math.unit(5, "feet"),
  5432. weight: math.unit(3000, "lbs"),
  5433. name: "Side",
  5434. image: {
  5435. source: "./media/characters/louise/side.svg"
  5436. }
  5437. },
  5438. },
  5439. [
  5440. {
  5441. name: "Normal",
  5442. height: math.unit(5, "feet"),
  5443. default: true
  5444. }
  5445. ]
  5446. ))
  5447. characterMakers.push(() => makeCharacter(
  5448. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5449. {
  5450. side: {
  5451. height: math.unit(6, "feet"),
  5452. weight: math.unit(150, "lbs"),
  5453. name: "Side",
  5454. image: {
  5455. source: "./media/characters/ramona/side.svg",
  5456. extra: 871/854,
  5457. bottom: 41/912
  5458. }
  5459. },
  5460. },
  5461. [
  5462. {
  5463. name: "Normal",
  5464. height: math.unit(5.3, "meters"),
  5465. default: true
  5466. },
  5467. {
  5468. name: "Macro",
  5469. height: math.unit(20, "stories")
  5470. },
  5471. {
  5472. name: "Macro+",
  5473. height: math.unit(50, "stories")
  5474. },
  5475. ]
  5476. ))
  5477. characterMakers.push(() => makeCharacter(
  5478. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5479. {
  5480. standing: {
  5481. height: math.unit(5.75, "feet"),
  5482. weight: math.unit(160, "lbs"),
  5483. name: "Standing",
  5484. image: {
  5485. source: "./media/characters/deerpuff/standing.svg",
  5486. extra: 682 / 624
  5487. }
  5488. },
  5489. sitting: {
  5490. height: math.unit(5.75 / 1.79, "feet"),
  5491. weight: math.unit(160, "lbs"),
  5492. name: "Sitting",
  5493. image: {
  5494. source: "./media/characters/deerpuff/sitting.svg",
  5495. bottom: 44 / 400,
  5496. extra: 1
  5497. }
  5498. },
  5499. taurLaying: {
  5500. height: math.unit(6, "feet"),
  5501. weight: math.unit(400, "lbs"),
  5502. name: "Taur (Laying)",
  5503. image: {
  5504. source: "./media/characters/deerpuff/taur-laying.svg"
  5505. }
  5506. },
  5507. },
  5508. [
  5509. {
  5510. name: "Puffball",
  5511. height: math.unit(6, "inches")
  5512. },
  5513. {
  5514. name: "Normalpuff",
  5515. height: math.unit(5.75, "feet")
  5516. },
  5517. {
  5518. name: "Macropuff",
  5519. height: math.unit(1500, "feet"),
  5520. default: true
  5521. },
  5522. {
  5523. name: "Megapuff",
  5524. height: math.unit(500, "miles")
  5525. },
  5526. {
  5527. name: "Gigapuff",
  5528. height: math.unit(250000, "miles")
  5529. },
  5530. {
  5531. name: "Omegapuff",
  5532. height: math.unit(1000, "lightyears")
  5533. },
  5534. ]
  5535. ))
  5536. characterMakers.push(() => makeCharacter(
  5537. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5538. {
  5539. stomping: {
  5540. height: math.unit(6, "feet"),
  5541. weight: math.unit(170, "lbs"),
  5542. name: "Stomping",
  5543. image: {
  5544. source: "./media/characters/vivian/stomping.svg"
  5545. }
  5546. },
  5547. sitting: {
  5548. height: math.unit(6 / 1.75, "feet"),
  5549. weight: math.unit(170, "lbs"),
  5550. name: "Sitting",
  5551. image: {
  5552. source: "./media/characters/vivian/sitting.svg",
  5553. bottom: 1 / 6.4,
  5554. extra: 1,
  5555. }
  5556. },
  5557. },
  5558. [
  5559. {
  5560. name: "Normal",
  5561. height: math.unit(7, "feet"),
  5562. default: true
  5563. },
  5564. {
  5565. name: "Macro",
  5566. height: math.unit(10, "stories")
  5567. },
  5568. {
  5569. name: "Macro+",
  5570. height: math.unit(30, "stories")
  5571. },
  5572. {
  5573. name: "Megamacro",
  5574. height: math.unit(10, "miles")
  5575. },
  5576. {
  5577. name: "Megamacro+",
  5578. height: math.unit(2750000, "meters")
  5579. },
  5580. ]
  5581. ))
  5582. characterMakers.push(() => makeCharacter(
  5583. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5584. {
  5585. front: {
  5586. height: math.unit(6, "feet"),
  5587. weight: math.unit(160, "lbs"),
  5588. name: "Front",
  5589. image: {
  5590. source: "./media/characters/prince/front.svg",
  5591. extra: 3400 / 3000
  5592. }
  5593. },
  5594. jumping: {
  5595. height: math.unit(6, "feet"),
  5596. weight: math.unit(160, "lbs"),
  5597. name: "Jumping",
  5598. image: {
  5599. source: "./media/characters/prince/jump.svg",
  5600. extra: 2555 / 2134
  5601. }
  5602. },
  5603. },
  5604. [
  5605. {
  5606. name: "Normal",
  5607. height: math.unit(7.75, "feet"),
  5608. default: true
  5609. },
  5610. {
  5611. name: "Not cute",
  5612. height: math.unit(17, "feet")
  5613. },
  5614. {
  5615. name: "I said NOT",
  5616. height: math.unit(91, "feet")
  5617. },
  5618. {
  5619. name: "Please stop",
  5620. height: math.unit(560, "feet")
  5621. },
  5622. {
  5623. name: "What have you done",
  5624. height: math.unit(2200, "feet")
  5625. },
  5626. {
  5627. name: "Deer God",
  5628. height: math.unit(3.6, "miles")
  5629. },
  5630. ]
  5631. ))
  5632. characterMakers.push(() => makeCharacter(
  5633. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5634. {
  5635. standing: {
  5636. height: math.unit(6, "feet"),
  5637. weight: math.unit(300, "lbs"),
  5638. name: "Standing",
  5639. image: {
  5640. source: "./media/characters/psymon/standing.svg",
  5641. extra: 1888 / 1810,
  5642. bottom: 0.05
  5643. }
  5644. },
  5645. slithering: {
  5646. height: math.unit(6, "feet"),
  5647. weight: math.unit(300, "lbs"),
  5648. name: "Slithering",
  5649. image: {
  5650. source: "./media/characters/psymon/slithering.svg",
  5651. extra: 1330 / 1224
  5652. }
  5653. },
  5654. slitheringAlt: {
  5655. height: math.unit(6, "feet"),
  5656. weight: math.unit(300, "lbs"),
  5657. name: "Slithering (Alt)",
  5658. image: {
  5659. source: "./media/characters/psymon/slithering-alt.svg",
  5660. extra: 1330 / 1224
  5661. }
  5662. },
  5663. },
  5664. [
  5665. {
  5666. name: "Normal",
  5667. height: math.unit(11.25, "feet"),
  5668. default: true
  5669. },
  5670. {
  5671. name: "Large",
  5672. height: math.unit(27, "feet")
  5673. },
  5674. {
  5675. name: "Giant",
  5676. height: math.unit(87, "feet")
  5677. },
  5678. {
  5679. name: "Macro",
  5680. height: math.unit(365, "feet")
  5681. },
  5682. {
  5683. name: "Megamacro",
  5684. height: math.unit(3, "miles")
  5685. },
  5686. {
  5687. name: "World Serpent",
  5688. height: math.unit(8000, "miles")
  5689. },
  5690. ]
  5691. ))
  5692. characterMakers.push(() => makeCharacter(
  5693. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5694. {
  5695. front: {
  5696. height: math.unit(6, "feet"),
  5697. weight: math.unit(180, "lbs"),
  5698. name: "Front",
  5699. image: {
  5700. source: "./media/characters/daimos/front.svg",
  5701. extra: 4160 / 3897,
  5702. bottom: 0.021
  5703. }
  5704. }
  5705. },
  5706. [
  5707. {
  5708. name: "Normal",
  5709. height: math.unit(8, "feet"),
  5710. default: true
  5711. },
  5712. {
  5713. name: "Big Dog",
  5714. height: math.unit(22, "feet")
  5715. },
  5716. {
  5717. name: "Macro",
  5718. height: math.unit(127, "feet")
  5719. },
  5720. {
  5721. name: "Megamacro",
  5722. height: math.unit(3600, "feet")
  5723. },
  5724. ]
  5725. ))
  5726. characterMakers.push(() => makeCharacter(
  5727. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5728. {
  5729. side: {
  5730. height: math.unit(6, "feet"),
  5731. weight: math.unit(180, "lbs"),
  5732. name: "Side",
  5733. image: {
  5734. source: "./media/characters/blake/side.svg",
  5735. extra: 1212 / 1120,
  5736. bottom: 0.05
  5737. }
  5738. },
  5739. crouched: {
  5740. height: math.unit(6 * 0.57, "feet"),
  5741. weight: math.unit(180, "lbs"),
  5742. name: "Crouched",
  5743. image: {
  5744. source: "./media/characters/blake/crouched.svg",
  5745. extra: 840 / 587,
  5746. bottom: 0.04
  5747. }
  5748. },
  5749. bent: {
  5750. height: math.unit(6 * 0.75, "feet"),
  5751. weight: math.unit(180, "lbs"),
  5752. name: "Bent",
  5753. image: {
  5754. source: "./media/characters/blake/bent.svg",
  5755. extra: 592 / 544,
  5756. bottom: 0.035
  5757. }
  5758. },
  5759. },
  5760. [
  5761. {
  5762. name: "Normal",
  5763. height: math.unit(8 + 1 / 6, "feet"),
  5764. default: true
  5765. },
  5766. {
  5767. name: "Big Backside",
  5768. height: math.unit(37, "feet")
  5769. },
  5770. {
  5771. name: "Subway Shredder",
  5772. height: math.unit(72, "feet")
  5773. },
  5774. {
  5775. name: "City Carver",
  5776. height: math.unit(1675, "feet")
  5777. },
  5778. {
  5779. name: "Tectonic Tweaker",
  5780. height: math.unit(2300, "miles")
  5781. },
  5782. ]
  5783. ))
  5784. characterMakers.push(() => makeCharacter(
  5785. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5786. {
  5787. front: {
  5788. height: math.unit(6, "feet"),
  5789. weight: math.unit(180, "lbs"),
  5790. name: "Front",
  5791. image: {
  5792. source: "./media/characters/guisetto/front.svg",
  5793. extra: 856 / 817,
  5794. bottom: 0.06
  5795. }
  5796. },
  5797. airborne: {
  5798. height: math.unit(6, "feet"),
  5799. weight: math.unit(180, "lbs"),
  5800. name: "Airborne",
  5801. image: {
  5802. source: "./media/characters/guisetto/airborne.svg",
  5803. extra: 584 / 525
  5804. }
  5805. },
  5806. },
  5807. [
  5808. {
  5809. name: "Normal",
  5810. height: math.unit(10 + 11 / 12, "feet"),
  5811. default: true
  5812. },
  5813. {
  5814. name: "Large",
  5815. height: math.unit(35, "feet")
  5816. },
  5817. {
  5818. name: "Macro",
  5819. height: math.unit(475, "feet")
  5820. },
  5821. ]
  5822. ))
  5823. characterMakers.push(() => makeCharacter(
  5824. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5825. {
  5826. front: {
  5827. height: math.unit(6, "feet"),
  5828. weight: math.unit(180, "lbs"),
  5829. name: "Front",
  5830. image: {
  5831. source: "./media/characters/luxor/front.svg",
  5832. extra: 2940 / 2152
  5833. }
  5834. },
  5835. back: {
  5836. height: math.unit(6, "feet"),
  5837. weight: math.unit(180, "lbs"),
  5838. name: "Back",
  5839. image: {
  5840. source: "./media/characters/luxor/back.svg",
  5841. extra: 1083 / 960
  5842. }
  5843. },
  5844. },
  5845. [
  5846. {
  5847. name: "Normal",
  5848. height: math.unit(5 + 5 / 6, "feet"),
  5849. default: true
  5850. },
  5851. {
  5852. name: "Lamp",
  5853. height: math.unit(50, "feet")
  5854. },
  5855. {
  5856. name: "Lämp",
  5857. height: math.unit(300, "feet")
  5858. },
  5859. {
  5860. name: "The sun is a lamp",
  5861. height: math.unit(250000, "miles")
  5862. },
  5863. ]
  5864. ))
  5865. characterMakers.push(() => makeCharacter(
  5866. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5867. {
  5868. front: {
  5869. height: math.unit(6, "feet"),
  5870. weight: math.unit(50, "lbs"),
  5871. name: "Front",
  5872. image: {
  5873. source: "./media/characters/huoyan/front.svg"
  5874. }
  5875. },
  5876. side: {
  5877. height: math.unit(6, "feet"),
  5878. weight: math.unit(180, "lbs"),
  5879. name: "Side",
  5880. image: {
  5881. source: "./media/characters/huoyan/side.svg"
  5882. }
  5883. },
  5884. },
  5885. [
  5886. {
  5887. name: "Chef",
  5888. height: math.unit(9, "feet")
  5889. },
  5890. {
  5891. name: "Normal",
  5892. height: math.unit(65, "feet"),
  5893. default: true
  5894. },
  5895. {
  5896. name: "Macro",
  5897. height: math.unit(780, "feet")
  5898. },
  5899. {
  5900. name: "Flaming Mountain",
  5901. height: math.unit(4.8, "miles")
  5902. },
  5903. {
  5904. name: "Celestial",
  5905. height: math.unit(765000, "miles")
  5906. },
  5907. ]
  5908. ))
  5909. characterMakers.push(() => makeCharacter(
  5910. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5911. {
  5912. front: {
  5913. height: math.unit(5 + 3 / 4, "feet"),
  5914. weight: math.unit(120, "lbs"),
  5915. name: "Front",
  5916. image: {
  5917. source: "./media/characters/tails/front.svg"
  5918. }
  5919. }
  5920. },
  5921. [
  5922. {
  5923. name: "Normal",
  5924. height: math.unit(5 + 3 / 4, "feet"),
  5925. default: true
  5926. }
  5927. ]
  5928. ))
  5929. characterMakers.push(() => makeCharacter(
  5930. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5931. {
  5932. front: {
  5933. height: math.unit(4, "feet"),
  5934. weight: math.unit(50, "lbs"),
  5935. name: "Front",
  5936. image: {
  5937. source: "./media/characters/rainy/front.svg"
  5938. }
  5939. }
  5940. },
  5941. [
  5942. {
  5943. name: "Macro",
  5944. height: math.unit(800, "feet"),
  5945. default: true
  5946. }
  5947. ]
  5948. ))
  5949. characterMakers.push(() => makeCharacter(
  5950. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5951. {
  5952. front: {
  5953. height: math.unit(6, "feet"),
  5954. weight: math.unit(150, "lbs"),
  5955. name: "Front",
  5956. image: {
  5957. source: "./media/characters/rainier/front.svg"
  5958. }
  5959. }
  5960. },
  5961. [
  5962. {
  5963. name: "Micro",
  5964. height: math.unit(2, "mm"),
  5965. default: true
  5966. }
  5967. ]
  5968. ))
  5969. characterMakers.push(() => makeCharacter(
  5970. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5971. {
  5972. front: {
  5973. height: math.unit(8 + 4/12, "feet"),
  5974. name: "Front",
  5975. image: {
  5976. source: "./media/characters/andy-renard/front.svg",
  5977. extra: 1839/1726,
  5978. bottom: 134/1973
  5979. }
  5980. },
  5981. back: {
  5982. height: math.unit(8 + 4/12, "feet"),
  5983. name: "Back",
  5984. image: {
  5985. source: "./media/characters/andy-renard/back.svg",
  5986. extra: 1838/1710,
  5987. bottom: 105/1943
  5988. }
  5989. },
  5990. },
  5991. [
  5992. {
  5993. name: "Tall",
  5994. height: math.unit(8 + 4/12, "feet")
  5995. },
  5996. {
  5997. name: "Mini Macro",
  5998. height: math.unit(15, "feet"),
  5999. default: true
  6000. },
  6001. {
  6002. name: "Macro",
  6003. height: math.unit(100, "feet")
  6004. },
  6005. {
  6006. name: "Mega Macro",
  6007. height: math.unit(1000, "feet")
  6008. },
  6009. {
  6010. name: "Giga Macro",
  6011. height: math.unit(10, "miles")
  6012. },
  6013. {
  6014. name: "God Macro",
  6015. height: math.unit(1, "multiverse")
  6016. },
  6017. ]
  6018. ))
  6019. characterMakers.push(() => makeCharacter(
  6020. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6021. {
  6022. front: {
  6023. height: math.unit(6, "feet"),
  6024. weight: math.unit(210, "lbs"),
  6025. name: "Front",
  6026. image: {
  6027. source: "./media/characters/cimmaron/front-sfw.svg",
  6028. extra: 701 / 676,
  6029. bottom: 0.046
  6030. }
  6031. },
  6032. back: {
  6033. height: math.unit(6, "feet"),
  6034. weight: math.unit(210, "lbs"),
  6035. name: "Back",
  6036. image: {
  6037. source: "./media/characters/cimmaron/back-sfw.svg",
  6038. extra: 701 / 676,
  6039. bottom: 0.046
  6040. }
  6041. },
  6042. frontNsfw: {
  6043. height: math.unit(6, "feet"),
  6044. weight: math.unit(210, "lbs"),
  6045. name: "Front (NSFW)",
  6046. image: {
  6047. source: "./media/characters/cimmaron/front-nsfw.svg",
  6048. extra: 701 / 676,
  6049. bottom: 0.046
  6050. }
  6051. },
  6052. backNsfw: {
  6053. height: math.unit(6, "feet"),
  6054. weight: math.unit(210, "lbs"),
  6055. name: "Back (NSFW)",
  6056. image: {
  6057. source: "./media/characters/cimmaron/back-nsfw.svg",
  6058. extra: 701 / 676,
  6059. bottom: 0.046
  6060. }
  6061. },
  6062. dick: {
  6063. height: math.unit(1.714, "feet"),
  6064. name: "Dick",
  6065. image: {
  6066. source: "./media/characters/cimmaron/dick.svg"
  6067. }
  6068. },
  6069. },
  6070. [
  6071. {
  6072. name: "Normal",
  6073. height: math.unit(6, "feet"),
  6074. default: true
  6075. },
  6076. {
  6077. name: "Macro Mayor",
  6078. height: math.unit(350, "meters")
  6079. },
  6080. ]
  6081. ))
  6082. characterMakers.push(() => makeCharacter(
  6083. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6084. {
  6085. front: {
  6086. height: math.unit(6, "feet"),
  6087. weight: math.unit(200, "lbs"),
  6088. name: "Front",
  6089. image: {
  6090. source: "./media/characters/akari/front.svg",
  6091. extra: 962 / 901,
  6092. bottom: 0.04
  6093. }
  6094. }
  6095. },
  6096. [
  6097. {
  6098. name: "Micro",
  6099. height: math.unit(5, "inches"),
  6100. default: true
  6101. },
  6102. {
  6103. name: "Normal",
  6104. height: math.unit(7, "feet")
  6105. },
  6106. ]
  6107. ))
  6108. characterMakers.push(() => makeCharacter(
  6109. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6110. {
  6111. front: {
  6112. height: math.unit(6, "feet"),
  6113. weight: math.unit(140, "lbs"),
  6114. name: "Front",
  6115. image: {
  6116. source: "./media/characters/cynosura/front.svg",
  6117. extra: 896 / 847
  6118. }
  6119. },
  6120. back: {
  6121. height: math.unit(6, "feet"),
  6122. weight: math.unit(140, "lbs"),
  6123. name: "Back",
  6124. image: {
  6125. source: "./media/characters/cynosura/back.svg",
  6126. extra: 1365 / 1250
  6127. }
  6128. },
  6129. },
  6130. [
  6131. {
  6132. name: "Micro",
  6133. height: math.unit(4, "inches")
  6134. },
  6135. {
  6136. name: "Normal",
  6137. height: math.unit(5.75, "feet"),
  6138. default: true
  6139. },
  6140. {
  6141. name: "Tall",
  6142. height: math.unit(10, "feet")
  6143. },
  6144. {
  6145. name: "Big",
  6146. height: math.unit(20, "feet")
  6147. },
  6148. {
  6149. name: "Macro",
  6150. height: math.unit(50, "feet")
  6151. },
  6152. ]
  6153. ))
  6154. characterMakers.push(() => makeCharacter(
  6155. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6156. {
  6157. front: {
  6158. height: math.unit(13 + 2/12, "feet"),
  6159. weight: math.unit(800, "kg"),
  6160. name: "Front",
  6161. image: {
  6162. source: "./media/characters/gin/front.svg",
  6163. extra: 1312/1191,
  6164. bottom: 45/1357
  6165. }
  6166. },
  6167. mouth: {
  6168. height: math.unit(2.39 * 1.8, "feet"),
  6169. name: "Mouth",
  6170. image: {
  6171. source: "./media/characters/gin/mouth.svg"
  6172. }
  6173. },
  6174. hand: {
  6175. height: math.unit(1.57 * 2.19, "feet"),
  6176. name: "Hand",
  6177. image: {
  6178. source: "./media/characters/gin/hand.svg"
  6179. }
  6180. },
  6181. foot: {
  6182. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6183. name: "Foot",
  6184. image: {
  6185. source: "./media/characters/gin/foot.svg"
  6186. }
  6187. },
  6188. sole: {
  6189. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6190. name: "Sole",
  6191. image: {
  6192. source: "./media/characters/gin/sole.svg"
  6193. }
  6194. },
  6195. },
  6196. [
  6197. {
  6198. name: "Very Small",
  6199. height: math.unit(13 + 2 / 12, "feet")
  6200. },
  6201. {
  6202. name: "Micro",
  6203. height: math.unit(600, "miles")
  6204. },
  6205. {
  6206. name: "Regular",
  6207. height: math.unit(20, "earths"),
  6208. default: true
  6209. },
  6210. {
  6211. name: "Macro",
  6212. height: math.unit(2.2, "solarradii")
  6213. },
  6214. {
  6215. name: "Teramacro",
  6216. height: math.unit(1.2, "galaxies")
  6217. },
  6218. {
  6219. name: "Omegamacro",
  6220. height: math.unit(200, "universes")
  6221. },
  6222. ]
  6223. ))
  6224. characterMakers.push(() => makeCharacter(
  6225. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6226. {
  6227. front: {
  6228. height: math.unit(6 + 1 / 6, "feet"),
  6229. weight: math.unit(178, "lbs"),
  6230. name: "Front",
  6231. image: {
  6232. source: "./media/characters/guy/front.svg"
  6233. }
  6234. }
  6235. },
  6236. [
  6237. {
  6238. name: "Normal",
  6239. height: math.unit(6 + 1 / 6, "feet"),
  6240. default: true
  6241. },
  6242. {
  6243. name: "Large",
  6244. height: math.unit(25 + 7 / 12, "feet")
  6245. },
  6246. {
  6247. name: "Macro",
  6248. height: math.unit(60 + 9 / 12, "feet")
  6249. },
  6250. {
  6251. name: "Macro+",
  6252. height: math.unit(246, "feet")
  6253. },
  6254. {
  6255. name: "Macro++",
  6256. height: math.unit(878, "feet")
  6257. }
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6262. {
  6263. front: {
  6264. height: math.unit(9, "feet"),
  6265. weight: math.unit(800, "lbs"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/tiberius/front.svg",
  6269. extra: 2295 / 2071
  6270. }
  6271. },
  6272. back: {
  6273. height: math.unit(9, "feet"),
  6274. weight: math.unit(800, "lbs"),
  6275. name: "Back",
  6276. image: {
  6277. source: "./media/characters/tiberius/back.svg",
  6278. extra: 2373 / 2160
  6279. }
  6280. },
  6281. },
  6282. [
  6283. {
  6284. name: "Normal",
  6285. height: math.unit(9, "feet"),
  6286. default: true
  6287. }
  6288. ]
  6289. ))
  6290. characterMakers.push(() => makeCharacter(
  6291. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6292. {
  6293. front: {
  6294. height: math.unit(6, "feet"),
  6295. weight: math.unit(600, "lbs"),
  6296. name: "Front",
  6297. image: {
  6298. source: "./media/characters/surgo/front.svg",
  6299. extra: 3591 / 2227
  6300. }
  6301. },
  6302. back: {
  6303. height: math.unit(6, "feet"),
  6304. weight: math.unit(600, "lbs"),
  6305. name: "Back",
  6306. image: {
  6307. source: "./media/characters/surgo/back.svg",
  6308. extra: 3557 / 2228
  6309. }
  6310. },
  6311. laying: {
  6312. height: math.unit(6 * 0.85, "feet"),
  6313. weight: math.unit(600, "lbs"),
  6314. name: "Laying",
  6315. image: {
  6316. source: "./media/characters/surgo/laying.svg"
  6317. }
  6318. },
  6319. },
  6320. [
  6321. {
  6322. name: "Normal",
  6323. height: math.unit(6, "feet"),
  6324. default: true
  6325. }
  6326. ]
  6327. ))
  6328. characterMakers.push(() => makeCharacter(
  6329. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6330. {
  6331. side: {
  6332. height: math.unit(6, "feet"),
  6333. weight: math.unit(150, "lbs"),
  6334. name: "Side",
  6335. image: {
  6336. source: "./media/characters/cibus/side.svg",
  6337. extra: 800 / 400
  6338. }
  6339. },
  6340. },
  6341. [
  6342. {
  6343. name: "Normal",
  6344. height: math.unit(6, "feet"),
  6345. default: true
  6346. }
  6347. ]
  6348. ))
  6349. characterMakers.push(() => makeCharacter(
  6350. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6351. {
  6352. front: {
  6353. height: math.unit(6, "feet"),
  6354. weight: math.unit(240, "lbs"),
  6355. name: "Front",
  6356. image: {
  6357. source: "./media/characters/nibbles/front.svg"
  6358. }
  6359. },
  6360. side: {
  6361. height: math.unit(6, "feet"),
  6362. weight: math.unit(240, "lbs"),
  6363. name: "Side",
  6364. image: {
  6365. source: "./media/characters/nibbles/side.svg"
  6366. }
  6367. },
  6368. },
  6369. [
  6370. {
  6371. name: "Normal",
  6372. height: math.unit(9, "feet"),
  6373. default: true
  6374. }
  6375. ]
  6376. ))
  6377. characterMakers.push(() => makeCharacter(
  6378. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6379. {
  6380. side: {
  6381. height: math.unit(5 + 1 / 6, "feet"),
  6382. weight: math.unit(130, "lbs"),
  6383. name: "Side",
  6384. image: {
  6385. source: "./media/characters/rikky/side.svg",
  6386. extra: 851 / 801
  6387. }
  6388. },
  6389. },
  6390. [
  6391. {
  6392. name: "Normal",
  6393. height: math.unit(5 + 1 / 6, "feet")
  6394. },
  6395. {
  6396. name: "Macro",
  6397. height: math.unit(152, "feet"),
  6398. default: true
  6399. },
  6400. {
  6401. name: "Megamacro",
  6402. height: math.unit(7, "miles")
  6403. }
  6404. ]
  6405. ))
  6406. characterMakers.push(() => makeCharacter(
  6407. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6408. {
  6409. side: {
  6410. height: math.unit(370, "cm"),
  6411. weight: math.unit(350, "lbs"),
  6412. name: "Side",
  6413. image: {
  6414. source: "./media/characters/malfressa/side.svg"
  6415. }
  6416. },
  6417. walking: {
  6418. height: math.unit(370, "cm"),
  6419. weight: math.unit(350, "lbs"),
  6420. name: "Walking",
  6421. image: {
  6422. source: "./media/characters/malfressa/walking.svg"
  6423. }
  6424. },
  6425. feral: {
  6426. height: math.unit(2500, "cm"),
  6427. weight: math.unit(100000, "lbs"),
  6428. name: "Feral",
  6429. image: {
  6430. source: "./media/characters/malfressa/feral.svg",
  6431. extra: 2108 / 837,
  6432. bottom: 0.02
  6433. }
  6434. },
  6435. },
  6436. [
  6437. {
  6438. name: "Normal",
  6439. height: math.unit(370, "cm")
  6440. },
  6441. {
  6442. name: "Macro",
  6443. height: math.unit(300, "meters"),
  6444. default: true
  6445. }
  6446. ]
  6447. ))
  6448. characterMakers.push(() => makeCharacter(
  6449. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6450. {
  6451. front: {
  6452. height: math.unit(6, "feet"),
  6453. weight: math.unit(60, "kg"),
  6454. name: "Front",
  6455. image: {
  6456. source: "./media/characters/jaro/front.svg",
  6457. extra: 845/817,
  6458. bottom: 45/890
  6459. }
  6460. },
  6461. back: {
  6462. height: math.unit(6, "feet"),
  6463. weight: math.unit(60, "kg"),
  6464. name: "Back",
  6465. image: {
  6466. source: "./media/characters/jaro/back.svg",
  6467. extra: 847/817,
  6468. bottom: 34/881
  6469. }
  6470. },
  6471. },
  6472. [
  6473. {
  6474. name: "Micro",
  6475. height: math.unit(7, "inches")
  6476. },
  6477. {
  6478. name: "Normal",
  6479. height: math.unit(5.5, "feet"),
  6480. default: true
  6481. },
  6482. {
  6483. name: "Minimacro",
  6484. height: math.unit(20, "feet")
  6485. },
  6486. {
  6487. name: "Macro",
  6488. height: math.unit(200, "meters")
  6489. }
  6490. ]
  6491. ))
  6492. characterMakers.push(() => makeCharacter(
  6493. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6494. {
  6495. front: {
  6496. height: math.unit(6, "feet"),
  6497. weight: math.unit(195, "lb"),
  6498. name: "Front",
  6499. image: {
  6500. source: "./media/characters/rogue/front.svg"
  6501. }
  6502. },
  6503. },
  6504. [
  6505. {
  6506. name: "Macro",
  6507. height: math.unit(90, "feet"),
  6508. default: true
  6509. },
  6510. ]
  6511. ))
  6512. characterMakers.push(() => makeCharacter(
  6513. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6514. {
  6515. standing: {
  6516. height: math.unit(5 + 8 / 12, "feet"),
  6517. weight: math.unit(140, "lb"),
  6518. name: "Standing",
  6519. image: {
  6520. source: "./media/characters/piper/standing.svg",
  6521. extra: 1440/1284,
  6522. bottom: 66/1506
  6523. }
  6524. },
  6525. running: {
  6526. height: math.unit(5 + 8 / 12, "feet"),
  6527. weight: math.unit(140, "lb"),
  6528. name: "Running",
  6529. image: {
  6530. source: "./media/characters/piper/running.svg",
  6531. extra: 3948/3655,
  6532. bottom: 0/3948
  6533. }
  6534. },
  6535. sole: {
  6536. height: math.unit(0.81, "feet"),
  6537. weight: math.unit(2, "kg"),
  6538. name: "Sole",
  6539. image: {
  6540. source: "./media/characters/piper/sole.svg"
  6541. }
  6542. },
  6543. nipple: {
  6544. height: math.unit(0.25, "feet"),
  6545. weight: math.unit(1.5, "lb"),
  6546. name: "Nipple",
  6547. image: {
  6548. source: "./media/characters/piper/nipple.svg"
  6549. }
  6550. },
  6551. head: {
  6552. height: math.unit(1.1, "feet"),
  6553. name: "Head",
  6554. image: {
  6555. source: "./media/characters/piper/head.svg"
  6556. }
  6557. },
  6558. },
  6559. [
  6560. {
  6561. name: "Micro",
  6562. height: math.unit(2, "inches")
  6563. },
  6564. {
  6565. name: "Normal",
  6566. height: math.unit(5 + 8 / 12, "feet")
  6567. },
  6568. {
  6569. name: "Macro",
  6570. height: math.unit(250, "feet"),
  6571. default: true
  6572. },
  6573. {
  6574. name: "Megamacro",
  6575. height: math.unit(7, "miles")
  6576. },
  6577. ]
  6578. ))
  6579. characterMakers.push(() => makeCharacter(
  6580. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6581. {
  6582. front: {
  6583. height: math.unit(6, "feet"),
  6584. weight: math.unit(220, "lb"),
  6585. name: "Front",
  6586. image: {
  6587. source: "./media/characters/gemini/front.svg"
  6588. }
  6589. },
  6590. back: {
  6591. height: math.unit(6, "feet"),
  6592. weight: math.unit(220, "lb"),
  6593. name: "Back",
  6594. image: {
  6595. source: "./media/characters/gemini/back.svg"
  6596. }
  6597. },
  6598. kneeling: {
  6599. height: math.unit(6 / 1.5, "feet"),
  6600. weight: math.unit(220, "lb"),
  6601. name: "Kneeling",
  6602. image: {
  6603. source: "./media/characters/gemini/kneeling.svg",
  6604. bottom: 0.02
  6605. }
  6606. },
  6607. },
  6608. [
  6609. {
  6610. name: "Macro",
  6611. height: math.unit(300, "meters"),
  6612. default: true
  6613. },
  6614. {
  6615. name: "Megamacro",
  6616. height: math.unit(6900, "meters")
  6617. },
  6618. ]
  6619. ))
  6620. characterMakers.push(() => makeCharacter(
  6621. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6622. {
  6623. anthro: {
  6624. height: math.unit(2.35, "meters"),
  6625. weight: math.unit(73, "kg"),
  6626. name: "Anthro",
  6627. image: {
  6628. source: "./media/characters/alicia/anthro.svg",
  6629. extra: 2571 / 2385,
  6630. bottom: 75 / 2648
  6631. }
  6632. },
  6633. paw: {
  6634. height: math.unit(1.32, "feet"),
  6635. name: "Paw",
  6636. image: {
  6637. source: "./media/characters/alicia/paw.svg"
  6638. }
  6639. },
  6640. feral: {
  6641. height: math.unit(1.69, "meters"),
  6642. weight: math.unit(73, "kg"),
  6643. name: "Feral",
  6644. image: {
  6645. source: "./media/characters/alicia/feral.svg",
  6646. extra: 2123 / 1715,
  6647. bottom: 222 / 2349
  6648. }
  6649. },
  6650. },
  6651. [
  6652. {
  6653. name: "Normal",
  6654. height: math.unit(2.35, "meters")
  6655. },
  6656. {
  6657. name: "Macro",
  6658. height: math.unit(60, "meters"),
  6659. default: true
  6660. },
  6661. {
  6662. name: "Megamacro",
  6663. height: math.unit(10000, "kilometers")
  6664. },
  6665. ]
  6666. ))
  6667. characterMakers.push(() => makeCharacter(
  6668. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6669. {
  6670. front: {
  6671. height: math.unit(7, "feet"),
  6672. weight: math.unit(250, "lbs"),
  6673. name: "Front",
  6674. image: {
  6675. source: "./media/characters/archy/front.svg"
  6676. }
  6677. }
  6678. },
  6679. [
  6680. {
  6681. name: "Micro",
  6682. height: math.unit(1, "inch")
  6683. },
  6684. {
  6685. name: "Shorty",
  6686. height: math.unit(5, "feet")
  6687. },
  6688. {
  6689. name: "Normal",
  6690. height: math.unit(7, "feet")
  6691. },
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(600, "meters"),
  6695. default: true
  6696. },
  6697. {
  6698. name: "Megamacro",
  6699. height: math.unit(1, "mile")
  6700. },
  6701. ]
  6702. ))
  6703. characterMakers.push(() => makeCharacter(
  6704. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6705. {
  6706. front: {
  6707. height: math.unit(1.65, "meters"),
  6708. weight: math.unit(74, "kg"),
  6709. name: "Front",
  6710. image: {
  6711. source: "./media/characters/berri/front.svg",
  6712. extra: 857 / 837,
  6713. bottom: 18 / 877
  6714. }
  6715. },
  6716. bum: {
  6717. height: math.unit(1.46, "feet"),
  6718. name: "Bum",
  6719. image: {
  6720. source: "./media/characters/berri/bum.svg"
  6721. }
  6722. },
  6723. mouth: {
  6724. height: math.unit(0.44, "feet"),
  6725. name: "Mouth",
  6726. image: {
  6727. source: "./media/characters/berri/mouth.svg"
  6728. }
  6729. },
  6730. paw: {
  6731. height: math.unit(0.826, "feet"),
  6732. name: "Paw",
  6733. image: {
  6734. source: "./media/characters/berri/paw.svg"
  6735. }
  6736. },
  6737. },
  6738. [
  6739. {
  6740. name: "Normal",
  6741. height: math.unit(1.65, "meters")
  6742. },
  6743. {
  6744. name: "Macro",
  6745. height: math.unit(60, "m"),
  6746. default: true
  6747. },
  6748. {
  6749. name: "Megamacro",
  6750. height: math.unit(9.213, "km")
  6751. },
  6752. {
  6753. name: "Planet Eater",
  6754. height: math.unit(489, "megameters")
  6755. },
  6756. {
  6757. name: "Teramacro",
  6758. height: math.unit(2471635000000, "meters")
  6759. },
  6760. {
  6761. name: "Examacro",
  6762. height: math.unit(8.0624e+26, "meters")
  6763. }
  6764. ]
  6765. ))
  6766. characterMakers.push(() => makeCharacter(
  6767. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6768. {
  6769. front: {
  6770. height: math.unit(1.72, "meters"),
  6771. weight: math.unit(68, "kg"),
  6772. name: "Front",
  6773. image: {
  6774. source: "./media/characters/lexi/front.svg"
  6775. }
  6776. }
  6777. },
  6778. [
  6779. {
  6780. name: "Very Smol",
  6781. height: math.unit(10, "mm")
  6782. },
  6783. {
  6784. name: "Micro",
  6785. height: math.unit(6.8, "cm"),
  6786. default: true
  6787. },
  6788. {
  6789. name: "Normal",
  6790. height: math.unit(1.72, "m")
  6791. }
  6792. ]
  6793. ))
  6794. characterMakers.push(() => makeCharacter(
  6795. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6796. {
  6797. front: {
  6798. height: math.unit(1.69, "meters"),
  6799. weight: math.unit(68, "kg"),
  6800. name: "Front",
  6801. image: {
  6802. source: "./media/characters/martin/front.svg",
  6803. extra: 596 / 581
  6804. }
  6805. }
  6806. },
  6807. [
  6808. {
  6809. name: "Micro",
  6810. height: math.unit(6.85, "cm"),
  6811. default: true
  6812. },
  6813. {
  6814. name: "Normal",
  6815. height: math.unit(1.69, "m")
  6816. }
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6821. {
  6822. front: {
  6823. height: math.unit(1.69, "meters"),
  6824. weight: math.unit(68, "kg"),
  6825. name: "Front",
  6826. image: {
  6827. source: "./media/characters/juno/front.svg"
  6828. }
  6829. }
  6830. },
  6831. [
  6832. {
  6833. name: "Micro",
  6834. height: math.unit(7, "cm")
  6835. },
  6836. {
  6837. name: "Normal",
  6838. height: math.unit(1.89, "m")
  6839. },
  6840. {
  6841. name: "Macro",
  6842. height: math.unit(353, "meters"),
  6843. default: true
  6844. }
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6849. {
  6850. front: {
  6851. height: math.unit(1.93, "meters"),
  6852. weight: math.unit(83, "kg"),
  6853. name: "Front",
  6854. image: {
  6855. source: "./media/characters/samantha/front.svg"
  6856. }
  6857. },
  6858. frontClothed: {
  6859. height: math.unit(1.93, "meters"),
  6860. weight: math.unit(83, "kg"),
  6861. name: "Front (Clothed)",
  6862. image: {
  6863. source: "./media/characters/samantha/front-clothed.svg"
  6864. }
  6865. },
  6866. back: {
  6867. height: math.unit(1.93, "meters"),
  6868. weight: math.unit(83, "kg"),
  6869. name: "Back",
  6870. image: {
  6871. source: "./media/characters/samantha/back.svg"
  6872. }
  6873. },
  6874. },
  6875. [
  6876. {
  6877. name: "Normal",
  6878. height: math.unit(1.93, "m")
  6879. },
  6880. {
  6881. name: "Macro",
  6882. height: math.unit(74, "meters"),
  6883. default: true
  6884. },
  6885. {
  6886. name: "Macro+",
  6887. height: math.unit(223, "meters"),
  6888. },
  6889. {
  6890. name: "Megamacro",
  6891. height: math.unit(8381, "meters"),
  6892. },
  6893. {
  6894. name: "Megamacro+",
  6895. height: math.unit(12000, "kilometers")
  6896. },
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6901. {
  6902. front: {
  6903. height: math.unit(1.92, "meters"),
  6904. weight: math.unit(80, "kg"),
  6905. name: "Front",
  6906. image: {
  6907. source: "./media/characters/dr-clay/front.svg"
  6908. }
  6909. },
  6910. frontClothed: {
  6911. height: math.unit(1.92, "meters"),
  6912. weight: math.unit(80, "kg"),
  6913. name: "Front (Clothed)",
  6914. image: {
  6915. source: "./media/characters/dr-clay/front-clothed.svg"
  6916. }
  6917. }
  6918. },
  6919. [
  6920. {
  6921. name: "Normal",
  6922. height: math.unit(1.92, "m")
  6923. },
  6924. {
  6925. name: "Macro",
  6926. height: math.unit(214, "meters"),
  6927. default: true
  6928. },
  6929. {
  6930. name: "Macro+",
  6931. height: math.unit(12.237, "meters"),
  6932. },
  6933. {
  6934. name: "Megamacro",
  6935. height: math.unit(557, "megameters"),
  6936. },
  6937. {
  6938. name: "Unimaginable",
  6939. height: math.unit(120e9, "lightyears")
  6940. },
  6941. ]
  6942. ))
  6943. characterMakers.push(() => makeCharacter(
  6944. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6945. {
  6946. front: {
  6947. height: math.unit(2, "meters"),
  6948. weight: math.unit(80, "kg"),
  6949. name: "Front",
  6950. image: {
  6951. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6952. }
  6953. }
  6954. },
  6955. [
  6956. {
  6957. name: "Teramacro",
  6958. height: math.unit(500000, "lightyears"),
  6959. default: true
  6960. },
  6961. ]
  6962. ))
  6963. characterMakers.push(() => makeCharacter(
  6964. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6965. {
  6966. crux: {
  6967. height: math.unit(2, "meters"),
  6968. weight: math.unit(150, "kg"),
  6969. name: "Crux",
  6970. image: {
  6971. source: "./media/characters/vemus/crux.svg",
  6972. extra: 1074/936,
  6973. bottom: 23/1097
  6974. }
  6975. },
  6976. skunkTanuki: {
  6977. height: math.unit(2, "meters"),
  6978. weight: math.unit(150, "kg"),
  6979. name: "Skunk-Tanuki",
  6980. image: {
  6981. source: "./media/characters/vemus/skunk-tanuki.svg",
  6982. extra: 926/893,
  6983. bottom: 20/946
  6984. }
  6985. },
  6986. },
  6987. [
  6988. {
  6989. name: "Normal",
  6990. height: math.unit(3.75, "meters"),
  6991. default: true
  6992. },
  6993. {
  6994. name: "Big",
  6995. height: math.unit(8, "meters")
  6996. },
  6997. {
  6998. name: "Macro",
  6999. height: math.unit(100, "meters")
  7000. },
  7001. {
  7002. name: "Macro+",
  7003. height: math.unit(1500, "meters")
  7004. },
  7005. {
  7006. name: "Stellar",
  7007. height: math.unit(14e8, "meters")
  7008. },
  7009. ]
  7010. ))
  7011. characterMakers.push(() => makeCharacter(
  7012. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7013. {
  7014. front: {
  7015. height: math.unit(2, "meters"),
  7016. weight: math.unit(70, "kg"),
  7017. name: "Front",
  7018. image: {
  7019. source: "./media/characters/beherit/front.svg",
  7020. extra: 1234/1109,
  7021. bottom: 55/1289
  7022. }
  7023. }
  7024. },
  7025. [
  7026. {
  7027. name: "Normal",
  7028. height: math.unit(6, "feet")
  7029. },
  7030. {
  7031. name: "Lorg",
  7032. height: math.unit(25, "feet"),
  7033. default: true
  7034. },
  7035. {
  7036. name: "Lorger",
  7037. height: math.unit(75, "feet")
  7038. },
  7039. {
  7040. name: "Macro",
  7041. height: math.unit(200, "meters")
  7042. },
  7043. ]
  7044. ))
  7045. characterMakers.push(() => makeCharacter(
  7046. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7047. {
  7048. front: {
  7049. height: math.unit(2, "meters"),
  7050. weight: math.unit(150, "kg"),
  7051. name: "Front",
  7052. image: {
  7053. source: "./media/characters/everett/front.svg",
  7054. extra: 1017/866,
  7055. bottom: 86/1103
  7056. }
  7057. },
  7058. paw: {
  7059. height: math.unit(2 / 3.6, "meters"),
  7060. name: "Paw",
  7061. image: {
  7062. source: "./media/characters/everett/paw.svg"
  7063. }
  7064. },
  7065. },
  7066. [
  7067. {
  7068. name: "Normal",
  7069. height: math.unit(15, "feet"),
  7070. default: true
  7071. },
  7072. {
  7073. name: "Lorg",
  7074. height: math.unit(70, "feet"),
  7075. default: true
  7076. },
  7077. {
  7078. name: "Lorger",
  7079. height: math.unit(250, "feet")
  7080. },
  7081. {
  7082. name: "Macro",
  7083. height: math.unit(500, "meters")
  7084. },
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(2, "meters"),
  7092. weight: math.unit(86, "kg"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/rose/front.svg",
  7096. extra: 1785/1636,
  7097. bottom: 30/1815
  7098. },
  7099. form: "liom",
  7100. default: true
  7101. },
  7102. frontSporty: {
  7103. height: math.unit(2, "meters"),
  7104. weight: math.unit(86, "kg"),
  7105. name: "Front (Sporty)",
  7106. image: {
  7107. source: "./media/characters/rose/front-sporty.svg",
  7108. extra: 350/335,
  7109. bottom: 10/360
  7110. },
  7111. form: "liom"
  7112. },
  7113. frontAlt: {
  7114. height: math.unit(1.6, "meters"),
  7115. weight: math.unit(86, "kg"),
  7116. name: "Front (Alt)",
  7117. image: {
  7118. source: "./media/characters/rose/front-alt.svg",
  7119. extra: 299/283,
  7120. bottom: 3/302
  7121. },
  7122. form: "liom"
  7123. },
  7124. plush: {
  7125. height: math.unit(2, "meters"),
  7126. weight: math.unit(86/3, "kg"),
  7127. name: "Plush",
  7128. image: {
  7129. source: "./media/characters/rose/plush.svg",
  7130. extra: 361/337,
  7131. bottom: 11/372
  7132. },
  7133. form: "plush",
  7134. default: true
  7135. },
  7136. faeStanding: {
  7137. height: math.unit(10, "cm"),
  7138. weight: math.unit(10, "grams"),
  7139. name: "Standing",
  7140. image: {
  7141. source: "./media/characters/rose/fae-standing.svg",
  7142. extra: 1189/1060,
  7143. bottom: 27/1216
  7144. },
  7145. form: "fae",
  7146. default: true
  7147. },
  7148. faeSitting: {
  7149. height: math.unit(5, "cm"),
  7150. weight: math.unit(10, "grams"),
  7151. name: "Sitting",
  7152. image: {
  7153. source: "./media/characters/rose/fae-sitting.svg",
  7154. extra: 737/577,
  7155. bottom: 356/1093
  7156. },
  7157. form: "fae"
  7158. },
  7159. faePaw: {
  7160. height: math.unit(1.35, "cm"),
  7161. name: "Paw",
  7162. image: {
  7163. source: "./media/characters/rose/fae-paw.svg"
  7164. },
  7165. form: "fae"
  7166. },
  7167. },
  7168. [
  7169. {
  7170. name: "True Micro",
  7171. height: math.unit(9, "cm"),
  7172. form: "liom"
  7173. },
  7174. {
  7175. name: "Micro",
  7176. height: math.unit(16, "cm"),
  7177. form: "liom"
  7178. },
  7179. {
  7180. name: "Normal",
  7181. height: math.unit(1.85, "meters"),
  7182. default: true,
  7183. form: "liom"
  7184. },
  7185. {
  7186. name: "Mini-Macro",
  7187. height: math.unit(5, "meters"),
  7188. form: "liom"
  7189. },
  7190. {
  7191. name: "Macro",
  7192. height: math.unit(15, "meters"),
  7193. form: "liom"
  7194. },
  7195. {
  7196. name: "True Macro",
  7197. height: math.unit(40, "meters"),
  7198. form: "liom"
  7199. },
  7200. {
  7201. name: "City Scale",
  7202. height: math.unit(1, "km"),
  7203. form: "liom"
  7204. },
  7205. {
  7206. name: "Plushie",
  7207. height: math.unit(9, "cm"),
  7208. form: "plush",
  7209. default: true
  7210. },
  7211. {
  7212. name: "Fae",
  7213. height: math.unit(10, "cm"),
  7214. form: "fae",
  7215. default: true
  7216. },
  7217. ],
  7218. {
  7219. "liom": {
  7220. name: "Liom"
  7221. },
  7222. "plush": {
  7223. name: "Plush"
  7224. },
  7225. "fae": {
  7226. name: "Fae Fox",
  7227. default: true
  7228. }
  7229. }
  7230. ))
  7231. characterMakers.push(() => makeCharacter(
  7232. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7233. {
  7234. front: {
  7235. height: math.unit(2, "meters"),
  7236. weight: math.unit(350, "lbs"),
  7237. name: "Front",
  7238. image: {
  7239. source: "./media/characters/regal/front.svg"
  7240. }
  7241. },
  7242. back: {
  7243. height: math.unit(2, "meters"),
  7244. weight: math.unit(350, "lbs"),
  7245. name: "Back",
  7246. image: {
  7247. source: "./media/characters/regal/back.svg"
  7248. }
  7249. },
  7250. },
  7251. [
  7252. {
  7253. name: "Macro",
  7254. height: math.unit(350, "feet"),
  7255. default: true
  7256. }
  7257. ]
  7258. ))
  7259. characterMakers.push(() => makeCharacter(
  7260. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7261. {
  7262. front: {
  7263. height: math.unit(4 + 11 / 12, "feet"),
  7264. weight: math.unit(100, "lbs"),
  7265. name: "Front",
  7266. image: {
  7267. source: "./media/characters/opal/front.svg"
  7268. }
  7269. },
  7270. frontAlt: {
  7271. height: math.unit(4 + 11 / 12, "feet"),
  7272. weight: math.unit(100, "lbs"),
  7273. name: "Front (Alt)",
  7274. image: {
  7275. source: "./media/characters/opal/front-alt.svg"
  7276. }
  7277. },
  7278. },
  7279. [
  7280. {
  7281. name: "Small",
  7282. height: math.unit(4 + 11 / 12, "feet")
  7283. },
  7284. {
  7285. name: "Normal",
  7286. height: math.unit(20, "feet"),
  7287. default: true
  7288. },
  7289. {
  7290. name: "Macro",
  7291. height: math.unit(120, "feet")
  7292. },
  7293. {
  7294. name: "Megamacro",
  7295. height: math.unit(80, "miles")
  7296. },
  7297. {
  7298. name: "True Size",
  7299. height: math.unit(100000, "lightyears")
  7300. },
  7301. ]
  7302. ))
  7303. characterMakers.push(() => makeCharacter(
  7304. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7305. {
  7306. front: {
  7307. height: math.unit(6, "feet"),
  7308. weight: math.unit(200, "lbs"),
  7309. name: "Front",
  7310. image: {
  7311. source: "./media/characters/vector-wuff/front.svg"
  7312. }
  7313. }
  7314. },
  7315. [
  7316. {
  7317. name: "Normal",
  7318. height: math.unit(2.8, "meters")
  7319. },
  7320. {
  7321. name: "Macro",
  7322. height: math.unit(450, "meters"),
  7323. default: true
  7324. },
  7325. {
  7326. name: "Megamacro",
  7327. height: math.unit(15, "kilometers")
  7328. }
  7329. ]
  7330. ))
  7331. characterMakers.push(() => makeCharacter(
  7332. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7333. {
  7334. front: {
  7335. height: math.unit(6, "feet"),
  7336. weight: math.unit(256, "lbs"),
  7337. name: "Front",
  7338. image: {
  7339. source: "./media/characters/dannik/front.svg"
  7340. }
  7341. }
  7342. },
  7343. [
  7344. {
  7345. name: "Macro",
  7346. height: math.unit(69.57, "meters"),
  7347. default: true
  7348. },
  7349. ]
  7350. ))
  7351. characterMakers.push(() => makeCharacter(
  7352. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7353. {
  7354. front: {
  7355. height: math.unit(6, "feet"),
  7356. weight: math.unit(120, "lbs"),
  7357. name: "Front",
  7358. image: {
  7359. source: "./media/characters/azura-saharah/front.svg"
  7360. }
  7361. },
  7362. back: {
  7363. height: math.unit(6, "feet"),
  7364. weight: math.unit(120, "lbs"),
  7365. name: "Back",
  7366. image: {
  7367. source: "./media/characters/azura-saharah/back.svg"
  7368. }
  7369. },
  7370. },
  7371. [
  7372. {
  7373. name: "Macro",
  7374. height: math.unit(100, "feet"),
  7375. default: true
  7376. },
  7377. ]
  7378. ))
  7379. characterMakers.push(() => makeCharacter(
  7380. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7381. {
  7382. side: {
  7383. height: math.unit(5 + 4 / 12, "feet"),
  7384. weight: math.unit(163, "lbs"),
  7385. name: "Side",
  7386. image: {
  7387. source: "./media/characters/kennedy/side.svg"
  7388. }
  7389. }
  7390. },
  7391. [
  7392. {
  7393. name: "Standard Doggo",
  7394. height: math.unit(5 + 4 / 12, "feet")
  7395. },
  7396. {
  7397. name: "Big Doggo",
  7398. height: math.unit(25 + 3 / 12, "feet"),
  7399. default: true
  7400. },
  7401. ]
  7402. ))
  7403. characterMakers.push(() => makeCharacter(
  7404. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7405. {
  7406. front: {
  7407. height: math.unit(5 + 5/12, "feet"),
  7408. weight: math.unit(100, "lbs"),
  7409. name: "Front",
  7410. image: {
  7411. source: "./media/characters/odios-de-lunar/front.svg",
  7412. extra: 1468/1323,
  7413. bottom: 22/1490
  7414. }
  7415. }
  7416. },
  7417. [
  7418. {
  7419. name: "Micro",
  7420. height: math.unit(3, "inches")
  7421. },
  7422. {
  7423. name: "Normal",
  7424. height: math.unit(5.5, "feet"),
  7425. default: true
  7426. },
  7427. {
  7428. name: "Macro",
  7429. height: math.unit(100, "feet")
  7430. },
  7431. ]
  7432. ))
  7433. characterMakers.push(() => makeCharacter(
  7434. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7435. {
  7436. back: {
  7437. height: math.unit(6, "feet"),
  7438. weight: math.unit(220, "lbs"),
  7439. name: "Back",
  7440. image: {
  7441. source: "./media/characters/mandake/back.svg"
  7442. }
  7443. }
  7444. },
  7445. [
  7446. {
  7447. name: "Normal",
  7448. height: math.unit(7, "feet"),
  7449. default: true
  7450. },
  7451. {
  7452. name: "Macro",
  7453. height: math.unit(78, "feet")
  7454. },
  7455. {
  7456. name: "Macro+",
  7457. height: math.unit(300, "meters")
  7458. },
  7459. {
  7460. name: "Macro++",
  7461. height: math.unit(2400, "feet")
  7462. },
  7463. {
  7464. name: "Megamacro",
  7465. height: math.unit(5167, "meters")
  7466. },
  7467. {
  7468. name: "Gigamacro",
  7469. height: math.unit(41769, "miles")
  7470. },
  7471. ]
  7472. ))
  7473. characterMakers.push(() => makeCharacter(
  7474. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7475. {
  7476. front: {
  7477. height: math.unit(6, "feet"),
  7478. weight: math.unit(120, "lbs"),
  7479. name: "Front",
  7480. image: {
  7481. source: "./media/characters/yozey/front.svg"
  7482. }
  7483. },
  7484. frontAlt: {
  7485. height: math.unit(6, "feet"),
  7486. weight: math.unit(120, "lbs"),
  7487. name: "Front (Alt)",
  7488. image: {
  7489. source: "./media/characters/yozey/front-alt.svg"
  7490. }
  7491. },
  7492. side: {
  7493. height: math.unit(6, "feet"),
  7494. weight: math.unit(120, "lbs"),
  7495. name: "Side",
  7496. image: {
  7497. source: "./media/characters/yozey/side.svg"
  7498. }
  7499. },
  7500. },
  7501. [
  7502. {
  7503. name: "Micro",
  7504. height: math.unit(3, "inches"),
  7505. default: true
  7506. },
  7507. {
  7508. name: "Normal",
  7509. height: math.unit(6, "feet")
  7510. }
  7511. ]
  7512. ))
  7513. characterMakers.push(() => makeCharacter(
  7514. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7515. {
  7516. front: {
  7517. height: math.unit(6, "feet"),
  7518. weight: math.unit(103, "lbs"),
  7519. name: "Front",
  7520. image: {
  7521. source: "./media/characters/valeska-voss/front.svg"
  7522. }
  7523. }
  7524. },
  7525. [
  7526. {
  7527. name: "Mini-Sized Sub",
  7528. height: math.unit(3.1, "inches")
  7529. },
  7530. {
  7531. name: "Mid-Sized Sub",
  7532. height: math.unit(6.2, "inches")
  7533. },
  7534. {
  7535. name: "Full-Sized Sub",
  7536. height: math.unit(9.3, "inches")
  7537. },
  7538. {
  7539. name: "Normal",
  7540. height: math.unit(5 + 2 / 12, "foot"),
  7541. default: true
  7542. },
  7543. ]
  7544. ))
  7545. characterMakers.push(() => makeCharacter(
  7546. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7547. {
  7548. front: {
  7549. height: math.unit(6, "feet"),
  7550. weight: math.unit(160, "lbs"),
  7551. name: "Front",
  7552. image: {
  7553. source: "./media/characters/gene-zeta/front.svg",
  7554. extra: 3006 / 2826,
  7555. bottom: 182 / 3188
  7556. }
  7557. }
  7558. },
  7559. [
  7560. {
  7561. name: "Micro",
  7562. height: math.unit(6, "inches")
  7563. },
  7564. {
  7565. name: "Normal",
  7566. height: math.unit(5 + 11 / 12, "foot"),
  7567. default: true
  7568. },
  7569. {
  7570. name: "Macro",
  7571. height: math.unit(140, "feet")
  7572. },
  7573. {
  7574. name: "Supercharged",
  7575. height: math.unit(2500, "feet")
  7576. },
  7577. ]
  7578. ))
  7579. characterMakers.push(() => makeCharacter(
  7580. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7581. {
  7582. front: {
  7583. height: math.unit(6, "feet"),
  7584. weight: math.unit(350, "lbs"),
  7585. name: "Front",
  7586. image: {
  7587. source: "./media/characters/razinox/front.svg",
  7588. extra: 1686 / 1548,
  7589. bottom: 28.2 / 1868
  7590. }
  7591. },
  7592. back: {
  7593. height: math.unit(6, "feet"),
  7594. weight: math.unit(350, "lbs"),
  7595. name: "Back",
  7596. image: {
  7597. source: "./media/characters/razinox/back.svg",
  7598. extra: 1660 / 1590,
  7599. bottom: 15 / 1665
  7600. }
  7601. },
  7602. },
  7603. [
  7604. {
  7605. name: "Normal",
  7606. height: math.unit(10 + 8 / 12, "foot")
  7607. },
  7608. {
  7609. name: "Minimacro",
  7610. height: math.unit(15, "foot")
  7611. },
  7612. {
  7613. name: "Macro",
  7614. height: math.unit(60, "foot"),
  7615. default: true
  7616. },
  7617. {
  7618. name: "Megamacro",
  7619. height: math.unit(5, "miles")
  7620. },
  7621. {
  7622. name: "Gigamacro",
  7623. height: math.unit(6000, "miles")
  7624. },
  7625. ]
  7626. ))
  7627. characterMakers.push(() => makeCharacter(
  7628. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7629. {
  7630. front: {
  7631. height: math.unit(6, "feet"),
  7632. weight: math.unit(150, "lbs"),
  7633. name: "Front",
  7634. image: {
  7635. source: "./media/characters/cobalt/front.svg"
  7636. }
  7637. }
  7638. },
  7639. [
  7640. {
  7641. name: "Normal",
  7642. height: math.unit(8 + 1 / 12, "foot")
  7643. },
  7644. {
  7645. name: "Macro",
  7646. height: math.unit(111, "foot"),
  7647. default: true
  7648. },
  7649. {
  7650. name: "Supracosmic",
  7651. height: math.unit(1e42, "feet")
  7652. },
  7653. ]
  7654. ))
  7655. characterMakers.push(() => makeCharacter(
  7656. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7657. {
  7658. front: {
  7659. height: math.unit(5, "inches"),
  7660. name: "Front",
  7661. image: {
  7662. source: "./media/characters/amanda/front.svg",
  7663. extra: 926/791,
  7664. bottom: 38/964
  7665. }
  7666. },
  7667. back: {
  7668. height: math.unit(5, "inches"),
  7669. name: "Back",
  7670. image: {
  7671. source: "./media/characters/amanda/back.svg",
  7672. extra: 909/805,
  7673. bottom: 43/952
  7674. }
  7675. },
  7676. },
  7677. [
  7678. {
  7679. name: "Micro",
  7680. height: math.unit(5, "inches"),
  7681. default: true
  7682. },
  7683. ]
  7684. ))
  7685. characterMakers.push(() => makeCharacter(
  7686. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7687. {
  7688. front: {
  7689. height: math.unit(2.75, "meters"),
  7690. weight: math.unit(1200, "lb"),
  7691. name: "Front",
  7692. image: {
  7693. source: "./media/characters/teal/front.svg",
  7694. extra: 2463 / 2320,
  7695. bottom: 166 / 2629
  7696. }
  7697. },
  7698. back: {
  7699. height: math.unit(2.75, "meters"),
  7700. weight: math.unit(1200, "lb"),
  7701. name: "Back",
  7702. image: {
  7703. source: "./media/characters/teal/back.svg",
  7704. extra: 2580 / 2489,
  7705. bottom: 151 / 2731
  7706. }
  7707. },
  7708. sitting: {
  7709. height: math.unit(1.9, "meters"),
  7710. weight: math.unit(1200, "lb"),
  7711. name: "Sitting",
  7712. image: {
  7713. source: "./media/characters/teal/sitting.svg",
  7714. extra: 623 / 590,
  7715. bottom: 121 / 744
  7716. }
  7717. },
  7718. standing: {
  7719. height: math.unit(2.75, "meters"),
  7720. weight: math.unit(1200, "lb"),
  7721. name: "Standing",
  7722. image: {
  7723. source: "./media/characters/teal/standing.svg",
  7724. extra: 923 / 893,
  7725. bottom: 60 / 983
  7726. }
  7727. },
  7728. stretching: {
  7729. height: math.unit(3.65, "meters"),
  7730. weight: math.unit(1200, "lb"),
  7731. name: "Stretching",
  7732. image: {
  7733. source: "./media/characters/teal/stretching.svg",
  7734. extra: 1276 / 1244,
  7735. bottom: 0 / 1276
  7736. }
  7737. },
  7738. legged: {
  7739. height: math.unit(1.3, "meters"),
  7740. weight: math.unit(100, "lb"),
  7741. name: "Legged",
  7742. image: {
  7743. source: "./media/characters/teal/legged.svg",
  7744. extra: 462 / 437,
  7745. bottom: 24 / 486
  7746. }
  7747. },
  7748. naga: {
  7749. height: math.unit(5.4, "meters"),
  7750. weight: math.unit(4000, "lb"),
  7751. name: "Naga",
  7752. image: {
  7753. source: "./media/characters/teal/naga.svg",
  7754. extra: 1902 / 1858,
  7755. bottom: 0 / 1902
  7756. }
  7757. },
  7758. hand: {
  7759. height: math.unit(0.52, "meters"),
  7760. name: "Hand",
  7761. image: {
  7762. source: "./media/characters/teal/hand.svg"
  7763. }
  7764. },
  7765. maw: {
  7766. height: math.unit(0.43, "meters"),
  7767. name: "Maw",
  7768. image: {
  7769. source: "./media/characters/teal/maw.svg"
  7770. }
  7771. },
  7772. slit: {
  7773. height: math.unit(0.25, "meters"),
  7774. name: "Slit",
  7775. image: {
  7776. source: "./media/characters/teal/slit.svg"
  7777. }
  7778. },
  7779. },
  7780. [
  7781. {
  7782. name: "Normal",
  7783. height: math.unit(2.75, "meters"),
  7784. default: true
  7785. },
  7786. {
  7787. name: "Macro",
  7788. height: math.unit(300, "feet")
  7789. },
  7790. {
  7791. name: "Macro+",
  7792. height: math.unit(2000, "feet")
  7793. },
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7798. {
  7799. frontCat: {
  7800. height: math.unit(6, "feet"),
  7801. weight: math.unit(180, "lbs"),
  7802. name: "Front (Cat)",
  7803. image: {
  7804. source: "./media/characters/ravin-amulet/front-cat.svg"
  7805. }
  7806. },
  7807. frontCatAlt: {
  7808. height: math.unit(6, "feet"),
  7809. weight: math.unit(180, "lbs"),
  7810. name: "Front (Alt, Cat)",
  7811. image: {
  7812. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7813. }
  7814. },
  7815. frontWerewolf: {
  7816. height: math.unit(6 * 1.2, "feet"),
  7817. weight: math.unit(225, "lbs"),
  7818. name: "Front (Werewolf)",
  7819. image: {
  7820. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7821. }
  7822. },
  7823. backWerewolf: {
  7824. height: math.unit(6 * 1.2, "feet"),
  7825. weight: math.unit(225, "lbs"),
  7826. name: "Back (Werewolf)",
  7827. image: {
  7828. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7829. }
  7830. },
  7831. },
  7832. [
  7833. {
  7834. name: "Nano",
  7835. height: math.unit(1, "micrometer")
  7836. },
  7837. {
  7838. name: "Micro",
  7839. height: math.unit(1, "inch")
  7840. },
  7841. {
  7842. name: "Normal",
  7843. height: math.unit(6, "feet"),
  7844. default: true
  7845. },
  7846. {
  7847. name: "Macro",
  7848. height: math.unit(60, "feet")
  7849. }
  7850. ]
  7851. ))
  7852. characterMakers.push(() => makeCharacter(
  7853. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7854. {
  7855. front: {
  7856. height: math.unit(6, "feet"),
  7857. weight: math.unit(165, "lbs"),
  7858. name: "Front",
  7859. image: {
  7860. source: "./media/characters/fluoresce/front.svg"
  7861. }
  7862. }
  7863. },
  7864. [
  7865. {
  7866. name: "Micro",
  7867. height: math.unit(6, "cm")
  7868. },
  7869. {
  7870. name: "Normal",
  7871. height: math.unit(5 + 7 / 12, "feet"),
  7872. default: true
  7873. },
  7874. {
  7875. name: "Macro",
  7876. height: math.unit(56, "feet")
  7877. },
  7878. {
  7879. name: "Megamacro",
  7880. height: math.unit(1.9, "miles")
  7881. },
  7882. ]
  7883. ))
  7884. characterMakers.push(() => makeCharacter(
  7885. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7886. {
  7887. front: {
  7888. height: math.unit(9 + 6 / 12, "feet"),
  7889. weight: math.unit(523, "lbs"),
  7890. name: "Side",
  7891. image: {
  7892. source: "./media/characters/aurora/side.svg"
  7893. }
  7894. }
  7895. },
  7896. [
  7897. {
  7898. name: "Normal",
  7899. height: math.unit(9 + 6 / 12, "feet")
  7900. },
  7901. {
  7902. name: "Macro",
  7903. height: math.unit(96, "feet"),
  7904. default: true
  7905. },
  7906. {
  7907. name: "Macro+",
  7908. height: math.unit(243, "feet")
  7909. },
  7910. ]
  7911. ))
  7912. characterMakers.push(() => makeCharacter(
  7913. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7914. {
  7915. front: {
  7916. height: math.unit(194, "cm"),
  7917. weight: math.unit(90, "kg"),
  7918. name: "Front",
  7919. image: {
  7920. source: "./media/characters/ranek/front.svg",
  7921. extra: 1862/1791,
  7922. bottom: 80/1942
  7923. }
  7924. },
  7925. back: {
  7926. height: math.unit(194, "cm"),
  7927. weight: math.unit(90, "kg"),
  7928. name: "Back",
  7929. image: {
  7930. source: "./media/characters/ranek/back.svg",
  7931. extra: 1853/1787,
  7932. bottom: 74/1927
  7933. }
  7934. },
  7935. feral: {
  7936. height: math.unit(30, "cm"),
  7937. weight: math.unit(1.6, "lbs"),
  7938. name: "Feral",
  7939. image: {
  7940. source: "./media/characters/ranek/feral.svg",
  7941. extra: 990/631,
  7942. bottom: 29/1019
  7943. }
  7944. },
  7945. },
  7946. [
  7947. {
  7948. name: "Normal",
  7949. height: math.unit(194, "cm"),
  7950. default: true
  7951. },
  7952. {
  7953. name: "Macro",
  7954. height: math.unit(100, "meters")
  7955. },
  7956. ]
  7957. ))
  7958. characterMakers.push(() => makeCharacter(
  7959. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7960. {
  7961. front: {
  7962. height: math.unit(5 + 6 / 12, "feet"),
  7963. weight: math.unit(153, "lbs"),
  7964. name: "Front",
  7965. image: {
  7966. source: "./media/characters/andrew-cooper/front.svg"
  7967. }
  7968. },
  7969. },
  7970. [
  7971. {
  7972. name: "Nano",
  7973. height: math.unit(1, "mm")
  7974. },
  7975. {
  7976. name: "Micro",
  7977. height: math.unit(2, "inches")
  7978. },
  7979. {
  7980. name: "Normal",
  7981. height: math.unit(5 + 6 / 12, "feet"),
  7982. default: true
  7983. }
  7984. ]
  7985. ))
  7986. characterMakers.push(() => makeCharacter(
  7987. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7988. {
  7989. front: {
  7990. height: math.unit(6, "feet"),
  7991. weight: math.unit(180, "lbs"),
  7992. name: "Front",
  7993. image: {
  7994. source: "./media/characters/akane-sato/front.svg",
  7995. extra: 1219 / 1140
  7996. }
  7997. },
  7998. back: {
  7999. height: math.unit(6, "feet"),
  8000. weight: math.unit(180, "lbs"),
  8001. name: "Back",
  8002. image: {
  8003. source: "./media/characters/akane-sato/back.svg",
  8004. extra: 1219 / 1170
  8005. }
  8006. },
  8007. },
  8008. [
  8009. {
  8010. name: "Normal",
  8011. height: math.unit(2.5, "meters")
  8012. },
  8013. {
  8014. name: "Macro",
  8015. height: math.unit(250, "meters"),
  8016. default: true
  8017. },
  8018. {
  8019. name: "Megamacro",
  8020. height: math.unit(25, "km")
  8021. },
  8022. ]
  8023. ))
  8024. characterMakers.push(() => makeCharacter(
  8025. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8026. {
  8027. front: {
  8028. height: math.unit(6, "feet"),
  8029. weight: math.unit(65, "kg"),
  8030. name: "Front",
  8031. image: {
  8032. source: "./media/characters/rook/front.svg",
  8033. extra: 960 / 950
  8034. }
  8035. }
  8036. },
  8037. [
  8038. {
  8039. name: "Normal",
  8040. height: math.unit(8.8, "feet")
  8041. },
  8042. {
  8043. name: "Macro",
  8044. height: math.unit(88, "feet"),
  8045. default: true
  8046. },
  8047. {
  8048. name: "Megamacro",
  8049. height: math.unit(8, "miles")
  8050. },
  8051. ]
  8052. ))
  8053. characterMakers.push(() => makeCharacter(
  8054. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8055. {
  8056. front: {
  8057. height: math.unit(12 + 2 / 12, "feet"),
  8058. weight: math.unit(808, "lbs"),
  8059. name: "Front",
  8060. image: {
  8061. source: "./media/characters/prodigy/front.svg"
  8062. }
  8063. }
  8064. },
  8065. [
  8066. {
  8067. name: "Normal",
  8068. height: math.unit(12 + 2 / 12, "feet"),
  8069. default: true
  8070. },
  8071. {
  8072. name: "Macro",
  8073. height: math.unit(143, "feet")
  8074. },
  8075. {
  8076. name: "Macro+",
  8077. height: math.unit(400, "feet")
  8078. },
  8079. ]
  8080. ))
  8081. characterMakers.push(() => makeCharacter(
  8082. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8083. {
  8084. front: {
  8085. height: math.unit(6, "feet"),
  8086. weight: math.unit(225, "lbs"),
  8087. name: "Front",
  8088. image: {
  8089. source: "./media/characters/daniel/front.svg"
  8090. }
  8091. },
  8092. leaning: {
  8093. height: math.unit(6, "feet"),
  8094. weight: math.unit(225, "lbs"),
  8095. name: "Leaning",
  8096. image: {
  8097. source: "./media/characters/daniel/leaning.svg"
  8098. }
  8099. },
  8100. },
  8101. [
  8102. {
  8103. name: "Macro",
  8104. height: math.unit(1000, "feet"),
  8105. default: true
  8106. },
  8107. ]
  8108. ))
  8109. characterMakers.push(() => makeCharacter(
  8110. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8111. {
  8112. front: {
  8113. height: math.unit(6, "feet"),
  8114. weight: math.unit(88, "lbs"),
  8115. name: "Front",
  8116. image: {
  8117. source: "./media/characters/chiros/front.svg",
  8118. extra: 306 / 226
  8119. }
  8120. },
  8121. side: {
  8122. height: math.unit(6, "feet"),
  8123. weight: math.unit(88, "lbs"),
  8124. name: "Side",
  8125. image: {
  8126. source: "./media/characters/chiros/side.svg",
  8127. extra: 306 / 226
  8128. }
  8129. },
  8130. },
  8131. [
  8132. {
  8133. name: "Normal",
  8134. height: math.unit(6, "cm"),
  8135. default: true
  8136. },
  8137. ]
  8138. ))
  8139. characterMakers.push(() => makeCharacter(
  8140. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8141. {
  8142. front: {
  8143. height: math.unit(6, "feet"),
  8144. weight: math.unit(100, "lbs"),
  8145. name: "Front",
  8146. image: {
  8147. source: "./media/characters/selka/front.svg",
  8148. extra: 947 / 887
  8149. }
  8150. }
  8151. },
  8152. [
  8153. {
  8154. name: "Normal",
  8155. height: math.unit(5, "cm"),
  8156. default: true
  8157. },
  8158. ]
  8159. ))
  8160. characterMakers.push(() => makeCharacter(
  8161. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8162. {
  8163. front: {
  8164. height: math.unit(8 + 3 / 12, "feet"),
  8165. weight: math.unit(424, "lbs"),
  8166. name: "Front",
  8167. image: {
  8168. source: "./media/characters/verin/front.svg",
  8169. extra: 1845 / 1550
  8170. }
  8171. },
  8172. frontArmored: {
  8173. height: math.unit(8 + 3 / 12, "feet"),
  8174. weight: math.unit(424, "lbs"),
  8175. name: "Front (Armored)",
  8176. image: {
  8177. source: "./media/characters/verin/front-armor.svg",
  8178. extra: 1845 / 1550,
  8179. bottom: 0.01
  8180. }
  8181. },
  8182. back: {
  8183. height: math.unit(8 + 3 / 12, "feet"),
  8184. weight: math.unit(424, "lbs"),
  8185. name: "Back",
  8186. image: {
  8187. source: "./media/characters/verin/back.svg",
  8188. bottom: 0.1,
  8189. extra: 1
  8190. }
  8191. },
  8192. foot: {
  8193. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8194. name: "Foot",
  8195. image: {
  8196. source: "./media/characters/verin/foot.svg"
  8197. }
  8198. },
  8199. },
  8200. [
  8201. {
  8202. name: "Normal",
  8203. height: math.unit(8 + 3 / 12, "feet")
  8204. },
  8205. {
  8206. name: "Minimacro",
  8207. height: math.unit(21, "feet"),
  8208. default: true
  8209. },
  8210. {
  8211. name: "Macro",
  8212. height: math.unit(626, "feet")
  8213. },
  8214. ]
  8215. ))
  8216. characterMakers.push(() => makeCharacter(
  8217. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8218. {
  8219. front: {
  8220. height: math.unit(2.718, "meters"),
  8221. weight: math.unit(150, "lbs"),
  8222. name: "Front",
  8223. image: {
  8224. source: "./media/characters/sovrim-terraquian/front.svg",
  8225. extra: 1752/1689,
  8226. bottom: 36/1788
  8227. }
  8228. },
  8229. back: {
  8230. height: math.unit(2.718, "meters"),
  8231. weight: math.unit(150, "lbs"),
  8232. name: "Back",
  8233. image: {
  8234. source: "./media/characters/sovrim-terraquian/back.svg",
  8235. extra: 1698/1657,
  8236. bottom: 58/1756
  8237. }
  8238. },
  8239. tongue: {
  8240. height: math.unit(2.865, "feet"),
  8241. name: "Tongue",
  8242. image: {
  8243. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8244. }
  8245. },
  8246. hand: {
  8247. height: math.unit(1.61, "feet"),
  8248. name: "Hand",
  8249. image: {
  8250. source: "./media/characters/sovrim-terraquian/hand.svg"
  8251. }
  8252. },
  8253. foot: {
  8254. height: math.unit(1.05, "feet"),
  8255. name: "Foot",
  8256. image: {
  8257. source: "./media/characters/sovrim-terraquian/foot.svg"
  8258. }
  8259. },
  8260. footAlt: {
  8261. height: math.unit(0.88, "feet"),
  8262. name: "Foot (Alt)",
  8263. image: {
  8264. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8265. }
  8266. },
  8267. },
  8268. [
  8269. {
  8270. name: "Micro",
  8271. height: math.unit(2, "inches")
  8272. },
  8273. {
  8274. name: "Small",
  8275. height: math.unit(1, "meter")
  8276. },
  8277. {
  8278. name: "Normal",
  8279. height: math.unit(Math.E, "meters"),
  8280. default: true
  8281. },
  8282. {
  8283. name: "Macro",
  8284. height: math.unit(20, "meters")
  8285. },
  8286. {
  8287. name: "Macro+",
  8288. height: math.unit(400, "meters")
  8289. },
  8290. ]
  8291. ))
  8292. characterMakers.push(() => makeCharacter(
  8293. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8294. {
  8295. front: {
  8296. height: math.unit(7, "feet"),
  8297. weight: math.unit(489, "lbs"),
  8298. name: "Front",
  8299. image: {
  8300. source: "./media/characters/reece-silvermane/front.svg",
  8301. bottom: 0.02,
  8302. extra: 1
  8303. }
  8304. },
  8305. },
  8306. [
  8307. {
  8308. name: "Macro",
  8309. height: math.unit(1.5, "miles"),
  8310. default: true
  8311. },
  8312. ]
  8313. ))
  8314. characterMakers.push(() => makeCharacter(
  8315. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8316. {
  8317. front: {
  8318. height: math.unit(6, "feet"),
  8319. weight: math.unit(78, "kg"),
  8320. name: "Front",
  8321. image: {
  8322. source: "./media/characters/kane/front.svg",
  8323. extra: 978 / 899
  8324. }
  8325. },
  8326. },
  8327. [
  8328. {
  8329. name: "Normal",
  8330. height: math.unit(2.1, "m"),
  8331. },
  8332. {
  8333. name: "Macro",
  8334. height: math.unit(1, "km"),
  8335. default: true
  8336. },
  8337. ]
  8338. ))
  8339. characterMakers.push(() => makeCharacter(
  8340. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8341. {
  8342. front: {
  8343. height: math.unit(6, "feet"),
  8344. weight: math.unit(200, "kg"),
  8345. name: "Front",
  8346. image: {
  8347. source: "./media/characters/tegon/front.svg",
  8348. bottom: 0.01,
  8349. extra: 1
  8350. }
  8351. },
  8352. },
  8353. [
  8354. {
  8355. name: "Micro",
  8356. height: math.unit(1, "inch")
  8357. },
  8358. {
  8359. name: "Normal",
  8360. height: math.unit(6 + 3 / 12, "feet"),
  8361. default: true
  8362. },
  8363. {
  8364. name: "Macro",
  8365. height: math.unit(300, "feet")
  8366. },
  8367. {
  8368. name: "Megamacro",
  8369. height: math.unit(69, "miles")
  8370. },
  8371. ]
  8372. ))
  8373. characterMakers.push(() => makeCharacter(
  8374. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8375. {
  8376. side: {
  8377. height: math.unit(6, "feet"),
  8378. weight: math.unit(2304, "lbs"),
  8379. name: "Side",
  8380. image: {
  8381. source: "./media/characters/arcturax/side.svg",
  8382. extra: 790 / 376,
  8383. bottom: 0.01
  8384. }
  8385. },
  8386. },
  8387. [
  8388. {
  8389. name: "Micro",
  8390. height: math.unit(2, "inch")
  8391. },
  8392. {
  8393. name: "Normal",
  8394. height: math.unit(6, "feet")
  8395. },
  8396. {
  8397. name: "Macro",
  8398. height: math.unit(39, "feet"),
  8399. default: true
  8400. },
  8401. {
  8402. name: "Megamacro",
  8403. height: math.unit(7, "miles")
  8404. },
  8405. ]
  8406. ))
  8407. characterMakers.push(() => makeCharacter(
  8408. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8409. {
  8410. front: {
  8411. height: math.unit(6, "feet"),
  8412. weight: math.unit(50, "lbs"),
  8413. name: "Front",
  8414. image: {
  8415. source: "./media/characters/sentri/front.svg",
  8416. extra: 1750 / 1570,
  8417. bottom: 0.025
  8418. }
  8419. },
  8420. frontAlt: {
  8421. height: math.unit(6, "feet"),
  8422. weight: math.unit(50, "lbs"),
  8423. name: "Front (Alt)",
  8424. image: {
  8425. source: "./media/characters/sentri/front-alt.svg",
  8426. extra: 1750 / 1570,
  8427. bottom: 0.025
  8428. }
  8429. },
  8430. },
  8431. [
  8432. {
  8433. name: "Normal",
  8434. height: math.unit(15, "feet"),
  8435. default: true
  8436. },
  8437. {
  8438. name: "Macro",
  8439. height: math.unit(2500, "feet")
  8440. }
  8441. ]
  8442. ))
  8443. characterMakers.push(() => makeCharacter(
  8444. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8445. {
  8446. front: {
  8447. height: math.unit(5 + 8 / 12, "feet"),
  8448. weight: math.unit(130, "lbs"),
  8449. name: "Front",
  8450. image: {
  8451. source: "./media/characters/corvin/front.svg",
  8452. extra: 1803 / 1629
  8453. }
  8454. },
  8455. frontShirt: {
  8456. height: math.unit(5 + 8 / 12, "feet"),
  8457. weight: math.unit(130, "lbs"),
  8458. name: "Front (Shirt)",
  8459. image: {
  8460. source: "./media/characters/corvin/front-shirt.svg",
  8461. extra: 1803 / 1629
  8462. }
  8463. },
  8464. frontPoncho: {
  8465. height: math.unit(5 + 8 / 12, "feet"),
  8466. weight: math.unit(130, "lbs"),
  8467. name: "Front (Poncho)",
  8468. image: {
  8469. source: "./media/characters/corvin/front-poncho.svg",
  8470. extra: 1803 / 1629
  8471. }
  8472. },
  8473. side: {
  8474. height: math.unit(5 + 8 / 12, "feet"),
  8475. weight: math.unit(130, "lbs"),
  8476. name: "Side",
  8477. image: {
  8478. source: "./media/characters/corvin/side.svg",
  8479. extra: 1012 / 945
  8480. }
  8481. },
  8482. back: {
  8483. height: math.unit(5 + 8 / 12, "feet"),
  8484. weight: math.unit(130, "lbs"),
  8485. name: "Back",
  8486. image: {
  8487. source: "./media/characters/corvin/back.svg",
  8488. extra: 1803 / 1629
  8489. }
  8490. },
  8491. },
  8492. [
  8493. {
  8494. name: "Micro",
  8495. height: math.unit(3, "inches")
  8496. },
  8497. {
  8498. name: "Normal",
  8499. height: math.unit(5 + 8 / 12, "feet")
  8500. },
  8501. {
  8502. name: "Macro",
  8503. height: math.unit(300, "feet"),
  8504. default: true
  8505. },
  8506. {
  8507. name: "Megamacro",
  8508. height: math.unit(500, "miles")
  8509. }
  8510. ]
  8511. ))
  8512. characterMakers.push(() => makeCharacter(
  8513. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8514. {
  8515. front: {
  8516. height: math.unit(6, "feet"),
  8517. weight: math.unit(135, "lbs"),
  8518. name: "Front",
  8519. image: {
  8520. source: "./media/characters/q/front.svg",
  8521. extra: 854 / 752,
  8522. bottom: 0.005
  8523. }
  8524. },
  8525. back: {
  8526. height: math.unit(6, "feet"),
  8527. weight: math.unit(130, "lbs"),
  8528. name: "Back",
  8529. image: {
  8530. source: "./media/characters/q/back.svg",
  8531. extra: 854 / 752
  8532. }
  8533. },
  8534. },
  8535. [
  8536. {
  8537. name: "Macro",
  8538. height: math.unit(90, "feet"),
  8539. default: true
  8540. },
  8541. {
  8542. name: "Extra Macro",
  8543. height: math.unit(300, "feet"),
  8544. },
  8545. {
  8546. name: "BIG WALF",
  8547. height: math.unit(750, "feet"),
  8548. },
  8549. ]
  8550. ))
  8551. characterMakers.push(() => makeCharacter(
  8552. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8553. {
  8554. front: {
  8555. height: math.unit(6, "feet"),
  8556. weight: math.unit(150, "lbs"),
  8557. name: "Front",
  8558. image: {
  8559. source: "./media/characters/carley/front.svg",
  8560. extra: 3927 / 3540,
  8561. bottom: 29.2 / 735
  8562. }
  8563. }
  8564. },
  8565. [
  8566. {
  8567. name: "Normal",
  8568. height: math.unit(6 + 3 / 12, "feet")
  8569. },
  8570. {
  8571. name: "Macro",
  8572. height: math.unit(185, "feet"),
  8573. default: true
  8574. },
  8575. {
  8576. name: "Megamacro",
  8577. height: math.unit(8, "miles"),
  8578. },
  8579. ]
  8580. ))
  8581. characterMakers.push(() => makeCharacter(
  8582. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8583. {
  8584. front: {
  8585. height: math.unit(3, "feet"),
  8586. weight: math.unit(28, "lbs"),
  8587. name: "Front",
  8588. image: {
  8589. source: "./media/characters/citrine/front.svg"
  8590. }
  8591. }
  8592. },
  8593. [
  8594. {
  8595. name: "Normal",
  8596. height: math.unit(3, "feet"),
  8597. default: true
  8598. }
  8599. ]
  8600. ))
  8601. characterMakers.push(() => makeCharacter(
  8602. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8603. {
  8604. front: {
  8605. height: math.unit(14, "feet"),
  8606. weight: math.unit(1450, "kg"),
  8607. capacity: math.unit(15, "people"),
  8608. name: "Front",
  8609. image: {
  8610. source: "./media/characters/aura-starwind/front.svg",
  8611. extra: 1440/1327,
  8612. bottom: 11/1451
  8613. }
  8614. },
  8615. side: {
  8616. height: math.unit(14, "feet"),
  8617. weight: math.unit(1450, "kg"),
  8618. capacity: math.unit(15, "people"),
  8619. name: "Side",
  8620. image: {
  8621. source: "./media/characters/aura-starwind/side.svg",
  8622. extra: 1654 / 1497
  8623. }
  8624. },
  8625. taur: {
  8626. height: math.unit(18, "feet"),
  8627. weight: math.unit(5500, "kg"),
  8628. capacity: math.unit(50, "people"),
  8629. name: "Taur",
  8630. image: {
  8631. source: "./media/characters/aura-starwind/taur.svg",
  8632. extra: 1760 / 1650
  8633. }
  8634. },
  8635. feral: {
  8636. height: math.unit(46, "feet"),
  8637. weight: math.unit(25000, "kg"),
  8638. capacity: math.unit(120, "people"),
  8639. name: "Feral",
  8640. image: {
  8641. source: "./media/characters/aura-starwind/feral.svg"
  8642. }
  8643. },
  8644. },
  8645. [
  8646. {
  8647. name: "Normal",
  8648. height: math.unit(14, "feet"),
  8649. default: true
  8650. },
  8651. {
  8652. name: "Macro",
  8653. height: math.unit(50, "meters")
  8654. },
  8655. {
  8656. name: "Megamacro",
  8657. height: math.unit(5000, "meters")
  8658. },
  8659. {
  8660. name: "Gigamacro",
  8661. height: math.unit(100000, "kilometers")
  8662. },
  8663. ]
  8664. ))
  8665. characterMakers.push(() => makeCharacter(
  8666. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8667. {
  8668. front: {
  8669. height: math.unit(2 + 7 / 12, "feet"),
  8670. weight: math.unit(32, "lbs"),
  8671. name: "Front",
  8672. image: {
  8673. source: "./media/characters/rivet/front.svg",
  8674. extra: 1716 / 1658,
  8675. bottom: 0.03
  8676. }
  8677. },
  8678. foot: {
  8679. height: math.unit(0.551, "feet"),
  8680. name: "Rivet's Foot",
  8681. image: {
  8682. source: "./media/characters/rivet/foot.svg"
  8683. },
  8684. rename: true
  8685. }
  8686. },
  8687. [
  8688. {
  8689. name: "Micro",
  8690. height: math.unit(1.5, "inches"),
  8691. },
  8692. {
  8693. name: "Normal",
  8694. height: math.unit(2 + 7 / 12, "feet"),
  8695. default: true
  8696. },
  8697. {
  8698. name: "Macro",
  8699. height: math.unit(85, "feet")
  8700. },
  8701. {
  8702. name: "Megamacro",
  8703. height: math.unit(2.2, "km")
  8704. }
  8705. ]
  8706. ))
  8707. characterMakers.push(() => makeCharacter(
  8708. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8709. {
  8710. front: {
  8711. height: math.unit(5 + 9 / 12, "feet"),
  8712. weight: math.unit(150, "lbs"),
  8713. name: "Front",
  8714. image: {
  8715. source: "./media/characters/coffee/front.svg",
  8716. extra: 3666 / 3032,
  8717. bottom: 0.04
  8718. }
  8719. },
  8720. foot: {
  8721. height: math.unit(1.29, "feet"),
  8722. name: "Foot",
  8723. image: {
  8724. source: "./media/characters/coffee/foot.svg"
  8725. }
  8726. },
  8727. },
  8728. [
  8729. {
  8730. name: "Micro",
  8731. height: math.unit(2, "inches"),
  8732. },
  8733. {
  8734. name: "Normal",
  8735. height: math.unit(5 + 9 / 12, "feet"),
  8736. default: true
  8737. },
  8738. {
  8739. name: "Macro",
  8740. height: math.unit(800, "feet")
  8741. },
  8742. {
  8743. name: "Megamacro",
  8744. height: math.unit(25, "miles")
  8745. }
  8746. ]
  8747. ))
  8748. characterMakers.push(() => makeCharacter(
  8749. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8750. {
  8751. front: {
  8752. height: math.unit(6, "feet"),
  8753. weight: math.unit(200, "lbs"),
  8754. name: "Front",
  8755. image: {
  8756. source: "./media/characters/chari-gal/front.svg",
  8757. extra: 1568 / 1385,
  8758. bottom: 0.047
  8759. }
  8760. },
  8761. gigantamax: {
  8762. height: math.unit(6 * 16, "feet"),
  8763. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8764. name: "Gigantamax",
  8765. image: {
  8766. source: "./media/characters/chari-gal/gigantamax.svg",
  8767. extra: 1124 / 888,
  8768. bottom: 0.03
  8769. }
  8770. },
  8771. },
  8772. [
  8773. {
  8774. name: "Normal",
  8775. height: math.unit(5 + 7 / 12, "feet")
  8776. },
  8777. {
  8778. name: "Macro",
  8779. height: math.unit(200, "feet"),
  8780. default: true
  8781. }
  8782. ]
  8783. ))
  8784. characterMakers.push(() => makeCharacter(
  8785. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8786. {
  8787. front: {
  8788. height: math.unit(6, "feet"),
  8789. weight: math.unit(150, "lbs"),
  8790. name: "Front",
  8791. image: {
  8792. source: "./media/characters/nova/front.svg",
  8793. extra: 5000 / 4722,
  8794. bottom: 0.02
  8795. }
  8796. }
  8797. },
  8798. [
  8799. {
  8800. name: "Micro-",
  8801. height: math.unit(0.8, "inches")
  8802. },
  8803. {
  8804. name: "Micro",
  8805. height: math.unit(2, "inches"),
  8806. default: true
  8807. },
  8808. ]
  8809. ))
  8810. characterMakers.push(() => makeCharacter(
  8811. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8812. {
  8813. front: {
  8814. height: math.unit(3 + 1 / 12, "feet"),
  8815. weight: math.unit(21.7, "lbs"),
  8816. name: "Front",
  8817. image: {
  8818. source: "./media/characters/argent/front.svg",
  8819. extra: 1471 / 1331,
  8820. bottom: 100.8 / 1575.5
  8821. }
  8822. }
  8823. },
  8824. [
  8825. {
  8826. name: "Micro",
  8827. height: math.unit(2, "inches")
  8828. },
  8829. {
  8830. name: "Normal",
  8831. height: math.unit(3 + 1 / 12, "feet"),
  8832. default: true
  8833. },
  8834. {
  8835. name: "Macro",
  8836. height: math.unit(120, "feet")
  8837. },
  8838. ]
  8839. ))
  8840. characterMakers.push(() => makeCharacter(
  8841. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8842. {
  8843. lamp: {
  8844. height: math.unit(7 * 1559 / 989, "feet"),
  8845. name: "Magic Lamp",
  8846. image: {
  8847. source: "./media/characters/mira-al-cul/lamp.svg",
  8848. extra: 1617 / 1559
  8849. }
  8850. },
  8851. front: {
  8852. height: math.unit(7, "feet"),
  8853. name: "Front",
  8854. image: {
  8855. source: "./media/characters/mira-al-cul/front.svg",
  8856. extra: 1044 / 990
  8857. }
  8858. },
  8859. },
  8860. [
  8861. {
  8862. name: "Heavily Restricted",
  8863. height: math.unit(7 * 1559 / 989, "feet")
  8864. },
  8865. {
  8866. name: "Freshly Freed",
  8867. height: math.unit(50 * 1559 / 989, "feet")
  8868. },
  8869. {
  8870. name: "World Encompassing",
  8871. height: math.unit(10000 * 1559 / 989, "miles")
  8872. },
  8873. {
  8874. name: "Galactic",
  8875. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8876. },
  8877. {
  8878. name: "Palmed Universe",
  8879. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8880. default: true
  8881. },
  8882. {
  8883. name: "Multiversal Matriarch",
  8884. height: math.unit(8.87e10, "yottameters")
  8885. },
  8886. {
  8887. name: "Void Mother",
  8888. height: math.unit(3.14e110, "yottaparsecs")
  8889. },
  8890. {
  8891. name: "Toying with Transcendence",
  8892. height: math.unit(1e307, "meters")
  8893. },
  8894. ]
  8895. ))
  8896. characterMakers.push(() => makeCharacter(
  8897. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8898. {
  8899. front: {
  8900. height: math.unit(17 + 1 / 12, "feet"),
  8901. weight: math.unit(476.2 * 5, "lbs"),
  8902. name: "Front",
  8903. image: {
  8904. source: "./media/characters/kuro-shi-uchū/front.svg",
  8905. extra: 2329 / 1835,
  8906. bottom: 0.02
  8907. }
  8908. },
  8909. },
  8910. [
  8911. {
  8912. name: "Micro",
  8913. height: math.unit(2, "inches")
  8914. },
  8915. {
  8916. name: "Normal",
  8917. height: math.unit(12, "meters")
  8918. },
  8919. {
  8920. name: "Planetary",
  8921. height: math.unit(0.00929, "AU"),
  8922. default: true
  8923. },
  8924. {
  8925. name: "Universal",
  8926. height: math.unit(20, "gigaparsecs")
  8927. },
  8928. ]
  8929. ))
  8930. characterMakers.push(() => makeCharacter(
  8931. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8932. {
  8933. front: {
  8934. height: math.unit(5 + 2 / 12, "feet"),
  8935. weight: math.unit(120, "lbs"),
  8936. name: "Front",
  8937. image: {
  8938. source: "./media/characters/katherine/front.svg",
  8939. extra: 2075 / 1969
  8940. }
  8941. },
  8942. dress: {
  8943. height: math.unit(5 + 2 / 12, "feet"),
  8944. weight: math.unit(120, "lbs"),
  8945. name: "Dress",
  8946. image: {
  8947. source: "./media/characters/katherine/dress.svg",
  8948. extra: 2258 / 2064
  8949. }
  8950. },
  8951. },
  8952. [
  8953. {
  8954. name: "Micro",
  8955. height: math.unit(1, "inches"),
  8956. default: true
  8957. },
  8958. {
  8959. name: "Normal",
  8960. height: math.unit(5 + 2 / 12, "feet")
  8961. },
  8962. {
  8963. name: "Macro",
  8964. height: math.unit(100, "meters")
  8965. },
  8966. {
  8967. name: "Megamacro",
  8968. height: math.unit(80, "miles")
  8969. },
  8970. ]
  8971. ))
  8972. characterMakers.push(() => makeCharacter(
  8973. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8974. {
  8975. front: {
  8976. height: math.unit(7 + 8 / 12, "feet"),
  8977. weight: math.unit(250, "lbs"),
  8978. name: "Front",
  8979. image: {
  8980. source: "./media/characters/yevis/front.svg",
  8981. extra: 1938 / 1755
  8982. }
  8983. }
  8984. },
  8985. [
  8986. {
  8987. name: "Mortal",
  8988. height: math.unit(7 + 8 / 12, "feet")
  8989. },
  8990. {
  8991. name: "Battle",
  8992. height: math.unit(25 + 11 / 12, "feet")
  8993. },
  8994. {
  8995. name: "Wrath",
  8996. height: math.unit(1654 + 11 / 12, "feet")
  8997. },
  8998. {
  8999. name: "Planet Destroyer",
  9000. height: math.unit(12000, "miles")
  9001. },
  9002. {
  9003. name: "Galaxy Conqueror",
  9004. height: math.unit(1.45, "zettameters"),
  9005. default: true
  9006. },
  9007. {
  9008. name: "Universal War",
  9009. height: math.unit(184, "gigaparsecs")
  9010. },
  9011. {
  9012. name: "Eternity War",
  9013. height: math.unit(1.98e55, "yottaparsecs")
  9014. },
  9015. ]
  9016. ))
  9017. characterMakers.push(() => makeCharacter(
  9018. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9019. {
  9020. front: {
  9021. height: math.unit(5 + 8 / 12, "feet"),
  9022. weight: math.unit(63, "kg"),
  9023. name: "Front",
  9024. image: {
  9025. source: "./media/characters/xavier/front.svg",
  9026. extra: 944 / 883
  9027. }
  9028. },
  9029. frontStretch: {
  9030. height: math.unit(5 + 8 / 12, "feet"),
  9031. weight: math.unit(63, "kg"),
  9032. name: "Stretching",
  9033. image: {
  9034. source: "./media/characters/xavier/front-stretch.svg",
  9035. extra: 962 / 820
  9036. }
  9037. },
  9038. },
  9039. [
  9040. {
  9041. name: "Normal",
  9042. height: math.unit(5 + 8 / 12, "feet")
  9043. },
  9044. {
  9045. name: "Macro",
  9046. height: math.unit(100, "meters"),
  9047. default: true
  9048. },
  9049. {
  9050. name: "McLargeHuge",
  9051. height: math.unit(10, "miles")
  9052. },
  9053. ]
  9054. ))
  9055. characterMakers.push(() => makeCharacter(
  9056. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9057. {
  9058. front: {
  9059. height: math.unit(5 + 5 / 12, "feet"),
  9060. weight: math.unit(150, "lb"),
  9061. name: "Front",
  9062. image: {
  9063. source: "./media/characters/joshii/front.svg",
  9064. extra: 765 / 653,
  9065. bottom: 51 / 816
  9066. }
  9067. },
  9068. foot: {
  9069. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9070. name: "Foot",
  9071. image: {
  9072. source: "./media/characters/joshii/foot.svg"
  9073. }
  9074. },
  9075. },
  9076. [
  9077. {
  9078. name: "Micro",
  9079. height: math.unit(2, "inches"),
  9080. default: true
  9081. },
  9082. {
  9083. name: "Normal",
  9084. height: math.unit(5 + 5 / 12, "feet")
  9085. },
  9086. {
  9087. name: "Macro",
  9088. height: math.unit(785, "feet")
  9089. },
  9090. {
  9091. name: "Megamacro",
  9092. height: math.unit(24.5, "miles")
  9093. },
  9094. ]
  9095. ))
  9096. characterMakers.push(() => makeCharacter(
  9097. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9098. {
  9099. front: {
  9100. height: math.unit(6, "feet"),
  9101. weight: math.unit(150, "lb"),
  9102. name: "Front",
  9103. image: {
  9104. source: "./media/characters/goddess-elizabeth/front.svg",
  9105. extra: 1800 / 1525,
  9106. bottom: 0.005
  9107. }
  9108. },
  9109. foot: {
  9110. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9111. name: "Foot",
  9112. image: {
  9113. source: "./media/characters/goddess-elizabeth/foot.svg"
  9114. }
  9115. },
  9116. mouth: {
  9117. height: math.unit(6, "feet"),
  9118. name: "Mouth",
  9119. image: {
  9120. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9121. }
  9122. },
  9123. },
  9124. [
  9125. {
  9126. name: "Micro",
  9127. height: math.unit(12, "feet")
  9128. },
  9129. {
  9130. name: "Normal",
  9131. height: math.unit(80, "miles"),
  9132. default: true
  9133. },
  9134. {
  9135. name: "Macro",
  9136. height: math.unit(15000, "parsecs")
  9137. },
  9138. ]
  9139. ))
  9140. characterMakers.push(() => makeCharacter(
  9141. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9142. {
  9143. front: {
  9144. height: math.unit(5 + 9 / 12, "feet"),
  9145. weight: math.unit(144, "lb"),
  9146. name: "Front",
  9147. image: {
  9148. source: "./media/characters/kara/front.svg"
  9149. }
  9150. },
  9151. feet: {
  9152. height: math.unit(6 / 6.765, "feet"),
  9153. name: "Kara's Feet",
  9154. rename: true,
  9155. image: {
  9156. source: "./media/characters/kara/feet.svg"
  9157. }
  9158. },
  9159. },
  9160. [
  9161. {
  9162. name: "Normal",
  9163. height: math.unit(5 + 9 / 12, "feet")
  9164. },
  9165. {
  9166. name: "Macro",
  9167. height: math.unit(174, "feet"),
  9168. default: true
  9169. },
  9170. ]
  9171. ))
  9172. characterMakers.push(() => makeCharacter(
  9173. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9174. {
  9175. front: {
  9176. height: math.unit(18, "feet"),
  9177. weight: math.unit(4050, "lb"),
  9178. name: "Front",
  9179. image: {
  9180. source: "./media/characters/tyrone/front.svg",
  9181. extra: 2405 / 2270,
  9182. bottom: 182 / 2587
  9183. }
  9184. },
  9185. },
  9186. [
  9187. {
  9188. name: "Normal",
  9189. height: math.unit(18, "feet"),
  9190. default: true
  9191. },
  9192. {
  9193. name: "Macro",
  9194. height: math.unit(300, "feet")
  9195. },
  9196. {
  9197. name: "Megamacro",
  9198. height: math.unit(15, "km")
  9199. },
  9200. {
  9201. name: "Gigamacro",
  9202. height: math.unit(500, "km")
  9203. },
  9204. {
  9205. name: "Teramacro",
  9206. height: math.unit(0.5, "gigameters")
  9207. },
  9208. {
  9209. name: "Omnimacro",
  9210. height: math.unit(1e252, "yottauniverse")
  9211. },
  9212. ]
  9213. ))
  9214. characterMakers.push(() => makeCharacter(
  9215. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9216. {
  9217. front: {
  9218. height: math.unit(7 + 8 / 12, "feet"),
  9219. weight: math.unit(120, "lb"),
  9220. name: "Front",
  9221. image: {
  9222. source: "./media/characters/danny/front.svg",
  9223. extra: 1490 / 1350
  9224. }
  9225. },
  9226. back: {
  9227. height: math.unit(7 + 8 / 12, "feet"),
  9228. weight: math.unit(120, "lb"),
  9229. name: "Back",
  9230. image: {
  9231. source: "./media/characters/danny/back.svg",
  9232. extra: 1490 / 1350
  9233. }
  9234. },
  9235. },
  9236. [
  9237. {
  9238. name: "Normal",
  9239. height: math.unit(7 + 8 / 12, "feet"),
  9240. default: true
  9241. },
  9242. ]
  9243. ))
  9244. characterMakers.push(() => makeCharacter(
  9245. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9246. {
  9247. front: {
  9248. height: math.unit(3.5, "inches"),
  9249. weight: math.unit(19, "grams"),
  9250. name: "Front",
  9251. image: {
  9252. source: "./media/characters/mallow/front.svg",
  9253. extra: 471 / 431
  9254. }
  9255. },
  9256. back: {
  9257. height: math.unit(3.5, "inches"),
  9258. weight: math.unit(19, "grams"),
  9259. name: "Back",
  9260. image: {
  9261. source: "./media/characters/mallow/back.svg",
  9262. extra: 471 / 431
  9263. }
  9264. },
  9265. },
  9266. [
  9267. {
  9268. name: "Normal",
  9269. height: math.unit(3.5, "inches"),
  9270. default: true
  9271. },
  9272. ]
  9273. ))
  9274. characterMakers.push(() => makeCharacter(
  9275. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9276. {
  9277. front: {
  9278. height: math.unit(9, "feet"),
  9279. weight: math.unit(230, "kg"),
  9280. name: "Front",
  9281. image: {
  9282. source: "./media/characters/starry-aqua/front.svg"
  9283. }
  9284. },
  9285. back: {
  9286. height: math.unit(9, "feet"),
  9287. weight: math.unit(230, "kg"),
  9288. name: "Back",
  9289. image: {
  9290. source: "./media/characters/starry-aqua/back.svg"
  9291. }
  9292. },
  9293. hand: {
  9294. height: math.unit(9 * 0.1168, "feet"),
  9295. name: "Hand",
  9296. image: {
  9297. source: "./media/characters/starry-aqua/hand.svg"
  9298. }
  9299. },
  9300. foot: {
  9301. height: math.unit(9 * 0.18, "feet"),
  9302. name: "Foot",
  9303. image: {
  9304. source: "./media/characters/starry-aqua/foot.svg"
  9305. }
  9306. }
  9307. },
  9308. [
  9309. {
  9310. name: "Micro",
  9311. height: math.unit(3, "inches")
  9312. },
  9313. {
  9314. name: "Normal",
  9315. height: math.unit(9, "feet")
  9316. },
  9317. {
  9318. name: "Macro",
  9319. height: math.unit(300, "feet"),
  9320. default: true
  9321. },
  9322. {
  9323. name: "Megamacro",
  9324. height: math.unit(3200, "feet")
  9325. }
  9326. ]
  9327. ))
  9328. characterMakers.push(() => makeCharacter(
  9329. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9330. {
  9331. front: {
  9332. height: math.unit(15, "feet"),
  9333. weight: math.unit(5026, "lb"),
  9334. name: "Front",
  9335. image: {
  9336. source: "./media/characters/luka-towers/front.svg",
  9337. extra: 1269/1133,
  9338. bottom: 51/1320
  9339. }
  9340. },
  9341. },
  9342. [
  9343. {
  9344. name: "Normal",
  9345. height: math.unit(15, "feet"),
  9346. default: true
  9347. },
  9348. {
  9349. name: "Minimacro",
  9350. height: math.unit(25, "feet")
  9351. },
  9352. {
  9353. name: "Macro",
  9354. height: math.unit(320, "feet")
  9355. },
  9356. {
  9357. name: "Megamacro",
  9358. height: math.unit(35000, "feet")
  9359. },
  9360. {
  9361. name: "Gigamacro",
  9362. height: math.unit(4000, "miles")
  9363. },
  9364. {
  9365. name: "Teramacro",
  9366. height: math.unit(15000, "miles")
  9367. },
  9368. ]
  9369. ))
  9370. characterMakers.push(() => makeCharacter(
  9371. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9372. {
  9373. front: {
  9374. height: math.unit(6, "feet"),
  9375. weight: math.unit(150, "lb"),
  9376. name: "Front",
  9377. image: {
  9378. source: "./media/characters/natalie-nightring/front.svg",
  9379. extra: 1,
  9380. bottom: 0.06
  9381. }
  9382. },
  9383. },
  9384. [
  9385. {
  9386. name: "Uh Oh",
  9387. height: math.unit(0.1, "mm")
  9388. },
  9389. {
  9390. name: "Small",
  9391. height: math.unit(3, "inches")
  9392. },
  9393. {
  9394. name: "Human Scale",
  9395. height: math.unit(6, "feet")
  9396. },
  9397. {
  9398. name: "Librarian",
  9399. height: math.unit(50, "feet"),
  9400. default: true
  9401. },
  9402. {
  9403. name: "Immense",
  9404. height: math.unit(200, "miles")
  9405. },
  9406. ]
  9407. ))
  9408. characterMakers.push(() => makeCharacter(
  9409. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9410. {
  9411. front: {
  9412. height: math.unit(6, "feet"),
  9413. weight: math.unit(180, "lbs"),
  9414. name: "Front",
  9415. image: {
  9416. source: "./media/characters/danni-rosie/front.svg",
  9417. extra: 1260 / 1128,
  9418. bottom: 0.022
  9419. }
  9420. },
  9421. },
  9422. [
  9423. {
  9424. name: "Micro",
  9425. height: math.unit(2, "inches"),
  9426. default: true
  9427. },
  9428. ]
  9429. ))
  9430. characterMakers.push(() => makeCharacter(
  9431. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9432. {
  9433. front: {
  9434. height: math.unit(5 + 9 / 12, "feet"),
  9435. weight: math.unit(220, "lb"),
  9436. name: "Front",
  9437. image: {
  9438. source: "./media/characters/samantha-kruse/front.svg",
  9439. extra: (985 / 935),
  9440. bottom: 0.03
  9441. }
  9442. },
  9443. frontUndressed: {
  9444. height: math.unit(5 + 9 / 12, "feet"),
  9445. weight: math.unit(220, "lb"),
  9446. name: "Front (Undressed)",
  9447. image: {
  9448. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9449. extra: (973 / 923),
  9450. bottom: 0.025
  9451. }
  9452. },
  9453. fat: {
  9454. height: math.unit(5 + 9 / 12, "feet"),
  9455. weight: math.unit(900, "lb"),
  9456. name: "Front (Fat)",
  9457. image: {
  9458. source: "./media/characters/samantha-kruse/fat.svg",
  9459. extra: 2688 / 2561
  9460. }
  9461. },
  9462. },
  9463. [
  9464. {
  9465. name: "Normal",
  9466. height: math.unit(5 + 9 / 12, "feet"),
  9467. default: true
  9468. }
  9469. ]
  9470. ))
  9471. characterMakers.push(() => makeCharacter(
  9472. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9473. {
  9474. back: {
  9475. height: math.unit(5 + 4 / 12, "feet"),
  9476. weight: math.unit(4963, "lb"),
  9477. name: "Back",
  9478. image: {
  9479. source: "./media/characters/amelia-rosie/back.svg",
  9480. extra: 1113 / 963,
  9481. bottom: 0.01
  9482. }
  9483. },
  9484. },
  9485. [
  9486. {
  9487. name: "Level 0",
  9488. height: math.unit(5 + 4 / 12, "feet")
  9489. },
  9490. {
  9491. name: "Level 1",
  9492. height: math.unit(164597, "feet"),
  9493. default: true
  9494. },
  9495. {
  9496. name: "Level 2",
  9497. height: math.unit(956243, "miles")
  9498. },
  9499. {
  9500. name: "Level 3",
  9501. height: math.unit(29421709423, "miles")
  9502. },
  9503. {
  9504. name: "Level 4",
  9505. height: math.unit(154, "lightyears")
  9506. },
  9507. {
  9508. name: "Level 5",
  9509. height: math.unit(4738272, "lightyears")
  9510. },
  9511. {
  9512. name: "Level 6",
  9513. height: math.unit(145787152896, "lightyears")
  9514. },
  9515. ]
  9516. ))
  9517. characterMakers.push(() => makeCharacter(
  9518. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9519. {
  9520. front: {
  9521. height: math.unit(5 + 11 / 12, "feet"),
  9522. weight: math.unit(65, "kg"),
  9523. name: "Front",
  9524. image: {
  9525. source: "./media/characters/rook-kitara/front.svg",
  9526. extra: 1347 / 1274,
  9527. bottom: 0.005
  9528. }
  9529. },
  9530. },
  9531. [
  9532. {
  9533. name: "Totally Unfair",
  9534. height: math.unit(1.8, "mm")
  9535. },
  9536. {
  9537. name: "Lap Rookie",
  9538. height: math.unit(1.4, "feet")
  9539. },
  9540. {
  9541. name: "Normal",
  9542. height: math.unit(5 + 11 / 12, "feet"),
  9543. default: true
  9544. },
  9545. {
  9546. name: "How Did This Happen",
  9547. height: math.unit(80, "miles")
  9548. }
  9549. ]
  9550. ))
  9551. characterMakers.push(() => makeCharacter(
  9552. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9553. {
  9554. front: {
  9555. height: math.unit(7, "feet"),
  9556. weight: math.unit(300, "lb"),
  9557. name: "Front",
  9558. image: {
  9559. source: "./media/characters/pisces/front.svg",
  9560. extra: 2255 / 2115,
  9561. bottom: 0.03
  9562. }
  9563. },
  9564. back: {
  9565. height: math.unit(7, "feet"),
  9566. weight: math.unit(300, "lb"),
  9567. name: "Back",
  9568. image: {
  9569. source: "./media/characters/pisces/back.svg",
  9570. extra: 2146 / 2055,
  9571. bottom: 0.04
  9572. }
  9573. },
  9574. },
  9575. [
  9576. {
  9577. name: "Normal",
  9578. height: math.unit(7, "feet"),
  9579. default: true
  9580. },
  9581. {
  9582. name: "Swimming Pool",
  9583. height: math.unit(12.2, "meters")
  9584. },
  9585. {
  9586. name: "Olympic Swimming Pool",
  9587. height: math.unit(56.3, "meters")
  9588. },
  9589. {
  9590. name: "Lake Superior",
  9591. height: math.unit(93900, "meters")
  9592. },
  9593. {
  9594. name: "Mediterranean Sea",
  9595. height: math.unit(644457, "meters")
  9596. },
  9597. {
  9598. name: "World's Oceans",
  9599. height: math.unit(4567491, "meters")
  9600. },
  9601. ]
  9602. ))
  9603. characterMakers.push(() => makeCharacter(
  9604. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9605. {
  9606. front: {
  9607. height: math.unit(2.3, "meters"),
  9608. weight: math.unit(120, "kg"),
  9609. name: "Front",
  9610. image: {
  9611. source: "./media/characters/zelas/front.svg"
  9612. }
  9613. },
  9614. side: {
  9615. height: math.unit(2.3, "meters"),
  9616. weight: math.unit(120, "kg"),
  9617. name: "Side",
  9618. image: {
  9619. source: "./media/characters/zelas/side.svg"
  9620. }
  9621. },
  9622. back: {
  9623. height: math.unit(2.3, "meters"),
  9624. weight: math.unit(120, "kg"),
  9625. name: "Back",
  9626. image: {
  9627. source: "./media/characters/zelas/back.svg"
  9628. }
  9629. },
  9630. foot: {
  9631. height: math.unit(1.116, "feet"),
  9632. name: "Foot",
  9633. image: {
  9634. source: "./media/characters/zelas/foot.svg"
  9635. }
  9636. },
  9637. },
  9638. [
  9639. {
  9640. name: "Normal",
  9641. height: math.unit(2.3, "meters")
  9642. },
  9643. {
  9644. name: "Macro",
  9645. height: math.unit(30, "meters"),
  9646. default: true
  9647. },
  9648. ]
  9649. ))
  9650. characterMakers.push(() => makeCharacter(
  9651. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9652. {
  9653. front: {
  9654. height: math.unit(1, "inch"),
  9655. weight: math.unit(0.21, "grams"),
  9656. name: "Front",
  9657. image: {
  9658. source: "./media/characters/talbot/front.svg",
  9659. extra: 594 / 544
  9660. }
  9661. },
  9662. },
  9663. [
  9664. {
  9665. name: "Micro",
  9666. height: math.unit(1, "inch"),
  9667. default: true
  9668. },
  9669. ]
  9670. ))
  9671. characterMakers.push(() => makeCharacter(
  9672. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9673. {
  9674. front: {
  9675. height: math.unit(3 + 3 / 12, "feet"),
  9676. weight: math.unit(51.8, "lb"),
  9677. name: "Front",
  9678. image: {
  9679. source: "./media/characters/fliss/front.svg",
  9680. extra: 840 / 640
  9681. }
  9682. },
  9683. },
  9684. [
  9685. {
  9686. name: "Teeny Tiny",
  9687. height: math.unit(1, "mm")
  9688. },
  9689. {
  9690. name: "Small",
  9691. height: math.unit(1, "inch"),
  9692. default: true
  9693. },
  9694. {
  9695. name: "Standard Sylveon",
  9696. height: math.unit(3 + 3 / 12, "feet")
  9697. },
  9698. {
  9699. name: "Large Nuisance",
  9700. height: math.unit(33, "feet")
  9701. },
  9702. {
  9703. name: "City Filler",
  9704. height: math.unit(3000, "feet")
  9705. },
  9706. {
  9707. name: "New Horizon",
  9708. height: math.unit(6000, "miles")
  9709. },
  9710. ]
  9711. ))
  9712. characterMakers.push(() => makeCharacter(
  9713. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9714. {
  9715. front: {
  9716. height: math.unit(5, "cm"),
  9717. weight: math.unit(1.94, "g"),
  9718. name: "Front",
  9719. image: {
  9720. source: "./media/characters/fleta/front.svg",
  9721. extra: 835 / 803
  9722. }
  9723. },
  9724. back: {
  9725. height: math.unit(5, "cm"),
  9726. weight: math.unit(1.94, "g"),
  9727. name: "Back",
  9728. image: {
  9729. source: "./media/characters/fleta/back.svg",
  9730. extra: 835 / 803
  9731. }
  9732. },
  9733. },
  9734. [
  9735. {
  9736. name: "Micro",
  9737. height: math.unit(5, "cm"),
  9738. default: true
  9739. },
  9740. ]
  9741. ))
  9742. characterMakers.push(() => makeCharacter(
  9743. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9744. {
  9745. front: {
  9746. height: math.unit(6, "feet"),
  9747. weight: math.unit(225, "lb"),
  9748. name: "Front",
  9749. image: {
  9750. source: "./media/characters/dominic/front.svg",
  9751. extra: 1770 / 1620,
  9752. bottom: 0.025
  9753. }
  9754. },
  9755. back: {
  9756. height: math.unit(6, "feet"),
  9757. weight: math.unit(225, "lb"),
  9758. name: "Back",
  9759. image: {
  9760. source: "./media/characters/dominic/back.svg",
  9761. extra: 1745 / 1620,
  9762. bottom: 0.065
  9763. }
  9764. },
  9765. },
  9766. [
  9767. {
  9768. name: "Nano",
  9769. height: math.unit(0.1, "mm")
  9770. },
  9771. {
  9772. name: "Micro-",
  9773. height: math.unit(1, "mm")
  9774. },
  9775. {
  9776. name: "Micro",
  9777. height: math.unit(4, "inches")
  9778. },
  9779. {
  9780. name: "Normal",
  9781. height: math.unit(6 + 4 / 12, "feet"),
  9782. default: true
  9783. },
  9784. {
  9785. name: "Macro",
  9786. height: math.unit(115, "feet")
  9787. },
  9788. {
  9789. name: "Macro+",
  9790. height: math.unit(955, "feet")
  9791. },
  9792. {
  9793. name: "Megamacro",
  9794. height: math.unit(8990, "feet")
  9795. },
  9796. {
  9797. name: "Gigmacro",
  9798. height: math.unit(9310, "miles")
  9799. },
  9800. {
  9801. name: "Teramacro",
  9802. height: math.unit(1567005010, "miles")
  9803. },
  9804. {
  9805. name: "Examacro",
  9806. height: math.unit(1425, "parsecs")
  9807. },
  9808. ]
  9809. ))
  9810. characterMakers.push(() => makeCharacter(
  9811. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9812. {
  9813. front: {
  9814. height: math.unit(400, "feet"),
  9815. weight: math.unit(44444444, "lb"),
  9816. name: "Front",
  9817. image: {
  9818. source: "./media/characters/major-colonel/front.svg"
  9819. }
  9820. },
  9821. back: {
  9822. height: math.unit(400, "feet"),
  9823. weight: math.unit(44444444, "lb"),
  9824. name: "Back",
  9825. image: {
  9826. source: "./media/characters/major-colonel/back.svg"
  9827. }
  9828. },
  9829. },
  9830. [
  9831. {
  9832. name: "Macro",
  9833. height: math.unit(400, "feet"),
  9834. default: true
  9835. },
  9836. ]
  9837. ))
  9838. characterMakers.push(() => makeCharacter(
  9839. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9840. {
  9841. catFront: {
  9842. height: math.unit(6, "feet"),
  9843. weight: math.unit(120, "lb"),
  9844. name: "Front (Cat Side)",
  9845. image: {
  9846. source: "./media/characters/axel-lycan/cat-front.svg",
  9847. extra: 430 / 402,
  9848. bottom: 43 / 472.35
  9849. }
  9850. },
  9851. catBack: {
  9852. height: math.unit(6, "feet"),
  9853. weight: math.unit(120, "lb"),
  9854. name: "Back (Cat Side)",
  9855. image: {
  9856. source: "./media/characters/axel-lycan/cat-back.svg",
  9857. extra: 447 / 419,
  9858. bottom: 23.3 / 469
  9859. }
  9860. },
  9861. wolfFront: {
  9862. height: math.unit(6, "feet"),
  9863. weight: math.unit(120, "lb"),
  9864. name: "Front (Wolf Side)",
  9865. image: {
  9866. source: "./media/characters/axel-lycan/wolf-front.svg",
  9867. extra: 485 / 456,
  9868. bottom: 19 / 504
  9869. }
  9870. },
  9871. wolfBack: {
  9872. height: math.unit(6, "feet"),
  9873. weight: math.unit(120, "lb"),
  9874. name: "Back (Wolf Side)",
  9875. image: {
  9876. source: "./media/characters/axel-lycan/wolf-back.svg",
  9877. extra: 475 / 438,
  9878. bottom: 39.2 / 514
  9879. }
  9880. },
  9881. },
  9882. [
  9883. {
  9884. name: "Macro",
  9885. height: math.unit(1, "km"),
  9886. default: true
  9887. },
  9888. ]
  9889. ))
  9890. characterMakers.push(() => makeCharacter(
  9891. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9892. {
  9893. front: {
  9894. height: math.unit(5 + 9 / 12, "feet"),
  9895. weight: math.unit(175, "lb"),
  9896. name: "Front",
  9897. image: {
  9898. source: "./media/characters/vanrel-hyena/front.svg",
  9899. extra: 1086 / 1010,
  9900. bottom: 0.04
  9901. }
  9902. },
  9903. },
  9904. [
  9905. {
  9906. name: "Normal",
  9907. height: math.unit(5 + 9 / 12, "feet"),
  9908. default: true
  9909. },
  9910. ]
  9911. ))
  9912. characterMakers.push(() => makeCharacter(
  9913. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9914. {
  9915. front: {
  9916. height: math.unit(6, "feet"),
  9917. weight: math.unit(103, "lb"),
  9918. name: "Front",
  9919. image: {
  9920. source: "./media/characters/abbott-absol/front.svg",
  9921. extra: 2010 / 1842
  9922. }
  9923. },
  9924. },
  9925. [
  9926. {
  9927. name: "Megamicro",
  9928. height: math.unit(0.1, "mm")
  9929. },
  9930. {
  9931. name: "Micro",
  9932. height: math.unit(1, "inch")
  9933. },
  9934. {
  9935. name: "Normal",
  9936. height: math.unit(6, "feet"),
  9937. default: true
  9938. },
  9939. ]
  9940. ))
  9941. characterMakers.push(() => makeCharacter(
  9942. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9943. {
  9944. front: {
  9945. height: math.unit(6, "feet"),
  9946. weight: math.unit(264, "lb"),
  9947. name: "Front",
  9948. image: {
  9949. source: "./media/characters/hector/front.svg",
  9950. extra: 2280 / 2130,
  9951. bottom: 0.07
  9952. }
  9953. },
  9954. },
  9955. [
  9956. {
  9957. name: "Normal",
  9958. height: math.unit(12.25, "foot"),
  9959. default: true
  9960. },
  9961. {
  9962. name: "Macro",
  9963. height: math.unit(160, "feet")
  9964. },
  9965. ]
  9966. ))
  9967. characterMakers.push(() => makeCharacter(
  9968. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9969. {
  9970. front: {
  9971. height: math.unit(6, "feet"),
  9972. weight: math.unit(150, "lb"),
  9973. name: "Front",
  9974. image: {
  9975. source: "./media/characters/sal/front.svg",
  9976. extra: 1846 / 1699,
  9977. bottom: 0.04
  9978. }
  9979. },
  9980. },
  9981. [
  9982. {
  9983. name: "Megamacro",
  9984. height: math.unit(10, "miles"),
  9985. default: true
  9986. },
  9987. ]
  9988. ))
  9989. characterMakers.push(() => makeCharacter(
  9990. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9991. {
  9992. front: {
  9993. height: math.unit(3, "meters"),
  9994. weight: math.unit(450, "kg"),
  9995. name: "front",
  9996. image: {
  9997. source: "./media/characters/ranger/front.svg",
  9998. extra: 2401 / 2243,
  9999. bottom: 0.05
  10000. }
  10001. },
  10002. },
  10003. [
  10004. {
  10005. name: "Normal",
  10006. height: math.unit(3, "meters"),
  10007. default: true
  10008. },
  10009. ]
  10010. ))
  10011. characterMakers.push(() => makeCharacter(
  10012. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10013. {
  10014. front: {
  10015. height: math.unit(14, "feet"),
  10016. weight: math.unit(800, "kg"),
  10017. name: "Front",
  10018. image: {
  10019. source: "./media/characters/theresa/front.svg",
  10020. extra: 3575 / 3346,
  10021. bottom: 0.03
  10022. }
  10023. },
  10024. },
  10025. [
  10026. {
  10027. name: "Normal",
  10028. height: math.unit(14, "feet"),
  10029. default: true
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10035. {
  10036. front: {
  10037. height: math.unit(6, "feet"),
  10038. weight: math.unit(3, "kg"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/ine/front.svg",
  10042. extra: 678 / 539,
  10043. bottom: 0.023
  10044. }
  10045. },
  10046. },
  10047. [
  10048. {
  10049. name: "Normal",
  10050. height: math.unit(2.265, "feet"),
  10051. default: true
  10052. },
  10053. ]
  10054. ))
  10055. characterMakers.push(() => makeCharacter(
  10056. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10057. {
  10058. front: {
  10059. height: math.unit(5, "feet"),
  10060. weight: math.unit(30, "kg"),
  10061. name: "Front",
  10062. image: {
  10063. source: "./media/characters/vial/front.svg",
  10064. extra: 1365 / 1277,
  10065. bottom: 0.04
  10066. }
  10067. },
  10068. },
  10069. [
  10070. {
  10071. name: "Normal",
  10072. height: math.unit(5, "feet"),
  10073. default: true
  10074. },
  10075. ]
  10076. ))
  10077. characterMakers.push(() => makeCharacter(
  10078. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10079. {
  10080. side: {
  10081. height: math.unit(3.4, "meters"),
  10082. weight: math.unit(1000, "lb"),
  10083. name: "Side",
  10084. image: {
  10085. source: "./media/characters/rovoska/side.svg",
  10086. extra: 4403 / 1515
  10087. }
  10088. },
  10089. },
  10090. [
  10091. {
  10092. name: "Normal",
  10093. height: math.unit(3.4, "meters"),
  10094. default: true
  10095. },
  10096. ]
  10097. ))
  10098. characterMakers.push(() => makeCharacter(
  10099. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10100. {
  10101. front: {
  10102. height: math.unit(8, "feet"),
  10103. weight: math.unit(315, "lb"),
  10104. name: "Front",
  10105. image: {
  10106. source: "./media/characters/gunner-rotthbauer/front.svg"
  10107. }
  10108. },
  10109. back: {
  10110. height: math.unit(8, "feet"),
  10111. weight: math.unit(315, "lb"),
  10112. name: "Back",
  10113. image: {
  10114. source: "./media/characters/gunner-rotthbauer/back.svg"
  10115. }
  10116. },
  10117. },
  10118. [
  10119. {
  10120. name: "Micro",
  10121. height: math.unit(3.5, "inches")
  10122. },
  10123. {
  10124. name: "Normal",
  10125. height: math.unit(8, "feet"),
  10126. default: true
  10127. },
  10128. {
  10129. name: "Macro",
  10130. height: math.unit(250, "feet")
  10131. },
  10132. {
  10133. name: "Megamacro",
  10134. height: math.unit(1, "AU")
  10135. },
  10136. ]
  10137. ))
  10138. characterMakers.push(() => makeCharacter(
  10139. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10140. {
  10141. front: {
  10142. height: math.unit(5 + 5 / 12, "feet"),
  10143. weight: math.unit(140, "lb"),
  10144. name: "Front",
  10145. image: {
  10146. source: "./media/characters/allatia/front.svg",
  10147. extra: 1227 / 1180,
  10148. bottom: 0.027
  10149. }
  10150. },
  10151. },
  10152. [
  10153. {
  10154. name: "Normal",
  10155. height: math.unit(5 + 5 / 12, "feet")
  10156. },
  10157. {
  10158. name: "Macro",
  10159. height: math.unit(250, "feet"),
  10160. default: true
  10161. },
  10162. {
  10163. name: "Megamacro",
  10164. height: math.unit(8, "miles")
  10165. }
  10166. ]
  10167. ))
  10168. characterMakers.push(() => makeCharacter(
  10169. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10170. {
  10171. front: {
  10172. height: math.unit(6, "feet"),
  10173. weight: math.unit(120, "lb"),
  10174. name: "Front",
  10175. image: {
  10176. source: "./media/characters/tene/front.svg",
  10177. extra: 814/750,
  10178. bottom: 36/850
  10179. }
  10180. },
  10181. stomping: {
  10182. height: math.unit(2.025, "meters"),
  10183. weight: math.unit(120, "lb"),
  10184. name: "Stomping",
  10185. image: {
  10186. source: "./media/characters/tene/stomping.svg",
  10187. extra: 885/821,
  10188. bottom: 15/900
  10189. }
  10190. },
  10191. sitting: {
  10192. height: math.unit(1, "meter"),
  10193. weight: math.unit(120, "lb"),
  10194. name: "Sitting",
  10195. image: {
  10196. source: "./media/characters/tene/sitting.svg",
  10197. extra: 396/366,
  10198. bottom: 79/475
  10199. }
  10200. },
  10201. smiling: {
  10202. height: math.unit(1.2, "feet"),
  10203. name: "Smiling",
  10204. image: {
  10205. source: "./media/characters/tene/smiling.svg",
  10206. extra: 1364/1071,
  10207. bottom: 0/1364
  10208. }
  10209. },
  10210. smug: {
  10211. height: math.unit(1.3, "feet"),
  10212. name: "Smug",
  10213. image: {
  10214. source: "./media/characters/tene/smug.svg",
  10215. extra: 1323/1082,
  10216. bottom: 0/1323
  10217. }
  10218. },
  10219. feral: {
  10220. height: math.unit(3.9, "feet"),
  10221. weight: math.unit(250, "lb"),
  10222. name: "Feral",
  10223. image: {
  10224. source: "./media/characters/tene/feral.svg",
  10225. extra: 717 / 458,
  10226. bottom: 0.179
  10227. }
  10228. },
  10229. },
  10230. [
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(6, "feet")
  10234. },
  10235. {
  10236. name: "Macro",
  10237. height: math.unit(300, "feet"),
  10238. default: true
  10239. },
  10240. {
  10241. name: "Megamacro",
  10242. height: math.unit(5, "miles")
  10243. },
  10244. ]
  10245. ))
  10246. characterMakers.push(() => makeCharacter(
  10247. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10248. {
  10249. side: {
  10250. height: math.unit(6, "feet"),
  10251. name: "Side",
  10252. image: {
  10253. source: "./media/characters/evander/side.svg",
  10254. extra: 877 / 477
  10255. }
  10256. },
  10257. },
  10258. [
  10259. {
  10260. name: "Normal",
  10261. height: math.unit(0.83, "meters"),
  10262. default: true
  10263. },
  10264. ]
  10265. ))
  10266. characterMakers.push(() => makeCharacter(
  10267. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10268. {
  10269. front: {
  10270. height: math.unit(12, "feet"),
  10271. weight: math.unit(1000, "lb"),
  10272. name: "Front",
  10273. image: {
  10274. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10275. extra: 1762 / 1611
  10276. }
  10277. },
  10278. back: {
  10279. height: math.unit(12, "feet"),
  10280. weight: math.unit(1000, "lb"),
  10281. name: "Back",
  10282. image: {
  10283. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10284. extra: 1762 / 1611
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Normal",
  10291. height: math.unit(12, "feet"),
  10292. default: true
  10293. },
  10294. {
  10295. name: "Kaiju",
  10296. height: math.unit(150, "feet")
  10297. },
  10298. ]
  10299. ))
  10300. characterMakers.push(() => makeCharacter(
  10301. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10302. {
  10303. front: {
  10304. height: math.unit(6, "feet"),
  10305. weight: math.unit(150, "lb"),
  10306. name: "Front",
  10307. image: {
  10308. source: "./media/characters/zero-alurus/front.svg"
  10309. }
  10310. },
  10311. back: {
  10312. height: math.unit(6, "feet"),
  10313. weight: math.unit(150, "lb"),
  10314. name: "Back",
  10315. image: {
  10316. source: "./media/characters/zero-alurus/back.svg"
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Normal",
  10323. height: math.unit(5 + 10 / 12, "feet")
  10324. },
  10325. {
  10326. name: "Macro",
  10327. height: math.unit(60, "feet"),
  10328. default: true
  10329. },
  10330. {
  10331. name: "Macro+",
  10332. height: math.unit(450, "feet")
  10333. },
  10334. ]
  10335. ))
  10336. characterMakers.push(() => makeCharacter(
  10337. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10338. {
  10339. front: {
  10340. height: math.unit(6, "feet"),
  10341. weight: math.unit(200, "lb"),
  10342. name: "Front",
  10343. image: {
  10344. source: "./media/characters/mega-shi/front.svg",
  10345. extra: 1279 / 1250,
  10346. bottom: 0.02
  10347. }
  10348. },
  10349. back: {
  10350. height: math.unit(6, "feet"),
  10351. weight: math.unit(200, "lb"),
  10352. name: "Back",
  10353. image: {
  10354. source: "./media/characters/mega-shi/back.svg",
  10355. extra: 1279 / 1250,
  10356. bottom: 0.02
  10357. }
  10358. },
  10359. },
  10360. [
  10361. {
  10362. name: "Micro",
  10363. height: math.unit(16 + 6 / 12, "feet")
  10364. },
  10365. {
  10366. name: "Third Dimension",
  10367. height: math.unit(40, "meters")
  10368. },
  10369. {
  10370. name: "Normal",
  10371. height: math.unit(660, "feet"),
  10372. default: true
  10373. },
  10374. {
  10375. name: "Megamacro",
  10376. height: math.unit(10, "miles")
  10377. },
  10378. {
  10379. name: "Planetary Launch",
  10380. height: math.unit(500, "miles")
  10381. },
  10382. {
  10383. name: "Interstellar",
  10384. height: math.unit(1e9, "miles")
  10385. },
  10386. {
  10387. name: "Leaving the Universe",
  10388. height: math.unit(1, "gigaparsec")
  10389. },
  10390. {
  10391. name: "Travelling Universes",
  10392. height: math.unit(30e15, "parsecs")
  10393. },
  10394. ]
  10395. ))
  10396. characterMakers.push(() => makeCharacter(
  10397. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10398. {
  10399. front: {
  10400. height: math.unit(5 + 4/12, "feet"),
  10401. weight: math.unit(120, "lb"),
  10402. name: "Front",
  10403. image: {
  10404. source: "./media/characters/odyssey/front.svg",
  10405. extra: 1747/1571,
  10406. bottom: 47/1794
  10407. }
  10408. },
  10409. side: {
  10410. height: math.unit(5.1, "feet"),
  10411. weight: math.unit(120, "lb"),
  10412. name: "Side",
  10413. image: {
  10414. source: "./media/characters/odyssey/side.svg",
  10415. extra: 1847/1619,
  10416. bottom: 47/1894
  10417. }
  10418. },
  10419. lounging: {
  10420. height: math.unit(1.464, "feet"),
  10421. weight: math.unit(120, "lb"),
  10422. name: "Lounging",
  10423. image: {
  10424. source: "./media/characters/odyssey/lounging.svg",
  10425. extra: 1235/837,
  10426. bottom: 551/1786
  10427. }
  10428. },
  10429. },
  10430. [
  10431. {
  10432. name: "Normal",
  10433. height: math.unit(5 + 4 / 12, "feet")
  10434. },
  10435. {
  10436. name: "Macro",
  10437. height: math.unit(1, "km")
  10438. },
  10439. {
  10440. name: "Megamacro",
  10441. height: math.unit(3000, "km")
  10442. },
  10443. {
  10444. name: "Gigamacro",
  10445. height: math.unit(1, "AU"),
  10446. default: true
  10447. },
  10448. {
  10449. name: "Omniversal",
  10450. height: math.unit(100e14, "lightyears")
  10451. },
  10452. ]
  10453. ))
  10454. characterMakers.push(() => makeCharacter(
  10455. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10456. {
  10457. front: {
  10458. height: math.unit(6, "feet"),
  10459. weight: math.unit(300, "lb"),
  10460. name: "Front",
  10461. image: {
  10462. source: "./media/characters/mekuto/front.svg",
  10463. extra: 921 / 832,
  10464. bottom: 0.03
  10465. }
  10466. },
  10467. hand: {
  10468. height: math.unit(6 / 10.24, "feet"),
  10469. name: "Hand",
  10470. image: {
  10471. source: "./media/characters/mekuto/hand.svg"
  10472. }
  10473. },
  10474. foot: {
  10475. height: math.unit(6 / 5.05, "feet"),
  10476. name: "Foot",
  10477. image: {
  10478. source: "./media/characters/mekuto/foot.svg"
  10479. }
  10480. },
  10481. },
  10482. [
  10483. {
  10484. name: "Minimicro",
  10485. height: math.unit(0.2, "inches")
  10486. },
  10487. {
  10488. name: "Micro",
  10489. height: math.unit(1.5, "inches")
  10490. },
  10491. {
  10492. name: "Normal",
  10493. height: math.unit(5 + 11 / 12, "feet"),
  10494. default: true
  10495. },
  10496. {
  10497. name: "Minimacro",
  10498. height: math.unit(17 + 9 / 12, "feet")
  10499. },
  10500. {
  10501. name: "Macro",
  10502. height: math.unit(177.5, "feet")
  10503. },
  10504. {
  10505. name: "Megamacro",
  10506. height: math.unit(152, "miles")
  10507. },
  10508. ]
  10509. ))
  10510. characterMakers.push(() => makeCharacter(
  10511. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10512. {
  10513. front: {
  10514. height: math.unit(6.5, "inches"),
  10515. weight: math.unit(13, "oz"),
  10516. name: "Front",
  10517. image: {
  10518. source: "./media/characters/dafydd-tomos/front.svg",
  10519. extra: 2990 / 2603,
  10520. bottom: 0.03
  10521. }
  10522. },
  10523. },
  10524. [
  10525. {
  10526. name: "Micro",
  10527. height: math.unit(6.5, "inches"),
  10528. default: true
  10529. },
  10530. ]
  10531. ))
  10532. characterMakers.push(() => makeCharacter(
  10533. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10534. {
  10535. front: {
  10536. height: math.unit(6, "feet"),
  10537. weight: math.unit(150, "lb"),
  10538. name: "Front",
  10539. image: {
  10540. source: "./media/characters/splinter/front.svg",
  10541. extra: 2990 / 2882,
  10542. bottom: 0.04
  10543. }
  10544. },
  10545. back: {
  10546. height: math.unit(6, "feet"),
  10547. weight: math.unit(150, "lb"),
  10548. name: "Back",
  10549. image: {
  10550. source: "./media/characters/splinter/back.svg",
  10551. extra: 2990 / 2882,
  10552. bottom: 0.04
  10553. }
  10554. },
  10555. },
  10556. [
  10557. {
  10558. name: "Normal",
  10559. height: math.unit(6, "feet")
  10560. },
  10561. {
  10562. name: "Macro",
  10563. height: math.unit(230, "meters"),
  10564. default: true
  10565. },
  10566. ]
  10567. ))
  10568. characterMakers.push(() => makeCharacter(
  10569. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10570. {
  10571. front: {
  10572. height: math.unit(4 + 10 / 12, "feet"),
  10573. weight: math.unit(480, "lb"),
  10574. name: "Front",
  10575. image: {
  10576. source: "./media/characters/snow-gabumon/front.svg",
  10577. extra: 1140 / 963,
  10578. bottom: 0.058
  10579. }
  10580. },
  10581. back: {
  10582. height: math.unit(4 + 10 / 12, "feet"),
  10583. weight: math.unit(480, "lb"),
  10584. name: "Back",
  10585. image: {
  10586. source: "./media/characters/snow-gabumon/back.svg",
  10587. extra: 1115 / 962,
  10588. bottom: 0.041
  10589. }
  10590. },
  10591. frontUndresed: {
  10592. height: math.unit(4 + 10 / 12, "feet"),
  10593. weight: math.unit(480, "lb"),
  10594. name: "Front (Undressed)",
  10595. image: {
  10596. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10597. extra: 1061 / 960,
  10598. bottom: 0.045
  10599. }
  10600. },
  10601. },
  10602. [
  10603. {
  10604. name: "Micro",
  10605. height: math.unit(1, "inch")
  10606. },
  10607. {
  10608. name: "Normal",
  10609. height: math.unit(4 + 10 / 12, "feet"),
  10610. default: true
  10611. },
  10612. {
  10613. name: "Macro",
  10614. height: math.unit(200, "feet")
  10615. },
  10616. {
  10617. name: "Megamacro",
  10618. height: math.unit(120, "miles")
  10619. },
  10620. {
  10621. name: "Gigamacro",
  10622. height: math.unit(9800, "miles")
  10623. },
  10624. ]
  10625. ))
  10626. characterMakers.push(() => makeCharacter(
  10627. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10628. {
  10629. front: {
  10630. height: math.unit(1.7, "meters"),
  10631. weight: math.unit(140, "lb"),
  10632. name: "Front",
  10633. image: {
  10634. source: "./media/characters/moody/front.svg",
  10635. extra: 3226 / 3007,
  10636. bottom: 0.087
  10637. }
  10638. },
  10639. },
  10640. [
  10641. {
  10642. name: "Micro",
  10643. height: math.unit(1, "mm")
  10644. },
  10645. {
  10646. name: "Normal",
  10647. height: math.unit(1.7, "meters"),
  10648. default: true
  10649. },
  10650. {
  10651. name: "Macro",
  10652. height: math.unit(80, "meters")
  10653. },
  10654. {
  10655. name: "Macro+",
  10656. height: math.unit(500, "meters")
  10657. },
  10658. ]
  10659. ))
  10660. characterMakers.push(() => makeCharacter(
  10661. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10662. {
  10663. front: {
  10664. height: math.unit(6, "feet"),
  10665. weight: math.unit(150, "lb"),
  10666. name: "Front",
  10667. image: {
  10668. source: "./media/characters/zyas/front.svg",
  10669. extra: 1180 / 1120,
  10670. bottom: 0.045
  10671. }
  10672. },
  10673. },
  10674. [
  10675. {
  10676. name: "Normal",
  10677. height: math.unit(10, "feet"),
  10678. default: true
  10679. },
  10680. {
  10681. name: "Macro",
  10682. height: math.unit(500, "feet")
  10683. },
  10684. {
  10685. name: "Megamacro",
  10686. height: math.unit(5, "miles")
  10687. },
  10688. {
  10689. name: "Teramacro",
  10690. height: math.unit(150000, "miles")
  10691. },
  10692. ]
  10693. ))
  10694. characterMakers.push(() => makeCharacter(
  10695. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10696. {
  10697. front: {
  10698. height: math.unit(6, "feet"),
  10699. weight: math.unit(150, "lb"),
  10700. name: "Front",
  10701. image: {
  10702. source: "./media/characters/cuon/front.svg",
  10703. extra: 1390 / 1320,
  10704. bottom: 0.008
  10705. }
  10706. },
  10707. },
  10708. [
  10709. {
  10710. name: "Micro",
  10711. height: math.unit(3, "inches")
  10712. },
  10713. {
  10714. name: "Normal",
  10715. height: math.unit(18 + 9 / 12, "feet"),
  10716. default: true
  10717. },
  10718. {
  10719. name: "Macro",
  10720. height: math.unit(360, "feet")
  10721. },
  10722. {
  10723. name: "Megamacro",
  10724. height: math.unit(360, "miles")
  10725. },
  10726. ]
  10727. ))
  10728. characterMakers.push(() => makeCharacter(
  10729. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10730. {
  10731. front: {
  10732. height: math.unit(2.4, "meters"),
  10733. weight: math.unit(70, "kg"),
  10734. name: "Front",
  10735. image: {
  10736. source: "./media/characters/nyanuxk/front.svg",
  10737. extra: 1172 / 1084,
  10738. bottom: 0.065
  10739. }
  10740. },
  10741. side: {
  10742. height: math.unit(2.4, "meters"),
  10743. weight: math.unit(70, "kg"),
  10744. name: "Side",
  10745. image: {
  10746. source: "./media/characters/nyanuxk/side.svg",
  10747. extra: 1190 / 1132,
  10748. bottom: 0.007
  10749. }
  10750. },
  10751. back: {
  10752. height: math.unit(2.4, "meters"),
  10753. weight: math.unit(70, "kg"),
  10754. name: "Back",
  10755. image: {
  10756. source: "./media/characters/nyanuxk/back.svg",
  10757. extra: 1200 / 1141,
  10758. bottom: 0.015
  10759. }
  10760. },
  10761. foot: {
  10762. height: math.unit(0.52, "meters"),
  10763. name: "Foot",
  10764. image: {
  10765. source: "./media/characters/nyanuxk/foot.svg"
  10766. }
  10767. },
  10768. },
  10769. [
  10770. {
  10771. name: "Micro",
  10772. height: math.unit(2, "cm")
  10773. },
  10774. {
  10775. name: "Normal",
  10776. height: math.unit(2.4, "meters"),
  10777. default: true
  10778. },
  10779. {
  10780. name: "Smaller Macro",
  10781. height: math.unit(120, "meters")
  10782. },
  10783. {
  10784. name: "Bigger Macro",
  10785. height: math.unit(1.2, "km")
  10786. },
  10787. {
  10788. name: "Megamacro",
  10789. height: math.unit(15, "kilometers")
  10790. },
  10791. {
  10792. name: "Gigamacro",
  10793. height: math.unit(2000, "km")
  10794. },
  10795. {
  10796. name: "Teramacro",
  10797. height: math.unit(500000, "km")
  10798. },
  10799. ]
  10800. ))
  10801. characterMakers.push(() => makeCharacter(
  10802. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10803. {
  10804. side: {
  10805. height: math.unit(6, "feet"),
  10806. name: "Side",
  10807. image: {
  10808. source: "./media/characters/ailbhe/side.svg",
  10809. extra: 757 / 464,
  10810. bottom: 0.041
  10811. }
  10812. },
  10813. },
  10814. [
  10815. {
  10816. name: "Normal",
  10817. height: math.unit(1.07, "meters"),
  10818. default: true
  10819. },
  10820. ]
  10821. ))
  10822. characterMakers.push(() => makeCharacter(
  10823. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10824. {
  10825. front: {
  10826. height: math.unit(6, "feet"),
  10827. weight: math.unit(120, "kg"),
  10828. name: "Front",
  10829. image: {
  10830. source: "./media/characters/zevulfius/front.svg",
  10831. extra: 965 / 903
  10832. }
  10833. },
  10834. side: {
  10835. height: math.unit(6, "feet"),
  10836. weight: math.unit(120, "kg"),
  10837. name: "Side",
  10838. image: {
  10839. source: "./media/characters/zevulfius/side.svg",
  10840. extra: 939 / 900
  10841. }
  10842. },
  10843. back: {
  10844. height: math.unit(6, "feet"),
  10845. weight: math.unit(120, "kg"),
  10846. name: "Back",
  10847. image: {
  10848. source: "./media/characters/zevulfius/back.svg",
  10849. extra: 918 / 854,
  10850. bottom: 0.005
  10851. }
  10852. },
  10853. foot: {
  10854. height: math.unit(6 / 3.72, "feet"),
  10855. name: "Foot",
  10856. image: {
  10857. source: "./media/characters/zevulfius/foot.svg"
  10858. }
  10859. },
  10860. },
  10861. [
  10862. {
  10863. name: "Macro",
  10864. height: math.unit(750, "meters")
  10865. },
  10866. {
  10867. name: "Megamacro",
  10868. height: math.unit(20, "km"),
  10869. default: true
  10870. },
  10871. {
  10872. name: "Gigamacro",
  10873. height: math.unit(2000, "km")
  10874. },
  10875. {
  10876. name: "Teramacro",
  10877. height: math.unit(250000, "km")
  10878. },
  10879. ]
  10880. ))
  10881. characterMakers.push(() => makeCharacter(
  10882. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10883. {
  10884. front: {
  10885. height: math.unit(100, "feet"),
  10886. weight: math.unit(350, "kg"),
  10887. name: "Front",
  10888. image: {
  10889. source: "./media/characters/rikes/front.svg",
  10890. extra: 1565 / 1483,
  10891. bottom: 0.017
  10892. }
  10893. },
  10894. },
  10895. [
  10896. {
  10897. name: "Macro",
  10898. height: math.unit(100, "feet"),
  10899. default: true
  10900. },
  10901. ]
  10902. ))
  10903. characterMakers.push(() => makeCharacter(
  10904. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10905. {
  10906. front: {
  10907. height: math.unit(8, "feet"),
  10908. weight: math.unit(356, "lb"),
  10909. name: "Front",
  10910. image: {
  10911. source: "./media/characters/adam-silver-mane/front.svg",
  10912. extra: 1036/937,
  10913. bottom: 63/1099
  10914. }
  10915. },
  10916. side: {
  10917. height: math.unit(8, "feet"),
  10918. weight: math.unit(356, "lb"),
  10919. name: "Side",
  10920. image: {
  10921. source: "./media/characters/adam-silver-mane/side.svg",
  10922. extra: 997/901,
  10923. bottom: 59/1056
  10924. }
  10925. },
  10926. frontNsfw: {
  10927. height: math.unit(8, "feet"),
  10928. weight: math.unit(356, "lb"),
  10929. name: "Front (NSFW)",
  10930. image: {
  10931. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10932. extra: 1036/937,
  10933. bottom: 63/1099
  10934. }
  10935. },
  10936. sideNsfw: {
  10937. height: math.unit(8, "feet"),
  10938. weight: math.unit(356, "lb"),
  10939. name: "Side (NSFW)",
  10940. image: {
  10941. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10942. extra: 997/901,
  10943. bottom: 59/1056
  10944. }
  10945. },
  10946. dick: {
  10947. height: math.unit(2.1, "feet"),
  10948. name: "Dick",
  10949. image: {
  10950. source: "./media/characters/adam-silver-mane/dick.svg"
  10951. }
  10952. },
  10953. taur: {
  10954. height: math.unit(16, "feet"),
  10955. weight: math.unit(1500, "kg"),
  10956. name: "Taur",
  10957. image: {
  10958. source: "./media/characters/adam-silver-mane/taur.svg",
  10959. extra: 1713 / 1571,
  10960. bottom: 0.01
  10961. }
  10962. },
  10963. },
  10964. [
  10965. {
  10966. name: "Normal",
  10967. height: math.unit(8, "feet")
  10968. },
  10969. {
  10970. name: "Minimacro",
  10971. height: math.unit(80, "feet")
  10972. },
  10973. {
  10974. name: "MDA",
  10975. height: math.unit(80, "meters")
  10976. },
  10977. {
  10978. name: "Macro",
  10979. height: math.unit(800, "feet"),
  10980. default: true
  10981. },
  10982. {
  10983. name: "Megamacro",
  10984. height: math.unit(8000, "feet")
  10985. },
  10986. {
  10987. name: "Gigamacro",
  10988. height: math.unit(800, "miles")
  10989. },
  10990. {
  10991. name: "Teramacro",
  10992. height: math.unit(80000, "miles")
  10993. },
  10994. {
  10995. name: "Celestial",
  10996. height: math.unit(8e6, "miles")
  10997. },
  10998. {
  10999. name: "Star Dragon",
  11000. height: math.unit(800000, "parsecs")
  11001. },
  11002. {
  11003. name: "Godly",
  11004. height: math.unit(800, "teraparsecs")
  11005. },
  11006. ]
  11007. ))
  11008. characterMakers.push(() => makeCharacter(
  11009. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11010. {
  11011. front: {
  11012. height: math.unit(6, "feet"),
  11013. weight: math.unit(150, "lb"),
  11014. name: "Front",
  11015. image: {
  11016. source: "./media/characters/ky'owin/front.svg",
  11017. extra: 3888 / 3068,
  11018. bottom: 0.015
  11019. }
  11020. },
  11021. },
  11022. [
  11023. {
  11024. name: "Normal",
  11025. height: math.unit(6 + 8 / 12, "feet")
  11026. },
  11027. {
  11028. name: "Large",
  11029. height: math.unit(68, "feet")
  11030. },
  11031. {
  11032. name: "Macro",
  11033. height: math.unit(132, "feet")
  11034. },
  11035. {
  11036. name: "Macro+",
  11037. height: math.unit(340, "feet")
  11038. },
  11039. {
  11040. name: "Macro++",
  11041. height: math.unit(680, "feet"),
  11042. default: true
  11043. },
  11044. {
  11045. name: "Megamacro",
  11046. height: math.unit(1, "mile")
  11047. },
  11048. {
  11049. name: "Megamacro+",
  11050. height: math.unit(10, "miles")
  11051. },
  11052. ]
  11053. ))
  11054. characterMakers.push(() => makeCharacter(
  11055. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11056. {
  11057. front: {
  11058. height: math.unit(4, "feet"),
  11059. weight: math.unit(50, "lb"),
  11060. name: "Front",
  11061. image: {
  11062. source: "./media/characters/mal/front.svg",
  11063. extra: 785 / 724,
  11064. bottom: 0.07
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Micro",
  11071. height: math.unit(4, "inches")
  11072. },
  11073. {
  11074. name: "Normal",
  11075. height: math.unit(4, "feet"),
  11076. default: true
  11077. },
  11078. {
  11079. name: "Macro",
  11080. height: math.unit(200, "feet")
  11081. },
  11082. ]
  11083. ))
  11084. characterMakers.push(() => makeCharacter(
  11085. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11086. {
  11087. front: {
  11088. height: math.unit(6, "feet"),
  11089. weight: math.unit(150, "lb"),
  11090. name: "Front",
  11091. image: {
  11092. source: "./media/characters/jordan-deware/front.svg",
  11093. extra: 1191 / 1012
  11094. }
  11095. },
  11096. },
  11097. [
  11098. {
  11099. name: "Nano",
  11100. height: math.unit(0.01, "mm")
  11101. },
  11102. {
  11103. name: "Minimicro",
  11104. height: math.unit(1, "mm")
  11105. },
  11106. {
  11107. name: "Micro",
  11108. height: math.unit(0.5, "inches")
  11109. },
  11110. {
  11111. name: "Normal",
  11112. height: math.unit(4, "feet"),
  11113. default: true
  11114. },
  11115. {
  11116. name: "Minimacro",
  11117. height: math.unit(40, "meters")
  11118. },
  11119. {
  11120. name: "Small Macro",
  11121. height: math.unit(400, "meters")
  11122. },
  11123. {
  11124. name: "Macro",
  11125. height: math.unit(4, "miles")
  11126. },
  11127. {
  11128. name: "Megamacro",
  11129. height: math.unit(40, "miles")
  11130. },
  11131. {
  11132. name: "Megamacro+",
  11133. height: math.unit(400, "miles")
  11134. },
  11135. {
  11136. name: "Gigamacro",
  11137. height: math.unit(400000, "miles")
  11138. },
  11139. ]
  11140. ))
  11141. characterMakers.push(() => makeCharacter(
  11142. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11143. {
  11144. side: {
  11145. height: math.unit(6, "feet"),
  11146. weight: math.unit(150, "lb"),
  11147. name: "Side",
  11148. image: {
  11149. source: "./media/characters/kimiko/side.svg",
  11150. extra: 600 / 358
  11151. }
  11152. },
  11153. },
  11154. [
  11155. {
  11156. name: "Normal",
  11157. height: math.unit(15, "feet"),
  11158. default: true
  11159. },
  11160. {
  11161. name: "Macro",
  11162. height: math.unit(220, "feet")
  11163. },
  11164. {
  11165. name: "Macro+",
  11166. height: math.unit(1450, "feet")
  11167. },
  11168. {
  11169. name: "Megamacro",
  11170. height: math.unit(11500, "feet")
  11171. },
  11172. {
  11173. name: "Gigamacro",
  11174. height: math.unit(9500, "miles")
  11175. },
  11176. {
  11177. name: "Teramacro",
  11178. height: math.unit(2208005005, "miles")
  11179. },
  11180. {
  11181. name: "Examacro",
  11182. height: math.unit(2750, "parsecs")
  11183. },
  11184. {
  11185. name: "Zettamacro",
  11186. height: math.unit(101500, "parsecs")
  11187. },
  11188. ]
  11189. ))
  11190. characterMakers.push(() => makeCharacter(
  11191. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11192. {
  11193. front: {
  11194. height: math.unit(6, "feet"),
  11195. weight: math.unit(70, "kg"),
  11196. name: "Front",
  11197. image: {
  11198. source: "./media/characters/andrew-sleepy/front.svg"
  11199. }
  11200. },
  11201. side: {
  11202. height: math.unit(6, "feet"),
  11203. weight: math.unit(70, "kg"),
  11204. name: "Side",
  11205. image: {
  11206. source: "./media/characters/andrew-sleepy/side.svg"
  11207. }
  11208. },
  11209. },
  11210. [
  11211. {
  11212. name: "Micro",
  11213. height: math.unit(1, "mm"),
  11214. default: true
  11215. },
  11216. ]
  11217. ))
  11218. characterMakers.push(() => makeCharacter(
  11219. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11220. {
  11221. front: {
  11222. height: math.unit(6, "feet"),
  11223. weight: math.unit(150, "lb"),
  11224. name: "Front",
  11225. image: {
  11226. source: "./media/characters/judio/front.svg",
  11227. extra: 1258 / 1110
  11228. }
  11229. },
  11230. },
  11231. [
  11232. {
  11233. name: "Normal",
  11234. height: math.unit(5 + 6 / 12, "feet")
  11235. },
  11236. {
  11237. name: "Macro",
  11238. height: math.unit(1000, "feet"),
  11239. default: true
  11240. },
  11241. {
  11242. name: "Megamacro",
  11243. height: math.unit(10, "miles")
  11244. },
  11245. ]
  11246. ))
  11247. characterMakers.push(() => makeCharacter(
  11248. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11249. {
  11250. frontDressed: {
  11251. height: math.unit(6, "feet"),
  11252. weight: math.unit(68, "kg"),
  11253. name: "Front (Dressed)",
  11254. image: {
  11255. source: "./media/characters/nomaxice/front-dressed.svg",
  11256. extra: 1137/824,
  11257. bottom: 74/1211
  11258. }
  11259. },
  11260. frontShorts: {
  11261. height: math.unit(6, "feet"),
  11262. weight: math.unit(68, "kg"),
  11263. name: "Front (Shorts)",
  11264. image: {
  11265. source: "./media/characters/nomaxice/front-shorts.svg",
  11266. extra: 1137/824,
  11267. bottom: 74/1211
  11268. }
  11269. },
  11270. back: {
  11271. height: math.unit(6, "feet"),
  11272. weight: math.unit(68, "kg"),
  11273. name: "Back",
  11274. image: {
  11275. source: "./media/characters/nomaxice/back.svg",
  11276. extra: 822/786,
  11277. bottom: 39/861
  11278. }
  11279. },
  11280. hand: {
  11281. height: math.unit(0.565, "feet"),
  11282. name: "Hand",
  11283. image: {
  11284. source: "./media/characters/nomaxice/hand.svg"
  11285. }
  11286. },
  11287. foot: {
  11288. height: math.unit(1, "feet"),
  11289. name: "Foot",
  11290. image: {
  11291. source: "./media/characters/nomaxice/foot.svg"
  11292. }
  11293. },
  11294. },
  11295. [
  11296. {
  11297. name: "Micro",
  11298. height: math.unit(8, "cm")
  11299. },
  11300. {
  11301. name: "Norm",
  11302. height: math.unit(1.82, "m")
  11303. },
  11304. {
  11305. name: "Norm+",
  11306. height: math.unit(8.8, "feet"),
  11307. default: true
  11308. },
  11309. {
  11310. name: "Big",
  11311. height: math.unit(8, "meters")
  11312. },
  11313. {
  11314. name: "Macro",
  11315. height: math.unit(18, "meters")
  11316. },
  11317. {
  11318. name: "Macro+",
  11319. height: math.unit(88, "meters")
  11320. },
  11321. ]
  11322. ))
  11323. characterMakers.push(() => makeCharacter(
  11324. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11325. {
  11326. front: {
  11327. height: math.unit(12, "feet"),
  11328. weight: math.unit(1.5, "tons"),
  11329. name: "Front",
  11330. image: {
  11331. source: "./media/characters/dydros/front.svg",
  11332. extra: 863 / 800,
  11333. bottom: 0.015
  11334. }
  11335. },
  11336. back: {
  11337. height: math.unit(12, "feet"),
  11338. weight: math.unit(1.5, "tons"),
  11339. name: "Back",
  11340. image: {
  11341. source: "./media/characters/dydros/back.svg",
  11342. extra: 900 / 843,
  11343. bottom: 0.005
  11344. }
  11345. },
  11346. },
  11347. [
  11348. {
  11349. name: "Normal",
  11350. height: math.unit(12, "feet"),
  11351. default: true
  11352. },
  11353. ]
  11354. ))
  11355. characterMakers.push(() => makeCharacter(
  11356. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11357. {
  11358. front: {
  11359. height: math.unit(6, "feet"),
  11360. weight: math.unit(100, "kg"),
  11361. name: "Front",
  11362. image: {
  11363. source: "./media/characters/riggi/front.svg",
  11364. extra: 5787 / 5303
  11365. }
  11366. },
  11367. hyper: {
  11368. height: math.unit(6 * 5 / 3, "feet"),
  11369. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11370. name: "Hyper",
  11371. image: {
  11372. source: "./media/characters/riggi/hyper.svg",
  11373. extra: 3595 / 3485
  11374. }
  11375. },
  11376. },
  11377. [
  11378. {
  11379. name: "Small Macro",
  11380. height: math.unit(50, "feet")
  11381. },
  11382. {
  11383. name: "Default",
  11384. height: math.unit(200, "feet"),
  11385. default: true
  11386. },
  11387. {
  11388. name: "Loom",
  11389. height: math.unit(10000, "feet")
  11390. },
  11391. {
  11392. name: "Cruising Altitude",
  11393. height: math.unit(30000, "feet")
  11394. },
  11395. {
  11396. name: "Megamacro",
  11397. height: math.unit(100, "miles")
  11398. },
  11399. {
  11400. name: "Continent Sized",
  11401. height: math.unit(2800, "miles")
  11402. },
  11403. {
  11404. name: "Earth Sized",
  11405. height: math.unit(8000, "miles")
  11406. },
  11407. ]
  11408. ))
  11409. characterMakers.push(() => makeCharacter(
  11410. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11411. {
  11412. front: {
  11413. height: math.unit(6, "feet"),
  11414. weight: math.unit(250, "lb"),
  11415. name: "Front",
  11416. image: {
  11417. source: "./media/characters/alexi/front.svg",
  11418. extra: 3483 / 3291,
  11419. bottom: 0.04
  11420. }
  11421. },
  11422. back: {
  11423. height: math.unit(6, "feet"),
  11424. weight: math.unit(250, "lb"),
  11425. name: "Back",
  11426. image: {
  11427. source: "./media/characters/alexi/back.svg",
  11428. extra: 3533 / 3356,
  11429. bottom: 0.021
  11430. }
  11431. },
  11432. frontTransforming: {
  11433. height: math.unit(8.58, "feet"),
  11434. weight: math.unit(1300, "lb"),
  11435. name: "Transforming",
  11436. image: {
  11437. source: "./media/characters/alexi/front-transforming.svg",
  11438. extra: 437 / 409,
  11439. bottom: 19 / 458.66
  11440. }
  11441. },
  11442. frontTransformed: {
  11443. height: math.unit(12.5, "feet"),
  11444. weight: math.unit(4000, "lb"),
  11445. name: "Transformed",
  11446. image: {
  11447. source: "./media/characters/alexi/front-transformed.svg",
  11448. extra: 639 / 614,
  11449. bottom: 30.55 / 671
  11450. }
  11451. },
  11452. },
  11453. [
  11454. {
  11455. name: "Normal",
  11456. height: math.unit(14, "feet"),
  11457. default: true
  11458. },
  11459. {
  11460. name: "Minimacro",
  11461. height: math.unit(30, "meters")
  11462. },
  11463. {
  11464. name: "Macro",
  11465. height: math.unit(500, "meters")
  11466. },
  11467. {
  11468. name: "Megamacro",
  11469. height: math.unit(9000, "km")
  11470. },
  11471. {
  11472. name: "Teramacro",
  11473. height: math.unit(384000, "km")
  11474. },
  11475. ]
  11476. ))
  11477. characterMakers.push(() => makeCharacter(
  11478. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11479. {
  11480. front: {
  11481. height: math.unit(6, "feet"),
  11482. weight: math.unit(150, "lb"),
  11483. name: "Front",
  11484. image: {
  11485. source: "./media/characters/kayroo/front.svg",
  11486. extra: 1153 / 1038,
  11487. bottom: 0.06
  11488. }
  11489. },
  11490. foot: {
  11491. height: math.unit(6, "feet"),
  11492. weight: math.unit(150, "lb"),
  11493. name: "Foot",
  11494. image: {
  11495. source: "./media/characters/kayroo/foot.svg"
  11496. }
  11497. },
  11498. },
  11499. [
  11500. {
  11501. name: "Normal",
  11502. height: math.unit(8, "feet"),
  11503. default: true
  11504. },
  11505. {
  11506. name: "Minimacro",
  11507. height: math.unit(250, "feet")
  11508. },
  11509. {
  11510. name: "Macro",
  11511. height: math.unit(2800, "feet")
  11512. },
  11513. {
  11514. name: "Megamacro",
  11515. height: math.unit(5200, "feet")
  11516. },
  11517. {
  11518. name: "Gigamacro",
  11519. height: math.unit(27000, "feet")
  11520. },
  11521. {
  11522. name: "Omega",
  11523. height: math.unit(45000, "feet")
  11524. },
  11525. ]
  11526. ))
  11527. characterMakers.push(() => makeCharacter(
  11528. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11529. {
  11530. front: {
  11531. height: math.unit(18, "feet"),
  11532. weight: math.unit(5800, "lb"),
  11533. name: "Front",
  11534. image: {
  11535. source: "./media/characters/rhys/front.svg",
  11536. extra: 3386 / 3090,
  11537. bottom: 0.07
  11538. }
  11539. },
  11540. },
  11541. [
  11542. {
  11543. name: "Normal",
  11544. height: math.unit(18, "feet"),
  11545. default: true
  11546. },
  11547. {
  11548. name: "Working Size",
  11549. height: math.unit(200, "feet")
  11550. },
  11551. {
  11552. name: "Demolition Size",
  11553. height: math.unit(2000, "feet")
  11554. },
  11555. {
  11556. name: "Maximum Licensed Size",
  11557. height: math.unit(5, "miles")
  11558. },
  11559. {
  11560. name: "Maximum Observed Size",
  11561. height: math.unit(10, "yottameters")
  11562. },
  11563. ]
  11564. ))
  11565. characterMakers.push(() => makeCharacter(
  11566. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11567. {
  11568. front: {
  11569. height: math.unit(6, "feet"),
  11570. weight: math.unit(250, "lb"),
  11571. name: "Front",
  11572. image: {
  11573. source: "./media/characters/toto/front.svg",
  11574. extra: 527 / 479,
  11575. bottom: 0.05
  11576. }
  11577. },
  11578. },
  11579. [
  11580. {
  11581. name: "Micro",
  11582. height: math.unit(3, "feet")
  11583. },
  11584. {
  11585. name: "Normal",
  11586. height: math.unit(10, "feet")
  11587. },
  11588. {
  11589. name: "Macro",
  11590. height: math.unit(150, "feet"),
  11591. default: true
  11592. },
  11593. {
  11594. name: "Megamacro",
  11595. height: math.unit(1200, "feet")
  11596. },
  11597. ]
  11598. ))
  11599. characterMakers.push(() => makeCharacter(
  11600. { name: "King", species: ["lion"], tags: ["anthro"] },
  11601. {
  11602. back: {
  11603. height: math.unit(6, "feet"),
  11604. weight: math.unit(150, "lb"),
  11605. name: "Back",
  11606. image: {
  11607. source: "./media/characters/king/back.svg"
  11608. }
  11609. },
  11610. },
  11611. [
  11612. {
  11613. name: "Micro",
  11614. height: math.unit(2, "inches")
  11615. },
  11616. {
  11617. name: "Normal",
  11618. height: math.unit(8, "feet")
  11619. },
  11620. {
  11621. name: "Macro",
  11622. height: math.unit(200, "feet"),
  11623. default: true
  11624. },
  11625. {
  11626. name: "Megamacro",
  11627. height: math.unit(50, "miles")
  11628. },
  11629. ]
  11630. ))
  11631. characterMakers.push(() => makeCharacter(
  11632. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11633. {
  11634. front: {
  11635. height: math.unit(11, "feet"),
  11636. weight: math.unit(1400, "lb"),
  11637. name: "Front",
  11638. image: {
  11639. source: "./media/characters/cordite/front.svg",
  11640. extra: 1919/1827,
  11641. bottom: 40/1959
  11642. }
  11643. },
  11644. side: {
  11645. height: math.unit(11, "feet"),
  11646. weight: math.unit(1400, "lb"),
  11647. name: "Side",
  11648. image: {
  11649. source: "./media/characters/cordite/side.svg",
  11650. extra: 1908/1793,
  11651. bottom: 38/1946
  11652. }
  11653. },
  11654. back: {
  11655. height: math.unit(11, "feet"),
  11656. weight: math.unit(1400, "lb"),
  11657. name: "Back",
  11658. image: {
  11659. source: "./media/characters/cordite/back.svg",
  11660. extra: 1938/1837,
  11661. bottom: 10/1948
  11662. }
  11663. },
  11664. feral: {
  11665. height: math.unit(2, "feet"),
  11666. weight: math.unit(90, "lb"),
  11667. name: "Feral",
  11668. image: {
  11669. source: "./media/characters/cordite/feral.svg",
  11670. extra: 1260 / 755,
  11671. bottom: 0.05
  11672. }
  11673. },
  11674. },
  11675. [
  11676. {
  11677. name: "Normal",
  11678. height: math.unit(11, "feet"),
  11679. default: true
  11680. },
  11681. ]
  11682. ))
  11683. characterMakers.push(() => makeCharacter(
  11684. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11685. {
  11686. front: {
  11687. height: math.unit(6, "feet"),
  11688. weight: math.unit(150, "lb"),
  11689. name: "Front",
  11690. image: {
  11691. source: "./media/characters/pianostrong/front.svg",
  11692. extra: 6577 / 6254,
  11693. bottom: 0.02
  11694. }
  11695. },
  11696. side: {
  11697. height: math.unit(6, "feet"),
  11698. weight: math.unit(150, "lb"),
  11699. name: "Side",
  11700. image: {
  11701. source: "./media/characters/pianostrong/side.svg",
  11702. extra: 6106 / 5730
  11703. }
  11704. },
  11705. back: {
  11706. height: math.unit(6, "feet"),
  11707. weight: math.unit(150, "lb"),
  11708. name: "Back",
  11709. image: {
  11710. source: "./media/characters/pianostrong/back.svg",
  11711. extra: 6085 / 5733,
  11712. bottom: 0.01
  11713. }
  11714. },
  11715. },
  11716. [
  11717. {
  11718. name: "Macro",
  11719. height: math.unit(100, "feet")
  11720. },
  11721. {
  11722. name: "Macro+",
  11723. height: math.unit(300, "feet"),
  11724. default: true
  11725. },
  11726. {
  11727. name: "Macro++",
  11728. height: math.unit(1000, "feet")
  11729. },
  11730. ]
  11731. ))
  11732. characterMakers.push(() => makeCharacter(
  11733. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11734. {
  11735. front: {
  11736. height: math.unit(6, "feet"),
  11737. weight: math.unit(150, "lb"),
  11738. name: "Front",
  11739. image: {
  11740. source: "./media/characters/kona/front.svg",
  11741. extra: 2960 / 2629,
  11742. bottom: 0.005
  11743. }
  11744. },
  11745. },
  11746. [
  11747. {
  11748. name: "Normal",
  11749. height: math.unit(11 + 8 / 12, "feet")
  11750. },
  11751. {
  11752. name: "Macro",
  11753. height: math.unit(850, "feet"),
  11754. default: true
  11755. },
  11756. {
  11757. name: "Macro+",
  11758. height: math.unit(1.5, "km"),
  11759. default: true
  11760. },
  11761. {
  11762. name: "Megamacro",
  11763. height: math.unit(80, "miles")
  11764. },
  11765. {
  11766. name: "Gigamacro",
  11767. height: math.unit(3500, "miles")
  11768. },
  11769. ]
  11770. ))
  11771. characterMakers.push(() => makeCharacter(
  11772. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11773. {
  11774. side: {
  11775. height: math.unit(1.9, "meters"),
  11776. weight: math.unit(326, "kg"),
  11777. name: "Side",
  11778. image: {
  11779. source: "./media/characters/levi/side.svg",
  11780. extra: 1704 / 1334,
  11781. bottom: 0.02
  11782. }
  11783. },
  11784. },
  11785. [
  11786. {
  11787. name: "Normal",
  11788. height: math.unit(1.9, "meters"),
  11789. default: true
  11790. },
  11791. {
  11792. name: "Macro",
  11793. height: math.unit(20, "meters")
  11794. },
  11795. {
  11796. name: "Macro+",
  11797. height: math.unit(200, "meters")
  11798. },
  11799. {
  11800. name: "Megamacro",
  11801. height: math.unit(2, "km")
  11802. },
  11803. {
  11804. name: "Megamacro+",
  11805. height: math.unit(20, "km")
  11806. },
  11807. {
  11808. name: "Gigamacro",
  11809. height: math.unit(2500, "km")
  11810. },
  11811. {
  11812. name: "Gigamacro+",
  11813. height: math.unit(120000, "km")
  11814. },
  11815. {
  11816. name: "Teramacro",
  11817. height: math.unit(7.77e6, "km")
  11818. },
  11819. ]
  11820. ))
  11821. characterMakers.push(() => makeCharacter(
  11822. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11823. {
  11824. front: {
  11825. height: math.unit(6 + 4/12, "feet"),
  11826. weight: math.unit(190, "lb"),
  11827. name: "Front",
  11828. image: {
  11829. source: "./media/characters/bmc/front.svg",
  11830. extra: 1626/1472,
  11831. bottom: 79/1705
  11832. }
  11833. },
  11834. back: {
  11835. height: math.unit(6 + 4/12, "feet"),
  11836. weight: math.unit(190, "lb"),
  11837. name: "Back",
  11838. image: {
  11839. source: "./media/characters/bmc/back.svg",
  11840. extra: 1640/1479,
  11841. bottom: 45/1685
  11842. }
  11843. },
  11844. frontArmor: {
  11845. height: math.unit(6 + 4/12, "feet"),
  11846. weight: math.unit(190, "lb"),
  11847. name: "Front-armor",
  11848. image: {
  11849. source: "./media/characters/bmc/front-armor.svg",
  11850. extra: 1538/1468,
  11851. bottom: 79/1617
  11852. }
  11853. },
  11854. },
  11855. [
  11856. {
  11857. name: "Human-sized",
  11858. height: math.unit(6 + 4 / 12, "feet")
  11859. },
  11860. {
  11861. name: "Interactive Size",
  11862. height: math.unit(25, "feet")
  11863. },
  11864. {
  11865. name: "Small",
  11866. height: math.unit(250, "feet")
  11867. },
  11868. {
  11869. name: "Normal",
  11870. height: math.unit(1250, "feet"),
  11871. default: true
  11872. },
  11873. {
  11874. name: "Good Day",
  11875. height: math.unit(88, "miles")
  11876. },
  11877. {
  11878. name: "Largest Measured Size",
  11879. height: math.unit(105.960, "galaxies")
  11880. },
  11881. ]
  11882. ))
  11883. characterMakers.push(() => makeCharacter(
  11884. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11885. {
  11886. front: {
  11887. height: math.unit(20, "feet"),
  11888. weight: math.unit(2016, "kg"),
  11889. name: "Front",
  11890. image: {
  11891. source: "./media/characters/sven-the-kaiju/front.svg",
  11892. extra: 1277/1250,
  11893. bottom: 35/1312
  11894. }
  11895. },
  11896. mouth: {
  11897. height: math.unit(1.85, "feet"),
  11898. name: "Mouth",
  11899. image: {
  11900. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11901. }
  11902. },
  11903. },
  11904. [
  11905. {
  11906. name: "Fairy",
  11907. height: math.unit(6, "inches")
  11908. },
  11909. {
  11910. name: "Normal",
  11911. height: math.unit(20, "feet"),
  11912. default: true
  11913. },
  11914. {
  11915. name: "Rampage",
  11916. height: math.unit(200, "feet")
  11917. },
  11918. {
  11919. name: "Archfey Forest Guardian",
  11920. height: math.unit(1, "mile")
  11921. },
  11922. ]
  11923. ))
  11924. characterMakers.push(() => makeCharacter(
  11925. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11926. {
  11927. front: {
  11928. height: math.unit(4, "meters"),
  11929. weight: math.unit(2, "tons"),
  11930. name: "Front",
  11931. image: {
  11932. source: "./media/characters/marik/front.svg",
  11933. extra: 1057 / 1003,
  11934. bottom: 0.08
  11935. }
  11936. },
  11937. },
  11938. [
  11939. {
  11940. name: "Normal",
  11941. height: math.unit(4, "meters"),
  11942. default: true
  11943. },
  11944. {
  11945. name: "Macro",
  11946. height: math.unit(20, "meters")
  11947. },
  11948. {
  11949. name: "Megamacro",
  11950. height: math.unit(50, "km")
  11951. },
  11952. {
  11953. name: "Gigamacro",
  11954. height: math.unit(100, "km")
  11955. },
  11956. {
  11957. name: "Alpha Macro",
  11958. height: math.unit(7.88e7, "yottameters")
  11959. },
  11960. ]
  11961. ))
  11962. characterMakers.push(() => makeCharacter(
  11963. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11964. {
  11965. front: {
  11966. height: math.unit(6, "feet"),
  11967. weight: math.unit(110, "lb"),
  11968. name: "Front",
  11969. image: {
  11970. source: "./media/characters/mel/front.svg",
  11971. extra: 736 / 617,
  11972. bottom: 0.017
  11973. }
  11974. },
  11975. },
  11976. [
  11977. {
  11978. name: "Pico",
  11979. height: math.unit(3, "pm")
  11980. },
  11981. {
  11982. name: "Nano",
  11983. height: math.unit(3, "nm")
  11984. },
  11985. {
  11986. name: "Micro",
  11987. height: math.unit(0.3, "mm"),
  11988. default: true
  11989. },
  11990. {
  11991. name: "Micro+",
  11992. height: math.unit(3, "mm")
  11993. },
  11994. {
  11995. name: "Normal",
  11996. height: math.unit(5 + 10.5 / 12, "feet")
  11997. },
  11998. ]
  11999. ))
  12000. characterMakers.push(() => makeCharacter(
  12001. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12002. {
  12003. kaiju: {
  12004. height: math.unit(1.75, "meters"),
  12005. weight: math.unit(55, "kg"),
  12006. name: "Kaiju",
  12007. image: {
  12008. source: "./media/characters/lykonous/kaiju.svg",
  12009. extra: 1055 / 946,
  12010. bottom: 0.135
  12011. }
  12012. },
  12013. },
  12014. [
  12015. {
  12016. name: "Normal",
  12017. height: math.unit(2.5, "meters"),
  12018. default: true
  12019. },
  12020. {
  12021. name: "Kaiju Dragon",
  12022. height: math.unit(60, "meters")
  12023. },
  12024. {
  12025. name: "Mega Kaiju",
  12026. height: math.unit(120, "km")
  12027. },
  12028. {
  12029. name: "Giga Kaiju",
  12030. height: math.unit(200, "megameters")
  12031. },
  12032. {
  12033. name: "Terra Kaiju",
  12034. height: math.unit(400, "gigameters")
  12035. },
  12036. {
  12037. name: "Kaiju Dragon God",
  12038. height: math.unit(13000, "exaparsecs")
  12039. },
  12040. ]
  12041. ))
  12042. characterMakers.push(() => makeCharacter(
  12043. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12044. {
  12045. front: {
  12046. height: math.unit(6, "feet"),
  12047. weight: math.unit(150, "lb"),
  12048. name: "Front",
  12049. image: {
  12050. source: "./media/characters/blü/front.svg",
  12051. extra: 1883 / 1564,
  12052. bottom: 0.031
  12053. }
  12054. },
  12055. },
  12056. [
  12057. {
  12058. name: "Normal",
  12059. height: math.unit(13, "feet"),
  12060. default: true
  12061. },
  12062. {
  12063. name: "Big Boi",
  12064. height: math.unit(150, "meters")
  12065. },
  12066. {
  12067. name: "Mini Stomper",
  12068. height: math.unit(300, "meters")
  12069. },
  12070. {
  12071. name: "Macro",
  12072. height: math.unit(1000, "meters")
  12073. },
  12074. {
  12075. name: "Megamacro",
  12076. height: math.unit(11000, "meters")
  12077. },
  12078. {
  12079. name: "Gigamacro",
  12080. height: math.unit(11000, "km")
  12081. },
  12082. {
  12083. name: "Teramacro",
  12084. height: math.unit(420000, "km")
  12085. },
  12086. {
  12087. name: "Examacro",
  12088. height: math.unit(120, "parsecs")
  12089. },
  12090. {
  12091. name: "God Tho",
  12092. height: math.unit(98000000000, "parsecs")
  12093. },
  12094. ]
  12095. ))
  12096. characterMakers.push(() => makeCharacter(
  12097. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12098. {
  12099. taurFront: {
  12100. height: math.unit(6, "feet"),
  12101. weight: math.unit(200, "lb"),
  12102. name: "Taur (Front)",
  12103. image: {
  12104. source: "./media/characters/scales/taur-front.svg",
  12105. extra: 1,
  12106. bottom: 0.05
  12107. }
  12108. },
  12109. taurBack: {
  12110. height: math.unit(6, "feet"),
  12111. weight: math.unit(200, "lb"),
  12112. name: "Taur (Back)",
  12113. image: {
  12114. source: "./media/characters/scales/taur-back.svg",
  12115. extra: 1,
  12116. bottom: 0.08
  12117. }
  12118. },
  12119. anthro: {
  12120. height: math.unit(6 * 7 / 12, "feet"),
  12121. weight: math.unit(100, "lb"),
  12122. name: "Anthro",
  12123. image: {
  12124. source: "./media/characters/scales/anthro.svg",
  12125. extra: 1,
  12126. bottom: 0.06
  12127. }
  12128. },
  12129. },
  12130. [
  12131. {
  12132. name: "Normal",
  12133. height: math.unit(12, "feet"),
  12134. default: true
  12135. },
  12136. ]
  12137. ))
  12138. characterMakers.push(() => makeCharacter(
  12139. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12140. {
  12141. front: {
  12142. height: math.unit(6, "feet"),
  12143. weight: math.unit(150, "lb"),
  12144. name: "Front",
  12145. image: {
  12146. source: "./media/characters/koragos/front.svg",
  12147. extra: 841 / 794,
  12148. bottom: 0.035
  12149. }
  12150. },
  12151. back: {
  12152. height: math.unit(6, "feet"),
  12153. weight: math.unit(150, "lb"),
  12154. name: "Back",
  12155. image: {
  12156. source: "./media/characters/koragos/back.svg",
  12157. extra: 841 / 810,
  12158. bottom: 0.022
  12159. }
  12160. },
  12161. },
  12162. [
  12163. {
  12164. name: "Normal",
  12165. height: math.unit(6 + 11 / 12, "feet"),
  12166. default: true
  12167. },
  12168. {
  12169. name: "Macro",
  12170. height: math.unit(490, "feet")
  12171. },
  12172. {
  12173. name: "Megamacro",
  12174. height: math.unit(10, "miles")
  12175. },
  12176. {
  12177. name: "Gigamacro",
  12178. height: math.unit(50, "miles")
  12179. },
  12180. ]
  12181. ))
  12182. characterMakers.push(() => makeCharacter(
  12183. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12184. {
  12185. front: {
  12186. height: math.unit(6, "feet"),
  12187. weight: math.unit(250, "lb"),
  12188. name: "Front",
  12189. image: {
  12190. source: "./media/characters/xylrem/front.svg",
  12191. extra: 3323 / 3050,
  12192. bottom: 0.065
  12193. }
  12194. },
  12195. },
  12196. [
  12197. {
  12198. name: "Micro",
  12199. height: math.unit(4, "feet")
  12200. },
  12201. {
  12202. name: "Normal",
  12203. height: math.unit(16, "feet"),
  12204. default: true
  12205. },
  12206. {
  12207. name: "Macro",
  12208. height: math.unit(2720, "feet")
  12209. },
  12210. {
  12211. name: "Megamacro",
  12212. height: math.unit(25000, "miles")
  12213. },
  12214. ]
  12215. ))
  12216. characterMakers.push(() => makeCharacter(
  12217. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12218. {
  12219. front: {
  12220. height: math.unit(8, "feet"),
  12221. weight: math.unit(250, "kg"),
  12222. name: "Front",
  12223. image: {
  12224. source: "./media/characters/ikideru/front.svg",
  12225. extra: 930 / 870,
  12226. bottom: 0.087
  12227. }
  12228. },
  12229. back: {
  12230. height: math.unit(8, "feet"),
  12231. weight: math.unit(250, "kg"),
  12232. name: "Back",
  12233. image: {
  12234. source: "./media/characters/ikideru/back.svg",
  12235. extra: 919 / 852,
  12236. bottom: 0.055
  12237. }
  12238. },
  12239. },
  12240. [
  12241. {
  12242. name: "Rare",
  12243. height: math.unit(8, "feet"),
  12244. default: true
  12245. },
  12246. {
  12247. name: "Playful Loom",
  12248. height: math.unit(80, "feet")
  12249. },
  12250. {
  12251. name: "City Leaner",
  12252. height: math.unit(230, "feet")
  12253. },
  12254. {
  12255. name: "Megamacro",
  12256. height: math.unit(2500, "feet")
  12257. },
  12258. {
  12259. name: "Gigamacro",
  12260. height: math.unit(26400, "feet")
  12261. },
  12262. {
  12263. name: "Tectonic Shifter",
  12264. height: math.unit(1.7, "megameters")
  12265. },
  12266. {
  12267. name: "Planet Carer",
  12268. height: math.unit(21, "megameters")
  12269. },
  12270. {
  12271. name: "God",
  12272. height: math.unit(11157.22, "parsecs")
  12273. },
  12274. ]
  12275. ))
  12276. characterMakers.push(() => makeCharacter(
  12277. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12278. {
  12279. front: {
  12280. height: math.unit(6, "feet"),
  12281. weight: math.unit(120, "lb"),
  12282. name: "Front",
  12283. image: {
  12284. source: "./media/characters/neo/front.svg"
  12285. }
  12286. },
  12287. },
  12288. [
  12289. {
  12290. name: "Micro",
  12291. height: math.unit(2, "inches"),
  12292. default: true
  12293. },
  12294. {
  12295. name: "Human Size",
  12296. height: math.unit(5 + 8 / 12, "feet")
  12297. },
  12298. ]
  12299. ))
  12300. characterMakers.push(() => makeCharacter(
  12301. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12302. {
  12303. front: {
  12304. height: math.unit(13 + 10 / 12, "feet"),
  12305. weight: math.unit(5320, "lb"),
  12306. name: "Front",
  12307. image: {
  12308. source: "./media/characters/chauncey-chantz/front.svg",
  12309. extra: 1587 / 1435,
  12310. bottom: 0.02
  12311. }
  12312. },
  12313. },
  12314. [
  12315. {
  12316. name: "Normal",
  12317. height: math.unit(13 + 10 / 12, "feet"),
  12318. default: true
  12319. },
  12320. {
  12321. name: "Macro",
  12322. height: math.unit(45, "feet")
  12323. },
  12324. {
  12325. name: "Megamacro",
  12326. height: math.unit(250, "miles")
  12327. },
  12328. {
  12329. name: "Planetary",
  12330. height: math.unit(10000, "miles")
  12331. },
  12332. {
  12333. name: "Galactic",
  12334. height: math.unit(40000, "parsecs")
  12335. },
  12336. {
  12337. name: "Universal",
  12338. height: math.unit(1, "yottameter")
  12339. },
  12340. ]
  12341. ))
  12342. characterMakers.push(() => makeCharacter(
  12343. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12344. {
  12345. front: {
  12346. height: math.unit(6, "feet"),
  12347. weight: math.unit(150, "lb"),
  12348. name: "Front",
  12349. image: {
  12350. source: "./media/characters/epifox/front.svg",
  12351. extra: 1,
  12352. bottom: 0.075
  12353. }
  12354. },
  12355. },
  12356. [
  12357. {
  12358. name: "Micro",
  12359. height: math.unit(6, "inches")
  12360. },
  12361. {
  12362. name: "Normal",
  12363. height: math.unit(12, "feet"),
  12364. default: true
  12365. },
  12366. {
  12367. name: "Macro",
  12368. height: math.unit(3810, "feet")
  12369. },
  12370. {
  12371. name: "Megamacro",
  12372. height: math.unit(500, "miles")
  12373. },
  12374. ]
  12375. ))
  12376. characterMakers.push(() => makeCharacter(
  12377. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12378. {
  12379. front: {
  12380. height: math.unit(1.8796, "m"),
  12381. weight: math.unit(230, "lb"),
  12382. name: "Front",
  12383. image: {
  12384. source: "./media/characters/colin-t/front.svg",
  12385. extra: 1272 / 1193,
  12386. bottom: 0.07
  12387. }
  12388. },
  12389. },
  12390. [
  12391. {
  12392. name: "Micro",
  12393. height: math.unit(0.571, "meters")
  12394. },
  12395. {
  12396. name: "Normal",
  12397. height: math.unit(1.8796, "meters"),
  12398. default: true
  12399. },
  12400. {
  12401. name: "Tall",
  12402. height: math.unit(4, "meters")
  12403. },
  12404. {
  12405. name: "Macro",
  12406. height: math.unit(67.241, "meters")
  12407. },
  12408. {
  12409. name: "Megamacro",
  12410. height: math.unit(371.856, "meters")
  12411. },
  12412. {
  12413. name: "Planetary",
  12414. height: math.unit(12631.5689, "km")
  12415. },
  12416. ]
  12417. ))
  12418. characterMakers.push(() => makeCharacter(
  12419. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12420. {
  12421. front: {
  12422. height: math.unit(1.85, "meters"),
  12423. weight: math.unit(80, "kg"),
  12424. name: "Front",
  12425. image: {
  12426. source: "./media/characters/matvei/front.svg",
  12427. extra: 614 / 594,
  12428. bottom: 0.01
  12429. }
  12430. },
  12431. },
  12432. [
  12433. {
  12434. name: "Normal",
  12435. height: math.unit(1.85, "meters"),
  12436. default: true
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12442. {
  12443. front: {
  12444. height: math.unit(5 + 9 / 12, "feet"),
  12445. weight: math.unit(70, "lb"),
  12446. name: "Front",
  12447. image: {
  12448. source: "./media/characters/quincy/front.svg",
  12449. extra: 3041 / 2751
  12450. }
  12451. },
  12452. back: {
  12453. height: math.unit(5 + 9 / 12, "feet"),
  12454. weight: math.unit(70, "lb"),
  12455. name: "Back",
  12456. image: {
  12457. source: "./media/characters/quincy/back.svg",
  12458. extra: 3041 / 2751
  12459. }
  12460. },
  12461. flying: {
  12462. height: math.unit(5 + 4 / 12, "feet"),
  12463. weight: math.unit(70, "lb"),
  12464. name: "Flying",
  12465. image: {
  12466. source: "./media/characters/quincy/flying.svg",
  12467. extra: 1044 / 930
  12468. }
  12469. },
  12470. },
  12471. [
  12472. {
  12473. name: "Micro",
  12474. height: math.unit(3, "cm")
  12475. },
  12476. {
  12477. name: "Normal",
  12478. height: math.unit(5 + 9 / 12, "feet")
  12479. },
  12480. {
  12481. name: "Macro",
  12482. height: math.unit(200, "meters"),
  12483. default: true
  12484. },
  12485. {
  12486. name: "Megamacro",
  12487. height: math.unit(1000, "meters")
  12488. },
  12489. ]
  12490. ))
  12491. characterMakers.push(() => makeCharacter(
  12492. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12493. {
  12494. front: {
  12495. height: math.unit(3 + 11/12, "feet"),
  12496. weight: math.unit(50, "lb"),
  12497. name: "Front",
  12498. image: {
  12499. source: "./media/characters/vanrel/front.svg",
  12500. extra: 1104/949,
  12501. bottom: 52/1156
  12502. }
  12503. },
  12504. back: {
  12505. height: math.unit(3 + 11/12, "feet"),
  12506. weight: math.unit(50, "lb"),
  12507. name: "Back",
  12508. image: {
  12509. source: "./media/characters/vanrel/back.svg",
  12510. extra: 1119/976,
  12511. bottom: 37/1156
  12512. }
  12513. },
  12514. tome: {
  12515. height: math.unit(1.35, "feet"),
  12516. weight: math.unit(10, "lb"),
  12517. name: "Vanrel's Tome",
  12518. rename: true,
  12519. image: {
  12520. source: "./media/characters/vanrel/tome.svg"
  12521. }
  12522. },
  12523. beans: {
  12524. height: math.unit(0.89, "feet"),
  12525. name: "Beans",
  12526. image: {
  12527. source: "./media/characters/vanrel/beans.svg"
  12528. }
  12529. },
  12530. },
  12531. [
  12532. {
  12533. name: "Normal",
  12534. height: math.unit(3 + 11/12, "feet"),
  12535. default: true
  12536. },
  12537. ]
  12538. ))
  12539. characterMakers.push(() => makeCharacter(
  12540. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12541. {
  12542. front: {
  12543. height: math.unit(7 + 5 / 12, "feet"),
  12544. name: "Front",
  12545. image: {
  12546. source: "./media/characters/kuiper-vanrel/front.svg",
  12547. extra: 1219/1169,
  12548. bottom: 69/1288
  12549. }
  12550. },
  12551. back: {
  12552. height: math.unit(7 + 5 / 12, "feet"),
  12553. name: "Back",
  12554. image: {
  12555. source: "./media/characters/kuiper-vanrel/back.svg",
  12556. extra: 1236/1193,
  12557. bottom: 27/1263
  12558. }
  12559. },
  12560. foot: {
  12561. height: math.unit(0.55, "meters"),
  12562. name: "Foot",
  12563. image: {
  12564. source: "./media/characters/kuiper-vanrel/foot.svg",
  12565. }
  12566. },
  12567. battle: {
  12568. height: math.unit(6.824, "feet"),
  12569. name: "Battle",
  12570. image: {
  12571. source: "./media/characters/kuiper-vanrel/battle.svg",
  12572. extra: 1466 / 1327,
  12573. bottom: 29 / 1492.5
  12574. }
  12575. },
  12576. meerkui: {
  12577. height: math.unit(18, "inches"),
  12578. name: "Meerkui",
  12579. image: {
  12580. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12581. extra: 1354/1289,
  12582. bottom: 69/1423
  12583. }
  12584. },
  12585. },
  12586. [
  12587. {
  12588. name: "Normal",
  12589. height: math.unit(7 + 5 / 12, "feet"),
  12590. default: true
  12591. },
  12592. ]
  12593. ))
  12594. characterMakers.push(() => makeCharacter(
  12595. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12596. {
  12597. front: {
  12598. height: math.unit(8 + 5 / 12, "feet"),
  12599. name: "Front",
  12600. image: {
  12601. source: "./media/characters/keset-vanrel/front.svg",
  12602. extra: 1231/1148,
  12603. bottom: 82/1313
  12604. }
  12605. },
  12606. back: {
  12607. height: math.unit(8 + 5 / 12, "feet"),
  12608. name: "Back",
  12609. image: {
  12610. source: "./media/characters/keset-vanrel/back.svg",
  12611. extra: 1240/1174,
  12612. bottom: 33/1273
  12613. }
  12614. },
  12615. hand: {
  12616. height: math.unit(0.6, "meters"),
  12617. name: "Hand",
  12618. image: {
  12619. source: "./media/characters/keset-vanrel/hand.svg"
  12620. }
  12621. },
  12622. foot: {
  12623. height: math.unit(0.94978, "meters"),
  12624. name: "Foot",
  12625. image: {
  12626. source: "./media/characters/keset-vanrel/foot.svg"
  12627. }
  12628. },
  12629. battle: {
  12630. height: math.unit(7.408, "feet"),
  12631. name: "Battle",
  12632. image: {
  12633. source: "./media/characters/keset-vanrel/battle.svg",
  12634. extra: 1890 / 1386,
  12635. bottom: 73.28 / 1970
  12636. }
  12637. },
  12638. },
  12639. [
  12640. {
  12641. name: "Normal",
  12642. height: math.unit(8 + 5 / 12, "feet"),
  12643. default: true
  12644. },
  12645. ]
  12646. ))
  12647. characterMakers.push(() => makeCharacter(
  12648. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12649. {
  12650. front: {
  12651. height: math.unit(6, "feet"),
  12652. weight: math.unit(150, "lb"),
  12653. name: "Front",
  12654. image: {
  12655. source: "./media/characters/neos/front.svg",
  12656. extra: 1696 / 992,
  12657. bottom: 0.14
  12658. }
  12659. },
  12660. },
  12661. [
  12662. {
  12663. name: "Normal",
  12664. height: math.unit(54, "cm"),
  12665. default: true
  12666. },
  12667. {
  12668. name: "Macro",
  12669. height: math.unit(100, "m")
  12670. },
  12671. {
  12672. name: "Megamacro",
  12673. height: math.unit(10, "km")
  12674. },
  12675. {
  12676. name: "Megamacro+",
  12677. height: math.unit(100, "km")
  12678. },
  12679. {
  12680. name: "Gigamacro",
  12681. height: math.unit(100, "Mm")
  12682. },
  12683. {
  12684. name: "Teramacro",
  12685. height: math.unit(100, "Gm")
  12686. },
  12687. {
  12688. name: "Examacro",
  12689. height: math.unit(100, "Em")
  12690. },
  12691. {
  12692. name: "Godly",
  12693. height: math.unit(10000, "Ym")
  12694. },
  12695. {
  12696. name: "Beyond Godly",
  12697. height: math.unit(25, "multiverses")
  12698. },
  12699. ]
  12700. ))
  12701. characterMakers.push(() => makeCharacter(
  12702. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12703. {
  12704. feminine: {
  12705. height: math.unit(5, "feet"),
  12706. weight: math.unit(100, "lb"),
  12707. name: "Feminine",
  12708. image: {
  12709. source: "./media/characters/sammy-mouse/feminine.svg",
  12710. extra: 2526 / 2425,
  12711. bottom: 0.123
  12712. }
  12713. },
  12714. masculine: {
  12715. height: math.unit(5, "feet"),
  12716. weight: math.unit(100, "lb"),
  12717. name: "Masculine",
  12718. image: {
  12719. source: "./media/characters/sammy-mouse/masculine.svg",
  12720. extra: 2526 / 2425,
  12721. bottom: 0.123
  12722. }
  12723. },
  12724. },
  12725. [
  12726. {
  12727. name: "Micro",
  12728. height: math.unit(5, "inches")
  12729. },
  12730. {
  12731. name: "Normal",
  12732. height: math.unit(5, "feet"),
  12733. default: true
  12734. },
  12735. {
  12736. name: "Macro",
  12737. height: math.unit(60, "feet")
  12738. },
  12739. ]
  12740. ))
  12741. characterMakers.push(() => makeCharacter(
  12742. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12743. {
  12744. front: {
  12745. height: math.unit(4, "feet"),
  12746. weight: math.unit(50, "lb"),
  12747. name: "Front",
  12748. image: {
  12749. source: "./media/characters/kole/front.svg",
  12750. extra: 1423 / 1303,
  12751. bottom: 0.025
  12752. }
  12753. },
  12754. back: {
  12755. height: math.unit(4, "feet"),
  12756. weight: math.unit(50, "lb"),
  12757. name: "Back",
  12758. image: {
  12759. source: "./media/characters/kole/back.svg",
  12760. extra: 1426 / 1280,
  12761. bottom: 0.02
  12762. }
  12763. },
  12764. },
  12765. [
  12766. {
  12767. name: "Normal",
  12768. height: math.unit(4, "feet"),
  12769. default: true
  12770. },
  12771. ]
  12772. ))
  12773. characterMakers.push(() => makeCharacter(
  12774. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12775. {
  12776. front: {
  12777. height: math.unit(2.5, "feet"),
  12778. weight: math.unit(32, "lb"),
  12779. name: "Front",
  12780. image: {
  12781. source: "./media/characters/rufran/front.svg",
  12782. extra: 1313/885,
  12783. bottom: 94/1407
  12784. }
  12785. },
  12786. side: {
  12787. height: math.unit(2.5, "feet"),
  12788. weight: math.unit(32, "lb"),
  12789. name: "Side",
  12790. image: {
  12791. source: "./media/characters/rufran/side.svg",
  12792. extra: 1109/852,
  12793. bottom: 118/1227
  12794. }
  12795. },
  12796. back: {
  12797. height: math.unit(2.5, "feet"),
  12798. weight: math.unit(32, "lb"),
  12799. name: "Back",
  12800. image: {
  12801. source: "./media/characters/rufran/back.svg",
  12802. extra: 1280/878,
  12803. bottom: 131/1411
  12804. }
  12805. },
  12806. mouth: {
  12807. height: math.unit(1.13, "feet"),
  12808. name: "Mouth",
  12809. image: {
  12810. source: "./media/characters/rufran/mouth.svg"
  12811. }
  12812. },
  12813. foot: {
  12814. height: math.unit(1.33, "feet"),
  12815. name: "Foot",
  12816. image: {
  12817. source: "./media/characters/rufran/foot.svg"
  12818. }
  12819. },
  12820. koboldFront: {
  12821. height: math.unit(2 + 6 / 12, "feet"),
  12822. weight: math.unit(20, "lb"),
  12823. name: "Front (Kobold)",
  12824. image: {
  12825. source: "./media/characters/rufran/kobold-front.svg",
  12826. extra: 2041 / 1839,
  12827. bottom: 0.055
  12828. }
  12829. },
  12830. koboldBack: {
  12831. height: math.unit(2 + 6 / 12, "feet"),
  12832. weight: math.unit(20, "lb"),
  12833. name: "Back (Kobold)",
  12834. image: {
  12835. source: "./media/characters/rufran/kobold-back.svg",
  12836. extra: 2054 / 1839,
  12837. bottom: 0.01
  12838. }
  12839. },
  12840. koboldHand: {
  12841. height: math.unit(0.2166, "meters"),
  12842. name: "Hand (Kobold)",
  12843. image: {
  12844. source: "./media/characters/rufran/kobold-hand.svg"
  12845. }
  12846. },
  12847. koboldFoot: {
  12848. height: math.unit(0.185, "meters"),
  12849. name: "Foot (Kobold)",
  12850. image: {
  12851. source: "./media/characters/rufran/kobold-foot.svg"
  12852. }
  12853. },
  12854. },
  12855. [
  12856. {
  12857. name: "Micro",
  12858. height: math.unit(1, "inch")
  12859. },
  12860. {
  12861. name: "Normal",
  12862. height: math.unit(2 + 6 / 12, "feet"),
  12863. default: true
  12864. },
  12865. {
  12866. name: "Big",
  12867. height: math.unit(60, "feet")
  12868. },
  12869. {
  12870. name: "Macro",
  12871. height: math.unit(325, "feet")
  12872. },
  12873. ]
  12874. ))
  12875. characterMakers.push(() => makeCharacter(
  12876. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12877. {
  12878. front: {
  12879. height: math.unit(0.3, "meters"),
  12880. weight: math.unit(3.5, "kg"),
  12881. name: "Front",
  12882. image: {
  12883. source: "./media/characters/chip/front.svg",
  12884. extra: 748 / 674
  12885. }
  12886. },
  12887. },
  12888. [
  12889. {
  12890. name: "Micro",
  12891. height: math.unit(1, "inch"),
  12892. default: true
  12893. },
  12894. ]
  12895. ))
  12896. characterMakers.push(() => makeCharacter(
  12897. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12898. {
  12899. side: {
  12900. height: math.unit(2.3, "meters"),
  12901. weight: math.unit(3500, "lb"),
  12902. name: "Side",
  12903. image: {
  12904. source: "./media/characters/torvid/side.svg",
  12905. extra: 1972 / 722,
  12906. bottom: 0.035
  12907. }
  12908. },
  12909. },
  12910. [
  12911. {
  12912. name: "Normal",
  12913. height: math.unit(2.3, "meters"),
  12914. default: true
  12915. },
  12916. ]
  12917. ))
  12918. characterMakers.push(() => makeCharacter(
  12919. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12920. {
  12921. front: {
  12922. height: math.unit(2, "meters"),
  12923. weight: math.unit(150.5, "kg"),
  12924. name: "Front",
  12925. image: {
  12926. source: "./media/characters/susan/front.svg",
  12927. extra: 693 / 635,
  12928. bottom: 0.05
  12929. }
  12930. },
  12931. },
  12932. [
  12933. {
  12934. name: "Megamacro",
  12935. height: math.unit(505, "miles"),
  12936. default: true
  12937. },
  12938. ]
  12939. ))
  12940. characterMakers.push(() => makeCharacter(
  12941. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12942. {
  12943. front: {
  12944. height: math.unit(6, "feet"),
  12945. weight: math.unit(150, "lb"),
  12946. name: "Front",
  12947. image: {
  12948. source: "./media/characters/raindrops/front.svg",
  12949. extra: 2655 / 2461,
  12950. bottom: 49 / 2705
  12951. }
  12952. },
  12953. back: {
  12954. height: math.unit(6, "feet"),
  12955. weight: math.unit(150, "lb"),
  12956. name: "Back",
  12957. image: {
  12958. source: "./media/characters/raindrops/back.svg",
  12959. extra: 2574 / 2400,
  12960. bottom: 65 / 2634
  12961. }
  12962. },
  12963. },
  12964. [
  12965. {
  12966. name: "Micro",
  12967. height: math.unit(6, "inches")
  12968. },
  12969. {
  12970. name: "Normal",
  12971. height: math.unit(6 + 2 / 12, "feet")
  12972. },
  12973. {
  12974. name: "Macro",
  12975. height: math.unit(131, "feet"),
  12976. default: true
  12977. },
  12978. {
  12979. name: "Megamacro",
  12980. height: math.unit(15, "miles")
  12981. },
  12982. {
  12983. name: "Gigamacro",
  12984. height: math.unit(4000, "miles")
  12985. },
  12986. {
  12987. name: "Teramacro",
  12988. height: math.unit(315000, "miles")
  12989. },
  12990. ]
  12991. ))
  12992. characterMakers.push(() => makeCharacter(
  12993. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12994. {
  12995. front: {
  12996. height: math.unit(2.794, "meters"),
  12997. weight: math.unit(325, "kg"),
  12998. name: "Front",
  12999. image: {
  13000. source: "./media/characters/tezwa/front.svg",
  13001. extra: 2083 / 1906,
  13002. bottom: 0.031
  13003. }
  13004. },
  13005. foot: {
  13006. height: math.unit(0.687, "meters"),
  13007. name: "Foot",
  13008. image: {
  13009. source: "./media/characters/tezwa/foot.svg"
  13010. }
  13011. },
  13012. },
  13013. [
  13014. {
  13015. name: "Normal",
  13016. height: math.unit(9 + 2 / 12, "feet"),
  13017. default: true
  13018. },
  13019. ]
  13020. ))
  13021. characterMakers.push(() => makeCharacter(
  13022. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13023. {
  13024. front: {
  13025. height: math.unit(58, "feet"),
  13026. weight: math.unit(89000, "lb"),
  13027. name: "Front",
  13028. image: {
  13029. source: "./media/characters/typhus/front.svg",
  13030. extra: 816 / 800,
  13031. bottom: 0.065
  13032. }
  13033. },
  13034. },
  13035. [
  13036. {
  13037. name: "Macro",
  13038. height: math.unit(58, "feet"),
  13039. default: true
  13040. },
  13041. ]
  13042. ))
  13043. characterMakers.push(() => makeCharacter(
  13044. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13045. {
  13046. front: {
  13047. height: math.unit(12, "feet"),
  13048. weight: math.unit(6, "tonnes"),
  13049. name: "Front",
  13050. image: {
  13051. source: "./media/characters/lyra-von-wulf/front.svg",
  13052. extra: 1,
  13053. bottom: 0.10
  13054. }
  13055. },
  13056. frontMecha: {
  13057. height: math.unit(12, "feet"),
  13058. weight: math.unit(12, "tonnes"),
  13059. name: "Front (Mecha)",
  13060. image: {
  13061. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13062. extra: 1,
  13063. bottom: 0.042
  13064. }
  13065. },
  13066. maw: {
  13067. height: math.unit(2.2, "feet"),
  13068. name: "Maw",
  13069. image: {
  13070. source: "./media/characters/lyra-von-wulf/maw.svg"
  13071. }
  13072. },
  13073. },
  13074. [
  13075. {
  13076. name: "Normal",
  13077. height: math.unit(12, "feet"),
  13078. default: true
  13079. },
  13080. {
  13081. name: "Classic",
  13082. height: math.unit(50, "feet")
  13083. },
  13084. {
  13085. name: "Macro",
  13086. height: math.unit(500, "feet")
  13087. },
  13088. {
  13089. name: "Megamacro",
  13090. height: math.unit(1, "mile")
  13091. },
  13092. {
  13093. name: "Gigamacro",
  13094. height: math.unit(400, "miles")
  13095. },
  13096. {
  13097. name: "Teramacro",
  13098. height: math.unit(22000, "miles")
  13099. },
  13100. {
  13101. name: "Solarmacro",
  13102. height: math.unit(8600000, "miles")
  13103. },
  13104. {
  13105. name: "Galactic",
  13106. height: math.unit(1057000, "lightyears")
  13107. },
  13108. ]
  13109. ))
  13110. characterMakers.push(() => makeCharacter(
  13111. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13112. {
  13113. front: {
  13114. height: math.unit(6 + 10 / 12, "feet"),
  13115. weight: math.unit(150, "lb"),
  13116. name: "Front",
  13117. image: {
  13118. source: "./media/characters/dixon/front.svg",
  13119. extra: 3361 / 3209,
  13120. bottom: 0.01
  13121. }
  13122. },
  13123. },
  13124. [
  13125. {
  13126. name: "Normal",
  13127. height: math.unit(6 + 10 / 12, "feet"),
  13128. default: true
  13129. },
  13130. {
  13131. name: "Big",
  13132. height: math.unit(12, "meters")
  13133. },
  13134. {
  13135. name: "Macro",
  13136. height: math.unit(500, "meters")
  13137. },
  13138. {
  13139. name: "Megamacro",
  13140. height: math.unit(2, "km")
  13141. },
  13142. ]
  13143. ))
  13144. characterMakers.push(() => makeCharacter(
  13145. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13146. {
  13147. front: {
  13148. height: math.unit(185, "cm"),
  13149. weight: math.unit(68, "kg"),
  13150. name: "Front",
  13151. image: {
  13152. source: "./media/characters/kauko/front.svg",
  13153. extra: 1455 / 1421,
  13154. bottom: 0.03
  13155. }
  13156. },
  13157. back: {
  13158. height: math.unit(185, "cm"),
  13159. weight: math.unit(68, "kg"),
  13160. name: "Back",
  13161. image: {
  13162. source: "./media/characters/kauko/back.svg",
  13163. extra: 1455 / 1421,
  13164. bottom: 0.004
  13165. }
  13166. },
  13167. },
  13168. [
  13169. {
  13170. name: "Normal",
  13171. height: math.unit(185, "cm"),
  13172. default: true
  13173. },
  13174. ]
  13175. ))
  13176. characterMakers.push(() => makeCharacter(
  13177. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13178. {
  13179. front: {
  13180. height: math.unit(6, "feet"),
  13181. weight: math.unit(150, "kg"),
  13182. name: "Front",
  13183. image: {
  13184. source: "./media/characters/varg/front.svg",
  13185. extra: 1108 / 1018,
  13186. bottom: 0.0375
  13187. }
  13188. },
  13189. },
  13190. [
  13191. {
  13192. name: "Normal",
  13193. height: math.unit(5, "meters")
  13194. },
  13195. {
  13196. name: "Macro",
  13197. height: math.unit(200, "meters")
  13198. },
  13199. {
  13200. name: "Megamacro",
  13201. height: math.unit(20, "kilometers")
  13202. },
  13203. {
  13204. name: "True Size",
  13205. height: math.unit(211, "km"),
  13206. default: true
  13207. },
  13208. {
  13209. name: "Gigamacro",
  13210. height: math.unit(1000, "km")
  13211. },
  13212. {
  13213. name: "Gigamacro+",
  13214. height: math.unit(8000, "km")
  13215. },
  13216. {
  13217. name: "Teramacro",
  13218. height: math.unit(1000000, "km")
  13219. },
  13220. ]
  13221. ))
  13222. characterMakers.push(() => makeCharacter(
  13223. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13224. {
  13225. front: {
  13226. height: math.unit(7 + 7 / 12, "feet"),
  13227. weight: math.unit(267, "lb"),
  13228. name: "Front",
  13229. image: {
  13230. source: "./media/characters/dayza/front.svg",
  13231. extra: 1262 / 1200,
  13232. bottom: 0.035
  13233. }
  13234. },
  13235. side: {
  13236. height: math.unit(7 + 7 / 12, "feet"),
  13237. weight: math.unit(267, "lb"),
  13238. name: "Side",
  13239. image: {
  13240. source: "./media/characters/dayza/side.svg",
  13241. extra: 1295 / 1245,
  13242. bottom: 0.05
  13243. }
  13244. },
  13245. back: {
  13246. height: math.unit(7 + 7 / 12, "feet"),
  13247. weight: math.unit(267, "lb"),
  13248. name: "Back",
  13249. image: {
  13250. source: "./media/characters/dayza/back.svg",
  13251. extra: 1241 / 1170
  13252. }
  13253. },
  13254. },
  13255. [
  13256. {
  13257. name: "Normal",
  13258. height: math.unit(7 + 7 / 12, "feet"),
  13259. default: true
  13260. },
  13261. {
  13262. name: "Macro",
  13263. height: math.unit(155, "feet")
  13264. },
  13265. ]
  13266. ))
  13267. characterMakers.push(() => makeCharacter(
  13268. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13269. {
  13270. front: {
  13271. height: math.unit(6 + 5 / 12, "feet"),
  13272. weight: math.unit(160, "lb"),
  13273. name: "Front",
  13274. image: {
  13275. source: "./media/characters/xanthos/front.svg",
  13276. extra: 1,
  13277. bottom: 0.04
  13278. }
  13279. },
  13280. back: {
  13281. height: math.unit(6 + 5 / 12, "feet"),
  13282. weight: math.unit(160, "lb"),
  13283. name: "Back",
  13284. image: {
  13285. source: "./media/characters/xanthos/back.svg",
  13286. extra: 1,
  13287. bottom: 0.03
  13288. }
  13289. },
  13290. hand: {
  13291. height: math.unit(0.928, "feet"),
  13292. name: "Hand",
  13293. image: {
  13294. source: "./media/characters/xanthos/hand.svg"
  13295. }
  13296. },
  13297. foot: {
  13298. height: math.unit(1.286, "feet"),
  13299. name: "Foot",
  13300. image: {
  13301. source: "./media/characters/xanthos/foot.svg"
  13302. }
  13303. },
  13304. },
  13305. [
  13306. {
  13307. name: "Normal",
  13308. height: math.unit(6 + 5 / 12, "feet"),
  13309. default: true
  13310. },
  13311. {
  13312. name: "Normal+",
  13313. height: math.unit(6, "meters")
  13314. },
  13315. {
  13316. name: "Macro",
  13317. height: math.unit(40, "feet")
  13318. },
  13319. {
  13320. name: "Macro+",
  13321. height: math.unit(200, "meters")
  13322. },
  13323. {
  13324. name: "Megamacro",
  13325. height: math.unit(20, "km")
  13326. },
  13327. {
  13328. name: "Megamacro+",
  13329. height: math.unit(100, "km")
  13330. },
  13331. {
  13332. name: "Gigamacro",
  13333. height: math.unit(200, "megameters")
  13334. },
  13335. {
  13336. name: "Gigamacro+",
  13337. height: math.unit(1.5, "gigameters")
  13338. },
  13339. ]
  13340. ))
  13341. characterMakers.push(() => makeCharacter(
  13342. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13343. {
  13344. front: {
  13345. height: math.unit(6 + 3 / 12, "feet"),
  13346. weight: math.unit(215, "lb"),
  13347. name: "Front",
  13348. image: {
  13349. source: "./media/characters/grynn/front.svg",
  13350. extra: 4627 / 4209,
  13351. bottom: 0.047
  13352. }
  13353. },
  13354. },
  13355. [
  13356. {
  13357. name: "Micro",
  13358. height: math.unit(6, "inches")
  13359. },
  13360. {
  13361. name: "Normal",
  13362. height: math.unit(6 + 3 / 12, "feet"),
  13363. default: true
  13364. },
  13365. {
  13366. name: "Big",
  13367. height: math.unit(104, "feet")
  13368. },
  13369. {
  13370. name: "Macro",
  13371. height: math.unit(944, "feet")
  13372. },
  13373. {
  13374. name: "Macro+",
  13375. height: math.unit(9480, "feet")
  13376. },
  13377. {
  13378. name: "Megamacro",
  13379. height: math.unit(78752, "feet")
  13380. },
  13381. {
  13382. name: "Megamacro+",
  13383. height: math.unit(630128, "feet")
  13384. },
  13385. {
  13386. name: "Megamacro++",
  13387. height: math.unit(3150695, "feet")
  13388. },
  13389. ]
  13390. ))
  13391. characterMakers.push(() => makeCharacter(
  13392. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13393. {
  13394. front: {
  13395. height: math.unit(7 + 5 / 12, "feet"),
  13396. weight: math.unit(450, "lb"),
  13397. name: "Front",
  13398. image: {
  13399. source: "./media/characters/mocha-aura/front.svg",
  13400. extra: 1907 / 1817,
  13401. bottom: 0.04
  13402. }
  13403. },
  13404. back: {
  13405. height: math.unit(7 + 5 / 12, "feet"),
  13406. weight: math.unit(450, "lb"),
  13407. name: "Back",
  13408. image: {
  13409. source: "./media/characters/mocha-aura/back.svg",
  13410. extra: 1900 / 1825,
  13411. bottom: 0.045
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Nano",
  13418. height: math.unit(1, "nm")
  13419. },
  13420. {
  13421. name: "Megamicro",
  13422. height: math.unit(1, "mm")
  13423. },
  13424. {
  13425. name: "Micro",
  13426. height: math.unit(3, "inches")
  13427. },
  13428. {
  13429. name: "Normal",
  13430. height: math.unit(7 + 5 / 12, "feet"),
  13431. default: true
  13432. },
  13433. {
  13434. name: "Macro",
  13435. height: math.unit(30, "feet")
  13436. },
  13437. {
  13438. name: "Megamacro",
  13439. height: math.unit(3500, "feet")
  13440. },
  13441. {
  13442. name: "Teramacro",
  13443. height: math.unit(500000, "miles")
  13444. },
  13445. {
  13446. name: "Petamacro",
  13447. height: math.unit(50000000000000000, "parsecs")
  13448. },
  13449. ]
  13450. ))
  13451. characterMakers.push(() => makeCharacter(
  13452. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13453. {
  13454. front: {
  13455. height: math.unit(6, "feet"),
  13456. weight: math.unit(150, "lb"),
  13457. name: "Front",
  13458. image: {
  13459. source: "./media/characters/ilisha-devya/front.svg",
  13460. extra: 1053/1049,
  13461. bottom: 270/1323
  13462. }
  13463. },
  13464. back: {
  13465. height: math.unit(6, "feet"),
  13466. weight: math.unit(150, "lb"),
  13467. name: "Back",
  13468. image: {
  13469. source: "./media/characters/ilisha-devya/back.svg",
  13470. extra: 1131/1128,
  13471. bottom: 39/1170
  13472. }
  13473. },
  13474. },
  13475. [
  13476. {
  13477. name: "Macro",
  13478. height: math.unit(500, "feet"),
  13479. default: true
  13480. },
  13481. {
  13482. name: "Megamacro",
  13483. height: math.unit(10, "miles")
  13484. },
  13485. {
  13486. name: "Gigamacro",
  13487. height: math.unit(100000, "miles")
  13488. },
  13489. {
  13490. name: "Examacro",
  13491. height: math.unit(1e9, "lightyears")
  13492. },
  13493. {
  13494. name: "Omniversal",
  13495. height: math.unit(1e33, "lightyears")
  13496. },
  13497. {
  13498. name: "Beyond Infinite",
  13499. height: math.unit(1e100, "lightyears")
  13500. },
  13501. ]
  13502. ))
  13503. characterMakers.push(() => makeCharacter(
  13504. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13505. {
  13506. Side: {
  13507. height: math.unit(6, "feet"),
  13508. weight: math.unit(150, "lb"),
  13509. name: "Side",
  13510. image: {
  13511. source: "./media/characters/mira/side.svg",
  13512. extra: 900 / 799,
  13513. bottom: 0.02
  13514. }
  13515. },
  13516. },
  13517. [
  13518. {
  13519. name: "Human Size",
  13520. height: math.unit(6, "feet")
  13521. },
  13522. {
  13523. name: "Macro",
  13524. height: math.unit(100, "feet"),
  13525. default: true
  13526. },
  13527. {
  13528. name: "Megamacro",
  13529. height: math.unit(10, "miles")
  13530. },
  13531. {
  13532. name: "Gigamacro",
  13533. height: math.unit(25000, "miles")
  13534. },
  13535. {
  13536. name: "Teramacro",
  13537. height: math.unit(300, "AU")
  13538. },
  13539. {
  13540. name: "Full Size",
  13541. height: math.unit(4.5e10, "lightyears")
  13542. },
  13543. ]
  13544. ))
  13545. characterMakers.push(() => makeCharacter(
  13546. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13547. {
  13548. front: {
  13549. height: math.unit(6, "feet"),
  13550. weight: math.unit(150, "lb"),
  13551. name: "Front",
  13552. image: {
  13553. source: "./media/characters/holly/front.svg",
  13554. extra: 639 / 606
  13555. }
  13556. },
  13557. back: {
  13558. height: math.unit(6, "feet"),
  13559. weight: math.unit(150, "lb"),
  13560. name: "Back",
  13561. image: {
  13562. source: "./media/characters/holly/back.svg",
  13563. extra: 623 / 598
  13564. }
  13565. },
  13566. frontWorking: {
  13567. height: math.unit(6, "feet"),
  13568. weight: math.unit(150, "lb"),
  13569. name: "Front (Working)",
  13570. image: {
  13571. source: "./media/characters/holly/front-working.svg",
  13572. extra: 607 / 577,
  13573. bottom: 0.048
  13574. }
  13575. },
  13576. },
  13577. [
  13578. {
  13579. name: "Normal",
  13580. height: math.unit(12 + 3 / 12, "feet"),
  13581. default: true
  13582. },
  13583. ]
  13584. ))
  13585. characterMakers.push(() => makeCharacter(
  13586. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13587. {
  13588. front: {
  13589. height: math.unit(6, "feet"),
  13590. weight: math.unit(150, "lb"),
  13591. name: "Front",
  13592. image: {
  13593. source: "./media/characters/porter/front.svg",
  13594. extra: 1,
  13595. bottom: 0.01
  13596. }
  13597. },
  13598. frontRobes: {
  13599. height: math.unit(6, "feet"),
  13600. weight: math.unit(150, "lb"),
  13601. name: "Front (Robes)",
  13602. image: {
  13603. source: "./media/characters/porter/front-robes.svg",
  13604. extra: 1.01,
  13605. bottom: 0.01
  13606. }
  13607. },
  13608. },
  13609. [
  13610. {
  13611. name: "Normal",
  13612. height: math.unit(11 + 9 / 12, "feet"),
  13613. default: true
  13614. },
  13615. ]
  13616. ))
  13617. characterMakers.push(() => makeCharacter(
  13618. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13619. {
  13620. legendary: {
  13621. height: math.unit(6, "feet"),
  13622. weight: math.unit(150, "lb"),
  13623. name: "Legendary",
  13624. image: {
  13625. source: "./media/characters/lucy/legendary.svg",
  13626. extra: 1355 / 1100,
  13627. bottom: 0.045
  13628. }
  13629. },
  13630. },
  13631. [
  13632. {
  13633. name: "Legendary",
  13634. height: math.unit(86882 * 2, "miles"),
  13635. default: true
  13636. },
  13637. ]
  13638. ))
  13639. characterMakers.push(() => makeCharacter(
  13640. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13641. {
  13642. front: {
  13643. height: math.unit(6, "feet"),
  13644. weight: math.unit(150, "lb"),
  13645. name: "Front",
  13646. image: {
  13647. source: "./media/characters/drusilla/front.svg",
  13648. extra: 678 / 635,
  13649. bottom: 0.03
  13650. }
  13651. },
  13652. back: {
  13653. height: math.unit(6, "feet"),
  13654. weight: math.unit(150, "lb"),
  13655. name: "Back",
  13656. image: {
  13657. source: "./media/characters/drusilla/back.svg",
  13658. extra: 678 / 635,
  13659. bottom: 0.005
  13660. }
  13661. },
  13662. },
  13663. [
  13664. {
  13665. name: "Macro",
  13666. height: math.unit(100, "feet")
  13667. },
  13668. {
  13669. name: "Canon Height",
  13670. height: math.unit(2000, "feet"),
  13671. default: true
  13672. },
  13673. ]
  13674. ))
  13675. characterMakers.push(() => makeCharacter(
  13676. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13677. {
  13678. front: {
  13679. height: math.unit(6, "feet"),
  13680. weight: math.unit(180, "lb"),
  13681. name: "Front",
  13682. image: {
  13683. source: "./media/characters/renard-thatch/front.svg",
  13684. extra: 2411 / 2275,
  13685. bottom: 0.01
  13686. }
  13687. },
  13688. frontPosing: {
  13689. height: math.unit(6, "feet"),
  13690. weight: math.unit(180, "lb"),
  13691. name: "Front (Posing)",
  13692. image: {
  13693. source: "./media/characters/renard-thatch/front-posing.svg",
  13694. extra: 2381 / 2261,
  13695. bottom: 0.01
  13696. }
  13697. },
  13698. back: {
  13699. height: math.unit(6, "feet"),
  13700. weight: math.unit(180, "lb"),
  13701. name: "Back",
  13702. image: {
  13703. source: "./media/characters/renard-thatch/back.svg",
  13704. extra: 2428 / 2288
  13705. }
  13706. },
  13707. },
  13708. [
  13709. {
  13710. name: "Micro",
  13711. height: math.unit(3, "inches")
  13712. },
  13713. {
  13714. name: "Default",
  13715. height: math.unit(6, "feet"),
  13716. default: true
  13717. },
  13718. {
  13719. name: "Macro",
  13720. height: math.unit(75, "feet")
  13721. },
  13722. ]
  13723. ))
  13724. characterMakers.push(() => makeCharacter(
  13725. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13726. {
  13727. front: {
  13728. height: math.unit(1450, "feet"),
  13729. weight: math.unit(1.21e6, "tons"),
  13730. name: "Front",
  13731. image: {
  13732. source: "./media/characters/sekvra/front.svg",
  13733. extra: 1193/1190,
  13734. bottom: 78/1271
  13735. }
  13736. },
  13737. side: {
  13738. height: math.unit(1450, "feet"),
  13739. weight: math.unit(1.21e6, "tons"),
  13740. name: "Side",
  13741. image: {
  13742. source: "./media/characters/sekvra/side.svg",
  13743. extra: 1193/1190,
  13744. bottom: 52/1245
  13745. }
  13746. },
  13747. back: {
  13748. height: math.unit(1450, "feet"),
  13749. weight: math.unit(1.21e6, "tons"),
  13750. name: "Back",
  13751. image: {
  13752. source: "./media/characters/sekvra/back.svg",
  13753. extra: 1219/1216,
  13754. bottom: 21/1240
  13755. }
  13756. },
  13757. frontClothed: {
  13758. height: math.unit(1450, "feet"),
  13759. weight: math.unit(1.21e6, "tons"),
  13760. name: "Front (Clothed)",
  13761. image: {
  13762. source: "./media/characters/sekvra/front-clothed.svg",
  13763. extra: 1192/1189,
  13764. bottom: 79/1271
  13765. }
  13766. },
  13767. },
  13768. [
  13769. {
  13770. name: "Macro",
  13771. height: math.unit(1450, "feet"),
  13772. default: true
  13773. },
  13774. {
  13775. name: "Megamacro",
  13776. height: math.unit(15000, "feet")
  13777. },
  13778. ]
  13779. ))
  13780. characterMakers.push(() => makeCharacter(
  13781. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13782. {
  13783. front: {
  13784. height: math.unit(6, "feet"),
  13785. weight: math.unit(150, "lb"),
  13786. name: "Front",
  13787. image: {
  13788. source: "./media/characters/carmine/front.svg",
  13789. extra: 1,
  13790. bottom: 0.035
  13791. }
  13792. },
  13793. frontArmor: {
  13794. height: math.unit(6, "feet"),
  13795. weight: math.unit(150, "lb"),
  13796. name: "Front (Armor)",
  13797. image: {
  13798. source: "./media/characters/carmine/front-armor.svg",
  13799. extra: 1,
  13800. bottom: 0.035
  13801. }
  13802. },
  13803. },
  13804. [
  13805. {
  13806. name: "Large",
  13807. height: math.unit(1, "mile")
  13808. },
  13809. {
  13810. name: "Huge",
  13811. height: math.unit(40, "miles"),
  13812. default: true
  13813. },
  13814. {
  13815. name: "Colossal",
  13816. height: math.unit(2500, "miles")
  13817. },
  13818. ]
  13819. ))
  13820. characterMakers.push(() => makeCharacter(
  13821. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13822. {
  13823. front: {
  13824. height: math.unit(6, "feet"),
  13825. weight: math.unit(150, "lb"),
  13826. name: "Front",
  13827. image: {
  13828. source: "./media/characters/elyssia/front.svg",
  13829. extra: 2201 / 2035,
  13830. bottom: 0.05
  13831. }
  13832. },
  13833. frontClothed: {
  13834. height: math.unit(6, "feet"),
  13835. weight: math.unit(150, "lb"),
  13836. name: "Front (Clothed)",
  13837. image: {
  13838. source: "./media/characters/elyssia/front-clothed.svg",
  13839. extra: 2201 / 2035,
  13840. bottom: 0.05
  13841. }
  13842. },
  13843. back: {
  13844. height: math.unit(6, "feet"),
  13845. weight: math.unit(150, "lb"),
  13846. name: "Back",
  13847. image: {
  13848. source: "./media/characters/elyssia/back.svg",
  13849. extra: 2201 / 2035,
  13850. bottom: 0.013
  13851. }
  13852. },
  13853. },
  13854. [
  13855. {
  13856. name: "Smaller",
  13857. height: math.unit(150, "feet")
  13858. },
  13859. {
  13860. name: "Standard",
  13861. height: math.unit(1400, "feet"),
  13862. default: true
  13863. },
  13864. {
  13865. name: "Distracted",
  13866. height: math.unit(15000, "feet")
  13867. },
  13868. ]
  13869. ))
  13870. characterMakers.push(() => makeCharacter(
  13871. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13872. {
  13873. front: {
  13874. height: math.unit(7 + 4/12, "feet"),
  13875. weight: math.unit(690, "lb"),
  13876. name: "Front",
  13877. image: {
  13878. source: "./media/characters/geno-maxwell/front.svg",
  13879. extra: 984/856,
  13880. bottom: 87/1071
  13881. }
  13882. },
  13883. back: {
  13884. height: math.unit(7 + 4/12, "feet"),
  13885. weight: math.unit(690, "lb"),
  13886. name: "Back",
  13887. image: {
  13888. source: "./media/characters/geno-maxwell/back.svg",
  13889. extra: 981/854,
  13890. bottom: 57/1038
  13891. }
  13892. },
  13893. frontCostume: {
  13894. height: math.unit(7 + 4/12, "feet"),
  13895. weight: math.unit(690, "lb"),
  13896. name: "Front (Costume)",
  13897. image: {
  13898. source: "./media/characters/geno-maxwell/front-costume.svg",
  13899. extra: 984/856,
  13900. bottom: 87/1071
  13901. }
  13902. },
  13903. backcostume: {
  13904. height: math.unit(7 + 4/12, "feet"),
  13905. weight: math.unit(690, "lb"),
  13906. name: "Back (Costume)",
  13907. image: {
  13908. source: "./media/characters/geno-maxwell/back-costume.svg",
  13909. extra: 981/854,
  13910. bottom: 57/1038
  13911. }
  13912. },
  13913. },
  13914. [
  13915. {
  13916. name: "Micro",
  13917. height: math.unit(3, "inches")
  13918. },
  13919. {
  13920. name: "Normal",
  13921. height: math.unit(7 + 4 / 12, "feet"),
  13922. default: true
  13923. },
  13924. {
  13925. name: "Macro",
  13926. height: math.unit(220, "feet")
  13927. },
  13928. {
  13929. name: "Megamacro",
  13930. height: math.unit(11, "miles")
  13931. },
  13932. ]
  13933. ))
  13934. characterMakers.push(() => makeCharacter(
  13935. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13936. {
  13937. front: {
  13938. height: math.unit(7 + 4/12, "feet"),
  13939. weight: math.unit(750, "lb"),
  13940. name: "Front",
  13941. image: {
  13942. source: "./media/characters/regena-maxwell/front.svg",
  13943. extra: 984/856,
  13944. bottom: 87/1071
  13945. }
  13946. },
  13947. back: {
  13948. height: math.unit(7 + 4/12, "feet"),
  13949. weight: math.unit(750, "lb"),
  13950. name: "Back",
  13951. image: {
  13952. source: "./media/characters/regena-maxwell/back.svg",
  13953. extra: 981/854,
  13954. bottom: 57/1038
  13955. }
  13956. },
  13957. frontCostume: {
  13958. height: math.unit(7 + 4/12, "feet"),
  13959. weight: math.unit(750, "lb"),
  13960. name: "Front (Costume)",
  13961. image: {
  13962. source: "./media/characters/regena-maxwell/front-costume.svg",
  13963. extra: 984/856,
  13964. bottom: 87/1071
  13965. }
  13966. },
  13967. backcostume: {
  13968. height: math.unit(7 + 4/12, "feet"),
  13969. weight: math.unit(750, "lb"),
  13970. name: "Back (Costume)",
  13971. image: {
  13972. source: "./media/characters/regena-maxwell/back-costume.svg",
  13973. extra: 981/854,
  13974. bottom: 57/1038
  13975. }
  13976. },
  13977. },
  13978. [
  13979. {
  13980. name: "Normal",
  13981. height: math.unit(7 + 4 / 12, "feet"),
  13982. default: true
  13983. },
  13984. {
  13985. name: "Macro",
  13986. height: math.unit(220, "feet")
  13987. },
  13988. {
  13989. name: "Megamacro",
  13990. height: math.unit(11, "miles")
  13991. },
  13992. ]
  13993. ))
  13994. characterMakers.push(() => makeCharacter(
  13995. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13996. {
  13997. front: {
  13998. height: math.unit(6, "feet"),
  13999. weight: math.unit(150, "lb"),
  14000. name: "Front",
  14001. image: {
  14002. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14003. extra: 860 / 690,
  14004. bottom: 0.03
  14005. }
  14006. },
  14007. },
  14008. [
  14009. {
  14010. name: "Normal",
  14011. height: math.unit(1.7, "meters"),
  14012. default: true
  14013. },
  14014. ]
  14015. ))
  14016. characterMakers.push(() => makeCharacter(
  14017. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14018. {
  14019. front: {
  14020. height: math.unit(6, "feet"),
  14021. weight: math.unit(150, "lb"),
  14022. name: "Front",
  14023. image: {
  14024. source: "./media/characters/quilly/front.svg",
  14025. extra: 890 / 776
  14026. }
  14027. },
  14028. },
  14029. [
  14030. {
  14031. name: "Gigamacro",
  14032. height: math.unit(404090, "miles"),
  14033. default: true
  14034. },
  14035. ]
  14036. ))
  14037. characterMakers.push(() => makeCharacter(
  14038. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14039. {
  14040. front: {
  14041. height: math.unit(7 + 8 / 12, "feet"),
  14042. weight: math.unit(350, "lb"),
  14043. name: "Front",
  14044. image: {
  14045. source: "./media/characters/tempest/front.svg",
  14046. extra: 1175 / 1086,
  14047. bottom: 0.02
  14048. }
  14049. },
  14050. },
  14051. [
  14052. {
  14053. name: "Normal",
  14054. height: math.unit(7 + 8 / 12, "feet"),
  14055. default: true
  14056. },
  14057. ]
  14058. ))
  14059. characterMakers.push(() => makeCharacter(
  14060. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14061. {
  14062. side: {
  14063. height: math.unit(4 + 5 / 12, "feet"),
  14064. weight: math.unit(80, "lb"),
  14065. name: "Side",
  14066. image: {
  14067. source: "./media/characters/rodger/side.svg",
  14068. extra: 1235 / 1118
  14069. }
  14070. },
  14071. },
  14072. [
  14073. {
  14074. name: "Micro",
  14075. height: math.unit(1, "inch")
  14076. },
  14077. {
  14078. name: "Normal",
  14079. height: math.unit(4 + 5 / 12, "feet"),
  14080. default: true
  14081. },
  14082. {
  14083. name: "Macro",
  14084. height: math.unit(120, "feet")
  14085. },
  14086. ]
  14087. ))
  14088. characterMakers.push(() => makeCharacter(
  14089. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14090. {
  14091. front: {
  14092. height: math.unit(6, "feet"),
  14093. weight: math.unit(150, "lb"),
  14094. name: "Front",
  14095. image: {
  14096. source: "./media/characters/danyel/front.svg",
  14097. extra: 1185 / 1123,
  14098. bottom: 0.05
  14099. }
  14100. },
  14101. },
  14102. [
  14103. {
  14104. name: "Shrunken",
  14105. height: math.unit(0.5, "mm")
  14106. },
  14107. {
  14108. name: "Micro",
  14109. height: math.unit(1, "mm"),
  14110. default: true
  14111. },
  14112. {
  14113. name: "Upsized",
  14114. height: math.unit(5 + 5 / 12, "feet")
  14115. },
  14116. ]
  14117. ))
  14118. characterMakers.push(() => makeCharacter(
  14119. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14120. {
  14121. front: {
  14122. height: math.unit(5 + 6 / 12, "feet"),
  14123. weight: math.unit(200, "lb"),
  14124. name: "Front",
  14125. image: {
  14126. source: "./media/characters/vivian-bijoux/front.svg",
  14127. extra: 1217/1209,
  14128. bottom: 76/1293
  14129. }
  14130. },
  14131. back: {
  14132. height: math.unit(5 + 6 / 12, "feet"),
  14133. weight: math.unit(200, "lb"),
  14134. name: "Back",
  14135. image: {
  14136. source: "./media/characters/vivian-bijoux/back.svg",
  14137. extra: 1214/1208,
  14138. bottom: 51/1265
  14139. }
  14140. },
  14141. dressed: {
  14142. height: math.unit(5 + 6 / 12, "feet"),
  14143. weight: math.unit(200, "lb"),
  14144. name: "Dressed",
  14145. image: {
  14146. source: "./media/characters/vivian-bijoux/dressed.svg",
  14147. extra: 1217/1209,
  14148. bottom: 76/1293
  14149. }
  14150. },
  14151. },
  14152. [
  14153. {
  14154. name: "Normal",
  14155. height: math.unit(5 + 6 / 12, "feet"),
  14156. default: true
  14157. },
  14158. {
  14159. name: "Bad Dream",
  14160. height: math.unit(500, "feet")
  14161. },
  14162. {
  14163. name: "Nightmare",
  14164. height: math.unit(500, "miles")
  14165. },
  14166. ]
  14167. ))
  14168. characterMakers.push(() => makeCharacter(
  14169. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14170. {
  14171. front: {
  14172. height: math.unit(6 + 1 / 12, "feet"),
  14173. weight: math.unit(260, "lb"),
  14174. name: "Front",
  14175. image: {
  14176. source: "./media/characters/zeta/front.svg",
  14177. extra: 1968 / 1889,
  14178. bottom: 0.06
  14179. }
  14180. },
  14181. back: {
  14182. height: math.unit(6 + 1 / 12, "feet"),
  14183. weight: math.unit(260, "lb"),
  14184. name: "Back",
  14185. image: {
  14186. source: "./media/characters/zeta/back.svg",
  14187. extra: 1944 / 1858,
  14188. bottom: 0.03
  14189. }
  14190. },
  14191. hand: {
  14192. height: math.unit(1.112, "feet"),
  14193. name: "Hand",
  14194. image: {
  14195. source: "./media/characters/zeta/hand.svg"
  14196. }
  14197. },
  14198. foot: {
  14199. height: math.unit(1.48, "feet"),
  14200. name: "Foot",
  14201. image: {
  14202. source: "./media/characters/zeta/foot.svg"
  14203. }
  14204. },
  14205. },
  14206. [
  14207. {
  14208. name: "Micro",
  14209. height: math.unit(6, "inches")
  14210. },
  14211. {
  14212. name: "Normal",
  14213. height: math.unit(6 + 1 / 12, "feet"),
  14214. default: true
  14215. },
  14216. {
  14217. name: "Macro",
  14218. height: math.unit(20, "feet")
  14219. },
  14220. ]
  14221. ))
  14222. characterMakers.push(() => makeCharacter(
  14223. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14224. {
  14225. front: {
  14226. height: math.unit(6, "feet"),
  14227. weight: math.unit(150, "lb"),
  14228. name: "Front",
  14229. image: {
  14230. source: "./media/characters/jamie-larsen/front.svg",
  14231. extra: 962 / 933,
  14232. bottom: 0.02
  14233. }
  14234. },
  14235. back: {
  14236. height: math.unit(6, "feet"),
  14237. weight: math.unit(150, "lb"),
  14238. name: "Back",
  14239. image: {
  14240. source: "./media/characters/jamie-larsen/back.svg",
  14241. extra: 997 / 946
  14242. }
  14243. },
  14244. },
  14245. [
  14246. {
  14247. name: "Macro",
  14248. height: math.unit(28 + 7 / 12, "feet"),
  14249. default: true
  14250. },
  14251. {
  14252. name: "Macro+",
  14253. height: math.unit(180, "feet")
  14254. },
  14255. {
  14256. name: "Megamacro",
  14257. height: math.unit(10, "miles")
  14258. },
  14259. {
  14260. name: "Gigamacro",
  14261. height: math.unit(200000, "miles")
  14262. },
  14263. ]
  14264. ))
  14265. characterMakers.push(() => makeCharacter(
  14266. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14267. {
  14268. front: {
  14269. height: math.unit(6, "feet"),
  14270. weight: math.unit(120, "lb"),
  14271. name: "Front",
  14272. image: {
  14273. source: "./media/characters/vance/front.svg",
  14274. extra: 1980 / 1890,
  14275. bottom: 0.09
  14276. }
  14277. },
  14278. back: {
  14279. height: math.unit(6, "feet"),
  14280. weight: math.unit(120, "lb"),
  14281. name: "Back",
  14282. image: {
  14283. source: "./media/characters/vance/back.svg",
  14284. extra: 2081 / 1994,
  14285. bottom: 0.014
  14286. }
  14287. },
  14288. hand: {
  14289. height: math.unit(0.88, "feet"),
  14290. name: "Hand",
  14291. image: {
  14292. source: "./media/characters/vance/hand.svg"
  14293. }
  14294. },
  14295. foot: {
  14296. height: math.unit(0.64, "feet"),
  14297. name: "Foot",
  14298. image: {
  14299. source: "./media/characters/vance/foot.svg"
  14300. }
  14301. },
  14302. },
  14303. [
  14304. {
  14305. name: "Small",
  14306. height: math.unit(90, "feet"),
  14307. default: true
  14308. },
  14309. {
  14310. name: "Macro",
  14311. height: math.unit(100, "meters")
  14312. },
  14313. {
  14314. name: "Megamacro",
  14315. height: math.unit(15, "miles")
  14316. },
  14317. ]
  14318. ))
  14319. characterMakers.push(() => makeCharacter(
  14320. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14321. {
  14322. front: {
  14323. height: math.unit(6, "feet"),
  14324. weight: math.unit(180, "lb"),
  14325. name: "Front",
  14326. image: {
  14327. source: "./media/characters/xochitl/front.svg",
  14328. extra: 2297 / 2261,
  14329. bottom: 0.065
  14330. }
  14331. },
  14332. back: {
  14333. height: math.unit(6, "feet"),
  14334. weight: math.unit(180, "lb"),
  14335. name: "Back",
  14336. image: {
  14337. source: "./media/characters/xochitl/back.svg",
  14338. extra: 2386 / 2354,
  14339. bottom: 0.01
  14340. }
  14341. },
  14342. foot: {
  14343. height: math.unit(6 / 5 * 1.15, "feet"),
  14344. weight: math.unit(150, "lb"),
  14345. name: "Foot",
  14346. image: {
  14347. source: "./media/characters/xochitl/foot.svg"
  14348. }
  14349. },
  14350. },
  14351. [
  14352. {
  14353. name: "Macro",
  14354. height: math.unit(80, "feet")
  14355. },
  14356. {
  14357. name: "Macro+",
  14358. height: math.unit(400, "feet"),
  14359. default: true
  14360. },
  14361. {
  14362. name: "Gigamacro",
  14363. height: math.unit(80000, "miles")
  14364. },
  14365. {
  14366. name: "Gigamacro+",
  14367. height: math.unit(400000, "miles")
  14368. },
  14369. {
  14370. name: "Teramacro",
  14371. height: math.unit(300, "AU")
  14372. },
  14373. ]
  14374. ))
  14375. characterMakers.push(() => makeCharacter(
  14376. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14377. {
  14378. front: {
  14379. height: math.unit(6, "feet"),
  14380. weight: math.unit(150, "lb"),
  14381. name: "Front",
  14382. image: {
  14383. source: "./media/characters/vincent/front.svg",
  14384. extra: 1130 / 1080,
  14385. bottom: 0.055
  14386. }
  14387. },
  14388. beak: {
  14389. height: math.unit(6 * 0.1, "feet"),
  14390. name: "Beak",
  14391. image: {
  14392. source: "./media/characters/vincent/beak.svg"
  14393. }
  14394. },
  14395. hand: {
  14396. height: math.unit(6 * 0.85, "feet"),
  14397. weight: math.unit(150, "lb"),
  14398. name: "Hand",
  14399. image: {
  14400. source: "./media/characters/vincent/hand.svg"
  14401. }
  14402. },
  14403. foot: {
  14404. height: math.unit(6 * 0.19, "feet"),
  14405. weight: math.unit(150, "lb"),
  14406. name: "Foot",
  14407. image: {
  14408. source: "./media/characters/vincent/foot.svg"
  14409. }
  14410. },
  14411. },
  14412. [
  14413. {
  14414. name: "Base",
  14415. height: math.unit(6 + 5 / 12, "feet"),
  14416. default: true
  14417. },
  14418. {
  14419. name: "Macro",
  14420. height: math.unit(300, "feet")
  14421. },
  14422. {
  14423. name: "Megamacro",
  14424. height: math.unit(2, "miles")
  14425. },
  14426. {
  14427. name: "Gigamacro",
  14428. height: math.unit(1000, "miles")
  14429. },
  14430. ]
  14431. ))
  14432. characterMakers.push(() => makeCharacter(
  14433. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14434. {
  14435. front: {
  14436. height: math.unit(2, "meters"),
  14437. weight: math.unit(500, "kg"),
  14438. name: "Front",
  14439. image: {
  14440. source: "./media/characters/coatl/front.svg",
  14441. extra: 3948 / 3500,
  14442. bottom: 0.082
  14443. }
  14444. },
  14445. },
  14446. [
  14447. {
  14448. name: "Normal",
  14449. height: math.unit(4, "meters")
  14450. },
  14451. {
  14452. name: "Macro",
  14453. height: math.unit(100, "meters"),
  14454. default: true
  14455. },
  14456. {
  14457. name: "Macro+",
  14458. height: math.unit(300, "meters")
  14459. },
  14460. {
  14461. name: "Megamacro",
  14462. height: math.unit(3, "gigameters")
  14463. },
  14464. {
  14465. name: "Megamacro+",
  14466. height: math.unit(300, "terameters")
  14467. },
  14468. {
  14469. name: "Megamacro++",
  14470. height: math.unit(3, "lightyears")
  14471. },
  14472. ]
  14473. ))
  14474. characterMakers.push(() => makeCharacter(
  14475. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14476. {
  14477. front: {
  14478. height: math.unit(6, "feet"),
  14479. weight: math.unit(50, "kg"),
  14480. name: "front",
  14481. image: {
  14482. source: "./media/characters/shiroryu/front.svg",
  14483. extra: 1990 / 1935
  14484. }
  14485. },
  14486. },
  14487. [
  14488. {
  14489. name: "Mortal Mingling",
  14490. height: math.unit(3, "meters")
  14491. },
  14492. {
  14493. name: "Kaiju-ish",
  14494. height: math.unit(250, "meters")
  14495. },
  14496. {
  14497. name: "Somewhat Godly",
  14498. height: math.unit(400, "km"),
  14499. default: true
  14500. },
  14501. {
  14502. name: "Planetary",
  14503. height: math.unit(300, "megameters")
  14504. },
  14505. {
  14506. name: "Galaxy-dwarfing",
  14507. height: math.unit(450, "kiloparsecs")
  14508. },
  14509. {
  14510. name: "Universe Eater",
  14511. height: math.unit(150, "gigaparsecs")
  14512. },
  14513. {
  14514. name: "Almost Immeasurable",
  14515. height: math.unit(1.3e266, "yottaparsecs")
  14516. },
  14517. ]
  14518. ))
  14519. characterMakers.push(() => makeCharacter(
  14520. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14521. {
  14522. front: {
  14523. height: math.unit(6, "feet"),
  14524. weight: math.unit(150, "lb"),
  14525. name: "Front",
  14526. image: {
  14527. source: "./media/characters/umeko/front.svg",
  14528. extra: 1,
  14529. bottom: 0.019
  14530. }
  14531. },
  14532. frontArmored: {
  14533. height: math.unit(6, "feet"),
  14534. weight: math.unit(150, "lb"),
  14535. name: "Front (Armored)",
  14536. image: {
  14537. source: "./media/characters/umeko/front-armored.svg",
  14538. extra: 1,
  14539. bottom: 0.021
  14540. }
  14541. },
  14542. },
  14543. [
  14544. {
  14545. name: "Macro",
  14546. height: math.unit(220, "feet"),
  14547. default: true
  14548. },
  14549. {
  14550. name: "Guardian Dragon",
  14551. height: math.unit(50, "miles")
  14552. },
  14553. {
  14554. name: "Cosmic",
  14555. height: math.unit(800000, "miles")
  14556. },
  14557. ]
  14558. ))
  14559. characterMakers.push(() => makeCharacter(
  14560. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14561. {
  14562. front: {
  14563. height: math.unit(6, "feet"),
  14564. weight: math.unit(150, "lb"),
  14565. name: "Front",
  14566. image: {
  14567. source: "./media/characters/cassidy/front.svg",
  14568. extra: 810/808,
  14569. bottom: 41/851
  14570. }
  14571. },
  14572. },
  14573. [
  14574. {
  14575. name: "Canon Height",
  14576. height: math.unit(120, "feet"),
  14577. default: true
  14578. },
  14579. {
  14580. name: "Macro+",
  14581. height: math.unit(400, "feet")
  14582. },
  14583. {
  14584. name: "Macro++",
  14585. height: math.unit(4000, "feet")
  14586. },
  14587. {
  14588. name: "Megamacro",
  14589. height: math.unit(3, "miles")
  14590. },
  14591. ]
  14592. ))
  14593. characterMakers.push(() => makeCharacter(
  14594. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14595. {
  14596. front: {
  14597. height: math.unit(6, "feet"),
  14598. weight: math.unit(150, "lb"),
  14599. name: "Front",
  14600. image: {
  14601. source: "./media/characters/isaac/front.svg",
  14602. extra: 896 / 815,
  14603. bottom: 0.11
  14604. }
  14605. },
  14606. },
  14607. [
  14608. {
  14609. name: "Human Size",
  14610. height: math.unit(8, "feet"),
  14611. default: true
  14612. },
  14613. {
  14614. name: "Macro",
  14615. height: math.unit(400, "feet")
  14616. },
  14617. {
  14618. name: "Megamacro",
  14619. height: math.unit(50, "miles")
  14620. },
  14621. {
  14622. name: "Canon Height",
  14623. height: math.unit(200, "AU")
  14624. },
  14625. ]
  14626. ))
  14627. characterMakers.push(() => makeCharacter(
  14628. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14629. {
  14630. front: {
  14631. height: math.unit(6, "feet"),
  14632. weight: math.unit(72, "kg"),
  14633. name: "Front",
  14634. image: {
  14635. source: "./media/characters/sleekit/front.svg",
  14636. extra: 4693 / 4487,
  14637. bottom: 0.012
  14638. }
  14639. },
  14640. },
  14641. [
  14642. {
  14643. name: "Minimum Height",
  14644. height: math.unit(10, "meters")
  14645. },
  14646. {
  14647. name: "Smaller",
  14648. height: math.unit(25, "meters")
  14649. },
  14650. {
  14651. name: "Larger",
  14652. height: math.unit(38, "meters"),
  14653. default: true
  14654. },
  14655. {
  14656. name: "Maximum height",
  14657. height: math.unit(100, "meters")
  14658. },
  14659. ]
  14660. ))
  14661. characterMakers.push(() => makeCharacter(
  14662. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14663. {
  14664. front: {
  14665. height: math.unit(6, "feet"),
  14666. weight: math.unit(150, "lb"),
  14667. name: "Front",
  14668. image: {
  14669. source: "./media/characters/nillia/front.svg",
  14670. extra: 2195 / 2037,
  14671. bottom: 0.005
  14672. }
  14673. },
  14674. back: {
  14675. height: math.unit(6, "feet"),
  14676. weight: math.unit(150, "lb"),
  14677. name: "Back",
  14678. image: {
  14679. source: "./media/characters/nillia/back.svg",
  14680. extra: 2195 / 2037,
  14681. bottom: 0.005
  14682. }
  14683. },
  14684. },
  14685. [
  14686. {
  14687. name: "Canon Height",
  14688. height: math.unit(489, "feet"),
  14689. default: true
  14690. }
  14691. ]
  14692. ))
  14693. characterMakers.push(() => makeCharacter(
  14694. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14695. {
  14696. front: {
  14697. height: math.unit(6, "feet"),
  14698. weight: math.unit(150, "lb"),
  14699. name: "Front",
  14700. image: {
  14701. source: "./media/characters/mesmyriza/front.svg",
  14702. extra: 2067 / 1784,
  14703. bottom: 0.035
  14704. }
  14705. },
  14706. foot: {
  14707. height: math.unit(6 / (250 / 35), "feet"),
  14708. name: "Foot",
  14709. image: {
  14710. source: "./media/characters/mesmyriza/foot.svg"
  14711. }
  14712. },
  14713. },
  14714. [
  14715. {
  14716. name: "Macro",
  14717. height: math.unit(457, "meters"),
  14718. default: true
  14719. },
  14720. {
  14721. name: "Megamacro",
  14722. height: math.unit(8, "megameters")
  14723. },
  14724. ]
  14725. ))
  14726. characterMakers.push(() => makeCharacter(
  14727. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14728. {
  14729. front: {
  14730. height: math.unit(6, "feet"),
  14731. weight: math.unit(250, "lb"),
  14732. name: "Front",
  14733. image: {
  14734. source: "./media/characters/saudade/front.svg",
  14735. extra: 1172 / 1139,
  14736. bottom: 0.035
  14737. }
  14738. },
  14739. },
  14740. [
  14741. {
  14742. name: "Micro",
  14743. height: math.unit(3, "inches")
  14744. },
  14745. {
  14746. name: "Normal",
  14747. height: math.unit(6, "feet"),
  14748. default: true
  14749. },
  14750. {
  14751. name: "Macro",
  14752. height: math.unit(50, "feet")
  14753. },
  14754. {
  14755. name: "Megamacro",
  14756. height: math.unit(2800, "feet")
  14757. },
  14758. ]
  14759. ))
  14760. characterMakers.push(() => makeCharacter(
  14761. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14762. {
  14763. front: {
  14764. height: math.unit(5 + 4 / 12, "feet"),
  14765. weight: math.unit(100, "lb"),
  14766. name: "Front",
  14767. image: {
  14768. source: "./media/characters/keireer/front.svg",
  14769. extra: 716 / 666,
  14770. bottom: 0.05
  14771. }
  14772. },
  14773. },
  14774. [
  14775. {
  14776. name: "Normal",
  14777. height: math.unit(5 + 4 / 12, "feet"),
  14778. default: true
  14779. },
  14780. ]
  14781. ))
  14782. characterMakers.push(() => makeCharacter(
  14783. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14784. {
  14785. front: {
  14786. height: math.unit(6, "feet"),
  14787. weight: math.unit(90, "kg"),
  14788. name: "Front",
  14789. image: {
  14790. source: "./media/characters/mirja/front.svg",
  14791. extra: 1789 / 1683,
  14792. bottom: 0.05
  14793. }
  14794. },
  14795. frontDressed: {
  14796. height: math.unit(6, "feet"),
  14797. weight: math.unit(90, "lb"),
  14798. name: "Front (Dressed)",
  14799. image: {
  14800. source: "./media/characters/mirja/front-dressed.svg",
  14801. extra: 1789 / 1683,
  14802. bottom: 0.05
  14803. }
  14804. },
  14805. back: {
  14806. height: math.unit(6, "feet"),
  14807. weight: math.unit(90, "lb"),
  14808. name: "Back",
  14809. image: {
  14810. source: "./media/characters/mirja/back.svg",
  14811. extra: 953 / 917,
  14812. bottom: 0.017
  14813. }
  14814. },
  14815. },
  14816. [
  14817. {
  14818. name: "\"Incognito\"",
  14819. height: math.unit(3, "meters")
  14820. },
  14821. {
  14822. name: "Strolling Size",
  14823. height: math.unit(15, "km")
  14824. },
  14825. {
  14826. name: "Larger Strolling Size",
  14827. height: math.unit(400, "km")
  14828. },
  14829. {
  14830. name: "Preferred Size",
  14831. height: math.unit(5000, "km")
  14832. },
  14833. {
  14834. name: "True Size",
  14835. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14836. default: true
  14837. },
  14838. ]
  14839. ))
  14840. characterMakers.push(() => makeCharacter(
  14841. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14842. {
  14843. front: {
  14844. height: math.unit(15, "feet"),
  14845. weight: math.unit(880, "kg"),
  14846. name: "Front",
  14847. image: {
  14848. source: "./media/characters/nightraver/front.svg",
  14849. extra: 2444 / 2160,
  14850. bottom: 0.027
  14851. }
  14852. },
  14853. back: {
  14854. height: math.unit(15, "feet"),
  14855. weight: math.unit(880, "kg"),
  14856. name: "Back",
  14857. image: {
  14858. source: "./media/characters/nightraver/back.svg",
  14859. extra: 2309 / 2180,
  14860. bottom: 0.005
  14861. }
  14862. },
  14863. sole: {
  14864. height: math.unit(2.878, "feet"),
  14865. name: "Sole",
  14866. image: {
  14867. source: "./media/characters/nightraver/sole.svg"
  14868. }
  14869. },
  14870. foot: {
  14871. height: math.unit(2.285, "feet"),
  14872. name: "Foot",
  14873. image: {
  14874. source: "./media/characters/nightraver/foot.svg"
  14875. }
  14876. },
  14877. maw: {
  14878. height: math.unit(2.67, "feet"),
  14879. name: "Maw",
  14880. image: {
  14881. source: "./media/characters/nightraver/maw.svg"
  14882. }
  14883. },
  14884. },
  14885. [
  14886. {
  14887. name: "Micro",
  14888. height: math.unit(1, "cm")
  14889. },
  14890. {
  14891. name: "Normal",
  14892. height: math.unit(15, "feet"),
  14893. default: true
  14894. },
  14895. {
  14896. name: "Macro",
  14897. height: math.unit(300, "feet")
  14898. },
  14899. {
  14900. name: "Megamacro",
  14901. height: math.unit(300, "miles")
  14902. },
  14903. {
  14904. name: "Gigamacro",
  14905. height: math.unit(10000, "miles")
  14906. },
  14907. ]
  14908. ))
  14909. characterMakers.push(() => makeCharacter(
  14910. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14911. {
  14912. side: {
  14913. height: math.unit(2, "inches"),
  14914. weight: math.unit(5, "grams"),
  14915. name: "Side",
  14916. image: {
  14917. source: "./media/characters/arc/side.svg"
  14918. }
  14919. },
  14920. },
  14921. [
  14922. {
  14923. name: "Micro",
  14924. height: math.unit(2, "inches"),
  14925. default: true
  14926. },
  14927. ]
  14928. ))
  14929. characterMakers.push(() => makeCharacter(
  14930. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14931. {
  14932. front: {
  14933. height: math.unit(1.1938, "meters"),
  14934. weight: math.unit(54, "kg"),
  14935. name: "Front",
  14936. image: {
  14937. source: "./media/characters/nebula-shahar/front.svg",
  14938. extra: 1642 / 1436,
  14939. bottom: 0.06
  14940. }
  14941. },
  14942. },
  14943. [
  14944. {
  14945. name: "Megamicro",
  14946. height: math.unit(0.3, "mm")
  14947. },
  14948. {
  14949. name: "Micro",
  14950. height: math.unit(3, "cm")
  14951. },
  14952. {
  14953. name: "Normal",
  14954. height: math.unit(138, "cm"),
  14955. default: true
  14956. },
  14957. {
  14958. name: "Macro",
  14959. height: math.unit(30, "m")
  14960. },
  14961. ]
  14962. ))
  14963. characterMakers.push(() => makeCharacter(
  14964. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14965. {
  14966. front: {
  14967. height: math.unit(5.24, "feet"),
  14968. weight: math.unit(150, "lb"),
  14969. name: "Front",
  14970. image: {
  14971. source: "./media/characters/shayla/front.svg",
  14972. extra: 1512 / 1414,
  14973. bottom: 0.01
  14974. }
  14975. },
  14976. back: {
  14977. height: math.unit(5.24, "feet"),
  14978. weight: math.unit(150, "lb"),
  14979. name: "Back",
  14980. image: {
  14981. source: "./media/characters/shayla/back.svg",
  14982. extra: 1512 / 1414
  14983. }
  14984. },
  14985. hand: {
  14986. height: math.unit(0.7781496062992126, "feet"),
  14987. name: "Hand",
  14988. image: {
  14989. source: "./media/characters/shayla/hand.svg"
  14990. }
  14991. },
  14992. foot: {
  14993. height: math.unit(1.4206036745406823, "feet"),
  14994. name: "Foot",
  14995. image: {
  14996. source: "./media/characters/shayla/foot.svg"
  14997. }
  14998. },
  14999. },
  15000. [
  15001. {
  15002. name: "Micro",
  15003. height: math.unit(0.32, "feet")
  15004. },
  15005. {
  15006. name: "Normal",
  15007. height: math.unit(5.24, "feet"),
  15008. default: true
  15009. },
  15010. {
  15011. name: "Macro",
  15012. height: math.unit(492.12, "feet")
  15013. },
  15014. {
  15015. name: "Megamacro",
  15016. height: math.unit(186.41, "miles")
  15017. },
  15018. ]
  15019. ))
  15020. characterMakers.push(() => makeCharacter(
  15021. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15022. {
  15023. front: {
  15024. height: math.unit(2.2, "m"),
  15025. weight: math.unit(120, "kg"),
  15026. name: "Front",
  15027. image: {
  15028. source: "./media/characters/pia-jr/front.svg",
  15029. extra: 1000 / 970,
  15030. bottom: 0.035
  15031. }
  15032. },
  15033. hand: {
  15034. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15035. name: "Hand",
  15036. image: {
  15037. source: "./media/characters/pia-jr/hand.svg"
  15038. }
  15039. },
  15040. paw: {
  15041. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15042. name: "Paw",
  15043. image: {
  15044. source: "./media/characters/pia-jr/paw.svg"
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Micro",
  15051. height: math.unit(1.2, "cm")
  15052. },
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(2.2, "m"),
  15056. default: true
  15057. },
  15058. {
  15059. name: "Macro",
  15060. height: math.unit(180, "m")
  15061. },
  15062. {
  15063. name: "Megamacro",
  15064. height: math.unit(420, "km")
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15070. {
  15071. front: {
  15072. height: math.unit(2, "m"),
  15073. weight: math.unit(115, "kg"),
  15074. name: "Front",
  15075. image: {
  15076. source: "./media/characters/pia-sr/front.svg",
  15077. extra: 760 / 730,
  15078. bottom: 0.015
  15079. }
  15080. },
  15081. back: {
  15082. height: math.unit(2, "m"),
  15083. weight: math.unit(115, "kg"),
  15084. name: "Back",
  15085. image: {
  15086. source: "./media/characters/pia-sr/back.svg",
  15087. extra: 760 / 730,
  15088. bottom: 0.01
  15089. }
  15090. },
  15091. hand: {
  15092. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15093. name: "Hand",
  15094. image: {
  15095. source: "./media/characters/pia-sr/hand.svg"
  15096. }
  15097. },
  15098. foot: {
  15099. height: math.unit(1.83, "feet"),
  15100. name: "Foot",
  15101. image: {
  15102. source: "./media/characters/pia-sr/foot.svg"
  15103. }
  15104. },
  15105. },
  15106. [
  15107. {
  15108. name: "Micro",
  15109. height: math.unit(88, "mm")
  15110. },
  15111. {
  15112. name: "Normal",
  15113. height: math.unit(2, "m"),
  15114. default: true
  15115. },
  15116. {
  15117. name: "Macro",
  15118. height: math.unit(200, "m")
  15119. },
  15120. {
  15121. name: "Megamacro",
  15122. height: math.unit(420, "km")
  15123. },
  15124. ]
  15125. ))
  15126. characterMakers.push(() => makeCharacter(
  15127. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15128. {
  15129. front: {
  15130. height: math.unit(8 + 2 / 12, "feet"),
  15131. weight: math.unit(300, "lb"),
  15132. name: "Front",
  15133. image: {
  15134. source: "./media/characters/kibibyte/front.svg",
  15135. extra: 2221 / 2098,
  15136. bottom: 0.04
  15137. }
  15138. },
  15139. },
  15140. [
  15141. {
  15142. name: "Normal",
  15143. height: math.unit(8 + 2 / 12, "feet"),
  15144. default: true
  15145. },
  15146. {
  15147. name: "Socialable Macro",
  15148. height: math.unit(50, "feet")
  15149. },
  15150. {
  15151. name: "Macro",
  15152. height: math.unit(300, "feet")
  15153. },
  15154. {
  15155. name: "Megamacro",
  15156. height: math.unit(500, "miles")
  15157. },
  15158. ]
  15159. ))
  15160. characterMakers.push(() => makeCharacter(
  15161. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15162. {
  15163. front: {
  15164. height: math.unit(6, "feet"),
  15165. weight: math.unit(150, "lb"),
  15166. name: "Front",
  15167. image: {
  15168. source: "./media/characters/felix/front.svg",
  15169. extra: 762 / 722,
  15170. bottom: 0.02
  15171. }
  15172. },
  15173. frontClothed: {
  15174. height: math.unit(6, "feet"),
  15175. weight: math.unit(150, "lb"),
  15176. name: "Front (Clothed)",
  15177. image: {
  15178. source: "./media/characters/felix/front-clothed.svg",
  15179. extra: 762 / 722,
  15180. bottom: 0.02
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Normal",
  15187. height: math.unit(6 + 8 / 12, "feet"),
  15188. default: true
  15189. },
  15190. {
  15191. name: "Macro",
  15192. height: math.unit(2600, "feet")
  15193. },
  15194. {
  15195. name: "Megamacro",
  15196. height: math.unit(450, "miles")
  15197. },
  15198. ]
  15199. ))
  15200. characterMakers.push(() => makeCharacter(
  15201. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15202. {
  15203. front: {
  15204. height: math.unit(6 + 1 / 12, "feet"),
  15205. weight: math.unit(250, "lb"),
  15206. name: "Front",
  15207. image: {
  15208. source: "./media/characters/tobo/front.svg",
  15209. extra: 608 / 586,
  15210. bottom: 0.023
  15211. }
  15212. },
  15213. back: {
  15214. height: math.unit(6 + 1 / 12, "feet"),
  15215. weight: math.unit(250, "lb"),
  15216. name: "Back",
  15217. image: {
  15218. source: "./media/characters/tobo/back.svg",
  15219. extra: 608 / 586
  15220. }
  15221. },
  15222. },
  15223. [
  15224. {
  15225. name: "Nano",
  15226. height: math.unit(2, "nm")
  15227. },
  15228. {
  15229. name: "Megamicro",
  15230. height: math.unit(0.1, "mm")
  15231. },
  15232. {
  15233. name: "Micro",
  15234. height: math.unit(1, "inch"),
  15235. default: true
  15236. },
  15237. {
  15238. name: "Human-sized",
  15239. height: math.unit(6 + 1 / 12, "feet")
  15240. },
  15241. {
  15242. name: "Macro",
  15243. height: math.unit(250, "feet")
  15244. },
  15245. {
  15246. name: "Megamacro",
  15247. height: math.unit(75, "miles")
  15248. },
  15249. {
  15250. name: "Texas-sized",
  15251. height: math.unit(750, "miles")
  15252. },
  15253. {
  15254. name: "Teramacro",
  15255. height: math.unit(50000, "miles")
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15261. {
  15262. front: {
  15263. height: math.unit(6, "feet"),
  15264. weight: math.unit(269, "lb"),
  15265. name: "Front",
  15266. image: {
  15267. source: "./media/characters/danny-kapowsky/front.svg",
  15268. extra: 766 / 736,
  15269. bottom: 0.044
  15270. }
  15271. },
  15272. back: {
  15273. height: math.unit(6, "feet"),
  15274. weight: math.unit(269, "lb"),
  15275. name: "Back",
  15276. image: {
  15277. source: "./media/characters/danny-kapowsky/back.svg",
  15278. extra: 797 / 760,
  15279. bottom: 0.025
  15280. }
  15281. },
  15282. },
  15283. [
  15284. {
  15285. name: "Macro",
  15286. height: math.unit(150, "feet"),
  15287. default: true
  15288. },
  15289. {
  15290. name: "Macro+",
  15291. height: math.unit(200, "feet")
  15292. },
  15293. {
  15294. name: "Macro++",
  15295. height: math.unit(300, "feet")
  15296. },
  15297. {
  15298. name: "Macro+++",
  15299. height: math.unit(400, "feet")
  15300. },
  15301. ]
  15302. ))
  15303. characterMakers.push(() => makeCharacter(
  15304. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15305. {
  15306. side: {
  15307. height: math.unit(6, "feet"),
  15308. weight: math.unit(170, "lb"),
  15309. name: "Side",
  15310. image: {
  15311. source: "./media/characters/finn/side.svg",
  15312. extra: 1953 / 1807,
  15313. bottom: 0.057
  15314. }
  15315. },
  15316. },
  15317. [
  15318. {
  15319. name: "Megamacro",
  15320. height: math.unit(14445, "feet"),
  15321. default: true
  15322. },
  15323. ]
  15324. ))
  15325. characterMakers.push(() => makeCharacter(
  15326. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15327. {
  15328. front: {
  15329. height: math.unit(5 + 6 / 12, "feet"),
  15330. weight: math.unit(125, "lb"),
  15331. name: "Front",
  15332. image: {
  15333. source: "./media/characters/roy/front.svg",
  15334. extra: 1,
  15335. bottom: 0.11
  15336. }
  15337. },
  15338. },
  15339. [
  15340. {
  15341. name: "Micro",
  15342. height: math.unit(3, "inches"),
  15343. default: true
  15344. },
  15345. {
  15346. name: "Normal",
  15347. height: math.unit(5 + 6 / 12, "feet")
  15348. },
  15349. {
  15350. name: "Lesser Macro",
  15351. height: math.unit(60, "feet")
  15352. },
  15353. {
  15354. name: "Greater Macro",
  15355. height: math.unit(120, "feet")
  15356. },
  15357. ]
  15358. ))
  15359. characterMakers.push(() => makeCharacter(
  15360. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15361. {
  15362. front: {
  15363. height: math.unit(6, "feet"),
  15364. weight: math.unit(100, "lb"),
  15365. name: "Front",
  15366. image: {
  15367. source: "./media/characters/aevsivs/front.svg",
  15368. extra: 1,
  15369. bottom: 0.03
  15370. }
  15371. },
  15372. back: {
  15373. height: math.unit(6, "feet"),
  15374. weight: math.unit(100, "lb"),
  15375. name: "Back",
  15376. image: {
  15377. source: "./media/characters/aevsivs/back.svg"
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Micro",
  15384. height: math.unit(2, "inches"),
  15385. default: true
  15386. },
  15387. {
  15388. name: "Normal",
  15389. height: math.unit(5, "feet")
  15390. },
  15391. ]
  15392. ))
  15393. characterMakers.push(() => makeCharacter(
  15394. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15395. {
  15396. front: {
  15397. height: math.unit(5 + 7 / 12, "feet"),
  15398. weight: math.unit(159, "lb"),
  15399. name: "Front",
  15400. image: {
  15401. source: "./media/characters/hildegard/front.svg",
  15402. extra: 289 / 269,
  15403. bottom: 7.63 / 297.8
  15404. }
  15405. },
  15406. back: {
  15407. height: math.unit(5 + 7 / 12, "feet"),
  15408. weight: math.unit(159, "lb"),
  15409. name: "Back",
  15410. image: {
  15411. source: "./media/characters/hildegard/back.svg",
  15412. extra: 280 / 260,
  15413. bottom: 2.3 / 282
  15414. }
  15415. },
  15416. },
  15417. [
  15418. {
  15419. name: "Normal",
  15420. height: math.unit(5 + 7 / 12, "feet"),
  15421. default: true
  15422. },
  15423. ]
  15424. ))
  15425. characterMakers.push(() => makeCharacter(
  15426. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15427. {
  15428. bernard: {
  15429. height: math.unit(2 + 7 / 12, "feet"),
  15430. weight: math.unit(66, "lb"),
  15431. name: "Bernard",
  15432. rename: true,
  15433. image: {
  15434. source: "./media/characters/bernard-wilder/bernard.svg",
  15435. extra: 192 / 128,
  15436. bottom: 0.05
  15437. }
  15438. },
  15439. wilder: {
  15440. height: math.unit(5 + 8 / 12, "feet"),
  15441. weight: math.unit(143, "lb"),
  15442. name: "Wilder",
  15443. rename: true,
  15444. image: {
  15445. source: "./media/characters/bernard-wilder/wilder.svg",
  15446. extra: 361 / 312,
  15447. bottom: 0.02
  15448. }
  15449. },
  15450. },
  15451. [
  15452. {
  15453. name: "Normal",
  15454. height: math.unit(2 + 7 / 12, "feet"),
  15455. default: true
  15456. },
  15457. ]
  15458. ))
  15459. characterMakers.push(() => makeCharacter(
  15460. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15461. {
  15462. anthro: {
  15463. height: math.unit(6 + 1 / 12, "feet"),
  15464. weight: math.unit(155, "lb"),
  15465. name: "Anthro",
  15466. image: {
  15467. source: "./media/characters/hearth/anthro.svg",
  15468. extra: 1178/1136,
  15469. bottom: 28/1206
  15470. }
  15471. },
  15472. feral: {
  15473. height: math.unit(3.78, "feet"),
  15474. weight: math.unit(35, "kg"),
  15475. name: "Feral",
  15476. image: {
  15477. source: "./media/characters/hearth/feral.svg",
  15478. extra: 153 / 135,
  15479. bottom: 0.03
  15480. }
  15481. },
  15482. },
  15483. [
  15484. {
  15485. name: "Normal",
  15486. height: math.unit(6 + 1 / 12, "feet"),
  15487. default: true
  15488. },
  15489. ]
  15490. ))
  15491. characterMakers.push(() => makeCharacter(
  15492. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15493. {
  15494. front: {
  15495. height: math.unit(6, "feet"),
  15496. weight: math.unit(182, "lb"),
  15497. name: "Front",
  15498. image: {
  15499. source: "./media/characters/ingrid/front.svg",
  15500. extra: 294 / 268,
  15501. bottom: 0.027
  15502. }
  15503. },
  15504. },
  15505. [
  15506. {
  15507. name: "Normal",
  15508. height: math.unit(6, "feet"),
  15509. default: true
  15510. },
  15511. ]
  15512. ))
  15513. characterMakers.push(() => makeCharacter(
  15514. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15515. {
  15516. eevee: {
  15517. height: math.unit(2 + 10 / 12, "feet"),
  15518. weight: math.unit(86, "lb"),
  15519. name: "Malgam",
  15520. image: {
  15521. source: "./media/characters/malgam/eevee.svg",
  15522. extra: 952/784,
  15523. bottom: 38/990
  15524. }
  15525. },
  15526. sylveon: {
  15527. height: math.unit(4, "feet"),
  15528. weight: math.unit(101, "lb"),
  15529. name: "Future Malgam",
  15530. rename: true,
  15531. image: {
  15532. source: "./media/characters/malgam/sylveon.svg",
  15533. extra: 371 / 325,
  15534. bottom: 0.015
  15535. }
  15536. },
  15537. gigantamax: {
  15538. height: math.unit(50, "feet"),
  15539. name: "Gigantamax Malgam",
  15540. rename: true,
  15541. image: {
  15542. source: "./media/characters/malgam/gigantamax.svg"
  15543. }
  15544. },
  15545. },
  15546. [
  15547. {
  15548. name: "Normal",
  15549. height: math.unit(2 + 10 / 12, "feet"),
  15550. default: true
  15551. },
  15552. ]
  15553. ))
  15554. characterMakers.push(() => makeCharacter(
  15555. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15556. {
  15557. front: {
  15558. height: math.unit(5 + 11 / 12, "feet"),
  15559. weight: math.unit(188, "lb"),
  15560. name: "Front",
  15561. image: {
  15562. source: "./media/characters/fleur/front.svg",
  15563. extra: 309 / 283,
  15564. bottom: 0.007
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Normal",
  15571. height: math.unit(5 + 11 / 12, "feet"),
  15572. default: true
  15573. },
  15574. ]
  15575. ))
  15576. characterMakers.push(() => makeCharacter(
  15577. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15578. {
  15579. front: {
  15580. height: math.unit(5 + 4 / 12, "feet"),
  15581. weight: math.unit(122, "lb"),
  15582. name: "Front",
  15583. image: {
  15584. source: "./media/characters/jude/front.svg",
  15585. extra: 288 / 273,
  15586. bottom: 0.03
  15587. }
  15588. },
  15589. },
  15590. [
  15591. {
  15592. name: "Normal",
  15593. height: math.unit(5 + 4 / 12, "feet"),
  15594. default: true
  15595. },
  15596. ]
  15597. ))
  15598. characterMakers.push(() => makeCharacter(
  15599. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15600. {
  15601. front: {
  15602. height: math.unit(5 + 11 / 12, "feet"),
  15603. weight: math.unit(190, "lb"),
  15604. name: "Front",
  15605. image: {
  15606. source: "./media/characters/seara/front.svg",
  15607. extra: 1,
  15608. bottom: 0.05
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Normal",
  15615. height: math.unit(5 + 11 / 12, "feet"),
  15616. default: true
  15617. },
  15618. ]
  15619. ))
  15620. characterMakers.push(() => makeCharacter(
  15621. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15622. {
  15623. front: {
  15624. height: math.unit(16 + 5 / 12, "feet"),
  15625. weight: math.unit(524, "lb"),
  15626. name: "Front",
  15627. image: {
  15628. source: "./media/characters/caspian-lugia/front.svg",
  15629. extra: 1,
  15630. bottom: 0.04
  15631. }
  15632. },
  15633. },
  15634. [
  15635. {
  15636. name: "Normal",
  15637. height: math.unit(16 + 5 / 12, "feet"),
  15638. default: true
  15639. },
  15640. ]
  15641. ))
  15642. characterMakers.push(() => makeCharacter(
  15643. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15644. {
  15645. front: {
  15646. height: math.unit(5 + 7 / 12, "feet"),
  15647. weight: math.unit(170, "lb"),
  15648. name: "Front",
  15649. image: {
  15650. source: "./media/characters/mika/front.svg",
  15651. extra: 1,
  15652. bottom: 0.016
  15653. }
  15654. },
  15655. },
  15656. [
  15657. {
  15658. name: "Normal",
  15659. height: math.unit(5 + 7 / 12, "feet"),
  15660. default: true
  15661. },
  15662. ]
  15663. ))
  15664. characterMakers.push(() => makeCharacter(
  15665. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15666. {
  15667. front: {
  15668. height: math.unit(6 + 2 / 12, "feet"),
  15669. weight: math.unit(268, "lb"),
  15670. name: "Front",
  15671. image: {
  15672. source: "./media/characters/sol/front.svg",
  15673. extra: 247 / 231,
  15674. bottom: 0.05
  15675. }
  15676. },
  15677. },
  15678. [
  15679. {
  15680. name: "Normal",
  15681. height: math.unit(6 + 2 / 12, "feet"),
  15682. default: true
  15683. },
  15684. ]
  15685. ))
  15686. characterMakers.push(() => makeCharacter(
  15687. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15688. {
  15689. buizel: {
  15690. height: math.unit(2 + 5 / 12, "feet"),
  15691. weight: math.unit(87, "lb"),
  15692. name: "Front",
  15693. image: {
  15694. source: "./media/characters/umiko/buizel.svg",
  15695. extra: 172 / 157,
  15696. bottom: 0.01
  15697. },
  15698. form: "buizel",
  15699. default: true
  15700. },
  15701. floatzel: {
  15702. height: math.unit(5 + 9 / 12, "feet"),
  15703. weight: math.unit(250, "lb"),
  15704. name: "Front",
  15705. image: {
  15706. source: "./media/characters/umiko/floatzel.svg",
  15707. extra: 1076/1006,
  15708. bottom: 15/1091
  15709. },
  15710. form: "floatzel",
  15711. default: true
  15712. },
  15713. },
  15714. [
  15715. {
  15716. name: "Normal",
  15717. height: math.unit(2 + 5 / 12, "feet"),
  15718. form: "buizel",
  15719. default: true
  15720. },
  15721. {
  15722. name: "Normal",
  15723. height: math.unit(5 + 9 / 12, "feet"),
  15724. form: "floatzel",
  15725. default: true
  15726. },
  15727. ],
  15728. {
  15729. "buizel": {
  15730. name: "Buizel"
  15731. },
  15732. "floatzel": {
  15733. name: "Floatzel",
  15734. default: true
  15735. }
  15736. }
  15737. ))
  15738. characterMakers.push(() => makeCharacter(
  15739. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15740. {
  15741. front: {
  15742. height: math.unit(6 + 2 / 12, "feet"),
  15743. weight: math.unit(146, "lb"),
  15744. name: "Front",
  15745. image: {
  15746. source: "./media/characters/iliac/front.svg",
  15747. extra: 389 / 365,
  15748. bottom: 0.035
  15749. }
  15750. },
  15751. },
  15752. [
  15753. {
  15754. name: "Normal",
  15755. height: math.unit(6 + 2 / 12, "feet"),
  15756. default: true
  15757. },
  15758. ]
  15759. ))
  15760. characterMakers.push(() => makeCharacter(
  15761. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15762. {
  15763. front: {
  15764. height: math.unit(6, "feet"),
  15765. weight: math.unit(170, "lb"),
  15766. name: "Front",
  15767. image: {
  15768. source: "./media/characters/topaz/front.svg",
  15769. extra: 317 / 303,
  15770. bottom: 0.055
  15771. }
  15772. },
  15773. },
  15774. [
  15775. {
  15776. name: "Normal",
  15777. height: math.unit(6, "feet"),
  15778. default: true
  15779. },
  15780. ]
  15781. ))
  15782. characterMakers.push(() => makeCharacter(
  15783. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15784. {
  15785. front: {
  15786. height: math.unit(5 + 11 / 12, "feet"),
  15787. weight: math.unit(144, "lb"),
  15788. name: "Front",
  15789. image: {
  15790. source: "./media/characters/gabriel/front.svg",
  15791. extra: 285 / 262,
  15792. bottom: 0.004
  15793. }
  15794. },
  15795. },
  15796. [
  15797. {
  15798. name: "Normal",
  15799. height: math.unit(5 + 11 / 12, "feet"),
  15800. default: true
  15801. },
  15802. ]
  15803. ))
  15804. characterMakers.push(() => makeCharacter(
  15805. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15806. {
  15807. side: {
  15808. height: math.unit(6 + 5 / 12, "feet"),
  15809. weight: math.unit(300, "lb"),
  15810. name: "Side",
  15811. image: {
  15812. source: "./media/characters/tempest-suicune/side.svg",
  15813. extra: 195 / 154,
  15814. bottom: 0.04
  15815. }
  15816. },
  15817. },
  15818. [
  15819. {
  15820. name: "Normal",
  15821. height: math.unit(6 + 5 / 12, "feet"),
  15822. default: true
  15823. },
  15824. ]
  15825. ))
  15826. characterMakers.push(() => makeCharacter(
  15827. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15828. {
  15829. front: {
  15830. height: math.unit(7 + 2 / 12, "feet"),
  15831. weight: math.unit(322, "lb"),
  15832. name: "Front",
  15833. image: {
  15834. source: "./media/characters/vulcan/front.svg",
  15835. extra: 154 / 147,
  15836. bottom: 0.04
  15837. }
  15838. },
  15839. },
  15840. [
  15841. {
  15842. name: "Normal",
  15843. height: math.unit(7 + 2 / 12, "feet"),
  15844. default: true
  15845. },
  15846. ]
  15847. ))
  15848. characterMakers.push(() => makeCharacter(
  15849. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15850. {
  15851. front: {
  15852. height: math.unit(5 + 10 / 12, "feet"),
  15853. weight: math.unit(264, "lb"),
  15854. name: "Front",
  15855. image: {
  15856. source: "./media/characters/gault/front.svg",
  15857. extra: 161 / 140,
  15858. bottom: 0.028
  15859. }
  15860. },
  15861. },
  15862. [
  15863. {
  15864. name: "Normal",
  15865. height: math.unit(5 + 10 / 12, "feet"),
  15866. default: true
  15867. },
  15868. ]
  15869. ))
  15870. characterMakers.push(() => makeCharacter(
  15871. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15872. {
  15873. front: {
  15874. height: math.unit(6, "feet"),
  15875. weight: math.unit(150, "lb"),
  15876. name: "Front",
  15877. image: {
  15878. source: "./media/characters/shard/front.svg",
  15879. extra: 273 / 238,
  15880. bottom: 0.02
  15881. }
  15882. },
  15883. },
  15884. [
  15885. {
  15886. name: "Normal",
  15887. height: math.unit(3 + 6 / 12, "feet"),
  15888. default: true
  15889. },
  15890. ]
  15891. ))
  15892. characterMakers.push(() => makeCharacter(
  15893. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15894. {
  15895. front: {
  15896. height: math.unit(5 + 11 / 12, "feet"),
  15897. weight: math.unit(146, "lb"),
  15898. name: "Front",
  15899. image: {
  15900. source: "./media/characters/ashe/front.svg",
  15901. extra: 400 / 373,
  15902. bottom: 0.01
  15903. }
  15904. },
  15905. },
  15906. [
  15907. {
  15908. name: "Normal",
  15909. height: math.unit(5 + 11 / 12, "feet"),
  15910. default: true
  15911. },
  15912. ]
  15913. ))
  15914. characterMakers.push(() => makeCharacter(
  15915. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15916. {
  15917. front: {
  15918. height: math.unit(5 + 5 / 12, "feet"),
  15919. weight: math.unit(135, "lb"),
  15920. name: "Front",
  15921. image: {
  15922. source: "./media/characters/beatrix/front.svg",
  15923. extra: 392 / 379,
  15924. bottom: 0.01
  15925. }
  15926. },
  15927. },
  15928. [
  15929. {
  15930. name: "Normal",
  15931. height: math.unit(6, "feet"),
  15932. default: true
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15938. {
  15939. front: {
  15940. height: math.unit(6 + 2/12, "feet"),
  15941. weight: math.unit(135, "lb"),
  15942. name: "Front",
  15943. image: {
  15944. source: "./media/characters/ignatius/front.svg",
  15945. extra: 1380/1259,
  15946. bottom: 27/1407
  15947. }
  15948. },
  15949. },
  15950. [
  15951. {
  15952. name: "Normal",
  15953. height: math.unit(6 + 2/12, "feet"),
  15954. default: true
  15955. },
  15956. ]
  15957. ))
  15958. characterMakers.push(() => makeCharacter(
  15959. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15960. {
  15961. front: {
  15962. height: math.unit(6 + 2 / 12, "feet"),
  15963. weight: math.unit(138, "lb"),
  15964. name: "Front",
  15965. image: {
  15966. source: "./media/characters/mei-li/front.svg",
  15967. extra: 237 / 229,
  15968. bottom: 0.03
  15969. }
  15970. },
  15971. },
  15972. [
  15973. {
  15974. name: "Normal",
  15975. height: math.unit(6 + 2 / 12, "feet"),
  15976. default: true
  15977. },
  15978. ]
  15979. ))
  15980. characterMakers.push(() => makeCharacter(
  15981. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15982. {
  15983. front: {
  15984. height: math.unit(2 + 4 / 12, "feet"),
  15985. weight: math.unit(62, "lb"),
  15986. name: "Front",
  15987. image: {
  15988. source: "./media/characters/puru/front.svg",
  15989. extra: 206 / 149,
  15990. bottom: 0.06
  15991. }
  15992. },
  15993. },
  15994. [
  15995. {
  15996. name: "Normal",
  15997. height: math.unit(2 + 4 / 12, "feet"),
  15998. default: true
  15999. },
  16000. ]
  16001. ))
  16002. characterMakers.push(() => makeCharacter(
  16003. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16004. {
  16005. anthro: {
  16006. height: math.unit(5 + 8/12, "feet"),
  16007. weight: math.unit(200, "lb"),
  16008. energyNeed: math.unit(2000, "kcal"),
  16009. name: "Anthro",
  16010. image: {
  16011. source: "./media/characters/kee/anthro.svg",
  16012. extra: 3251/3184,
  16013. bottom: 250/3501
  16014. }
  16015. },
  16016. taur: {
  16017. height: math.unit(11, "feet"),
  16018. weight: math.unit(500, "lb"),
  16019. energyNeed: math.unit(5000, "kcal"),
  16020. name: "Taur",
  16021. image: {
  16022. source: "./media/characters/kee/taur.svg",
  16023. extra: 1362/1320,
  16024. bottom: 83/1445
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Normal",
  16031. height: math.unit(5 + 8/12, "feet"),
  16032. default: true
  16033. },
  16034. {
  16035. name: "Macro",
  16036. height: math.unit(35, "feet")
  16037. },
  16038. ]
  16039. ))
  16040. characterMakers.push(() => makeCharacter(
  16041. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16042. {
  16043. anthro: {
  16044. height: math.unit(7, "feet"),
  16045. weight: math.unit(190, "lb"),
  16046. name: "Anthro",
  16047. image: {
  16048. source: "./media/characters/cobalt-dracha/anthro.svg",
  16049. extra: 231 / 225,
  16050. bottom: 0.04
  16051. }
  16052. },
  16053. feral: {
  16054. height: math.unit(9 + 7 / 12, "feet"),
  16055. weight: math.unit(294, "lb"),
  16056. name: "Feral",
  16057. image: {
  16058. source: "./media/characters/cobalt-dracha/feral.svg",
  16059. extra: 692 / 633,
  16060. bottom: 0.05
  16061. }
  16062. },
  16063. },
  16064. [
  16065. {
  16066. name: "Normal",
  16067. height: math.unit(7, "feet"),
  16068. default: true
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16074. {
  16075. fallen: {
  16076. height: math.unit(11 + 8 / 12, "feet"),
  16077. weight: math.unit(485, "lb"),
  16078. name: "Java (Fallen)",
  16079. rename: true,
  16080. image: {
  16081. source: "./media/characters/java/fallen.svg",
  16082. extra: 226 / 208,
  16083. bottom: 0.005
  16084. }
  16085. },
  16086. godkin: {
  16087. height: math.unit(10 + 6 / 12, "feet"),
  16088. weight: math.unit(328, "lb"),
  16089. name: "Java (Godkin)",
  16090. rename: true,
  16091. image: {
  16092. source: "./media/characters/java/godkin.svg",
  16093. extra: 1104/1068,
  16094. bottom: 36/1140
  16095. }
  16096. },
  16097. },
  16098. [
  16099. {
  16100. name: "Normal",
  16101. height: math.unit(11 + 8 / 12, "feet"),
  16102. default: true
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(5 + 9 / 12, "feet"),
  16111. weight: math.unit(170, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/purna/front.svg",
  16115. extra: 239 / 229,
  16116. bottom: 0.01
  16117. }
  16118. },
  16119. },
  16120. [
  16121. {
  16122. name: "Normal",
  16123. height: math.unit(5 + 9 / 12, "feet"),
  16124. default: true
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16130. {
  16131. front: {
  16132. height: math.unit(5 + 9 / 12, "feet"),
  16133. weight: math.unit(142, "lb"),
  16134. name: "Front",
  16135. image: {
  16136. source: "./media/characters/kuva/front.svg",
  16137. extra: 281 / 271,
  16138. bottom: 0.006
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Normal",
  16145. height: math.unit(5 + 9 / 12, "feet"),
  16146. default: true
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16152. {
  16153. anthro: {
  16154. height: math.unit(9 + 2 / 12, "feet"),
  16155. weight: math.unit(270, "lb"),
  16156. name: "Anthro",
  16157. image: {
  16158. source: "./media/characters/embra/anthro.svg",
  16159. extra: 200 / 187,
  16160. bottom: 0.02
  16161. }
  16162. },
  16163. feral: {
  16164. height: math.unit(18 + 8 / 12, "feet"),
  16165. weight: math.unit(576, "lb"),
  16166. name: "Feral",
  16167. image: {
  16168. source: "./media/characters/embra/feral.svg",
  16169. extra: 152 / 137,
  16170. bottom: 0.037
  16171. }
  16172. },
  16173. },
  16174. [
  16175. {
  16176. name: "Normal",
  16177. height: math.unit(9 + 2 / 12, "feet"),
  16178. default: true
  16179. },
  16180. ]
  16181. ))
  16182. characterMakers.push(() => makeCharacter(
  16183. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16184. {
  16185. anthro: {
  16186. height: math.unit(10 + 9 / 12, "feet"),
  16187. weight: math.unit(224, "lb"),
  16188. name: "Anthro",
  16189. image: {
  16190. source: "./media/characters/grottos/anthro.svg",
  16191. extra: 350 / 332,
  16192. bottom: 0.045
  16193. }
  16194. },
  16195. feral: {
  16196. height: math.unit(20 + 7 / 12, "feet"),
  16197. weight: math.unit(629, "lb"),
  16198. name: "Feral",
  16199. image: {
  16200. source: "./media/characters/grottos/feral.svg",
  16201. extra: 207 / 190,
  16202. bottom: 0.05
  16203. }
  16204. },
  16205. },
  16206. [
  16207. {
  16208. name: "Normal",
  16209. height: math.unit(10 + 9 / 12, "feet"),
  16210. default: true
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16216. {
  16217. anthro: {
  16218. height: math.unit(9 + 6 / 12, "feet"),
  16219. weight: math.unit(298, "lb"),
  16220. name: "Anthro",
  16221. image: {
  16222. source: "./media/characters/frifna/anthro.svg",
  16223. extra: 282 / 269,
  16224. bottom: 0.015
  16225. }
  16226. },
  16227. feral: {
  16228. height: math.unit(16 + 2 / 12, "feet"),
  16229. weight: math.unit(624, "lb"),
  16230. name: "Feral",
  16231. image: {
  16232. source: "./media/characters/frifna/feral.svg"
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Normal",
  16239. height: math.unit(9 + 6 / 12, "feet"),
  16240. default: true
  16241. },
  16242. ]
  16243. ))
  16244. characterMakers.push(() => makeCharacter(
  16245. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16246. {
  16247. front: {
  16248. height: math.unit(6 + 2 / 12, "feet"),
  16249. weight: math.unit(168, "lb"),
  16250. name: "Front",
  16251. image: {
  16252. source: "./media/characters/elise/front.svg",
  16253. extra: 276 / 271
  16254. }
  16255. },
  16256. },
  16257. [
  16258. {
  16259. name: "Normal",
  16260. height: math.unit(6 + 2 / 12, "feet"),
  16261. default: true
  16262. },
  16263. ]
  16264. ))
  16265. characterMakers.push(() => makeCharacter(
  16266. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16267. {
  16268. front: {
  16269. height: math.unit(5 + 10 / 12, "feet"),
  16270. weight: math.unit(210, "lb"),
  16271. name: "Front",
  16272. image: {
  16273. source: "./media/characters/glade/front.svg",
  16274. extra: 258 / 247,
  16275. bottom: 0.008
  16276. }
  16277. },
  16278. },
  16279. [
  16280. {
  16281. name: "Normal",
  16282. height: math.unit(5 + 10 / 12, "feet"),
  16283. default: true
  16284. },
  16285. ]
  16286. ))
  16287. characterMakers.push(() => makeCharacter(
  16288. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16289. {
  16290. front: {
  16291. height: math.unit(5 + 10 / 12, "feet"),
  16292. weight: math.unit(129, "lb"),
  16293. name: "Front",
  16294. image: {
  16295. source: "./media/characters/rina/front.svg",
  16296. extra: 266 / 255,
  16297. bottom: 0.005
  16298. }
  16299. },
  16300. },
  16301. [
  16302. {
  16303. name: "Normal",
  16304. height: math.unit(5 + 10 / 12, "feet"),
  16305. default: true
  16306. },
  16307. ]
  16308. ))
  16309. characterMakers.push(() => makeCharacter(
  16310. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16311. {
  16312. front: {
  16313. height: math.unit(6 + 1 / 12, "feet"),
  16314. weight: math.unit(192, "lb"),
  16315. name: "Front",
  16316. image: {
  16317. source: "./media/characters/veronica/front.svg",
  16318. extra: 319 / 309,
  16319. bottom: 0.005
  16320. }
  16321. },
  16322. },
  16323. [
  16324. {
  16325. name: "Normal",
  16326. height: math.unit(6 + 1 / 12, "feet"),
  16327. default: true
  16328. },
  16329. ]
  16330. ))
  16331. characterMakers.push(() => makeCharacter(
  16332. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16333. {
  16334. front: {
  16335. height: math.unit(9 + 3 / 12, "feet"),
  16336. weight: math.unit(1100, "lb"),
  16337. name: "Front",
  16338. image: {
  16339. source: "./media/characters/braxton/front.svg",
  16340. extra: 1057 / 984,
  16341. bottom: 0.05
  16342. }
  16343. },
  16344. },
  16345. [
  16346. {
  16347. name: "Normal",
  16348. height: math.unit(9 + 3 / 12, "feet")
  16349. },
  16350. {
  16351. name: "Giant",
  16352. height: math.unit(300, "feet"),
  16353. default: true
  16354. },
  16355. {
  16356. name: "Macro",
  16357. height: math.unit(700, "feet")
  16358. },
  16359. {
  16360. name: "Megamacro",
  16361. height: math.unit(6000, "feet")
  16362. },
  16363. ]
  16364. ))
  16365. characterMakers.push(() => makeCharacter(
  16366. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16367. {
  16368. front: {
  16369. height: math.unit(6 + 7 / 12, "feet"),
  16370. weight: math.unit(150, "lb"),
  16371. name: "Front",
  16372. image: {
  16373. source: "./media/characters/blue-feyonics/front.svg",
  16374. extra: 1403 / 1306,
  16375. bottom: 0.047
  16376. }
  16377. },
  16378. },
  16379. [
  16380. {
  16381. name: "Normal",
  16382. height: math.unit(6 + 7 / 12, "feet"),
  16383. default: true
  16384. },
  16385. ]
  16386. ))
  16387. characterMakers.push(() => makeCharacter(
  16388. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16389. {
  16390. front: {
  16391. height: math.unit(1.8, "meters"),
  16392. weight: math.unit(60, "kg"),
  16393. name: "Front",
  16394. image: {
  16395. source: "./media/characters/maxwell/front.svg",
  16396. extra: 2060 / 1873
  16397. }
  16398. },
  16399. },
  16400. [
  16401. {
  16402. name: "Micro",
  16403. height: math.unit(1, "mm")
  16404. },
  16405. {
  16406. name: "Normal",
  16407. height: math.unit(1.8, "meter"),
  16408. default: true
  16409. },
  16410. {
  16411. name: "Macro",
  16412. height: math.unit(30, "meters")
  16413. },
  16414. {
  16415. name: "Megamacro",
  16416. height: math.unit(10, "km")
  16417. },
  16418. ]
  16419. ))
  16420. characterMakers.push(() => makeCharacter(
  16421. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16422. {
  16423. front: {
  16424. height: math.unit(6, "feet"),
  16425. weight: math.unit(150, "lb"),
  16426. name: "Front",
  16427. image: {
  16428. source: "./media/characters/jack/front.svg",
  16429. extra: 1754 / 1640,
  16430. bottom: 0.01
  16431. }
  16432. },
  16433. },
  16434. [
  16435. {
  16436. name: "Normal",
  16437. height: math.unit(80000, "feet"),
  16438. default: true
  16439. },
  16440. {
  16441. name: "Max size",
  16442. height: math.unit(10, "lightyears")
  16443. },
  16444. ]
  16445. ))
  16446. characterMakers.push(() => makeCharacter(
  16447. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16448. {
  16449. urban: {
  16450. height: math.unit(5, "feet"),
  16451. weight: math.unit(240, "lb"),
  16452. name: "Urban",
  16453. image: {
  16454. source: "./media/characters/cafat/urban.svg",
  16455. extra: 1223/1126,
  16456. bottom: 205/1428
  16457. }
  16458. },
  16459. summer: {
  16460. height: math.unit(5, "feet"),
  16461. weight: math.unit(240, "lb"),
  16462. name: "Summer",
  16463. image: {
  16464. source: "./media/characters/cafat/summer.svg",
  16465. extra: 1223/1126,
  16466. bottom: 205/1428
  16467. }
  16468. },
  16469. winter: {
  16470. height: math.unit(5, "feet"),
  16471. weight: math.unit(240, "lb"),
  16472. name: "Winter",
  16473. image: {
  16474. source: "./media/characters/cafat/winter.svg",
  16475. extra: 1223/1126,
  16476. bottom: 205/1428
  16477. }
  16478. },
  16479. lingerie: {
  16480. height: math.unit(5, "feet"),
  16481. weight: math.unit(240, "lb"),
  16482. name: "Lingerie",
  16483. image: {
  16484. source: "./media/characters/cafat/lingerie.svg",
  16485. extra: 1223/1126,
  16486. bottom: 205/1428
  16487. }
  16488. },
  16489. upright: {
  16490. height: math.unit(6.3, "feet"),
  16491. weight: math.unit(240, "lb"),
  16492. name: "Upright",
  16493. image: {
  16494. source: "./media/characters/cafat/upright.svg",
  16495. bottom: 0.01
  16496. }
  16497. },
  16498. uprightFull: {
  16499. height: math.unit(6.3, "feet"),
  16500. weight: math.unit(240, "lb"),
  16501. name: "Upright (Full)",
  16502. image: {
  16503. source: "./media/characters/cafat/upright-full.svg",
  16504. bottom: 0.01
  16505. }
  16506. },
  16507. },
  16508. [
  16509. {
  16510. name: "Small",
  16511. height: math.unit(5, "feet"),
  16512. default: true
  16513. },
  16514. {
  16515. name: "Large",
  16516. height: math.unit(13, "feet")
  16517. },
  16518. ]
  16519. ))
  16520. characterMakers.push(() => makeCharacter(
  16521. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16522. {
  16523. front: {
  16524. height: math.unit(6, "feet"),
  16525. weight: math.unit(150, "lb"),
  16526. name: "Front",
  16527. image: {
  16528. source: "./media/characters/verin-raharra/front.svg",
  16529. extra: 5019 / 4835,
  16530. bottom: 0.023
  16531. }
  16532. },
  16533. },
  16534. [
  16535. {
  16536. name: "Normal",
  16537. height: math.unit(7 + 5 / 12, "feet"),
  16538. default: true
  16539. },
  16540. {
  16541. name: "Upsized",
  16542. height: math.unit(20, "feet")
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16548. {
  16549. front: {
  16550. height: math.unit(7, "feet"),
  16551. weight: math.unit(230, "lb"),
  16552. name: "Front",
  16553. image: {
  16554. source: "./media/characters/nakata/front.svg",
  16555. extra: 1.005,
  16556. bottom: 0.01
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(7, "feet"),
  16564. default: true
  16565. },
  16566. {
  16567. name: "Big",
  16568. height: math.unit(14, "feet")
  16569. },
  16570. {
  16571. name: "Macro",
  16572. height: math.unit(400, "feet")
  16573. },
  16574. ]
  16575. ))
  16576. characterMakers.push(() => makeCharacter(
  16577. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16578. {
  16579. front: {
  16580. height: math.unit(4.91, "feet"),
  16581. weight: math.unit(100, "lb"),
  16582. name: "Front",
  16583. image: {
  16584. source: "./media/characters/lily/front.svg",
  16585. extra: 1585 / 1415,
  16586. bottom: 0.02
  16587. }
  16588. },
  16589. },
  16590. [
  16591. {
  16592. name: "Normal",
  16593. height: math.unit(4.91, "feet"),
  16594. default: true
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16600. {
  16601. laying: {
  16602. height: math.unit(4 + 4 / 12, "feet"),
  16603. weight: math.unit(600, "lb"),
  16604. name: "Laying",
  16605. image: {
  16606. source: "./media/characters/sheila/laying.svg",
  16607. extra: 1333 / 1265,
  16608. bottom: 0.16
  16609. }
  16610. },
  16611. },
  16612. [
  16613. {
  16614. name: "Normal",
  16615. height: math.unit(4 + 4 / 12, "feet"),
  16616. default: true
  16617. },
  16618. ]
  16619. ))
  16620. characterMakers.push(() => makeCharacter(
  16621. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16622. {
  16623. front: {
  16624. height: math.unit(6, "feet"),
  16625. weight: math.unit(190, "lb"),
  16626. name: "Front",
  16627. image: {
  16628. source: "./media/characters/sax/front.svg",
  16629. extra: 1187 / 973,
  16630. bottom: 0.042
  16631. }
  16632. },
  16633. },
  16634. [
  16635. {
  16636. name: "Micro",
  16637. height: math.unit(4, "inches"),
  16638. default: true
  16639. },
  16640. ]
  16641. ))
  16642. characterMakers.push(() => makeCharacter(
  16643. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16644. {
  16645. front: {
  16646. height: math.unit(6, "feet"),
  16647. weight: math.unit(150, "lb"),
  16648. name: "Front",
  16649. image: {
  16650. source: "./media/characters/pandora/front.svg",
  16651. extra: 2720 / 2556,
  16652. bottom: 0.015
  16653. }
  16654. },
  16655. back: {
  16656. height: math.unit(6, "feet"),
  16657. weight: math.unit(150, "lb"),
  16658. name: "Back",
  16659. image: {
  16660. source: "./media/characters/pandora/back.svg",
  16661. extra: 2720 / 2556,
  16662. bottom: 0.01
  16663. }
  16664. },
  16665. beans: {
  16666. height: math.unit(6 / 8, "feet"),
  16667. name: "Beans",
  16668. image: {
  16669. source: "./media/characters/pandora/beans.svg"
  16670. }
  16671. },
  16672. collar: {
  16673. height: math.unit(0.31, "feet"),
  16674. name: "Collar",
  16675. image: {
  16676. source: "./media/characters/pandora/collar.svg"
  16677. }
  16678. },
  16679. skirt: {
  16680. height: math.unit(6, "feet"),
  16681. weight: math.unit(150, "lb"),
  16682. name: "Skirt",
  16683. image: {
  16684. source: "./media/characters/pandora/skirt.svg",
  16685. extra: 1622 / 1525,
  16686. bottom: 0.015
  16687. }
  16688. },
  16689. hoodie: {
  16690. height: math.unit(6, "feet"),
  16691. weight: math.unit(150, "lb"),
  16692. name: "Hoodie",
  16693. image: {
  16694. source: "./media/characters/pandora/hoodie.svg",
  16695. extra: 1622 / 1525,
  16696. bottom: 0.015
  16697. }
  16698. },
  16699. casual: {
  16700. height: math.unit(6, "feet"),
  16701. weight: math.unit(150, "lb"),
  16702. name: "Casual",
  16703. image: {
  16704. source: "./media/characters/pandora/casual.svg",
  16705. extra: 1622 / 1525,
  16706. bottom: 0.015
  16707. }
  16708. },
  16709. },
  16710. [
  16711. {
  16712. name: "Normal",
  16713. height: math.unit(6, "feet")
  16714. },
  16715. {
  16716. name: "Big Steppy",
  16717. height: math.unit(1, "km"),
  16718. default: true
  16719. },
  16720. {
  16721. name: "Galactic Steppy",
  16722. height: math.unit(2, "gigameters")
  16723. },
  16724. ]
  16725. ))
  16726. characterMakers.push(() => makeCharacter(
  16727. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16728. {
  16729. side: {
  16730. height: math.unit(10, "feet"),
  16731. weight: math.unit(800, "kg"),
  16732. name: "Side",
  16733. image: {
  16734. source: "./media/characters/venio-darcony/side.svg",
  16735. extra: 1373 / 1003,
  16736. bottom: 0.037
  16737. }
  16738. },
  16739. front: {
  16740. height: math.unit(19, "feet"),
  16741. weight: math.unit(800, "kg"),
  16742. name: "Front",
  16743. image: {
  16744. source: "./media/characters/venio-darcony/front.svg"
  16745. }
  16746. },
  16747. back: {
  16748. height: math.unit(19, "feet"),
  16749. weight: math.unit(800, "kg"),
  16750. name: "Back",
  16751. image: {
  16752. source: "./media/characters/venio-darcony/back.svg"
  16753. }
  16754. },
  16755. sideNsfw: {
  16756. height: math.unit(10, "feet"),
  16757. weight: math.unit(800, "kg"),
  16758. name: "Side (NSFW)",
  16759. image: {
  16760. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16761. extra: 1373 / 1003,
  16762. bottom: 0.037
  16763. }
  16764. },
  16765. frontNsfw: {
  16766. height: math.unit(19, "feet"),
  16767. weight: math.unit(800, "kg"),
  16768. name: "Front (NSFW)",
  16769. image: {
  16770. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16771. }
  16772. },
  16773. backNsfw: {
  16774. height: math.unit(19, "feet"),
  16775. weight: math.unit(800, "kg"),
  16776. name: "Back (NSFW)",
  16777. image: {
  16778. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16779. }
  16780. },
  16781. sideArmored: {
  16782. height: math.unit(10, "feet"),
  16783. weight: math.unit(800, "kg"),
  16784. name: "Side (Armored)",
  16785. image: {
  16786. source: "./media/characters/venio-darcony/side-armored.svg",
  16787. extra: 1373 / 1003,
  16788. bottom: 0.037
  16789. }
  16790. },
  16791. frontArmored: {
  16792. height: math.unit(19, "feet"),
  16793. weight: math.unit(900, "kg"),
  16794. name: "Front (Armored)",
  16795. image: {
  16796. source: "./media/characters/venio-darcony/front-armored.svg"
  16797. }
  16798. },
  16799. backArmored: {
  16800. height: math.unit(19, "feet"),
  16801. weight: math.unit(900, "kg"),
  16802. name: "Back (Armored)",
  16803. image: {
  16804. source: "./media/characters/venio-darcony/back-armored.svg"
  16805. }
  16806. },
  16807. sword: {
  16808. height: math.unit(10, "feet"),
  16809. weight: math.unit(50, "lb"),
  16810. name: "Sword",
  16811. image: {
  16812. source: "./media/characters/venio-darcony/sword.svg"
  16813. }
  16814. },
  16815. },
  16816. [
  16817. {
  16818. name: "Normal",
  16819. height: math.unit(10, "feet")
  16820. },
  16821. {
  16822. name: "Macro",
  16823. height: math.unit(130, "feet"),
  16824. default: true
  16825. },
  16826. {
  16827. name: "Macro+",
  16828. height: math.unit(240, "feet")
  16829. },
  16830. ]
  16831. ))
  16832. characterMakers.push(() => makeCharacter(
  16833. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16834. {
  16835. front: {
  16836. height: math.unit(6, "feet"),
  16837. weight: math.unit(150, "lb"),
  16838. name: "Front",
  16839. image: {
  16840. source: "./media/characters/veski/front.svg",
  16841. extra: 1299 / 1225,
  16842. bottom: 0.04
  16843. }
  16844. },
  16845. back: {
  16846. height: math.unit(6, "feet"),
  16847. weight: math.unit(150, "lb"),
  16848. name: "Back",
  16849. image: {
  16850. source: "./media/characters/veski/back.svg",
  16851. extra: 1299 / 1225,
  16852. bottom: 0.008
  16853. }
  16854. },
  16855. maw: {
  16856. height: math.unit(1.5 * 1.21, "feet"),
  16857. name: "Maw",
  16858. image: {
  16859. source: "./media/characters/veski/maw.svg"
  16860. }
  16861. },
  16862. },
  16863. [
  16864. {
  16865. name: "Macro",
  16866. height: math.unit(2, "km"),
  16867. default: true
  16868. },
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16873. {
  16874. front: {
  16875. height: math.unit(5 + 7 / 12, "feet"),
  16876. name: "Front",
  16877. image: {
  16878. source: "./media/characters/isabelle/front.svg",
  16879. extra: 2130 / 1976,
  16880. bottom: 0.05
  16881. }
  16882. },
  16883. },
  16884. [
  16885. {
  16886. name: "Supermicro",
  16887. height: math.unit(10, "micrometers")
  16888. },
  16889. {
  16890. name: "Micro",
  16891. height: math.unit(1, "inch")
  16892. },
  16893. {
  16894. name: "Tiny",
  16895. height: math.unit(5, "inches")
  16896. },
  16897. {
  16898. name: "Standard",
  16899. height: math.unit(5 + 7 / 12, "inches")
  16900. },
  16901. {
  16902. name: "Macro",
  16903. height: math.unit(80, "meters"),
  16904. default: true
  16905. },
  16906. {
  16907. name: "Megamacro",
  16908. height: math.unit(250, "meters")
  16909. },
  16910. {
  16911. name: "Gigamacro",
  16912. height: math.unit(5, "km")
  16913. },
  16914. {
  16915. name: "Cosmic",
  16916. height: math.unit(2.5e6, "miles")
  16917. },
  16918. ]
  16919. ))
  16920. characterMakers.push(() => makeCharacter(
  16921. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16922. {
  16923. front: {
  16924. height: math.unit(6, "feet"),
  16925. weight: math.unit(150, "lb"),
  16926. name: "Front",
  16927. image: {
  16928. source: "./media/characters/hanzo/front.svg",
  16929. extra: 374 / 344,
  16930. bottom: 0.02
  16931. }
  16932. },
  16933. },
  16934. [
  16935. {
  16936. name: "Normal",
  16937. height: math.unit(8, "feet"),
  16938. default: true
  16939. },
  16940. ]
  16941. ))
  16942. characterMakers.push(() => makeCharacter(
  16943. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16944. {
  16945. front: {
  16946. height: math.unit(7, "feet"),
  16947. weight: math.unit(130, "lb"),
  16948. name: "Front",
  16949. image: {
  16950. source: "./media/characters/anna/front.svg",
  16951. extra: 169 / 145,
  16952. bottom: 0.06
  16953. }
  16954. },
  16955. full: {
  16956. height: math.unit(4.96, "feet"),
  16957. weight: math.unit(220, "lb"),
  16958. name: "Full",
  16959. image: {
  16960. source: "./media/characters/anna/full.svg",
  16961. extra: 138 / 114,
  16962. bottom: 0.15
  16963. }
  16964. },
  16965. tongue: {
  16966. height: math.unit(2.53, "feet"),
  16967. name: "Tongue",
  16968. image: {
  16969. source: "./media/characters/anna/tongue.svg"
  16970. }
  16971. },
  16972. },
  16973. [
  16974. {
  16975. name: "Normal",
  16976. height: math.unit(7, "feet"),
  16977. default: true
  16978. },
  16979. ]
  16980. ))
  16981. characterMakers.push(() => makeCharacter(
  16982. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16983. {
  16984. front: {
  16985. height: math.unit(7, "feet"),
  16986. weight: math.unit(150, "lb"),
  16987. name: "Front",
  16988. image: {
  16989. source: "./media/characters/ian-corvid/front.svg",
  16990. extra: 150 / 142,
  16991. bottom: 0.02
  16992. }
  16993. },
  16994. back: {
  16995. height: math.unit(7, "feet"),
  16996. weight: math.unit(150, "lb"),
  16997. name: "Back",
  16998. image: {
  16999. source: "./media/characters/ian-corvid/back.svg",
  17000. extra: 150 / 143,
  17001. bottom: 0.01
  17002. }
  17003. },
  17004. stomping: {
  17005. height: math.unit(7, "feet"),
  17006. weight: math.unit(150, "lb"),
  17007. name: "Stomping",
  17008. image: {
  17009. source: "./media/characters/ian-corvid/stomping.svg",
  17010. extra: 76 / 72
  17011. }
  17012. },
  17013. sitting: {
  17014. height: math.unit(7 / 1.8, "feet"),
  17015. weight: math.unit(150, "lb"),
  17016. name: "Sitting",
  17017. image: {
  17018. source: "./media/characters/ian-corvid/sitting.svg",
  17019. extra: 1400 / 1269,
  17020. bottom: 0.15
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Tiny Microw",
  17027. height: math.unit(1, "inch")
  17028. },
  17029. {
  17030. name: "Microw",
  17031. height: math.unit(6, "inches")
  17032. },
  17033. {
  17034. name: "Crow",
  17035. height: math.unit(7 + 1 / 12, "feet"),
  17036. default: true
  17037. },
  17038. {
  17039. name: "Macrow",
  17040. height: math.unit(176, "feet")
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17046. {
  17047. front: {
  17048. height: math.unit(5 + 7 / 12, "feet"),
  17049. weight: math.unit(147, "lb"),
  17050. name: "Front",
  17051. image: {
  17052. source: "./media/characters/natalie-kellon/front.svg",
  17053. extra: 1214 / 1141,
  17054. bottom: 0.02
  17055. }
  17056. },
  17057. },
  17058. [
  17059. {
  17060. name: "Micro",
  17061. height: math.unit(1 / 16, "inch")
  17062. },
  17063. {
  17064. name: "Tiny",
  17065. height: math.unit(4, "inches")
  17066. },
  17067. {
  17068. name: "Normal",
  17069. height: math.unit(5 + 7 / 12, "feet"),
  17070. default: true
  17071. },
  17072. {
  17073. name: "Amazon",
  17074. height: math.unit(12, "feet")
  17075. },
  17076. {
  17077. name: "Giantess",
  17078. height: math.unit(160, "meters")
  17079. },
  17080. {
  17081. name: "Titaness",
  17082. height: math.unit(800, "meters")
  17083. },
  17084. ]
  17085. ))
  17086. characterMakers.push(() => makeCharacter(
  17087. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17088. {
  17089. front: {
  17090. height: math.unit(6, "feet"),
  17091. weight: math.unit(150, "lb"),
  17092. name: "Front",
  17093. image: {
  17094. source: "./media/characters/alluria/front.svg",
  17095. extra: 806 / 738,
  17096. bottom: 0.01
  17097. }
  17098. },
  17099. side: {
  17100. height: math.unit(6, "feet"),
  17101. weight: math.unit(150, "lb"),
  17102. name: "Side",
  17103. image: {
  17104. source: "./media/characters/alluria/side.svg",
  17105. extra: 800 / 750,
  17106. }
  17107. },
  17108. back: {
  17109. height: math.unit(6, "feet"),
  17110. weight: math.unit(150, "lb"),
  17111. name: "Back",
  17112. image: {
  17113. source: "./media/characters/alluria/back.svg",
  17114. extra: 806 / 738,
  17115. }
  17116. },
  17117. frontMaid: {
  17118. height: math.unit(6, "feet"),
  17119. weight: math.unit(150, "lb"),
  17120. name: "Front (Maid)",
  17121. image: {
  17122. source: "./media/characters/alluria/front-maid.svg",
  17123. extra: 806 / 738,
  17124. bottom: 0.01
  17125. }
  17126. },
  17127. sideMaid: {
  17128. height: math.unit(6, "feet"),
  17129. weight: math.unit(150, "lb"),
  17130. name: "Side (Maid)",
  17131. image: {
  17132. source: "./media/characters/alluria/side-maid.svg",
  17133. extra: 800 / 750,
  17134. bottom: 0.005
  17135. }
  17136. },
  17137. backMaid: {
  17138. height: math.unit(6, "feet"),
  17139. weight: math.unit(150, "lb"),
  17140. name: "Back (Maid)",
  17141. image: {
  17142. source: "./media/characters/alluria/back-maid.svg",
  17143. extra: 806 / 738,
  17144. }
  17145. },
  17146. },
  17147. [
  17148. {
  17149. name: "Micro",
  17150. height: math.unit(6, "inches"),
  17151. default: true
  17152. },
  17153. ]
  17154. ))
  17155. characterMakers.push(() => makeCharacter(
  17156. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17157. {
  17158. front: {
  17159. height: math.unit(6, "feet"),
  17160. weight: math.unit(150, "lb"),
  17161. name: "Front",
  17162. image: {
  17163. source: "./media/characters/kyle/front.svg",
  17164. extra: 1069 / 962,
  17165. bottom: 77.228 / 1727.45
  17166. }
  17167. },
  17168. },
  17169. [
  17170. {
  17171. name: "Macro",
  17172. height: math.unit(150, "feet"),
  17173. default: true
  17174. },
  17175. ]
  17176. ))
  17177. characterMakers.push(() => makeCharacter(
  17178. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17179. {
  17180. front: {
  17181. height: math.unit(6, "feet"),
  17182. weight: math.unit(300, "lb"),
  17183. name: "Front",
  17184. image: {
  17185. source: "./media/characters/duncan/front.svg",
  17186. extra: 1650 / 1482,
  17187. bottom: 0.05
  17188. }
  17189. },
  17190. },
  17191. [
  17192. {
  17193. name: "Macro",
  17194. height: math.unit(100, "feet"),
  17195. default: true
  17196. },
  17197. ]
  17198. ))
  17199. characterMakers.push(() => makeCharacter(
  17200. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17201. {
  17202. front: {
  17203. height: math.unit(5 + 4 / 12, "feet"),
  17204. weight: math.unit(220, "lb"),
  17205. name: "Front",
  17206. image: {
  17207. source: "./media/characters/memory/front.svg",
  17208. extra: 3641 / 3545,
  17209. bottom: 0.03
  17210. }
  17211. },
  17212. back: {
  17213. height: math.unit(5 + 4 / 12, "feet"),
  17214. weight: math.unit(220, "lb"),
  17215. name: "Back",
  17216. image: {
  17217. source: "./media/characters/memory/back.svg",
  17218. extra: 3641 / 3545,
  17219. bottom: 0.025
  17220. }
  17221. },
  17222. frontSkirt: {
  17223. height: math.unit(5 + 4 / 12, "feet"),
  17224. weight: math.unit(220, "lb"),
  17225. name: "Front (Skirt)",
  17226. image: {
  17227. source: "./media/characters/memory/front-skirt.svg",
  17228. extra: 3641 / 3545,
  17229. bottom: 0.03
  17230. }
  17231. },
  17232. frontDress: {
  17233. height: math.unit(5 + 4 / 12, "feet"),
  17234. weight: math.unit(220, "lb"),
  17235. name: "Front (Dress)",
  17236. image: {
  17237. source: "./media/characters/memory/front-dress.svg",
  17238. extra: 3641 / 3545,
  17239. bottom: 0.03
  17240. }
  17241. },
  17242. },
  17243. [
  17244. {
  17245. name: "Micro",
  17246. height: math.unit(6, "inches"),
  17247. default: true
  17248. },
  17249. {
  17250. name: "Normal",
  17251. height: math.unit(5 + 4 / 12, "feet")
  17252. },
  17253. ]
  17254. ))
  17255. characterMakers.push(() => makeCharacter(
  17256. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17257. {
  17258. front: {
  17259. height: math.unit(4 + 11 / 12, "feet"),
  17260. weight: math.unit(100, "lb"),
  17261. name: "Front",
  17262. image: {
  17263. source: "./media/characters/luno/front.svg",
  17264. extra: 1535 / 1487,
  17265. bottom: 0.03
  17266. }
  17267. },
  17268. },
  17269. [
  17270. {
  17271. name: "Micro",
  17272. height: math.unit(3, "inches")
  17273. },
  17274. {
  17275. name: "Normal",
  17276. height: math.unit(4 + 11 / 12, "feet"),
  17277. default: true
  17278. },
  17279. {
  17280. name: "Macro",
  17281. height: math.unit(300, "feet")
  17282. },
  17283. {
  17284. name: "Megamacro",
  17285. height: math.unit(700, "miles")
  17286. },
  17287. ]
  17288. ))
  17289. characterMakers.push(() => makeCharacter(
  17290. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17291. {
  17292. front: {
  17293. height: math.unit(6 + 2 / 12, "feet"),
  17294. weight: math.unit(170, "lb"),
  17295. name: "Front",
  17296. image: {
  17297. source: "./media/characters/jamesy/front.svg",
  17298. extra: 440 / 382,
  17299. bottom: 0.005
  17300. }
  17301. },
  17302. },
  17303. [
  17304. {
  17305. name: "Micro",
  17306. height: math.unit(3, "inches")
  17307. },
  17308. {
  17309. name: "Normal",
  17310. height: math.unit(6 + 2 / 12, "feet"),
  17311. default: true
  17312. },
  17313. {
  17314. name: "Macro",
  17315. height: math.unit(300, "feet")
  17316. },
  17317. {
  17318. name: "Megamacro",
  17319. height: math.unit(700, "miles")
  17320. },
  17321. ]
  17322. ))
  17323. characterMakers.push(() => makeCharacter(
  17324. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17325. {
  17326. front: {
  17327. height: math.unit(6, "feet"),
  17328. weight: math.unit(160, "lb"),
  17329. name: "Front",
  17330. image: {
  17331. source: "./media/characters/mark/front.svg",
  17332. extra: 3300 / 3100,
  17333. bottom: 136.42 / 3440.47
  17334. }
  17335. },
  17336. },
  17337. [
  17338. {
  17339. name: "Macro",
  17340. height: math.unit(120, "meters")
  17341. },
  17342. {
  17343. name: "Bigger Macro",
  17344. height: math.unit(350, "meters")
  17345. },
  17346. {
  17347. name: "Megamacro",
  17348. height: math.unit(8, "km"),
  17349. default: true
  17350. },
  17351. {
  17352. name: "Continental",
  17353. height: math.unit(4550, "km")
  17354. },
  17355. {
  17356. name: "Planetary",
  17357. height: math.unit(65000, "km")
  17358. },
  17359. ]
  17360. ))
  17361. characterMakers.push(() => makeCharacter(
  17362. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17363. {
  17364. front: {
  17365. height: math.unit(6, "feet"),
  17366. weight: math.unit(400, "lb"),
  17367. name: "Front",
  17368. image: {
  17369. source: "./media/characters/mac/front.svg",
  17370. extra: 1048 / 987.7,
  17371. bottom: 60 / 1107.6,
  17372. }
  17373. },
  17374. },
  17375. [
  17376. {
  17377. name: "Macro",
  17378. height: math.unit(500, "feet"),
  17379. default: true
  17380. },
  17381. ]
  17382. ))
  17383. characterMakers.push(() => makeCharacter(
  17384. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17385. {
  17386. front: {
  17387. height: math.unit(5 + 2 / 12, "feet"),
  17388. weight: math.unit(190, "lb"),
  17389. name: "Front",
  17390. image: {
  17391. source: "./media/characters/bari/front.svg",
  17392. extra: 3156 / 2880,
  17393. bottom: 0.03
  17394. }
  17395. },
  17396. back: {
  17397. height: math.unit(5 + 2 / 12, "feet"),
  17398. weight: math.unit(190, "lb"),
  17399. name: "Back",
  17400. image: {
  17401. source: "./media/characters/bari/back.svg",
  17402. extra: 3260 / 2834,
  17403. bottom: 0.025
  17404. }
  17405. },
  17406. frontPlush: {
  17407. height: math.unit(5 + 2 / 12, "feet"),
  17408. weight: math.unit(190, "lb"),
  17409. name: "Front (Plush)",
  17410. image: {
  17411. source: "./media/characters/bari/front-plush.svg",
  17412. extra: 1112 / 1061,
  17413. bottom: 0.002
  17414. }
  17415. },
  17416. },
  17417. [
  17418. {
  17419. name: "Micro",
  17420. height: math.unit(3, "inches")
  17421. },
  17422. {
  17423. name: "Normal",
  17424. height: math.unit(5 + 2 / 12, "feet"),
  17425. default: true
  17426. },
  17427. {
  17428. name: "Macro",
  17429. height: math.unit(20, "feet")
  17430. },
  17431. ]
  17432. ))
  17433. characterMakers.push(() => makeCharacter(
  17434. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17435. {
  17436. front: {
  17437. height: math.unit(6 + 1 / 12, "feet"),
  17438. weight: math.unit(275, "lb"),
  17439. name: "Front",
  17440. image: {
  17441. source: "./media/characters/hunter-misha-raven/front.svg"
  17442. }
  17443. },
  17444. },
  17445. [
  17446. {
  17447. name: "Mortal",
  17448. height: math.unit(6 + 1 / 12, "feet")
  17449. },
  17450. {
  17451. name: "Divine",
  17452. height: math.unit(1.12134e34, "parsecs"),
  17453. default: true
  17454. },
  17455. ]
  17456. ))
  17457. characterMakers.push(() => makeCharacter(
  17458. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17459. {
  17460. front: {
  17461. height: math.unit(6 + 3 / 12, "feet"),
  17462. weight: math.unit(220, "lb"),
  17463. name: "Front",
  17464. image: {
  17465. source: "./media/characters/max-calore/front.svg",
  17466. extra: 1700 / 1648,
  17467. bottom: 0.01
  17468. }
  17469. },
  17470. back: {
  17471. height: math.unit(6 + 3 / 12, "feet"),
  17472. weight: math.unit(220, "lb"),
  17473. name: "Back",
  17474. image: {
  17475. source: "./media/characters/max-calore/back.svg",
  17476. extra: 1700 / 1648,
  17477. bottom: 0.01
  17478. }
  17479. },
  17480. },
  17481. [
  17482. {
  17483. name: "Normal",
  17484. height: math.unit(6 + 3 / 12, "feet"),
  17485. default: true
  17486. },
  17487. ]
  17488. ))
  17489. characterMakers.push(() => makeCharacter(
  17490. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17491. {
  17492. side: {
  17493. height: math.unit(2 + 8 / 12, "feet"),
  17494. weight: math.unit(99, "lb"),
  17495. name: "Side",
  17496. image: {
  17497. source: "./media/characters/aspen/side.svg",
  17498. extra: 152 / 138,
  17499. bottom: 0.032
  17500. }
  17501. },
  17502. },
  17503. [
  17504. {
  17505. name: "Normal",
  17506. height: math.unit(2 + 8 / 12, "feet"),
  17507. default: true
  17508. },
  17509. ]
  17510. ))
  17511. characterMakers.push(() => makeCharacter(
  17512. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17513. {
  17514. side: {
  17515. height: math.unit(3 + 2 / 12, "feet"),
  17516. weight: math.unit(224, "lb"),
  17517. name: "Side",
  17518. image: {
  17519. source: "./media/characters/sheila-feral-wolf/side.svg",
  17520. extra: 179 / 166,
  17521. bottom: 0.03
  17522. }
  17523. },
  17524. },
  17525. [
  17526. {
  17527. name: "Normal",
  17528. height: math.unit(3 + 2 / 12, "feet"),
  17529. default: true
  17530. },
  17531. ]
  17532. ))
  17533. characterMakers.push(() => makeCharacter(
  17534. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17535. {
  17536. side: {
  17537. height: math.unit(1 + 9 / 12, "feet"),
  17538. weight: math.unit(38, "lb"),
  17539. name: "Side",
  17540. image: {
  17541. source: "./media/characters/michelle/side.svg",
  17542. extra: 147 / 136.7,
  17543. bottom: 0.03
  17544. }
  17545. },
  17546. },
  17547. [
  17548. {
  17549. name: "Normal",
  17550. height: math.unit(1 + 9 / 12, "feet"),
  17551. default: true
  17552. },
  17553. ]
  17554. ))
  17555. characterMakers.push(() => makeCharacter(
  17556. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17557. {
  17558. front: {
  17559. height: math.unit(1.54, "feet"),
  17560. weight: math.unit(50, "lb"),
  17561. name: "Front",
  17562. image: {
  17563. source: "./media/characters/nino/front.svg"
  17564. }
  17565. },
  17566. },
  17567. [
  17568. {
  17569. name: "Normal",
  17570. height: math.unit(1.54, "feet"),
  17571. default: true
  17572. },
  17573. ]
  17574. ))
  17575. characterMakers.push(() => makeCharacter(
  17576. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17577. {
  17578. front: {
  17579. height: math.unit(1.49, "feet"),
  17580. weight: math.unit(45, "lb"),
  17581. name: "Front",
  17582. image: {
  17583. source: "./media/characters/viola/front.svg"
  17584. }
  17585. },
  17586. },
  17587. [
  17588. {
  17589. name: "Normal",
  17590. height: math.unit(1.49, "feet"),
  17591. default: true
  17592. },
  17593. ]
  17594. ))
  17595. characterMakers.push(() => makeCharacter(
  17596. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17597. {
  17598. front: {
  17599. height: math.unit(6 + 5 / 12, "feet"),
  17600. weight: math.unit(580, "lb"),
  17601. name: "Front",
  17602. image: {
  17603. source: "./media/characters/atlas/front.svg",
  17604. extra: 298.5 / 290,
  17605. bottom: 0.015
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Normal",
  17612. height: math.unit(6 + 5 / 12, "feet"),
  17613. default: true
  17614. },
  17615. ]
  17616. ))
  17617. characterMakers.push(() => makeCharacter(
  17618. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17619. {
  17620. side: {
  17621. height: math.unit(15.6, "inches"),
  17622. weight: math.unit(10, "lb"),
  17623. name: "Side",
  17624. image: {
  17625. source: "./media/characters/davy/side.svg",
  17626. extra: 200 / 170,
  17627. bottom: 0.01
  17628. }
  17629. },
  17630. },
  17631. [
  17632. {
  17633. name: "Normal",
  17634. height: math.unit(15.6, "inches"),
  17635. default: true
  17636. },
  17637. ]
  17638. ))
  17639. characterMakers.push(() => makeCharacter(
  17640. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17641. {
  17642. side: {
  17643. height: math.unit(4 + 8 / 12, "feet"),
  17644. weight: math.unit(166, "lb"),
  17645. name: "Side",
  17646. image: {
  17647. source: "./media/characters/fiona/side.svg",
  17648. extra: 232 / 220,
  17649. bottom: 0.03
  17650. }
  17651. },
  17652. },
  17653. [
  17654. {
  17655. name: "Normal",
  17656. height: math.unit(4 + 8 / 12, "feet"),
  17657. default: true
  17658. },
  17659. ]
  17660. ))
  17661. characterMakers.push(() => makeCharacter(
  17662. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17663. {
  17664. front: {
  17665. height: math.unit(26, "inches"),
  17666. weight: math.unit(35, "lb"),
  17667. name: "Front",
  17668. image: {
  17669. source: "./media/characters/lyla/front.svg",
  17670. bottom: 0.1
  17671. }
  17672. },
  17673. },
  17674. [
  17675. {
  17676. name: "Normal",
  17677. height: math.unit(3, "feet"),
  17678. default: true
  17679. },
  17680. ]
  17681. ))
  17682. characterMakers.push(() => makeCharacter(
  17683. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17684. {
  17685. side: {
  17686. height: math.unit(1.8, "feet"),
  17687. weight: math.unit(44, "lb"),
  17688. name: "Side",
  17689. image: {
  17690. source: "./media/characters/perseus/side.svg",
  17691. bottom: 0.21
  17692. }
  17693. },
  17694. },
  17695. [
  17696. {
  17697. name: "Normal",
  17698. height: math.unit(1.8, "feet"),
  17699. default: true
  17700. },
  17701. ]
  17702. ))
  17703. characterMakers.push(() => makeCharacter(
  17704. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17705. {
  17706. side: {
  17707. height: math.unit(4 + 2 / 12, "feet"),
  17708. weight: math.unit(20, "lb"),
  17709. name: "Side",
  17710. image: {
  17711. source: "./media/characters/remus/side.svg"
  17712. }
  17713. },
  17714. },
  17715. [
  17716. {
  17717. name: "Normal",
  17718. height: math.unit(4 + 2 / 12, "feet"),
  17719. default: true
  17720. },
  17721. ]
  17722. ))
  17723. characterMakers.push(() => makeCharacter(
  17724. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17725. {
  17726. front: {
  17727. height: math.unit(4 + 11 / 12, "feet"),
  17728. weight: math.unit(114, "lb"),
  17729. name: "Front",
  17730. image: {
  17731. source: "./media/characters/raf/front.svg",
  17732. extra: 1504/1339,
  17733. bottom: 26/1530
  17734. }
  17735. },
  17736. side: {
  17737. height: math.unit(4 + 11 / 12, "feet"),
  17738. weight: math.unit(114, "lb"),
  17739. name: "Side",
  17740. image: {
  17741. source: "./media/characters/raf/side.svg",
  17742. extra: 1466/1316,
  17743. bottom: 29/1495
  17744. }
  17745. },
  17746. },
  17747. [
  17748. {
  17749. name: "Micro",
  17750. height: math.unit(2, "inches")
  17751. },
  17752. {
  17753. name: "Normal",
  17754. height: math.unit(4 + 11 / 12, "feet"),
  17755. default: true
  17756. },
  17757. {
  17758. name: "Macro",
  17759. height: math.unit(70, "feet")
  17760. },
  17761. ]
  17762. ))
  17763. characterMakers.push(() => makeCharacter(
  17764. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17765. {
  17766. front: {
  17767. height: math.unit(1.5, "meters"),
  17768. weight: math.unit(68, "kg"),
  17769. name: "Front",
  17770. image: {
  17771. source: "./media/characters/liam-einarr/front.svg",
  17772. extra: 2822 / 2666
  17773. }
  17774. },
  17775. back: {
  17776. height: math.unit(1.5, "meters"),
  17777. weight: math.unit(68, "kg"),
  17778. name: "Back",
  17779. image: {
  17780. source: "./media/characters/liam-einarr/back.svg",
  17781. extra: 2822 / 2666,
  17782. bottom: 0.015
  17783. }
  17784. },
  17785. },
  17786. [
  17787. {
  17788. name: "Normal",
  17789. height: math.unit(1.5, "meters"),
  17790. default: true
  17791. },
  17792. {
  17793. name: "Macro",
  17794. height: math.unit(150, "meters")
  17795. },
  17796. {
  17797. name: "Megamacro",
  17798. height: math.unit(35, "km")
  17799. },
  17800. ]
  17801. ))
  17802. characterMakers.push(() => makeCharacter(
  17803. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17804. {
  17805. front: {
  17806. height: math.unit(6, "feet"),
  17807. weight: math.unit(75, "kg"),
  17808. name: "Front",
  17809. image: {
  17810. source: "./media/characters/linda/front.svg",
  17811. extra: 930 / 874,
  17812. bottom: 0.004
  17813. }
  17814. },
  17815. },
  17816. [
  17817. {
  17818. name: "Normal",
  17819. height: math.unit(6, "feet"),
  17820. default: true
  17821. },
  17822. ]
  17823. ))
  17824. characterMakers.push(() => makeCharacter(
  17825. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17826. {
  17827. front: {
  17828. height: math.unit(6 + 8 / 12, "feet"),
  17829. weight: math.unit(220, "lb"),
  17830. name: "Front",
  17831. image: {
  17832. source: "./media/characters/caylex/front.svg",
  17833. extra: 821 / 772,
  17834. bottom: 0.07
  17835. }
  17836. },
  17837. back: {
  17838. height: math.unit(6 + 8 / 12, "feet"),
  17839. weight: math.unit(220, "lb"),
  17840. name: "Back",
  17841. image: {
  17842. source: "./media/characters/caylex/back.svg",
  17843. extra: 821 / 772,
  17844. bottom: 0.022
  17845. }
  17846. },
  17847. hand: {
  17848. height: math.unit(1.25, "feet"),
  17849. name: "Hand",
  17850. image: {
  17851. source: "./media/characters/caylex/hand.svg"
  17852. }
  17853. },
  17854. foot: {
  17855. height: math.unit(1.6, "feet"),
  17856. name: "Foot",
  17857. image: {
  17858. source: "./media/characters/caylex/foot.svg"
  17859. }
  17860. },
  17861. armored: {
  17862. height: math.unit(6 + 8 / 12, "feet"),
  17863. weight: math.unit(250, "lb"),
  17864. name: "Armored",
  17865. image: {
  17866. source: "./media/characters/caylex/armored.svg",
  17867. extra: 1420 / 1310,
  17868. bottom: 0.045
  17869. }
  17870. },
  17871. },
  17872. [
  17873. {
  17874. name: "Normal",
  17875. height: math.unit(6 + 8 / 12, "feet"),
  17876. default: true
  17877. },
  17878. {
  17879. name: "Normal+",
  17880. height: math.unit(12, "feet")
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(7 + 6 / 12, "feet"),
  17889. weight: math.unit(288, "lb"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/alana/front.svg",
  17893. extra: 679 / 653,
  17894. bottom: 22.5 / 701
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Normal",
  17901. height: math.unit(7 + 6 / 12, "feet")
  17902. },
  17903. {
  17904. name: "Large",
  17905. height: math.unit(50, "feet")
  17906. },
  17907. {
  17908. name: "Macro",
  17909. height: math.unit(100, "feet"),
  17910. default: true
  17911. },
  17912. {
  17913. name: "Macro+",
  17914. height: math.unit(200, "feet")
  17915. },
  17916. ]
  17917. ))
  17918. characterMakers.push(() => makeCharacter(
  17919. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17920. {
  17921. front: {
  17922. height: math.unit(6 + 1 / 12, "feet"),
  17923. weight: math.unit(210, "lb"),
  17924. name: "Front",
  17925. image: {
  17926. source: "./media/characters/hasani/front.svg",
  17927. extra: 244 / 232,
  17928. bottom: 0.01
  17929. }
  17930. },
  17931. back: {
  17932. height: math.unit(6 + 1 / 12, "feet"),
  17933. weight: math.unit(210, "lb"),
  17934. name: "Back",
  17935. image: {
  17936. source: "./media/characters/hasani/back.svg",
  17937. extra: 244 / 232,
  17938. bottom: 0.01
  17939. }
  17940. },
  17941. },
  17942. [
  17943. {
  17944. name: "Normal",
  17945. height: math.unit(6 + 1 / 12, "feet")
  17946. },
  17947. {
  17948. name: "Macro",
  17949. height: math.unit(175, "feet"),
  17950. default: true
  17951. },
  17952. ]
  17953. ))
  17954. characterMakers.push(() => makeCharacter(
  17955. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17956. {
  17957. front: {
  17958. height: math.unit(1.82, "meters"),
  17959. weight: math.unit(140, "lb"),
  17960. name: "Front",
  17961. image: {
  17962. source: "./media/characters/nita/front.svg",
  17963. extra: 2473 / 2363,
  17964. bottom: 0.01
  17965. }
  17966. },
  17967. },
  17968. [
  17969. {
  17970. name: "Normal",
  17971. height: math.unit(1.82, "m")
  17972. },
  17973. {
  17974. name: "Macro",
  17975. height: math.unit(300, "m")
  17976. },
  17977. {
  17978. name: "Mistake Canon",
  17979. height: math.unit(0.5, "miles"),
  17980. default: true
  17981. },
  17982. {
  17983. name: "Big Mistake",
  17984. height: math.unit(13, "miles")
  17985. },
  17986. {
  17987. name: "Playing God",
  17988. height: math.unit(2450, "miles")
  17989. },
  17990. ]
  17991. ))
  17992. characterMakers.push(() => makeCharacter(
  17993. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17994. {
  17995. front: {
  17996. height: math.unit(4, "feet"),
  17997. weight: math.unit(120, "lb"),
  17998. name: "Front",
  17999. image: {
  18000. source: "./media/characters/shiriko/front.svg",
  18001. extra: 970/934,
  18002. bottom: 5/975
  18003. }
  18004. },
  18005. },
  18006. [
  18007. {
  18008. name: "Normal",
  18009. height: math.unit(4, "feet"),
  18010. default: true
  18011. },
  18012. ]
  18013. ))
  18014. characterMakers.push(() => makeCharacter(
  18015. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18016. {
  18017. front: {
  18018. height: math.unit(6, "feet"),
  18019. name: "front",
  18020. image: {
  18021. source: "./media/characters/deja/front.svg",
  18022. extra: 926 / 840,
  18023. bottom: 0.07
  18024. }
  18025. },
  18026. },
  18027. [
  18028. {
  18029. name: "Planck Length",
  18030. height: math.unit(1.6e-35, "meters")
  18031. },
  18032. {
  18033. name: "Normal",
  18034. height: math.unit(30.48, "meters"),
  18035. default: true
  18036. },
  18037. {
  18038. name: "Universal",
  18039. height: math.unit(8.8e26, "meters")
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18045. {
  18046. side: {
  18047. height: math.unit(8, "feet"),
  18048. weight: math.unit(6300, "lb"),
  18049. name: "Side",
  18050. image: {
  18051. source: "./media/characters/anima/side.svg",
  18052. bottom: 0.035
  18053. }
  18054. },
  18055. },
  18056. [
  18057. {
  18058. name: "Normal",
  18059. height: math.unit(8, "feet"),
  18060. default: true
  18061. },
  18062. ]
  18063. ))
  18064. characterMakers.push(() => makeCharacter(
  18065. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18066. {
  18067. front: {
  18068. height: math.unit(8, "feet"),
  18069. weight: math.unit(350, "lb"),
  18070. name: "Front",
  18071. image: {
  18072. source: "./media/characters/bianca/front.svg",
  18073. extra: 234 / 225,
  18074. bottom: 0.03
  18075. }
  18076. },
  18077. },
  18078. [
  18079. {
  18080. name: "Normal",
  18081. height: math.unit(8, "feet"),
  18082. default: true
  18083. },
  18084. ]
  18085. ))
  18086. characterMakers.push(() => makeCharacter(
  18087. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18088. {
  18089. front: {
  18090. height: math.unit(6, "feet"),
  18091. weight: math.unit(150, "lb"),
  18092. name: "Front",
  18093. image: {
  18094. source: "./media/characters/adinia/front.svg",
  18095. extra: 1845 / 1672,
  18096. bottom: 0.02
  18097. }
  18098. },
  18099. back: {
  18100. height: math.unit(6, "feet"),
  18101. weight: math.unit(150, "lb"),
  18102. name: "Back",
  18103. image: {
  18104. source: "./media/characters/adinia/back.svg",
  18105. extra: 1845 / 1672,
  18106. bottom: 0.002
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Normal",
  18113. height: math.unit(11 + 5 / 12, "feet"),
  18114. default: true
  18115. },
  18116. ]
  18117. ))
  18118. characterMakers.push(() => makeCharacter(
  18119. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18120. {
  18121. front: {
  18122. height: math.unit(3, "meters"),
  18123. weight: math.unit(200, "kg"),
  18124. name: "Front",
  18125. image: {
  18126. source: "./media/characters/lykasa/front.svg",
  18127. extra: 1076 / 976,
  18128. bottom: 0.06
  18129. }
  18130. },
  18131. },
  18132. [
  18133. {
  18134. name: "Normal",
  18135. height: math.unit(3, "meters")
  18136. },
  18137. {
  18138. name: "Kaiju",
  18139. height: math.unit(120, "meters"),
  18140. default: true
  18141. },
  18142. {
  18143. name: "Mega Kaiju",
  18144. height: math.unit(240, "km")
  18145. },
  18146. {
  18147. name: "Giga Kaiju",
  18148. height: math.unit(400, "megameters")
  18149. },
  18150. {
  18151. name: "Tera Kaiju",
  18152. height: math.unit(800, "gigameters")
  18153. },
  18154. {
  18155. name: "Kaiju Dragon Goddess",
  18156. height: math.unit(26, "zettaparsecs")
  18157. },
  18158. ]
  18159. ))
  18160. characterMakers.push(() => makeCharacter(
  18161. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18162. {
  18163. side: {
  18164. height: math.unit(283 / 124 * 6, "feet"),
  18165. weight: math.unit(35000, "lb"),
  18166. name: "Side",
  18167. image: {
  18168. source: "./media/characters/malfaren/side.svg",
  18169. extra: 1310/529,
  18170. bottom: 24/1334
  18171. }
  18172. },
  18173. front: {
  18174. height: math.unit(22.36, "feet"),
  18175. weight: math.unit(35000, "lb"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/malfaren/front.svg",
  18179. extra: 1237/1115,
  18180. bottom: 32/1269
  18181. }
  18182. },
  18183. maw: {
  18184. height: math.unit(6.9, "feet"),
  18185. name: "Maw",
  18186. image: {
  18187. source: "./media/characters/malfaren/maw.svg"
  18188. }
  18189. },
  18190. dick: {
  18191. height: math.unit(6.19, "feet"),
  18192. name: "Dick",
  18193. image: {
  18194. source: "./media/characters/malfaren/dick.svg"
  18195. }
  18196. },
  18197. eye: {
  18198. height: math.unit(0.69, "feet"),
  18199. name: "Eye",
  18200. image: {
  18201. source: "./media/characters/malfaren/eye.svg"
  18202. }
  18203. },
  18204. },
  18205. [
  18206. {
  18207. name: "Big",
  18208. height: math.unit(283 / 162 * 6, "feet"),
  18209. },
  18210. {
  18211. name: "Bigger",
  18212. height: math.unit(283 / 124 * 6, "feet")
  18213. },
  18214. {
  18215. name: "Massive",
  18216. height: math.unit(283 / 92 * 6, "feet"),
  18217. default: true
  18218. },
  18219. {
  18220. name: "👀💦",
  18221. height: math.unit(283 / 73 * 6, "feet"),
  18222. },
  18223. ]
  18224. ))
  18225. characterMakers.push(() => makeCharacter(
  18226. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18227. {
  18228. front: {
  18229. height: math.unit(1.7, "m"),
  18230. weight: math.unit(70, "kg"),
  18231. name: "Front",
  18232. image: {
  18233. source: "./media/characters/kernel/front.svg",
  18234. extra: 222 / 210,
  18235. bottom: 0.007
  18236. }
  18237. },
  18238. },
  18239. [
  18240. {
  18241. name: "Nano",
  18242. height: math.unit(17, "micrometers")
  18243. },
  18244. {
  18245. name: "Micro",
  18246. height: math.unit(1.7, "mm")
  18247. },
  18248. {
  18249. name: "Small",
  18250. height: math.unit(1.7, "cm")
  18251. },
  18252. {
  18253. name: "Normal",
  18254. height: math.unit(1.7, "m"),
  18255. default: true
  18256. },
  18257. ]
  18258. ))
  18259. characterMakers.push(() => makeCharacter(
  18260. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18261. {
  18262. front: {
  18263. height: math.unit(1.75, "meters"),
  18264. weight: math.unit(65, "kg"),
  18265. name: "Front",
  18266. image: {
  18267. source: "./media/characters/jayne-folest/front.svg",
  18268. extra: 2115 / 2007,
  18269. bottom: 0.02
  18270. }
  18271. },
  18272. back: {
  18273. height: math.unit(1.75, "meters"),
  18274. weight: math.unit(65, "kg"),
  18275. name: "Back",
  18276. image: {
  18277. source: "./media/characters/jayne-folest/back.svg",
  18278. extra: 2115 / 2007,
  18279. bottom: 0.005
  18280. }
  18281. },
  18282. frontClothed: {
  18283. height: math.unit(1.75, "meters"),
  18284. weight: math.unit(65, "kg"),
  18285. name: "Front (Clothed)",
  18286. image: {
  18287. source: "./media/characters/jayne-folest/front-clothed.svg",
  18288. extra: 2115 / 2007,
  18289. bottom: 0.035
  18290. }
  18291. },
  18292. hand: {
  18293. height: math.unit(1 / 1.260, "feet"),
  18294. name: "Hand",
  18295. image: {
  18296. source: "./media/characters/jayne-folest/hand.svg"
  18297. }
  18298. },
  18299. foot: {
  18300. height: math.unit(1 / 0.918, "feet"),
  18301. name: "Foot",
  18302. image: {
  18303. source: "./media/characters/jayne-folest/foot.svg"
  18304. }
  18305. },
  18306. },
  18307. [
  18308. {
  18309. name: "Micro",
  18310. height: math.unit(4, "cm")
  18311. },
  18312. {
  18313. name: "Normal",
  18314. height: math.unit(1.75, "meters")
  18315. },
  18316. {
  18317. name: "Macro",
  18318. height: math.unit(47.5, "meters"),
  18319. default: true
  18320. },
  18321. ]
  18322. ))
  18323. characterMakers.push(() => makeCharacter(
  18324. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18325. {
  18326. front: {
  18327. height: math.unit(180, "cm"),
  18328. weight: math.unit(70, "kg"),
  18329. name: "Front",
  18330. image: {
  18331. source: "./media/characters/algier/front.svg",
  18332. extra: 596 / 572,
  18333. bottom: 0.04
  18334. }
  18335. },
  18336. back: {
  18337. height: math.unit(180, "cm"),
  18338. weight: math.unit(70, "kg"),
  18339. name: "Back",
  18340. image: {
  18341. source: "./media/characters/algier/back.svg",
  18342. extra: 596 / 572,
  18343. bottom: 0.025
  18344. }
  18345. },
  18346. frontdressed: {
  18347. height: math.unit(180, "cm"),
  18348. weight: math.unit(150, "kg"),
  18349. name: "Front-dressed",
  18350. image: {
  18351. source: "./media/characters/algier/front-dressed.svg",
  18352. extra: 596 / 572,
  18353. bottom: 0.038
  18354. }
  18355. },
  18356. },
  18357. [
  18358. {
  18359. name: "Micro",
  18360. height: math.unit(5, "cm")
  18361. },
  18362. {
  18363. name: "Normal",
  18364. height: math.unit(180, "cm"),
  18365. default: true
  18366. },
  18367. {
  18368. name: "Macro",
  18369. height: math.unit(64, "m")
  18370. },
  18371. ]
  18372. ))
  18373. characterMakers.push(() => makeCharacter(
  18374. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18375. {
  18376. upright: {
  18377. height: math.unit(7, "feet"),
  18378. weight: math.unit(300, "lb"),
  18379. name: "Upright",
  18380. image: {
  18381. source: "./media/characters/pretzel/upright.svg",
  18382. extra: 534 / 522,
  18383. bottom: 0.065
  18384. }
  18385. },
  18386. sprawling: {
  18387. height: math.unit(3.75, "feet"),
  18388. weight: math.unit(300, "lb"),
  18389. name: "Sprawling",
  18390. image: {
  18391. source: "./media/characters/pretzel/sprawling.svg",
  18392. extra: 314 / 281,
  18393. bottom: 0.1
  18394. }
  18395. },
  18396. tongue: {
  18397. height: math.unit(2, "feet"),
  18398. name: "Tongue",
  18399. image: {
  18400. source: "./media/characters/pretzel/tongue.svg"
  18401. }
  18402. },
  18403. },
  18404. [
  18405. {
  18406. name: "Normal",
  18407. height: math.unit(7, "feet"),
  18408. default: true
  18409. },
  18410. {
  18411. name: "Oversized",
  18412. height: math.unit(15, "feet")
  18413. },
  18414. {
  18415. name: "Huge",
  18416. height: math.unit(30, "feet")
  18417. },
  18418. {
  18419. name: "Macro",
  18420. height: math.unit(250, "feet")
  18421. },
  18422. ]
  18423. ))
  18424. characterMakers.push(() => makeCharacter(
  18425. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18426. {
  18427. sideFront: {
  18428. height: math.unit(5 + 2 / 12, "feet"),
  18429. weight: math.unit(120, "lb"),
  18430. name: "Front Side",
  18431. image: {
  18432. source: "./media/characters/roxi/side-front.svg",
  18433. extra: 2924 / 2717,
  18434. bottom: 0.08
  18435. }
  18436. },
  18437. sideBack: {
  18438. height: math.unit(5 + 2 / 12, "feet"),
  18439. weight: math.unit(120, "lb"),
  18440. name: "Back Side",
  18441. image: {
  18442. source: "./media/characters/roxi/side-back.svg",
  18443. extra: 2904 / 2693,
  18444. bottom: 0.06
  18445. }
  18446. },
  18447. front: {
  18448. height: math.unit(5 + 2 / 12, "feet"),
  18449. weight: math.unit(120, "lb"),
  18450. name: "Front",
  18451. image: {
  18452. source: "./media/characters/roxi/front.svg",
  18453. extra: 2028 / 1907,
  18454. bottom: 0.01
  18455. }
  18456. },
  18457. frontAlt: {
  18458. height: math.unit(5 + 2 / 12, "feet"),
  18459. weight: math.unit(120, "lb"),
  18460. name: "Front (Alt)",
  18461. image: {
  18462. source: "./media/characters/roxi/front-alt.svg",
  18463. extra: 1828 / 1798,
  18464. bottom: 0.01
  18465. }
  18466. },
  18467. sitting: {
  18468. height: math.unit(2.8, "feet"),
  18469. weight: math.unit(120, "lb"),
  18470. name: "Sitting",
  18471. image: {
  18472. source: "./media/characters/roxi/sitting.svg",
  18473. extra: 2660 / 2462,
  18474. bottom: 0.1
  18475. }
  18476. },
  18477. },
  18478. [
  18479. {
  18480. name: "Normal",
  18481. height: math.unit(5 + 2 / 12, "feet"),
  18482. default: true
  18483. },
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18488. {
  18489. side: {
  18490. height: math.unit(55, "feet"),
  18491. weight: math.unit(153, "tons"),
  18492. name: "Side",
  18493. image: {
  18494. source: "./media/characters/shadow/side.svg",
  18495. extra: 701 / 628,
  18496. bottom: 0.02
  18497. }
  18498. },
  18499. flying: {
  18500. height: math.unit(145, "feet"),
  18501. weight: math.unit(153, "tons"),
  18502. name: "Flying",
  18503. image: {
  18504. source: "./media/characters/shadow/flying.svg"
  18505. }
  18506. },
  18507. },
  18508. [
  18509. {
  18510. name: "Normal",
  18511. height: math.unit(55, "feet"),
  18512. default: true
  18513. },
  18514. ]
  18515. ))
  18516. characterMakers.push(() => makeCharacter(
  18517. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18518. {
  18519. front: {
  18520. height: math.unit(6, "feet"),
  18521. weight: math.unit(200, "lb"),
  18522. name: "Front",
  18523. image: {
  18524. source: "./media/characters/marcie/front.svg",
  18525. extra: 960 / 876,
  18526. bottom: 58 / 1017.87
  18527. }
  18528. },
  18529. },
  18530. [
  18531. {
  18532. name: "Macro",
  18533. height: math.unit(1, "mile"),
  18534. default: true
  18535. },
  18536. ]
  18537. ))
  18538. characterMakers.push(() => makeCharacter(
  18539. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18540. {
  18541. front: {
  18542. height: math.unit(7, "feet"),
  18543. weight: math.unit(200, "lb"),
  18544. name: "Front",
  18545. image: {
  18546. source: "./media/characters/kachina/front.svg",
  18547. extra: 1290.68 / 1119,
  18548. bottom: 36.5 / 1327.18
  18549. }
  18550. },
  18551. },
  18552. [
  18553. {
  18554. name: "Normal",
  18555. height: math.unit(7, "feet"),
  18556. default: true
  18557. },
  18558. ]
  18559. ))
  18560. characterMakers.push(() => makeCharacter(
  18561. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18562. {
  18563. looking: {
  18564. height: math.unit(2, "meters"),
  18565. weight: math.unit(300, "kg"),
  18566. name: "Looking",
  18567. image: {
  18568. source: "./media/characters/kash/looking.svg",
  18569. extra: 474 / 344,
  18570. bottom: 0.03
  18571. }
  18572. },
  18573. side: {
  18574. height: math.unit(2, "meters"),
  18575. weight: math.unit(300, "kg"),
  18576. name: "Side",
  18577. image: {
  18578. source: "./media/characters/kash/side.svg",
  18579. extra: 302 / 251,
  18580. bottom: 0.03
  18581. }
  18582. },
  18583. front: {
  18584. height: math.unit(2, "meters"),
  18585. weight: math.unit(300, "kg"),
  18586. name: "Front",
  18587. image: {
  18588. source: "./media/characters/kash/front.svg",
  18589. extra: 495 / 360,
  18590. bottom: 0.015
  18591. }
  18592. },
  18593. },
  18594. [
  18595. {
  18596. name: "Normal",
  18597. height: math.unit(2, "meters"),
  18598. default: true
  18599. },
  18600. {
  18601. name: "Big",
  18602. height: math.unit(3, "meters")
  18603. },
  18604. {
  18605. name: "Large",
  18606. height: math.unit(5, "meters")
  18607. },
  18608. ]
  18609. ))
  18610. characterMakers.push(() => makeCharacter(
  18611. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18612. {
  18613. feeding: {
  18614. height: math.unit(6.7, "feet"),
  18615. weight: math.unit(350, "lb"),
  18616. name: "Feeding",
  18617. image: {
  18618. source: "./media/characters/lalim/feeding.svg",
  18619. }
  18620. },
  18621. },
  18622. [
  18623. {
  18624. name: "Normal",
  18625. height: math.unit(6.7, "feet"),
  18626. default: true
  18627. },
  18628. ]
  18629. ))
  18630. characterMakers.push(() => makeCharacter(
  18631. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18632. {
  18633. front: {
  18634. height: math.unit(9.5, "feet"),
  18635. weight: math.unit(600, "lb"),
  18636. name: "Front",
  18637. image: {
  18638. source: "./media/characters/de'vout/front.svg",
  18639. extra: 1443 / 1328,
  18640. bottom: 0.025
  18641. }
  18642. },
  18643. back: {
  18644. height: math.unit(9.5, "feet"),
  18645. weight: math.unit(600, "lb"),
  18646. name: "Back",
  18647. image: {
  18648. source: "./media/characters/de'vout/back.svg",
  18649. extra: 1443 / 1328
  18650. }
  18651. },
  18652. frontDressed: {
  18653. height: math.unit(9.5, "feet"),
  18654. weight: math.unit(600, "lb"),
  18655. name: "Front (Dressed",
  18656. image: {
  18657. source: "./media/characters/de'vout/front-dressed.svg",
  18658. extra: 1443 / 1328,
  18659. bottom: 0.025
  18660. }
  18661. },
  18662. backDressed: {
  18663. height: math.unit(9.5, "feet"),
  18664. weight: math.unit(600, "lb"),
  18665. name: "Back (Dressed",
  18666. image: {
  18667. source: "./media/characters/de'vout/back-dressed.svg",
  18668. extra: 1443 / 1328
  18669. }
  18670. },
  18671. },
  18672. [
  18673. {
  18674. name: "Normal",
  18675. height: math.unit(9.5, "feet"),
  18676. default: true
  18677. },
  18678. ]
  18679. ))
  18680. characterMakers.push(() => makeCharacter(
  18681. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18682. {
  18683. front: {
  18684. height: math.unit(8, "feet"),
  18685. weight: math.unit(225, "lb"),
  18686. name: "Front",
  18687. image: {
  18688. source: "./media/characters/talana/front.svg",
  18689. extra: 1410 / 1300,
  18690. bottom: 0.015
  18691. }
  18692. },
  18693. frontDressed: {
  18694. height: math.unit(8, "feet"),
  18695. weight: math.unit(225, "lb"),
  18696. name: "Front (Dressed",
  18697. image: {
  18698. source: "./media/characters/talana/front-dressed.svg",
  18699. extra: 1410 / 1300,
  18700. bottom: 0.015
  18701. }
  18702. },
  18703. },
  18704. [
  18705. {
  18706. name: "Normal",
  18707. height: math.unit(8, "feet"),
  18708. default: true
  18709. },
  18710. ]
  18711. ))
  18712. characterMakers.push(() => makeCharacter(
  18713. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18714. {
  18715. side: {
  18716. height: math.unit(7.2, "feet"),
  18717. weight: math.unit(150, "lb"),
  18718. name: "Side",
  18719. image: {
  18720. source: "./media/characters/xeauvok/side.svg",
  18721. extra: 1975 / 1523,
  18722. bottom: 0.07
  18723. }
  18724. },
  18725. },
  18726. [
  18727. {
  18728. name: "Normal",
  18729. height: math.unit(7.2, "feet"),
  18730. default: true
  18731. },
  18732. ]
  18733. ))
  18734. characterMakers.push(() => makeCharacter(
  18735. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18736. {
  18737. side: {
  18738. height: math.unit(10, "feet"),
  18739. weight: math.unit(900, "kg"),
  18740. name: "Side",
  18741. image: {
  18742. source: "./media/characters/zara/side.svg",
  18743. extra: 504 / 498
  18744. }
  18745. },
  18746. },
  18747. [
  18748. {
  18749. name: "Normal",
  18750. height: math.unit(10, "feet"),
  18751. default: true
  18752. },
  18753. ]
  18754. ))
  18755. characterMakers.push(() => makeCharacter(
  18756. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18757. {
  18758. side: {
  18759. height: math.unit(6, "feet"),
  18760. weight: math.unit(150, "lb"),
  18761. name: "Side",
  18762. image: {
  18763. source: "./media/characters/richard-dragon/side.svg",
  18764. extra: 845 / 340,
  18765. bottom: 0.017
  18766. }
  18767. },
  18768. maw: {
  18769. height: math.unit(2.97, "feet"),
  18770. name: "Maw",
  18771. image: {
  18772. source: "./media/characters/richard-dragon/maw.svg"
  18773. }
  18774. },
  18775. },
  18776. [
  18777. ]
  18778. ))
  18779. characterMakers.push(() => makeCharacter(
  18780. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18781. {
  18782. front: {
  18783. height: math.unit(4, "feet"),
  18784. weight: math.unit(100, "lb"),
  18785. name: "Front",
  18786. image: {
  18787. source: "./media/characters/richard-smeargle/front.svg",
  18788. extra: 2952 / 2820,
  18789. bottom: 0.028
  18790. }
  18791. },
  18792. },
  18793. [
  18794. {
  18795. name: "Normal",
  18796. height: math.unit(4, "feet"),
  18797. default: true
  18798. },
  18799. {
  18800. name: "Dynamax",
  18801. height: math.unit(20, "meters")
  18802. },
  18803. ]
  18804. ))
  18805. characterMakers.push(() => makeCharacter(
  18806. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18807. {
  18808. front: {
  18809. height: math.unit(6, "feet"),
  18810. weight: math.unit(110, "lb"),
  18811. name: "Front",
  18812. image: {
  18813. source: "./media/characters/klay/front.svg",
  18814. extra: 962 / 883,
  18815. bottom: 0.04
  18816. }
  18817. },
  18818. back: {
  18819. height: math.unit(6, "feet"),
  18820. weight: math.unit(110, "lb"),
  18821. name: "Back",
  18822. image: {
  18823. source: "./media/characters/klay/back.svg",
  18824. extra: 962 / 883
  18825. }
  18826. },
  18827. beans: {
  18828. height: math.unit(1.15, "feet"),
  18829. name: "Beans",
  18830. image: {
  18831. source: "./media/characters/klay/beans.svg"
  18832. }
  18833. },
  18834. },
  18835. [
  18836. {
  18837. name: "Micro",
  18838. height: math.unit(6, "inches")
  18839. },
  18840. {
  18841. name: "Mini",
  18842. height: math.unit(3, "feet")
  18843. },
  18844. {
  18845. name: "Normal",
  18846. height: math.unit(6, "feet"),
  18847. default: true
  18848. },
  18849. {
  18850. name: "Big",
  18851. height: math.unit(25, "feet")
  18852. },
  18853. {
  18854. name: "Macro",
  18855. height: math.unit(100, "feet")
  18856. },
  18857. {
  18858. name: "Megamacro",
  18859. height: math.unit(400, "feet")
  18860. },
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18865. {
  18866. front: {
  18867. height: math.unit(6, "feet"),
  18868. weight: math.unit(160, "lb"),
  18869. name: "Front",
  18870. image: {
  18871. source: "./media/characters/marcus/front.svg",
  18872. extra: 734 / 676,
  18873. bottom: 0.03
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Little",
  18880. height: math.unit(6, "feet")
  18881. },
  18882. {
  18883. name: "Normal",
  18884. height: math.unit(110, "feet"),
  18885. default: true
  18886. },
  18887. {
  18888. name: "Macro",
  18889. height: math.unit(250, "feet")
  18890. },
  18891. {
  18892. name: "Megamacro",
  18893. height: math.unit(1000, "feet")
  18894. },
  18895. ]
  18896. ))
  18897. characterMakers.push(() => makeCharacter(
  18898. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18899. {
  18900. front: {
  18901. height: math.unit(7, "feet"),
  18902. weight: math.unit(275, "lb"),
  18903. name: "Front",
  18904. image: {
  18905. source: "./media/characters/claude-delroute/front.svg",
  18906. extra: 902/827,
  18907. bottom: 26/928
  18908. }
  18909. },
  18910. side: {
  18911. height: math.unit(7, "feet"),
  18912. weight: math.unit(275, "lb"),
  18913. name: "Side",
  18914. image: {
  18915. source: "./media/characters/claude-delroute/side.svg",
  18916. extra: 908/853,
  18917. bottom: 16/924
  18918. }
  18919. },
  18920. back: {
  18921. height: math.unit(7, "feet"),
  18922. weight: math.unit(275, "lb"),
  18923. name: "Back",
  18924. image: {
  18925. source: "./media/characters/claude-delroute/back.svg",
  18926. extra: 911/829,
  18927. bottom: 18/929
  18928. }
  18929. },
  18930. maw: {
  18931. height: math.unit(0.6407, "meters"),
  18932. name: "Maw",
  18933. image: {
  18934. source: "./media/characters/claude-delroute/maw.svg"
  18935. }
  18936. },
  18937. },
  18938. [
  18939. {
  18940. name: "Normal",
  18941. height: math.unit(7, "feet"),
  18942. default: true
  18943. },
  18944. {
  18945. name: "Lorge",
  18946. height: math.unit(20, "feet")
  18947. },
  18948. ]
  18949. ))
  18950. characterMakers.push(() => makeCharacter(
  18951. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18952. {
  18953. front: {
  18954. height: math.unit(8 + 4 / 12, "feet"),
  18955. weight: math.unit(600, "lb"),
  18956. name: "Front",
  18957. image: {
  18958. source: "./media/characters/dragonien/front.svg",
  18959. extra: 100 / 94,
  18960. bottom: 3.3 / 103.3445
  18961. }
  18962. },
  18963. back: {
  18964. height: math.unit(8 + 4 / 12, "feet"),
  18965. weight: math.unit(600, "lb"),
  18966. name: "Back",
  18967. image: {
  18968. source: "./media/characters/dragonien/back.svg",
  18969. extra: 776 / 746,
  18970. bottom: 6.4 / 782.0616
  18971. }
  18972. },
  18973. foot: {
  18974. height: math.unit(1.54, "feet"),
  18975. name: "Foot",
  18976. image: {
  18977. source: "./media/characters/dragonien/foot.svg",
  18978. }
  18979. },
  18980. },
  18981. [
  18982. {
  18983. name: "Normal",
  18984. height: math.unit(8 + 4 / 12, "feet"),
  18985. default: true
  18986. },
  18987. {
  18988. name: "Macro",
  18989. height: math.unit(200, "feet")
  18990. },
  18991. {
  18992. name: "Megamacro",
  18993. height: math.unit(1, "mile")
  18994. },
  18995. {
  18996. name: "Gigamacro",
  18997. height: math.unit(1000, "miles")
  18998. },
  18999. ]
  19000. ))
  19001. characterMakers.push(() => makeCharacter(
  19002. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19003. {
  19004. front: {
  19005. height: math.unit(5 + 2 / 12, "feet"),
  19006. weight: math.unit(110, "lb"),
  19007. name: "Front",
  19008. image: {
  19009. source: "./media/characters/desta/front.svg",
  19010. extra: 767 / 726,
  19011. bottom: 11.7 / 779
  19012. }
  19013. },
  19014. back: {
  19015. height: math.unit(5 + 2 / 12, "feet"),
  19016. weight: math.unit(110, "lb"),
  19017. name: "Back",
  19018. image: {
  19019. source: "./media/characters/desta/back.svg",
  19020. extra: 777 / 728,
  19021. bottom: 6 / 784
  19022. }
  19023. },
  19024. frontAlt: {
  19025. height: math.unit(5 + 2 / 12, "feet"),
  19026. weight: math.unit(110, "lb"),
  19027. name: "Front",
  19028. image: {
  19029. source: "./media/characters/desta/front-alt.svg",
  19030. extra: 1482 / 1417
  19031. }
  19032. },
  19033. side: {
  19034. height: math.unit(5 + 2 / 12, "feet"),
  19035. weight: math.unit(110, "lb"),
  19036. name: "Side",
  19037. image: {
  19038. source: "./media/characters/desta/side.svg",
  19039. extra: 2579 / 2491,
  19040. bottom: 0.053
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Micro",
  19047. height: math.unit(6, "inches")
  19048. },
  19049. {
  19050. name: "Normal",
  19051. height: math.unit(5 + 2 / 12, "feet"),
  19052. default: true
  19053. },
  19054. {
  19055. name: "Macro",
  19056. height: math.unit(62, "feet")
  19057. },
  19058. {
  19059. name: "Megamacro",
  19060. height: math.unit(1800, "feet")
  19061. },
  19062. ]
  19063. ))
  19064. characterMakers.push(() => makeCharacter(
  19065. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19066. {
  19067. front: {
  19068. height: math.unit(10, "feet"),
  19069. weight: math.unit(700, "lb"),
  19070. name: "Front",
  19071. image: {
  19072. source: "./media/characters/storm-alystar/front.svg",
  19073. extra: 2112 / 1898,
  19074. bottom: 0.034
  19075. }
  19076. },
  19077. },
  19078. [
  19079. {
  19080. name: "Micro",
  19081. height: math.unit(3.5, "inches")
  19082. },
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(10, "feet"),
  19086. default: true
  19087. },
  19088. {
  19089. name: "Macro",
  19090. height: math.unit(400, "feet")
  19091. },
  19092. {
  19093. name: "Deific",
  19094. height: math.unit(60, "miles")
  19095. },
  19096. ]
  19097. ))
  19098. characterMakers.push(() => makeCharacter(
  19099. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19100. {
  19101. front: {
  19102. height: math.unit(2.35, "meters"),
  19103. weight: math.unit(119, "kg"),
  19104. name: "Front",
  19105. image: {
  19106. source: "./media/characters/ilia/front.svg",
  19107. extra: 1285 / 1255,
  19108. bottom: 0.06
  19109. }
  19110. },
  19111. },
  19112. [
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(2.35, "meters")
  19116. },
  19117. {
  19118. name: "Macro",
  19119. height: math.unit(140, "meters"),
  19120. default: true
  19121. },
  19122. {
  19123. name: "Megamacro",
  19124. height: math.unit(100, "miles")
  19125. },
  19126. ]
  19127. ))
  19128. characterMakers.push(() => makeCharacter(
  19129. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19130. {
  19131. front: {
  19132. height: math.unit(6 + 5 / 12, "feet"),
  19133. weight: math.unit(190, "lb"),
  19134. name: "Front",
  19135. image: {
  19136. source: "./media/characters/kingdead/front.svg",
  19137. extra: 1228 / 1177
  19138. }
  19139. },
  19140. },
  19141. [
  19142. {
  19143. name: "Micro",
  19144. height: math.unit(7, "inches")
  19145. },
  19146. {
  19147. name: "Normal",
  19148. height: math.unit(6 + 5 / 12, "feet")
  19149. },
  19150. {
  19151. name: "Macro",
  19152. height: math.unit(150, "feet"),
  19153. default: true
  19154. },
  19155. {
  19156. name: "Megamacro",
  19157. height: math.unit(200, "miles")
  19158. },
  19159. ]
  19160. ))
  19161. characterMakers.push(() => makeCharacter(
  19162. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19163. {
  19164. front: {
  19165. height: math.unit(8, "feet"),
  19166. weight: math.unit(600, "lb"),
  19167. name: "Front",
  19168. image: {
  19169. source: "./media/characters/kyrehx/front.svg",
  19170. extra: 1195 / 1095,
  19171. bottom: 0.034
  19172. }
  19173. },
  19174. },
  19175. [
  19176. {
  19177. name: "Micro",
  19178. height: math.unit(2, "inches")
  19179. },
  19180. {
  19181. name: "Normal",
  19182. height: math.unit(8, "feet"),
  19183. default: true
  19184. },
  19185. {
  19186. name: "Macro",
  19187. height: math.unit(255, "feet")
  19188. },
  19189. ]
  19190. ))
  19191. characterMakers.push(() => makeCharacter(
  19192. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19193. {
  19194. front: {
  19195. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19196. weight: math.unit(184, "lb"),
  19197. name: "Front",
  19198. image: {
  19199. source: "./media/characters/xang/front.svg",
  19200. extra: 845 / 755
  19201. }
  19202. },
  19203. },
  19204. [
  19205. {
  19206. name: "Normal",
  19207. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19208. default: true
  19209. },
  19210. {
  19211. name: "Macro",
  19212. height: math.unit(0.935 * 146, "feet")
  19213. },
  19214. {
  19215. name: "Megamacro",
  19216. height: math.unit(0.935 * 3, "miles")
  19217. },
  19218. ]
  19219. ))
  19220. characterMakers.push(() => makeCharacter(
  19221. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19222. {
  19223. frontDressed: {
  19224. height: math.unit(5 + 7 / 12, "feet"),
  19225. weight: math.unit(140, "lb"),
  19226. name: "Front (Dressed)",
  19227. image: {
  19228. source: "./media/characters/doc-weardno/front-dressed.svg",
  19229. extra: 263 / 234
  19230. }
  19231. },
  19232. backDressed: {
  19233. height: math.unit(5 + 7 / 12, "feet"),
  19234. weight: math.unit(140, "lb"),
  19235. name: "Back (Dressed)",
  19236. image: {
  19237. source: "./media/characters/doc-weardno/back-dressed.svg",
  19238. extra: 266 / 238
  19239. }
  19240. },
  19241. front: {
  19242. height: math.unit(5 + 7 / 12, "feet"),
  19243. weight: math.unit(140, "lb"),
  19244. name: "Front",
  19245. image: {
  19246. source: "./media/characters/doc-weardno/front.svg",
  19247. extra: 254 / 233
  19248. }
  19249. },
  19250. },
  19251. [
  19252. {
  19253. name: "Micro",
  19254. height: math.unit(3, "inches")
  19255. },
  19256. {
  19257. name: "Normal",
  19258. height: math.unit(5 + 7 / 12, "feet"),
  19259. default: true
  19260. },
  19261. {
  19262. name: "Macro",
  19263. height: math.unit(25, "feet")
  19264. },
  19265. {
  19266. name: "Megamacro",
  19267. height: math.unit(2, "miles")
  19268. },
  19269. ]
  19270. ))
  19271. characterMakers.push(() => makeCharacter(
  19272. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19273. {
  19274. front: {
  19275. height: math.unit(6 + 2 / 12, "feet"),
  19276. weight: math.unit(153, "lb"),
  19277. name: "Front",
  19278. image: {
  19279. source: "./media/characters/seth-whilst/front.svg",
  19280. bottom: 0.07
  19281. }
  19282. },
  19283. },
  19284. [
  19285. {
  19286. name: "Micro",
  19287. height: math.unit(5, "inches")
  19288. },
  19289. {
  19290. name: "Normal",
  19291. height: math.unit(6 + 2 / 12, "feet"),
  19292. default: true
  19293. },
  19294. ]
  19295. ))
  19296. characterMakers.push(() => makeCharacter(
  19297. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19298. {
  19299. front: {
  19300. height: math.unit(3, "inches"),
  19301. weight: math.unit(8, "grams"),
  19302. name: "Front",
  19303. image: {
  19304. source: "./media/characters/pocket-jabari/front.svg",
  19305. extra: 1024 / 974,
  19306. bottom: 0.039
  19307. }
  19308. },
  19309. },
  19310. [
  19311. {
  19312. name: "Minimicro",
  19313. height: math.unit(8, "mm")
  19314. },
  19315. {
  19316. name: "Micro",
  19317. height: math.unit(3, "inches"),
  19318. default: true
  19319. },
  19320. {
  19321. name: "Normal",
  19322. height: math.unit(3, "feet")
  19323. },
  19324. ]
  19325. ))
  19326. characterMakers.push(() => makeCharacter(
  19327. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19328. {
  19329. frontDressed: {
  19330. height: math.unit(15, "feet"),
  19331. weight: math.unit(3280, "lb"),
  19332. name: "Front (Dressed)",
  19333. image: {
  19334. source: "./media/characters/sapphy/front-dressed.svg",
  19335. extra: 1951/1654,
  19336. bottom: 194/2145
  19337. },
  19338. form: "anthro",
  19339. default: true
  19340. },
  19341. backDressed: {
  19342. height: math.unit(15, "feet"),
  19343. weight: math.unit(3280, "lb"),
  19344. name: "Back (Dressed)",
  19345. image: {
  19346. source: "./media/characters/sapphy/back-dressed.svg",
  19347. extra: 2058/1918,
  19348. bottom: 125/2183
  19349. },
  19350. form: "anthro"
  19351. },
  19352. frontNude: {
  19353. height: math.unit(15, "feet"),
  19354. weight: math.unit(3280, "lb"),
  19355. name: "Front (Nude)",
  19356. image: {
  19357. source: "./media/characters/sapphy/front-nude.svg",
  19358. extra: 1951/1654,
  19359. bottom: 194/2145
  19360. },
  19361. form: "anthro"
  19362. },
  19363. backNude: {
  19364. height: math.unit(15, "feet"),
  19365. weight: math.unit(3280, "lb"),
  19366. name: "Back (Nude)",
  19367. image: {
  19368. source: "./media/characters/sapphy/back-nude.svg",
  19369. extra: 2058/1918,
  19370. bottom: 125/2183
  19371. },
  19372. form: "anthro"
  19373. },
  19374. full: {
  19375. height: math.unit(15, "feet"),
  19376. weight: math.unit(3280, "lb"),
  19377. name: "Full",
  19378. image: {
  19379. source: "./media/characters/sapphy/full.svg",
  19380. extra: 1396/1317,
  19381. bottom: 44/1440
  19382. },
  19383. form: "anthro"
  19384. },
  19385. dick: {
  19386. height: math.unit(3.8, "feet"),
  19387. name: "Dick",
  19388. image: {
  19389. source: "./media/characters/sapphy/dick.svg"
  19390. },
  19391. form: "anthro"
  19392. },
  19393. feral: {
  19394. height: math.unit(35, "feet"),
  19395. weight: math.unit(160, "tons"),
  19396. name: "Feral",
  19397. image: {
  19398. source: "./media/characters/sapphy/feral.svg",
  19399. extra: 1050/573,
  19400. bottom: 60/1110
  19401. },
  19402. form: "feral",
  19403. default: true
  19404. },
  19405. },
  19406. [
  19407. {
  19408. name: "Normal",
  19409. height: math.unit(15, "feet"),
  19410. form: "anthro"
  19411. },
  19412. {
  19413. name: "Casual Macro",
  19414. height: math.unit(120, "feet"),
  19415. form: "anthro"
  19416. },
  19417. {
  19418. name: "Macro",
  19419. height: math.unit(2150, "feet"),
  19420. default: true,
  19421. form: "anthro"
  19422. },
  19423. {
  19424. name: "Megamacro",
  19425. height: math.unit(8, "miles"),
  19426. form: "anthro"
  19427. },
  19428. {
  19429. name: "Galaxy Mom",
  19430. height: math.unit(6, "megalightyears"),
  19431. form: "anthro"
  19432. },
  19433. {
  19434. name: "Normal",
  19435. height: math.unit(35, "feet"),
  19436. form: "feral",
  19437. default: true
  19438. },
  19439. {
  19440. name: "Macro",
  19441. height: math.unit(300, "feet"),
  19442. form: "feral"
  19443. },
  19444. {
  19445. name: "Galaxy Mom",
  19446. height: math.unit(10, "megalightyears"),
  19447. form: "feral"
  19448. },
  19449. ],
  19450. {
  19451. "anthro": {
  19452. name: "Anthro",
  19453. default: true
  19454. },
  19455. "feral": {
  19456. name: "Feral"
  19457. }
  19458. }
  19459. ))
  19460. characterMakers.push(() => makeCharacter(
  19461. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19462. {
  19463. front: {
  19464. height: math.unit(6, "feet"),
  19465. weight: math.unit(170, "lb"),
  19466. name: "Front",
  19467. image: {
  19468. source: "./media/characters/kiro/front.svg",
  19469. extra: 1064 / 1012,
  19470. bottom: 0.052
  19471. }
  19472. },
  19473. },
  19474. [
  19475. {
  19476. name: "Micro",
  19477. height: math.unit(6, "inches")
  19478. },
  19479. {
  19480. name: "Normal",
  19481. height: math.unit(6, "feet"),
  19482. default: true
  19483. },
  19484. {
  19485. name: "Macro",
  19486. height: math.unit(72, "feet")
  19487. },
  19488. ]
  19489. ))
  19490. characterMakers.push(() => makeCharacter(
  19491. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19492. {
  19493. front: {
  19494. height: math.unit(5 + 9 / 12, "feet"),
  19495. weight: math.unit(175, "lb"),
  19496. name: "Front",
  19497. image: {
  19498. source: "./media/characters/irishfox/front.svg",
  19499. extra: 1912 / 1680,
  19500. bottom: 0.02
  19501. }
  19502. },
  19503. },
  19504. [
  19505. {
  19506. name: "Nano",
  19507. height: math.unit(1, "mm")
  19508. },
  19509. {
  19510. name: "Micro",
  19511. height: math.unit(2, "inches")
  19512. },
  19513. {
  19514. name: "Normal",
  19515. height: math.unit(5 + 9 / 12, "feet"),
  19516. default: true
  19517. },
  19518. {
  19519. name: "Macro",
  19520. height: math.unit(45, "feet")
  19521. },
  19522. ]
  19523. ))
  19524. characterMakers.push(() => makeCharacter(
  19525. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19526. {
  19527. front: {
  19528. height: math.unit(6 + 1 / 12, "feet"),
  19529. weight: math.unit(75, "lb"),
  19530. name: "Front",
  19531. image: {
  19532. source: "./media/characters/aronai-sieyes/front.svg",
  19533. extra: 1532/1450,
  19534. bottom: 42/1574
  19535. }
  19536. },
  19537. side: {
  19538. height: math.unit(6 + 1 / 12, "feet"),
  19539. weight: math.unit(75, "lb"),
  19540. name: "Side",
  19541. image: {
  19542. source: "./media/characters/aronai-sieyes/side.svg",
  19543. extra: 1422/1365,
  19544. bottom: 148/1570
  19545. }
  19546. },
  19547. back: {
  19548. height: math.unit(6 + 1 / 12, "feet"),
  19549. weight: math.unit(75, "lb"),
  19550. name: "Back",
  19551. image: {
  19552. source: "./media/characters/aronai-sieyes/back.svg",
  19553. extra: 1526/1464,
  19554. bottom: 51/1577
  19555. }
  19556. },
  19557. dressed: {
  19558. height: math.unit(6 + 1 / 12, "feet"),
  19559. weight: math.unit(75, "lb"),
  19560. name: "Dressed",
  19561. image: {
  19562. source: "./media/characters/aronai-sieyes/dressed.svg",
  19563. extra: 1559/1483,
  19564. bottom: 39/1598
  19565. }
  19566. },
  19567. slit: {
  19568. height: math.unit(1.3, "feet"),
  19569. name: "Slit",
  19570. image: {
  19571. source: "./media/characters/aronai-sieyes/slit.svg"
  19572. }
  19573. },
  19574. slitSpread: {
  19575. height: math.unit(0.9, "feet"),
  19576. name: "Slit (Spread)",
  19577. image: {
  19578. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19579. }
  19580. },
  19581. rump: {
  19582. height: math.unit(1.3, "feet"),
  19583. name: "Rump",
  19584. image: {
  19585. source: "./media/characters/aronai-sieyes/rump.svg"
  19586. }
  19587. },
  19588. maw: {
  19589. height: math.unit(1.25, "feet"),
  19590. name: "Maw",
  19591. image: {
  19592. source: "./media/characters/aronai-sieyes/maw.svg"
  19593. }
  19594. },
  19595. feral: {
  19596. height: math.unit(18, "feet"),
  19597. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19598. name: "Feral",
  19599. image: {
  19600. source: "./media/characters/aronai-sieyes/feral.svg",
  19601. extra: 1530 / 1240,
  19602. bottom: 0.035
  19603. }
  19604. },
  19605. },
  19606. [
  19607. {
  19608. name: "Micro",
  19609. height: math.unit(2, "inches")
  19610. },
  19611. {
  19612. name: "Normal",
  19613. height: math.unit(6 + 1 / 12, "feet"),
  19614. default: true
  19615. }
  19616. ]
  19617. ))
  19618. characterMakers.push(() => makeCharacter(
  19619. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19620. {
  19621. front: {
  19622. height: math.unit(12, "feet"),
  19623. weight: math.unit(410, "kg"),
  19624. name: "Front",
  19625. image: {
  19626. source: "./media/characters/xuna/front.svg",
  19627. extra: 2184 / 1980
  19628. }
  19629. },
  19630. side: {
  19631. height: math.unit(12, "feet"),
  19632. weight: math.unit(410, "kg"),
  19633. name: "Side",
  19634. image: {
  19635. source: "./media/characters/xuna/side.svg",
  19636. extra: 2184 / 1980
  19637. }
  19638. },
  19639. back: {
  19640. height: math.unit(12, "feet"),
  19641. weight: math.unit(410, "kg"),
  19642. name: "Back",
  19643. image: {
  19644. source: "./media/characters/xuna/back.svg",
  19645. extra: 2184 / 1980
  19646. }
  19647. },
  19648. },
  19649. [
  19650. {
  19651. name: "Nano glow",
  19652. height: math.unit(10, "nm")
  19653. },
  19654. {
  19655. name: "Micro floof",
  19656. height: math.unit(0.3, "m")
  19657. },
  19658. {
  19659. name: "Huggable softy boi",
  19660. height: math.unit(3.6576, "m"),
  19661. default: true
  19662. },
  19663. {
  19664. name: "Admirable floof",
  19665. height: math.unit(80, "meters")
  19666. },
  19667. {
  19668. name: "Gentle macro",
  19669. height: math.unit(300, "meters")
  19670. },
  19671. {
  19672. name: "Very careful floof",
  19673. height: math.unit(3200, "meters")
  19674. },
  19675. {
  19676. name: "The mega floof",
  19677. height: math.unit(36000, "meters")
  19678. },
  19679. {
  19680. name: "Giga-fur-Wicker",
  19681. height: math.unit(4800000, "meters")
  19682. },
  19683. {
  19684. name: "Licky world",
  19685. height: math.unit(20000000, "meters")
  19686. },
  19687. {
  19688. name: "Floofy cyan sun",
  19689. height: math.unit(1500000000, "meters")
  19690. },
  19691. {
  19692. name: "Milky Wicker",
  19693. height: math.unit(1000000000000000000000, "meters")
  19694. },
  19695. {
  19696. name: "The observing Wicker",
  19697. height: math.unit(999999999999999999999999999, "meters")
  19698. },
  19699. ]
  19700. ))
  19701. characterMakers.push(() => makeCharacter(
  19702. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19703. {
  19704. front: {
  19705. height: math.unit(5 + 9 / 12, "feet"),
  19706. weight: math.unit(150, "lb"),
  19707. name: "Front",
  19708. image: {
  19709. source: "./media/characters/arokha-sieyes/front.svg",
  19710. extra: 1425 / 1284,
  19711. bottom: 0.05
  19712. }
  19713. },
  19714. },
  19715. [
  19716. {
  19717. name: "Normal",
  19718. height: math.unit(5 + 9 / 12, "feet")
  19719. },
  19720. {
  19721. name: "Macro",
  19722. height: math.unit(30, "meters"),
  19723. default: true
  19724. },
  19725. ]
  19726. ))
  19727. characterMakers.push(() => makeCharacter(
  19728. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19729. {
  19730. front: {
  19731. height: math.unit(6, "feet"),
  19732. weight: math.unit(180, "lb"),
  19733. name: "Front",
  19734. image: {
  19735. source: "./media/characters/arokh-sieyes/front.svg",
  19736. extra: 1830 / 1769,
  19737. bottom: 0.01
  19738. }
  19739. },
  19740. },
  19741. [
  19742. {
  19743. name: "Normal",
  19744. height: math.unit(6, "feet")
  19745. },
  19746. {
  19747. name: "Macro",
  19748. height: math.unit(30, "meters"),
  19749. default: true
  19750. },
  19751. ]
  19752. ))
  19753. characterMakers.push(() => makeCharacter(
  19754. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19755. {
  19756. side: {
  19757. height: math.unit(13 + 1 / 12, "feet"),
  19758. weight: math.unit(8.5, "tonnes"),
  19759. name: "Side",
  19760. image: {
  19761. source: "./media/characters/goldeneye/side.svg",
  19762. extra: 1182 / 778,
  19763. bottom: 0.067
  19764. }
  19765. },
  19766. paw: {
  19767. height: math.unit(3.4, "feet"),
  19768. name: "Paw",
  19769. image: {
  19770. source: "./media/characters/goldeneye/paw.svg"
  19771. }
  19772. },
  19773. },
  19774. [
  19775. {
  19776. name: "Normal",
  19777. height: math.unit(13 + 1 / 12, "feet"),
  19778. default: true
  19779. },
  19780. ]
  19781. ))
  19782. characterMakers.push(() => makeCharacter(
  19783. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19784. {
  19785. front: {
  19786. height: math.unit(6 + 1 / 12, "feet"),
  19787. weight: math.unit(210, "lb"),
  19788. name: "Front",
  19789. image: {
  19790. source: "./media/characters/leonardo-lycheborne/front.svg",
  19791. extra: 776/723,
  19792. bottom: 34/810
  19793. }
  19794. },
  19795. side: {
  19796. height: math.unit(6 + 1 / 12, "feet"),
  19797. weight: math.unit(210, "lb"),
  19798. name: "Side",
  19799. image: {
  19800. source: "./media/characters/leonardo-lycheborne/side.svg",
  19801. extra: 780/728,
  19802. bottom: 12/792
  19803. }
  19804. },
  19805. back: {
  19806. height: math.unit(6 + 1 / 12, "feet"),
  19807. weight: math.unit(210, "lb"),
  19808. name: "Back",
  19809. image: {
  19810. source: "./media/characters/leonardo-lycheborne/back.svg",
  19811. extra: 775/721,
  19812. bottom: 17/792
  19813. }
  19814. },
  19815. hand: {
  19816. height: math.unit(1.08, "feet"),
  19817. name: "Hand",
  19818. image: {
  19819. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19820. }
  19821. },
  19822. foot: {
  19823. height: math.unit(1.32, "feet"),
  19824. name: "Foot",
  19825. image: {
  19826. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19827. }
  19828. },
  19829. maw: {
  19830. height: math.unit(1, "feet"),
  19831. name: "Maw",
  19832. image: {
  19833. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19834. }
  19835. },
  19836. were: {
  19837. height: math.unit(20, "feet"),
  19838. weight: math.unit(7800, "lb"),
  19839. name: "Were",
  19840. image: {
  19841. source: "./media/characters/leonardo-lycheborne/were.svg",
  19842. extra: 1224/1165,
  19843. bottom: 72/1296
  19844. }
  19845. },
  19846. feral: {
  19847. height: math.unit(7.5, "feet"),
  19848. weight: math.unit(600, "lb"),
  19849. name: "Feral",
  19850. image: {
  19851. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19852. extra: 797/702,
  19853. bottom: 139/936
  19854. }
  19855. },
  19856. taur: {
  19857. height: math.unit(11, "feet"),
  19858. weight: math.unit(3300, "lb"),
  19859. name: "Taur",
  19860. image: {
  19861. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19862. extra: 1271/1197,
  19863. bottom: 47/1318
  19864. }
  19865. },
  19866. barghest: {
  19867. height: math.unit(11, "feet"),
  19868. weight: math.unit(1300, "lb"),
  19869. name: "Barghest",
  19870. image: {
  19871. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19872. extra: 1291/1204,
  19873. bottom: 37/1328
  19874. }
  19875. },
  19876. dick: {
  19877. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19878. name: "Dick",
  19879. image: {
  19880. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19881. }
  19882. },
  19883. dickWere: {
  19884. height: math.unit((20) / 3.8, "feet"),
  19885. name: "Dick (Were)",
  19886. image: {
  19887. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19888. }
  19889. },
  19890. },
  19891. [
  19892. {
  19893. name: "Normal",
  19894. height: math.unit(6 + 1 / 12, "feet"),
  19895. default: true
  19896. },
  19897. ]
  19898. ))
  19899. characterMakers.push(() => makeCharacter(
  19900. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19901. {
  19902. front: {
  19903. height: math.unit(10, "feet"),
  19904. weight: math.unit(350, "lb"),
  19905. name: "Front",
  19906. image: {
  19907. source: "./media/characters/jet/front.svg",
  19908. extra: 2050 / 1980,
  19909. bottom: 0.013
  19910. }
  19911. },
  19912. back: {
  19913. height: math.unit(10, "feet"),
  19914. weight: math.unit(350, "lb"),
  19915. name: "Back",
  19916. image: {
  19917. source: "./media/characters/jet/back.svg",
  19918. extra: 2050 / 1980,
  19919. bottom: 0.013
  19920. }
  19921. },
  19922. },
  19923. [
  19924. {
  19925. name: "Micro",
  19926. height: math.unit(6, "inches")
  19927. },
  19928. {
  19929. name: "Normal",
  19930. height: math.unit(10, "feet"),
  19931. default: true
  19932. },
  19933. {
  19934. name: "Macro",
  19935. height: math.unit(100, "feet")
  19936. },
  19937. ]
  19938. ))
  19939. characterMakers.push(() => makeCharacter(
  19940. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19941. {
  19942. front: {
  19943. height: math.unit(15, "feet"),
  19944. weight: math.unit(2800, "lb"),
  19945. name: "Front",
  19946. image: {
  19947. source: "./media/characters/tanarath/front.svg",
  19948. extra: 2392 / 2220,
  19949. bottom: 0.03
  19950. }
  19951. },
  19952. back: {
  19953. height: math.unit(15, "feet"),
  19954. weight: math.unit(2800, "lb"),
  19955. name: "Back",
  19956. image: {
  19957. source: "./media/characters/tanarath/back.svg",
  19958. extra: 2392 / 2220,
  19959. bottom: 0.03
  19960. }
  19961. },
  19962. },
  19963. [
  19964. {
  19965. name: "Normal",
  19966. height: math.unit(15, "feet"),
  19967. default: true
  19968. },
  19969. ]
  19970. ))
  19971. characterMakers.push(() => makeCharacter(
  19972. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19973. {
  19974. front: {
  19975. height: math.unit(7 + 1 / 12, "feet"),
  19976. weight: math.unit(175, "lb"),
  19977. name: "Front",
  19978. image: {
  19979. source: "./media/characters/patty-cattybatty/front.svg",
  19980. extra: 908 / 874,
  19981. bottom: 0.025
  19982. }
  19983. },
  19984. },
  19985. [
  19986. {
  19987. name: "Micro",
  19988. height: math.unit(1, "inch")
  19989. },
  19990. {
  19991. name: "Normal",
  19992. height: math.unit(7 + 1 / 12, "feet")
  19993. },
  19994. {
  19995. name: "Mini Macro",
  19996. height: math.unit(155, "feet")
  19997. },
  19998. {
  19999. name: "Macro",
  20000. height: math.unit(1077, "feet")
  20001. },
  20002. {
  20003. name: "Mega Macro",
  20004. height: math.unit(47650, "feet"),
  20005. default: true
  20006. },
  20007. {
  20008. name: "Giga Macro",
  20009. height: math.unit(440, "miles")
  20010. },
  20011. {
  20012. name: "Tera Macro",
  20013. height: math.unit(8700, "miles")
  20014. },
  20015. {
  20016. name: "Planetary Macro",
  20017. height: math.unit(32700, "miles")
  20018. },
  20019. {
  20020. name: "Solar Macro",
  20021. height: math.unit(550000, "miles")
  20022. },
  20023. {
  20024. name: "Celestial Macro",
  20025. height: math.unit(2.5, "AU")
  20026. },
  20027. ]
  20028. ))
  20029. characterMakers.push(() => makeCharacter(
  20030. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20031. {
  20032. front: {
  20033. height: math.unit(4 + 5 / 12, "feet"),
  20034. weight: math.unit(90, "lb"),
  20035. name: "Front",
  20036. image: {
  20037. source: "./media/characters/cappu/front.svg",
  20038. extra: 1247 / 1152,
  20039. bottom: 0.012
  20040. }
  20041. },
  20042. },
  20043. [
  20044. {
  20045. name: "Normal",
  20046. height: math.unit(4 + 5 / 12, "feet"),
  20047. default: true
  20048. },
  20049. ]
  20050. ))
  20051. characterMakers.push(() => makeCharacter(
  20052. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20053. {
  20054. frontDressed: {
  20055. height: math.unit(70, "cm"),
  20056. weight: math.unit(6, "kg"),
  20057. name: "Front (Dressed)",
  20058. image: {
  20059. source: "./media/characters/sebi/front-dressed.svg",
  20060. extra: 713.5 / 686.5,
  20061. bottom: 0.003
  20062. }
  20063. },
  20064. front: {
  20065. height: math.unit(70, "cm"),
  20066. weight: math.unit(5, "kg"),
  20067. name: "Front",
  20068. image: {
  20069. source: "./media/characters/sebi/front.svg",
  20070. extra: 713.5 / 686.5,
  20071. bottom: 0.003
  20072. }
  20073. }
  20074. },
  20075. [
  20076. {
  20077. name: "Normal",
  20078. height: math.unit(70, "cm"),
  20079. default: true
  20080. },
  20081. {
  20082. name: "Macro",
  20083. height: math.unit(8, "meters")
  20084. },
  20085. ]
  20086. ))
  20087. characterMakers.push(() => makeCharacter(
  20088. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20089. {
  20090. front: {
  20091. height: math.unit(6, "feet"),
  20092. weight: math.unit(150, "lb"),
  20093. name: "Front",
  20094. image: {
  20095. source: "./media/characters/typhek/front.svg",
  20096. extra: 1948 / 1929,
  20097. bottom: 0.025
  20098. }
  20099. },
  20100. side: {
  20101. height: math.unit(6, "feet"),
  20102. weight: math.unit(150, "lb"),
  20103. name: "Side",
  20104. image: {
  20105. source: "./media/characters/typhek/side.svg",
  20106. extra: 2034 / 2010,
  20107. bottom: 0.003
  20108. }
  20109. },
  20110. back: {
  20111. height: math.unit(6, "feet"),
  20112. weight: math.unit(150, "lb"),
  20113. name: "Back",
  20114. image: {
  20115. source: "./media/characters/typhek/back.svg",
  20116. extra: 2005 / 1978,
  20117. bottom: 0.004
  20118. }
  20119. },
  20120. palm: {
  20121. height: math.unit(1.2, "feet"),
  20122. name: "Palm",
  20123. image: {
  20124. source: "./media/characters/typhek/palm.svg"
  20125. }
  20126. },
  20127. fist: {
  20128. height: math.unit(1.1, "feet"),
  20129. name: "Fist",
  20130. image: {
  20131. source: "./media/characters/typhek/fist.svg"
  20132. }
  20133. },
  20134. foot: {
  20135. height: math.unit(1.57, "feet"),
  20136. name: "Foot",
  20137. image: {
  20138. source: "./media/characters/typhek/foot.svg"
  20139. }
  20140. },
  20141. sole: {
  20142. height: math.unit(2.05, "feet"),
  20143. name: "Sole",
  20144. image: {
  20145. source: "./media/characters/typhek/sole.svg"
  20146. }
  20147. },
  20148. },
  20149. [
  20150. {
  20151. name: "Macro",
  20152. height: math.unit(40, "stories"),
  20153. default: true
  20154. },
  20155. {
  20156. name: "Megamacro",
  20157. height: math.unit(1, "mile")
  20158. },
  20159. {
  20160. name: "Gigamacro",
  20161. height: math.unit(4000, "solarradii")
  20162. },
  20163. {
  20164. name: "Universal",
  20165. height: math.unit(1.1, "universes")
  20166. }
  20167. ]
  20168. ))
  20169. characterMakers.push(() => makeCharacter(
  20170. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20171. {
  20172. side: {
  20173. height: math.unit(5 + 7 / 12, "feet"),
  20174. weight: math.unit(150, "lb"),
  20175. name: "Side",
  20176. image: {
  20177. source: "./media/characters/kassy/side.svg",
  20178. extra: 1280 / 1225,
  20179. bottom: 0.002
  20180. }
  20181. },
  20182. front: {
  20183. height: math.unit(5 + 7 / 12, "feet"),
  20184. weight: math.unit(150, "lb"),
  20185. name: "Front",
  20186. image: {
  20187. source: "./media/characters/kassy/front.svg",
  20188. extra: 1280 / 1225,
  20189. bottom: 0.025
  20190. }
  20191. },
  20192. back: {
  20193. height: math.unit(5 + 7 / 12, "feet"),
  20194. weight: math.unit(150, "lb"),
  20195. name: "Back",
  20196. image: {
  20197. source: "./media/characters/kassy/back.svg",
  20198. extra: 1280 / 1225,
  20199. bottom: 0.002
  20200. }
  20201. },
  20202. foot: {
  20203. height: math.unit(1.266, "feet"),
  20204. name: "Foot",
  20205. image: {
  20206. source: "./media/characters/kassy/foot.svg"
  20207. }
  20208. },
  20209. },
  20210. [
  20211. {
  20212. name: "Normal",
  20213. height: math.unit(5 + 7 / 12, "feet")
  20214. },
  20215. {
  20216. name: "Macro",
  20217. height: math.unit(137, "feet"),
  20218. default: true
  20219. },
  20220. {
  20221. name: "Megamacro",
  20222. height: math.unit(1, "mile")
  20223. },
  20224. ]
  20225. ))
  20226. characterMakers.push(() => makeCharacter(
  20227. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20228. {
  20229. front: {
  20230. height: math.unit(6 + 1 / 12, "feet"),
  20231. weight: math.unit(200, "lb"),
  20232. name: "Front",
  20233. image: {
  20234. source: "./media/characters/neil/front.svg",
  20235. extra: 1326 / 1250,
  20236. bottom: 0.023
  20237. }
  20238. },
  20239. },
  20240. [
  20241. {
  20242. name: "Normal",
  20243. height: math.unit(6 + 1 / 12, "feet"),
  20244. default: true
  20245. },
  20246. {
  20247. name: "Macro",
  20248. height: math.unit(200, "feet")
  20249. },
  20250. ]
  20251. ))
  20252. characterMakers.push(() => makeCharacter(
  20253. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20254. {
  20255. front: {
  20256. height: math.unit(5 + 9 / 12, "feet"),
  20257. weight: math.unit(190, "lb"),
  20258. name: "Front",
  20259. image: {
  20260. source: "./media/characters/atticus/front.svg",
  20261. extra: 2934 / 2785,
  20262. bottom: 0.025
  20263. }
  20264. },
  20265. },
  20266. [
  20267. {
  20268. name: "Normal",
  20269. height: math.unit(5 + 9 / 12, "feet"),
  20270. default: true
  20271. },
  20272. {
  20273. name: "Macro",
  20274. height: math.unit(180, "feet")
  20275. },
  20276. ]
  20277. ))
  20278. characterMakers.push(() => makeCharacter(
  20279. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20280. {
  20281. side: {
  20282. height: math.unit(9, "feet"),
  20283. weight: math.unit(650, "lb"),
  20284. name: "Side",
  20285. image: {
  20286. source: "./media/characters/milo/side.svg",
  20287. extra: 2644 / 2310,
  20288. bottom: 0.032
  20289. }
  20290. },
  20291. },
  20292. [
  20293. {
  20294. name: "Normal",
  20295. height: math.unit(9, "feet"),
  20296. default: true
  20297. },
  20298. {
  20299. name: "Macro",
  20300. height: math.unit(300, "feet")
  20301. },
  20302. ]
  20303. ))
  20304. characterMakers.push(() => makeCharacter(
  20305. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20306. {
  20307. side: {
  20308. height: math.unit(8, "meters"),
  20309. weight: math.unit(90000, "kg"),
  20310. name: "Side",
  20311. image: {
  20312. source: "./media/characters/ijzer/side.svg",
  20313. extra: 2756 / 1600,
  20314. bottom: 0.01
  20315. }
  20316. },
  20317. },
  20318. [
  20319. {
  20320. name: "Small",
  20321. height: math.unit(3, "meters")
  20322. },
  20323. {
  20324. name: "Normal",
  20325. height: math.unit(8, "meters"),
  20326. default: true
  20327. },
  20328. {
  20329. name: "Normal+",
  20330. height: math.unit(10, "meters")
  20331. },
  20332. {
  20333. name: "Bigger",
  20334. height: math.unit(24, "meters")
  20335. },
  20336. {
  20337. name: "Huge",
  20338. height: math.unit(80, "meters")
  20339. },
  20340. ]
  20341. ))
  20342. characterMakers.push(() => makeCharacter(
  20343. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20344. {
  20345. front: {
  20346. height: math.unit(6 + 2 / 12, "feet"),
  20347. weight: math.unit(153, "lb"),
  20348. name: "Front",
  20349. image: {
  20350. source: "./media/characters/luca-cervicum/front.svg",
  20351. extra: 370 / 327,
  20352. bottom: 0.015
  20353. }
  20354. },
  20355. back: {
  20356. height: math.unit(6 + 2 / 12, "feet"),
  20357. weight: math.unit(153, "lb"),
  20358. name: "Back",
  20359. image: {
  20360. source: "./media/characters/luca-cervicum/back.svg",
  20361. extra: 367 / 333,
  20362. bottom: 0.005
  20363. }
  20364. },
  20365. frontGear: {
  20366. height: math.unit(6 + 2 / 12, "feet"),
  20367. weight: math.unit(173, "lb"),
  20368. name: "Front (Gear)",
  20369. image: {
  20370. source: "./media/characters/luca-cervicum/front-gear.svg",
  20371. extra: 377 / 333,
  20372. bottom: 0.006
  20373. }
  20374. },
  20375. },
  20376. [
  20377. {
  20378. name: "Normal",
  20379. height: math.unit(6 + 2 / 12, "feet"),
  20380. default: true
  20381. },
  20382. ]
  20383. ))
  20384. characterMakers.push(() => makeCharacter(
  20385. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20386. {
  20387. front: {
  20388. height: math.unit(6 + 1 / 12, "feet"),
  20389. weight: math.unit(304, "lb"),
  20390. name: "Front",
  20391. image: {
  20392. source: "./media/characters/oliver/front.svg",
  20393. extra: 157 / 143,
  20394. bottom: 0.08
  20395. }
  20396. },
  20397. },
  20398. [
  20399. {
  20400. name: "Normal",
  20401. height: math.unit(6 + 1 / 12, "feet"),
  20402. default: true
  20403. },
  20404. ]
  20405. ))
  20406. characterMakers.push(() => makeCharacter(
  20407. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20408. {
  20409. front: {
  20410. height: math.unit(5 + 7 / 12, "feet"),
  20411. weight: math.unit(140, "lb"),
  20412. name: "Front",
  20413. image: {
  20414. source: "./media/characters/shane/front.svg",
  20415. extra: 304 / 289,
  20416. bottom: 0.005
  20417. }
  20418. },
  20419. },
  20420. [
  20421. {
  20422. name: "Normal",
  20423. height: math.unit(5 + 7 / 12, "feet"),
  20424. default: true
  20425. },
  20426. ]
  20427. ))
  20428. characterMakers.push(() => makeCharacter(
  20429. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20430. {
  20431. front: {
  20432. height: math.unit(5 + 9 / 12, "feet"),
  20433. weight: math.unit(178, "lb"),
  20434. name: "Front",
  20435. image: {
  20436. source: "./media/characters/shin/front.svg",
  20437. extra: 159 / 151,
  20438. bottom: 0.015
  20439. }
  20440. },
  20441. },
  20442. [
  20443. {
  20444. name: "Normal",
  20445. height: math.unit(5 + 9 / 12, "feet"),
  20446. default: true
  20447. },
  20448. ]
  20449. ))
  20450. characterMakers.push(() => makeCharacter(
  20451. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20452. {
  20453. front: {
  20454. height: math.unit(5 + 10 / 12, "feet"),
  20455. weight: math.unit(168, "lb"),
  20456. name: "Front",
  20457. image: {
  20458. source: "./media/characters/xerxes/front.svg",
  20459. extra: 282 / 260,
  20460. bottom: 0.045
  20461. }
  20462. },
  20463. },
  20464. [
  20465. {
  20466. name: "Normal",
  20467. height: math.unit(5 + 10 / 12, "feet"),
  20468. default: true
  20469. },
  20470. ]
  20471. ))
  20472. characterMakers.push(() => makeCharacter(
  20473. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20474. {
  20475. front: {
  20476. height: math.unit(6 + 7 / 12, "feet"),
  20477. weight: math.unit(208, "lb"),
  20478. name: "Front",
  20479. image: {
  20480. source: "./media/characters/chaska/front.svg",
  20481. extra: 332 / 319,
  20482. bottom: 0.015
  20483. }
  20484. },
  20485. },
  20486. [
  20487. {
  20488. name: "Normal",
  20489. height: math.unit(6 + 7 / 12, "feet"),
  20490. default: true
  20491. },
  20492. ]
  20493. ))
  20494. characterMakers.push(() => makeCharacter(
  20495. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20496. {
  20497. front: {
  20498. height: math.unit(5 + 8 / 12, "feet"),
  20499. weight: math.unit(208, "lb"),
  20500. name: "Front",
  20501. image: {
  20502. source: "./media/characters/enuk/front.svg",
  20503. extra: 437 / 406,
  20504. bottom: 0.02
  20505. }
  20506. },
  20507. },
  20508. [
  20509. {
  20510. name: "Normal",
  20511. height: math.unit(5 + 8 / 12, "feet"),
  20512. default: true
  20513. },
  20514. ]
  20515. ))
  20516. characterMakers.push(() => makeCharacter(
  20517. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20518. {
  20519. front: {
  20520. height: math.unit(5 + 10 / 12, "feet"),
  20521. weight: math.unit(252, "lb"),
  20522. name: "Front",
  20523. image: {
  20524. source: "./media/characters/bruun/front.svg",
  20525. extra: 197 / 187,
  20526. bottom: 0.012
  20527. }
  20528. },
  20529. },
  20530. [
  20531. {
  20532. name: "Normal",
  20533. height: math.unit(5 + 10 / 12, "feet"),
  20534. default: true
  20535. },
  20536. ]
  20537. ))
  20538. characterMakers.push(() => makeCharacter(
  20539. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20540. {
  20541. front: {
  20542. height: math.unit(6 + 10 / 12, "feet"),
  20543. weight: math.unit(255, "lb"),
  20544. name: "Front",
  20545. image: {
  20546. source: "./media/characters/alexeev/front.svg",
  20547. extra: 213 / 200,
  20548. bottom: 0.05
  20549. }
  20550. },
  20551. },
  20552. [
  20553. {
  20554. name: "Normal",
  20555. height: math.unit(6 + 10 / 12, "feet"),
  20556. default: true
  20557. },
  20558. ]
  20559. ))
  20560. characterMakers.push(() => makeCharacter(
  20561. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20562. {
  20563. front: {
  20564. height: math.unit(2 + 8 / 12, "feet"),
  20565. weight: math.unit(22, "lb"),
  20566. name: "Front",
  20567. image: {
  20568. source: "./media/characters/evelyn/front.svg",
  20569. extra: 208 / 180
  20570. }
  20571. },
  20572. },
  20573. [
  20574. {
  20575. name: "Normal",
  20576. height: math.unit(2 + 8 / 12, "feet"),
  20577. default: true
  20578. },
  20579. ]
  20580. ))
  20581. characterMakers.push(() => makeCharacter(
  20582. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20583. {
  20584. front: {
  20585. height: math.unit(5 + 9 / 12, "feet"),
  20586. weight: math.unit(139, "lb"),
  20587. name: "Front",
  20588. image: {
  20589. source: "./media/characters/inca/front.svg",
  20590. extra: 294 / 291,
  20591. bottom: 0.03
  20592. }
  20593. },
  20594. },
  20595. [
  20596. {
  20597. name: "Normal",
  20598. height: math.unit(5 + 9 / 12, "feet"),
  20599. default: true
  20600. },
  20601. ]
  20602. ))
  20603. characterMakers.push(() => makeCharacter(
  20604. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20605. {
  20606. front: {
  20607. height: math.unit(6 + 3 / 12, "feet"),
  20608. weight: math.unit(185, "lb"),
  20609. name: "Front",
  20610. image: {
  20611. source: "./media/characters/mera/front.svg",
  20612. extra: 291 / 277,
  20613. bottom: 0.03
  20614. }
  20615. },
  20616. },
  20617. [
  20618. {
  20619. name: "Normal",
  20620. height: math.unit(6 + 3 / 12, "feet"),
  20621. default: true
  20622. },
  20623. ]
  20624. ))
  20625. characterMakers.push(() => makeCharacter(
  20626. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20627. {
  20628. front: {
  20629. height: math.unit(6 + 7 / 12, "feet"),
  20630. weight: math.unit(160, "lb"),
  20631. name: "Front",
  20632. image: {
  20633. source: "./media/characters/ceres/front.svg",
  20634. extra: 1023 / 950,
  20635. bottom: 0.027
  20636. }
  20637. },
  20638. back: {
  20639. height: math.unit(6 + 7 / 12, "feet"),
  20640. weight: math.unit(160, "lb"),
  20641. name: "Back",
  20642. image: {
  20643. source: "./media/characters/ceres/back.svg",
  20644. extra: 1023 / 950
  20645. }
  20646. },
  20647. },
  20648. [
  20649. {
  20650. name: "Normal",
  20651. height: math.unit(6 + 7 / 12, "feet"),
  20652. default: true
  20653. },
  20654. ]
  20655. ))
  20656. characterMakers.push(() => makeCharacter(
  20657. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20658. {
  20659. front: {
  20660. height: math.unit(5 + 10 / 12, "feet"),
  20661. weight: math.unit(150, "lb"),
  20662. name: "Front",
  20663. image: {
  20664. source: "./media/characters/kris/front.svg",
  20665. extra: 885 / 803,
  20666. bottom: 0.03
  20667. }
  20668. },
  20669. },
  20670. [
  20671. {
  20672. name: "Normal",
  20673. height: math.unit(5 + 10 / 12, "feet"),
  20674. default: true
  20675. },
  20676. ]
  20677. ))
  20678. characterMakers.push(() => makeCharacter(
  20679. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20680. {
  20681. front: {
  20682. height: math.unit(7, "feet"),
  20683. weight: math.unit(120, "kg"),
  20684. name: "Front",
  20685. image: {
  20686. source: "./media/characters/taluthus/front.svg",
  20687. extra: 903 / 833,
  20688. bottom: 0.015
  20689. }
  20690. },
  20691. },
  20692. [
  20693. {
  20694. name: "Normal",
  20695. height: math.unit(7, "feet"),
  20696. default: true
  20697. },
  20698. {
  20699. name: "Macro",
  20700. height: math.unit(300, "feet")
  20701. },
  20702. ]
  20703. ))
  20704. characterMakers.push(() => makeCharacter(
  20705. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20706. {
  20707. front: {
  20708. height: math.unit(5 + 9 / 12, "feet"),
  20709. weight: math.unit(145, "lb"),
  20710. name: "Front",
  20711. image: {
  20712. source: "./media/characters/dawn/front.svg",
  20713. extra: 2094 / 2016,
  20714. bottom: 0.025
  20715. }
  20716. },
  20717. back: {
  20718. height: math.unit(5 + 9 / 12, "feet"),
  20719. weight: math.unit(160, "lb"),
  20720. name: "Back",
  20721. image: {
  20722. source: "./media/characters/dawn/back.svg",
  20723. extra: 2112 / 2080,
  20724. bottom: 0.005
  20725. }
  20726. },
  20727. },
  20728. [
  20729. {
  20730. name: "Normal",
  20731. height: math.unit(6 + 7 / 12, "feet"),
  20732. default: true
  20733. },
  20734. ]
  20735. ))
  20736. characterMakers.push(() => makeCharacter(
  20737. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20738. {
  20739. anthro: {
  20740. height: math.unit(8 + 3 / 12, "feet"),
  20741. weight: math.unit(450, "lb"),
  20742. name: "Anthro",
  20743. image: {
  20744. source: "./media/characters/arador/anthro.svg",
  20745. extra: 1835 / 1718,
  20746. bottom: 0.025
  20747. }
  20748. },
  20749. feral: {
  20750. height: math.unit(4, "feet"),
  20751. weight: math.unit(200, "lb"),
  20752. name: "Feral",
  20753. image: {
  20754. source: "./media/characters/arador/feral.svg",
  20755. extra: 1683 / 1514,
  20756. bottom: 0.07
  20757. }
  20758. },
  20759. },
  20760. [
  20761. {
  20762. name: "Normal",
  20763. height: math.unit(8 + 3 / 12, "feet")
  20764. },
  20765. {
  20766. name: "Macro",
  20767. height: math.unit(82.5, "feet"),
  20768. default: true
  20769. },
  20770. ]
  20771. ))
  20772. characterMakers.push(() => makeCharacter(
  20773. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20774. {
  20775. front: {
  20776. height: math.unit(5 + 10 / 12, "feet"),
  20777. weight: math.unit(125, "lb"),
  20778. name: "Front",
  20779. image: {
  20780. source: "./media/characters/dharsi/front.svg",
  20781. extra: 716 / 630,
  20782. bottom: 0.035
  20783. }
  20784. },
  20785. },
  20786. [
  20787. {
  20788. name: "Nano",
  20789. height: math.unit(100, "nm")
  20790. },
  20791. {
  20792. name: "Micro",
  20793. height: math.unit(2, "inches")
  20794. },
  20795. {
  20796. name: "Normal",
  20797. height: math.unit(5 + 10 / 12, "feet"),
  20798. default: true
  20799. },
  20800. {
  20801. name: "Macro",
  20802. height: math.unit(1000, "feet")
  20803. },
  20804. {
  20805. name: "Megamacro",
  20806. height: math.unit(10, "miles")
  20807. },
  20808. {
  20809. name: "Gigamacro",
  20810. height: math.unit(3000, "miles")
  20811. },
  20812. {
  20813. name: "Teramacro",
  20814. height: math.unit(500000, "miles")
  20815. },
  20816. {
  20817. name: "Teramacro+",
  20818. height: math.unit(30, "galaxies")
  20819. },
  20820. ]
  20821. ))
  20822. characterMakers.push(() => makeCharacter(
  20823. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20824. {
  20825. front: {
  20826. height: math.unit(6, "feet"),
  20827. weight: math.unit(150, "lb"),
  20828. name: "Front",
  20829. image: {
  20830. source: "./media/characters/deathy/front.svg",
  20831. extra: 1552 / 1463,
  20832. bottom: 0.025
  20833. }
  20834. },
  20835. side: {
  20836. height: math.unit(6, "feet"),
  20837. weight: math.unit(150, "lb"),
  20838. name: "Side",
  20839. image: {
  20840. source: "./media/characters/deathy/side.svg",
  20841. extra: 1604 / 1455,
  20842. bottom: 0.025
  20843. }
  20844. },
  20845. back: {
  20846. height: math.unit(6, "feet"),
  20847. weight: math.unit(150, "lb"),
  20848. name: "Back",
  20849. image: {
  20850. source: "./media/characters/deathy/back.svg",
  20851. extra: 1580 / 1463,
  20852. bottom: 0.005
  20853. }
  20854. },
  20855. },
  20856. [
  20857. {
  20858. name: "Micro",
  20859. height: math.unit(5, "millimeters")
  20860. },
  20861. {
  20862. name: "Normal",
  20863. height: math.unit(6 + 5 / 12, "feet"),
  20864. default: true
  20865. },
  20866. ]
  20867. ))
  20868. characterMakers.push(() => makeCharacter(
  20869. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20870. {
  20871. front: {
  20872. height: math.unit(16, "feet"),
  20873. weight: math.unit(4000, "lb"),
  20874. name: "Front",
  20875. image: {
  20876. source: "./media/characters/juniper/front.svg",
  20877. bottom: 0.04
  20878. }
  20879. },
  20880. },
  20881. [
  20882. {
  20883. name: "Normal",
  20884. height: math.unit(16, "feet"),
  20885. default: true
  20886. },
  20887. ]
  20888. ))
  20889. characterMakers.push(() => makeCharacter(
  20890. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20891. {
  20892. front: {
  20893. height: math.unit(6, "feet"),
  20894. weight: math.unit(150, "lb"),
  20895. name: "Front",
  20896. image: {
  20897. source: "./media/characters/hipster/front.svg",
  20898. extra: 1312 / 1209,
  20899. bottom: 0.025
  20900. }
  20901. },
  20902. back: {
  20903. height: math.unit(6, "feet"),
  20904. weight: math.unit(150, "lb"),
  20905. name: "Back",
  20906. image: {
  20907. source: "./media/characters/hipster/back.svg",
  20908. extra: 1281 / 1196,
  20909. bottom: 0.01
  20910. }
  20911. },
  20912. },
  20913. [
  20914. {
  20915. name: "Micro",
  20916. height: math.unit(1, "mm")
  20917. },
  20918. {
  20919. name: "Normal",
  20920. height: math.unit(4, "inches"),
  20921. default: true
  20922. },
  20923. {
  20924. name: "Macro",
  20925. height: math.unit(500, "feet")
  20926. },
  20927. {
  20928. name: "Megamacro",
  20929. height: math.unit(1000, "miles")
  20930. },
  20931. ]
  20932. ))
  20933. characterMakers.push(() => makeCharacter(
  20934. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20935. {
  20936. front: {
  20937. height: math.unit(6, "feet"),
  20938. weight: math.unit(150, "lb"),
  20939. name: "Front",
  20940. image: {
  20941. source: "./media/characters/tendirmuldr/front.svg",
  20942. extra: 1878 / 1772,
  20943. bottom: 0.015
  20944. }
  20945. },
  20946. },
  20947. [
  20948. {
  20949. name: "Megamacro",
  20950. height: math.unit(1500, "miles"),
  20951. default: true
  20952. },
  20953. ]
  20954. ))
  20955. characterMakers.push(() => makeCharacter(
  20956. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20957. {
  20958. front: {
  20959. height: math.unit(14, "feet"),
  20960. weight: math.unit(12000, "lb"),
  20961. name: "Front",
  20962. image: {
  20963. source: "./media/characters/mort/front.svg",
  20964. extra: 365 / 318,
  20965. bottom: 0.01
  20966. }
  20967. },
  20968. side: {
  20969. height: math.unit(14, "feet"),
  20970. weight: math.unit(12000, "lb"),
  20971. name: "Side",
  20972. image: {
  20973. source: "./media/characters/mort/side.svg",
  20974. extra: 365 / 318,
  20975. bottom: 0.052
  20976. },
  20977. default: true
  20978. },
  20979. back: {
  20980. height: math.unit(14, "feet"),
  20981. weight: math.unit(12000, "lb"),
  20982. name: "Back",
  20983. image: {
  20984. source: "./media/characters/mort/back.svg",
  20985. extra: 371 / 332,
  20986. bottom: 0.18
  20987. }
  20988. },
  20989. },
  20990. [
  20991. {
  20992. name: "Normal",
  20993. height: math.unit(14, "feet"),
  20994. default: true
  20995. },
  20996. ]
  20997. ))
  20998. characterMakers.push(() => makeCharacter(
  20999. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21000. {
  21001. front: {
  21002. height: math.unit(8, "feet"),
  21003. weight: math.unit(1, "ton"),
  21004. name: "Front",
  21005. image: {
  21006. source: "./media/characters/lycoa/front.svg",
  21007. extra: 1836/1728,
  21008. bottom: 81/1917
  21009. }
  21010. },
  21011. back: {
  21012. height: math.unit(8, "feet"),
  21013. weight: math.unit(1, "ton"),
  21014. name: "Back",
  21015. image: {
  21016. source: "./media/characters/lycoa/back.svg",
  21017. extra: 1785/1720,
  21018. bottom: 91/1876
  21019. }
  21020. },
  21021. head: {
  21022. height: math.unit(1.6243, "feet"),
  21023. name: "Head",
  21024. image: {
  21025. source: "./media/characters/lycoa/head.svg",
  21026. extra: 1011/782,
  21027. bottom: 0/1011
  21028. }
  21029. },
  21030. tailmaw: {
  21031. height: math.unit(1.9, "feet"),
  21032. name: "Tailmaw",
  21033. image: {
  21034. source: "./media/characters/lycoa/tailmaw.svg"
  21035. }
  21036. },
  21037. tentacles: {
  21038. height: math.unit(2.1, "feet"),
  21039. name: "Tentacles",
  21040. image: {
  21041. source: "./media/characters/lycoa/tentacles.svg"
  21042. }
  21043. },
  21044. dick: {
  21045. height: math.unit(1.73, "feet"),
  21046. name: "Dick",
  21047. image: {
  21048. source: "./media/characters/lycoa/dick.svg"
  21049. }
  21050. },
  21051. },
  21052. [
  21053. {
  21054. name: "Normal",
  21055. height: math.unit(8, "feet"),
  21056. default: true
  21057. },
  21058. {
  21059. name: "Macro",
  21060. height: math.unit(30, "feet")
  21061. },
  21062. ]
  21063. ))
  21064. characterMakers.push(() => makeCharacter(
  21065. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21066. {
  21067. front: {
  21068. height: math.unit(4 + 2 / 12, "feet"),
  21069. weight: math.unit(70, "lb"),
  21070. name: "Front",
  21071. image: {
  21072. source: "./media/characters/naldara/front.svg",
  21073. extra: 1664/1387,
  21074. bottom: 81/1745
  21075. },
  21076. form: "anthro",
  21077. default: true
  21078. },
  21079. naga: {
  21080. height: math.unit(20, "feet"),
  21081. weight: math.unit(15000, "kg"),
  21082. name: "Front",
  21083. image: {
  21084. source: "./media/characters/naldara/naga.svg",
  21085. extra: 1590/1396,
  21086. bottom: 285/1875
  21087. },
  21088. form: "naga",
  21089. default: true
  21090. },
  21091. },
  21092. [
  21093. {
  21094. name: "Normal",
  21095. height: math.unit(4 + 2 / 12, "feet"),
  21096. form: "anthro",
  21097. default: true
  21098. },
  21099. {
  21100. name: "Normal",
  21101. height: math.unit(20, "feet"),
  21102. form: "naga",
  21103. default: true
  21104. },
  21105. ],
  21106. {
  21107. "anthro": {
  21108. name: "Anthro",
  21109. default: true
  21110. },
  21111. "naga": {
  21112. name: "Naga"
  21113. }
  21114. }
  21115. ))
  21116. characterMakers.push(() => makeCharacter(
  21117. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21118. {
  21119. front: {
  21120. height: math.unit(13 + 7 / 12, "feet"),
  21121. weight: math.unit(1500, "lb"),
  21122. name: "Front",
  21123. image: {
  21124. source: "./media/characters/briar/front.svg",
  21125. extra: 1223/1157,
  21126. bottom: 123/1346
  21127. }
  21128. },
  21129. },
  21130. [
  21131. {
  21132. name: "Normal",
  21133. height: math.unit(13 + 7 / 12, "feet"),
  21134. default: true
  21135. },
  21136. ]
  21137. ))
  21138. characterMakers.push(() => makeCharacter(
  21139. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21140. {
  21141. side: {
  21142. height: math.unit(16, "feet"),
  21143. weight: math.unit(500, "lb"),
  21144. name: "Side",
  21145. image: {
  21146. source: "./media/characters/vanguard/side.svg",
  21147. extra: 1022/914,
  21148. bottom: 30/1052
  21149. }
  21150. },
  21151. sideAlt: {
  21152. height: math.unit(10, "feet"),
  21153. weight: math.unit(500, "lb"),
  21154. name: "Side (Alt)",
  21155. image: {
  21156. source: "./media/characters/vanguard/side-alt.svg",
  21157. extra: 502 / 425,
  21158. bottom: 0.087
  21159. }
  21160. },
  21161. },
  21162. [
  21163. {
  21164. name: "Normal",
  21165. height: math.unit(17.71, "feet"),
  21166. default: true
  21167. },
  21168. ]
  21169. ))
  21170. characterMakers.push(() => makeCharacter(
  21171. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21172. {
  21173. front: {
  21174. height: math.unit(7.5, "feet"),
  21175. weight: math.unit(2, "lb"),
  21176. name: "Front",
  21177. image: {
  21178. source: "./media/characters/artemis/work-safe-front.svg",
  21179. extra: 1192 / 1075,
  21180. bottom: 0.07
  21181. },
  21182. form: "work-safe",
  21183. default: true
  21184. },
  21185. frontNsfw: {
  21186. height: math.unit(7.5, "feet"),
  21187. weight: math.unit(2, "lb"),
  21188. name: "Front",
  21189. image: {
  21190. source: "./media/characters/artemis/calibrating-front.svg",
  21191. extra: 1192 / 1075,
  21192. bottom: 0.07
  21193. },
  21194. form: "calibrating",
  21195. default: true
  21196. },
  21197. frontNsfwer: {
  21198. height: math.unit(7.5, "feet"),
  21199. weight: math.unit(2, "lb"),
  21200. name: "Front",
  21201. image: {
  21202. source: "./media/characters/artemis/oversize-load-front.svg",
  21203. extra: 1192 / 1075,
  21204. bottom: 0.07
  21205. },
  21206. form: "oversize-load",
  21207. default: true
  21208. },
  21209. side: {
  21210. height: math.unit(7.5, "feet"),
  21211. weight: math.unit(2, "lb"),
  21212. name: "Side",
  21213. image: {
  21214. source: "./media/characters/artemis/work-safe-side.svg",
  21215. extra: 1192 / 1075,
  21216. bottom: 0.07
  21217. },
  21218. form: "work-safe"
  21219. },
  21220. sideNsfw: {
  21221. height: math.unit(7.5, "feet"),
  21222. weight: math.unit(2, "lb"),
  21223. name: "Side",
  21224. image: {
  21225. source: "./media/characters/artemis/calibrating-side.svg",
  21226. extra: 1192 / 1075,
  21227. bottom: 0.07
  21228. },
  21229. form: "calibrating"
  21230. },
  21231. sideNsfwer: {
  21232. height: math.unit(7.5, "feet"),
  21233. weight: math.unit(2, "lb"),
  21234. name: "Side",
  21235. image: {
  21236. source: "./media/characters/artemis/oversize-load-side.svg",
  21237. extra: 1192 / 1075,
  21238. bottom: 0.07
  21239. },
  21240. form: "oversize-load"
  21241. },
  21242. maw: {
  21243. height: math.unit(1.1, "feet"),
  21244. name: "Maw",
  21245. image: {
  21246. source: "./media/characters/artemis/maw.svg"
  21247. },
  21248. form: "work-safe"
  21249. },
  21250. stomach: {
  21251. height: math.unit(0.95, "feet"),
  21252. name: "Stomach",
  21253. image: {
  21254. source: "./media/characters/artemis/stomach.svg"
  21255. },
  21256. form: "work-safe"
  21257. },
  21258. dickCanine: {
  21259. height: math.unit(1, "feet"),
  21260. name: "Dick (Canine)",
  21261. image: {
  21262. source: "./media/characters/artemis/dick-canine.svg"
  21263. },
  21264. form: "calibrating"
  21265. },
  21266. dickEquine: {
  21267. height: math.unit(0.85, "feet"),
  21268. name: "Dick (Equine)",
  21269. image: {
  21270. source: "./media/characters/artemis/dick-equine.svg"
  21271. },
  21272. form: "calibrating"
  21273. },
  21274. dickExotic: {
  21275. height: math.unit(0.85, "feet"),
  21276. name: "Dick (Exotic)",
  21277. image: {
  21278. source: "./media/characters/artemis/dick-exotic.svg"
  21279. },
  21280. form: "calibrating"
  21281. },
  21282. dickCanineBigger: {
  21283. height: math.unit(1 * 1.33, "feet"),
  21284. name: "Dick (Canine)",
  21285. image: {
  21286. source: "./media/characters/artemis/dick-canine.svg"
  21287. },
  21288. form: "oversize-load"
  21289. },
  21290. dickEquineBigger: {
  21291. height: math.unit(0.85 * 1.33, "feet"),
  21292. name: "Dick (Equine)",
  21293. image: {
  21294. source: "./media/characters/artemis/dick-equine.svg"
  21295. },
  21296. form: "oversize-load"
  21297. },
  21298. dickExoticBigger: {
  21299. height: math.unit(0.85 * 1.33, "feet"),
  21300. name: "Dick (Exotic)",
  21301. image: {
  21302. source: "./media/characters/artemis/dick-exotic.svg"
  21303. },
  21304. form: "oversize-load"
  21305. },
  21306. },
  21307. [
  21308. {
  21309. name: "Normal",
  21310. height: math.unit(7.5, "feet"),
  21311. form: "work-safe",
  21312. default: true
  21313. },
  21314. {
  21315. name: "Normal",
  21316. height: math.unit(7.5, "feet"),
  21317. form: "calibrating",
  21318. default: true
  21319. },
  21320. {
  21321. name: "Normal",
  21322. height: math.unit(7.5, "feet"),
  21323. form: "oversize-load",
  21324. default: true
  21325. },
  21326. {
  21327. name: "Enlarged",
  21328. height: math.unit(12, "feet"),
  21329. form: "work-safe",
  21330. },
  21331. {
  21332. name: "Enlarged",
  21333. height: math.unit(12, "feet"),
  21334. form: "calibrating",
  21335. },
  21336. {
  21337. name: "Enlarged",
  21338. height: math.unit(12, "feet"),
  21339. form: "oversize-load",
  21340. },
  21341. ],
  21342. {
  21343. "work-safe": {
  21344. name: "Work-Safe",
  21345. default: true
  21346. },
  21347. "calibrating": {
  21348. name: "Calibrating"
  21349. },
  21350. "oversize-load": {
  21351. name: "Oversize Load"
  21352. }
  21353. }
  21354. ))
  21355. characterMakers.push(() => makeCharacter(
  21356. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21357. {
  21358. front: {
  21359. height: math.unit(5 + 3 / 12, "feet"),
  21360. weight: math.unit(160, "lb"),
  21361. name: "Front",
  21362. image: {
  21363. source: "./media/characters/kira/front.svg",
  21364. extra: 906 / 786,
  21365. bottom: 0.01
  21366. }
  21367. },
  21368. back: {
  21369. height: math.unit(5 + 3 / 12, "feet"),
  21370. weight: math.unit(160, "lb"),
  21371. name: "Back",
  21372. image: {
  21373. source: "./media/characters/kira/back.svg",
  21374. extra: 882 / 757,
  21375. bottom: 0.005
  21376. }
  21377. },
  21378. frontDressed: {
  21379. height: math.unit(5 + 3 / 12, "feet"),
  21380. weight: math.unit(160, "lb"),
  21381. name: "Front (Dressed)",
  21382. image: {
  21383. source: "./media/characters/kira/front-dressed.svg",
  21384. extra: 906 / 786,
  21385. bottom: 0.01
  21386. }
  21387. },
  21388. beans: {
  21389. height: math.unit(0.92, "feet"),
  21390. name: "Beans",
  21391. image: {
  21392. source: "./media/characters/kira/beans.svg"
  21393. }
  21394. },
  21395. },
  21396. [
  21397. {
  21398. name: "Normal",
  21399. height: math.unit(5 + 3 / 12, "feet"),
  21400. default: true
  21401. },
  21402. ]
  21403. ))
  21404. characterMakers.push(() => makeCharacter(
  21405. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21406. {
  21407. front: {
  21408. height: math.unit(5 + 4 / 12, "feet"),
  21409. weight: math.unit(145, "lb"),
  21410. name: "Front",
  21411. image: {
  21412. source: "./media/characters/scramble/front.svg",
  21413. extra: 763 / 727,
  21414. bottom: 0.05
  21415. }
  21416. },
  21417. back: {
  21418. height: math.unit(5 + 4 / 12, "feet"),
  21419. weight: math.unit(145, "lb"),
  21420. name: "Back",
  21421. image: {
  21422. source: "./media/characters/scramble/back.svg",
  21423. extra: 826 / 737,
  21424. bottom: 0.002
  21425. }
  21426. },
  21427. },
  21428. [
  21429. {
  21430. name: "Normal",
  21431. height: math.unit(5 + 4 / 12, "feet"),
  21432. default: true
  21433. },
  21434. ]
  21435. ))
  21436. characterMakers.push(() => makeCharacter(
  21437. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21438. {
  21439. side: {
  21440. height: math.unit(6 + 2 / 12, "feet"),
  21441. weight: math.unit(190, "lb"),
  21442. name: "Side",
  21443. image: {
  21444. source: "./media/characters/biscuit/side.svg",
  21445. extra: 858 / 791,
  21446. bottom: 0.044
  21447. }
  21448. },
  21449. },
  21450. [
  21451. {
  21452. name: "Normal",
  21453. height: math.unit(6 + 2 / 12, "feet"),
  21454. default: true
  21455. },
  21456. ]
  21457. ))
  21458. characterMakers.push(() => makeCharacter(
  21459. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21460. {
  21461. front: {
  21462. height: math.unit(5 + 2 / 12, "feet"),
  21463. weight: math.unit(120, "lb"),
  21464. name: "Front",
  21465. image: {
  21466. source: "./media/characters/poffin/front.svg",
  21467. extra: 786 / 680,
  21468. bottom: 0.005
  21469. }
  21470. },
  21471. },
  21472. [
  21473. {
  21474. name: "Normal",
  21475. height: math.unit(5 + 2 / 12, "feet"),
  21476. default: true
  21477. },
  21478. ]
  21479. ))
  21480. characterMakers.push(() => makeCharacter(
  21481. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21482. {
  21483. front: {
  21484. height: math.unit(6 + 3 / 12, "feet"),
  21485. weight: math.unit(519, "lb"),
  21486. name: "Front",
  21487. image: {
  21488. source: "./media/characters/dhari/front.svg",
  21489. extra: 1048 / 946,
  21490. bottom: 0.015
  21491. }
  21492. },
  21493. back: {
  21494. height: math.unit(6 + 3 / 12, "feet"),
  21495. weight: math.unit(519, "lb"),
  21496. name: "Back",
  21497. image: {
  21498. source: "./media/characters/dhari/back.svg",
  21499. extra: 1048 / 931,
  21500. bottom: 0.005
  21501. }
  21502. },
  21503. frontDressed: {
  21504. height: math.unit(6 + 3 / 12, "feet"),
  21505. weight: math.unit(519, "lb"),
  21506. name: "Front (Dressed)",
  21507. image: {
  21508. source: "./media/characters/dhari/front-dressed.svg",
  21509. extra: 1713 / 1546,
  21510. bottom: 0.02
  21511. }
  21512. },
  21513. backDressed: {
  21514. height: math.unit(6 + 3 / 12, "feet"),
  21515. weight: math.unit(519, "lb"),
  21516. name: "Back (Dressed)",
  21517. image: {
  21518. source: "./media/characters/dhari/back-dressed.svg",
  21519. extra: 1699 / 1537,
  21520. bottom: 0.01
  21521. }
  21522. },
  21523. maw: {
  21524. height: math.unit(0.95, "feet"),
  21525. name: "Maw",
  21526. image: {
  21527. source: "./media/characters/dhari/maw.svg"
  21528. }
  21529. },
  21530. wereFront: {
  21531. height: math.unit(12 + 8 / 12, "feet"),
  21532. weight: math.unit(4000, "lb"),
  21533. name: "Front (Were)",
  21534. image: {
  21535. source: "./media/characters/dhari/were-front.svg",
  21536. extra: 1065 / 969,
  21537. bottom: 0.015
  21538. }
  21539. },
  21540. wereBack: {
  21541. height: math.unit(12 + 8 / 12, "feet"),
  21542. weight: math.unit(4000, "lb"),
  21543. name: "Back (Were)",
  21544. image: {
  21545. source: "./media/characters/dhari/were-back.svg",
  21546. extra: 1065 / 969,
  21547. bottom: 0.012
  21548. }
  21549. },
  21550. wereMaw: {
  21551. height: math.unit(0.625, "meters"),
  21552. name: "Maw (Were)",
  21553. image: {
  21554. source: "./media/characters/dhari/were-maw.svg"
  21555. }
  21556. },
  21557. },
  21558. [
  21559. {
  21560. name: "Normal",
  21561. height: math.unit(6 + 3 / 12, "feet"),
  21562. default: true
  21563. },
  21564. ]
  21565. ))
  21566. characterMakers.push(() => makeCharacter(
  21567. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21568. {
  21569. anthro: {
  21570. height: math.unit(5 + 7 / 12, "feet"),
  21571. weight: math.unit(175, "lb"),
  21572. name: "Anthro",
  21573. image: {
  21574. source: "./media/characters/rena-dyne/anthro.svg",
  21575. extra: 1849 / 1785,
  21576. bottom: 0.005
  21577. }
  21578. },
  21579. taur: {
  21580. height: math.unit(15 + 6 / 12, "feet"),
  21581. weight: math.unit(8000, "lb"),
  21582. name: "Taur",
  21583. image: {
  21584. source: "./media/characters/rena-dyne/taur.svg",
  21585. extra: 2315 / 2234,
  21586. bottom: 0.033
  21587. }
  21588. },
  21589. },
  21590. [
  21591. {
  21592. name: "Normal",
  21593. height: math.unit(5 + 7 / 12, "feet"),
  21594. default: true
  21595. },
  21596. ]
  21597. ))
  21598. characterMakers.push(() => makeCharacter(
  21599. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21600. {
  21601. front: {
  21602. height: math.unit(8, "feet"),
  21603. weight: math.unit(600, "lb"),
  21604. name: "Front",
  21605. image: {
  21606. source: "./media/characters/weremeep/front.svg",
  21607. extra: 967 / 862,
  21608. bottom: 0.01
  21609. }
  21610. },
  21611. },
  21612. [
  21613. {
  21614. name: "Normal",
  21615. height: math.unit(8, "feet"),
  21616. default: true
  21617. },
  21618. {
  21619. name: "Lorg",
  21620. height: math.unit(12, "feet")
  21621. },
  21622. {
  21623. name: "Oh Lawd She Comin'",
  21624. height: math.unit(20, "feet")
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21630. {
  21631. front: {
  21632. height: math.unit(4, "feet"),
  21633. weight: math.unit(90, "lb"),
  21634. name: "Front",
  21635. image: {
  21636. source: "./media/characters/reza/front.svg",
  21637. extra: 1183 / 1111,
  21638. bottom: 0.017
  21639. }
  21640. },
  21641. back: {
  21642. height: math.unit(4, "feet"),
  21643. weight: math.unit(90, "lb"),
  21644. name: "Back",
  21645. image: {
  21646. source: "./media/characters/reza/back.svg",
  21647. extra: 1183 / 1111,
  21648. bottom: 0.01
  21649. }
  21650. },
  21651. drake: {
  21652. height: math.unit(30, "feet"),
  21653. weight: math.unit(246960, "lb"),
  21654. name: "Drake",
  21655. image: {
  21656. source: "./media/characters/reza/drake.svg",
  21657. extra: 2350 / 2024,
  21658. bottom: 60.7 / 2403
  21659. }
  21660. },
  21661. },
  21662. [
  21663. {
  21664. name: "Normal",
  21665. height: math.unit(4, "feet"),
  21666. default: true
  21667. },
  21668. ]
  21669. ))
  21670. characterMakers.push(() => makeCharacter(
  21671. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21672. {
  21673. side: {
  21674. height: math.unit(15, "feet"),
  21675. weight: math.unit(14, "tons"),
  21676. name: "Side",
  21677. image: {
  21678. source: "./media/characters/athea/side.svg",
  21679. extra: 960 / 540,
  21680. bottom: 0.003
  21681. }
  21682. },
  21683. sitting: {
  21684. height: math.unit(6 * 2.85, "feet"),
  21685. weight: math.unit(14, "tons"),
  21686. name: "Sitting",
  21687. image: {
  21688. source: "./media/characters/athea/sitting.svg",
  21689. extra: 621 / 581,
  21690. bottom: 0.075
  21691. }
  21692. },
  21693. maw: {
  21694. height: math.unit(7.59498031496063, "feet"),
  21695. name: "Maw",
  21696. image: {
  21697. source: "./media/characters/athea/maw.svg"
  21698. }
  21699. },
  21700. },
  21701. [
  21702. {
  21703. name: "Lap Cat",
  21704. height: math.unit(2.5, "feet")
  21705. },
  21706. {
  21707. name: "Minimacro",
  21708. height: math.unit(15, "feet"),
  21709. default: true
  21710. },
  21711. {
  21712. name: "Macro",
  21713. height: math.unit(120, "feet")
  21714. },
  21715. {
  21716. name: "Macro+",
  21717. height: math.unit(640, "feet")
  21718. },
  21719. {
  21720. name: "Colossus",
  21721. height: math.unit(2.2, "miles")
  21722. },
  21723. ]
  21724. ))
  21725. characterMakers.push(() => makeCharacter(
  21726. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21727. {
  21728. front: {
  21729. height: math.unit(8 + 8 / 12, "feet"),
  21730. weight: math.unit(130, "kg"),
  21731. name: "Front",
  21732. image: {
  21733. source: "./media/characters/seroko/front.svg",
  21734. extra: 1385 / 1280,
  21735. bottom: 0.025
  21736. }
  21737. },
  21738. back: {
  21739. height: math.unit(8 + 8 / 12, "feet"),
  21740. weight: math.unit(130, "kg"),
  21741. name: "Back",
  21742. image: {
  21743. source: "./media/characters/seroko/back.svg",
  21744. extra: 1369 / 1238,
  21745. bottom: 0.018
  21746. }
  21747. },
  21748. frontDressed: {
  21749. height: math.unit(8 + 8 / 12, "feet"),
  21750. weight: math.unit(130, "kg"),
  21751. name: "Front (Dressed)",
  21752. image: {
  21753. source: "./media/characters/seroko/front-dressed.svg",
  21754. extra: 1366 / 1275,
  21755. bottom: 0.03
  21756. }
  21757. },
  21758. },
  21759. [
  21760. {
  21761. name: "Normal",
  21762. height: math.unit(8 + 8 / 12, "feet"),
  21763. default: true
  21764. },
  21765. ]
  21766. ))
  21767. characterMakers.push(() => makeCharacter(
  21768. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21769. {
  21770. front: {
  21771. height: math.unit(5.5, "feet"),
  21772. weight: math.unit(160, "lb"),
  21773. name: "Front",
  21774. image: {
  21775. source: "./media/characters/quatzi/front.svg",
  21776. extra: 2346 / 2242,
  21777. bottom: 0.015
  21778. }
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Normal",
  21784. height: math.unit(5.5, "feet"),
  21785. default: true
  21786. },
  21787. {
  21788. name: "Big",
  21789. height: math.unit(7.7, "feet")
  21790. },
  21791. ]
  21792. ))
  21793. characterMakers.push(() => makeCharacter(
  21794. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21795. {
  21796. front: {
  21797. height: math.unit(5 + 11 / 12, "feet"),
  21798. weight: math.unit(180, "lb"),
  21799. name: "Front",
  21800. image: {
  21801. source: "./media/characters/sen/front.svg",
  21802. extra: 1321 / 1254,
  21803. bottom: 0.015
  21804. }
  21805. },
  21806. side: {
  21807. height: math.unit(5 + 11 / 12, "feet"),
  21808. weight: math.unit(180, "lb"),
  21809. name: "Side",
  21810. image: {
  21811. source: "./media/characters/sen/side.svg",
  21812. extra: 1321 / 1254,
  21813. bottom: 0.007
  21814. }
  21815. },
  21816. back: {
  21817. height: math.unit(5 + 11 / 12, "feet"),
  21818. weight: math.unit(180, "lb"),
  21819. name: "Back",
  21820. image: {
  21821. source: "./media/characters/sen/back.svg",
  21822. extra: 1321 / 1254
  21823. }
  21824. },
  21825. },
  21826. [
  21827. {
  21828. name: "Normal",
  21829. height: math.unit(5 + 11 / 12, "feet"),
  21830. default: true
  21831. },
  21832. ]
  21833. ))
  21834. characterMakers.push(() => makeCharacter(
  21835. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21836. {
  21837. front: {
  21838. height: math.unit(166.6, "cm"),
  21839. weight: math.unit(66.6, "kg"),
  21840. name: "Front",
  21841. image: {
  21842. source: "./media/characters/fruity/front.svg",
  21843. extra: 1510 / 1386,
  21844. bottom: 0.04
  21845. }
  21846. },
  21847. back: {
  21848. height: math.unit(166.6, "cm"),
  21849. weight: math.unit(66.6, "lb"),
  21850. name: "Back",
  21851. image: {
  21852. source: "./media/characters/fruity/back.svg",
  21853. extra: 1563 / 1435,
  21854. bottom: 0.005
  21855. }
  21856. },
  21857. },
  21858. [
  21859. {
  21860. name: "Normal",
  21861. height: math.unit(166.6, "cm"),
  21862. default: true
  21863. },
  21864. {
  21865. name: "Demonic",
  21866. height: math.unit(166.6, "feet")
  21867. },
  21868. ]
  21869. ))
  21870. characterMakers.push(() => makeCharacter(
  21871. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21872. {
  21873. side: {
  21874. height: math.unit(10, "feet"),
  21875. weight: math.unit(500, "lb"),
  21876. name: "Side",
  21877. image: {
  21878. source: "./media/characters/zost/side.svg",
  21879. extra: 2870/2533,
  21880. bottom: 252/3122
  21881. }
  21882. },
  21883. mawFront: {
  21884. height: math.unit(1.08, "meters"),
  21885. name: "Maw (Front)",
  21886. image: {
  21887. source: "./media/characters/zost/maw-front.svg"
  21888. }
  21889. },
  21890. mawSide: {
  21891. height: math.unit(2.66, "feet"),
  21892. name: "Maw (Side)",
  21893. image: {
  21894. source: "./media/characters/zost/maw-side.svg"
  21895. }
  21896. },
  21897. wingspan: {
  21898. height: math.unit(7.4, "feet"),
  21899. name: "Wingspan",
  21900. image: {
  21901. source: "./media/characters/zost/wingspan.svg"
  21902. }
  21903. },
  21904. },
  21905. [
  21906. {
  21907. name: "Normal",
  21908. height: math.unit(10, "feet"),
  21909. default: true
  21910. },
  21911. ]
  21912. ))
  21913. characterMakers.push(() => makeCharacter(
  21914. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21915. {
  21916. front: {
  21917. height: math.unit(5 + 4 / 12, "feet"),
  21918. weight: math.unit(120, "lb"),
  21919. name: "Front",
  21920. image: {
  21921. source: "./media/characters/luci/front.svg",
  21922. extra: 1985 / 1884,
  21923. bottom: 0.04
  21924. }
  21925. },
  21926. back: {
  21927. height: math.unit(5 + 4 / 12, "feet"),
  21928. weight: math.unit(120, "lb"),
  21929. name: "Back",
  21930. image: {
  21931. source: "./media/characters/luci/back.svg",
  21932. extra: 1892 / 1791,
  21933. bottom: 0.002
  21934. }
  21935. },
  21936. },
  21937. [
  21938. {
  21939. name: "Normal",
  21940. height: math.unit(5 + 4 / 12, "feet"),
  21941. default: true
  21942. },
  21943. ]
  21944. ))
  21945. characterMakers.push(() => makeCharacter(
  21946. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21947. {
  21948. front: {
  21949. height: math.unit(1500, "feet"),
  21950. weight: math.unit(3.8e6, "tons"),
  21951. name: "Front",
  21952. image: {
  21953. source: "./media/characters/2th/front.svg",
  21954. extra: 3489 / 3350,
  21955. bottom: 0.1
  21956. }
  21957. },
  21958. foot: {
  21959. height: math.unit(461, "feet"),
  21960. name: "Foot",
  21961. image: {
  21962. source: "./media/characters/2th/foot.svg"
  21963. }
  21964. },
  21965. },
  21966. [
  21967. {
  21968. name: "\"Micro\"",
  21969. height: math.unit(15 + 7 / 12, "feet")
  21970. },
  21971. {
  21972. name: "Normal",
  21973. height: math.unit(1500, "feet"),
  21974. default: true
  21975. },
  21976. {
  21977. name: "Macro",
  21978. height: math.unit(5000, "feet")
  21979. },
  21980. {
  21981. name: "Megamacro",
  21982. height: math.unit(15, "miles")
  21983. },
  21984. {
  21985. name: "Gigamacro",
  21986. height: math.unit(4000, "miles")
  21987. },
  21988. {
  21989. name: "Galactic",
  21990. height: math.unit(50, "AU")
  21991. },
  21992. ]
  21993. ))
  21994. characterMakers.push(() => makeCharacter(
  21995. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21996. {
  21997. front: {
  21998. height: math.unit(5 + 6 / 12, "feet"),
  21999. weight: math.unit(220, "lb"),
  22000. name: "Front",
  22001. image: {
  22002. source: "./media/characters/amethyst/front.svg",
  22003. extra: 2078 / 2040,
  22004. bottom: 0.045
  22005. }
  22006. },
  22007. back: {
  22008. height: math.unit(5 + 6 / 12, "feet"),
  22009. weight: math.unit(220, "lb"),
  22010. name: "Back",
  22011. image: {
  22012. source: "./media/characters/amethyst/back.svg",
  22013. extra: 2021 / 1989,
  22014. bottom: 0.02
  22015. }
  22016. },
  22017. },
  22018. [
  22019. {
  22020. name: "Normal",
  22021. height: math.unit(5 + 6 / 12, "feet"),
  22022. default: true
  22023. },
  22024. ]
  22025. ))
  22026. characterMakers.push(() => makeCharacter(
  22027. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22028. {
  22029. front: {
  22030. height: math.unit(4 + 11 / 12, "feet"),
  22031. weight: math.unit(120, "lb"),
  22032. name: "Front",
  22033. image: {
  22034. source: "./media/characters/yumi-akiyama/front.svg",
  22035. extra: 1327 / 1235,
  22036. bottom: 0.02
  22037. }
  22038. },
  22039. back: {
  22040. height: math.unit(4 + 11 / 12, "feet"),
  22041. weight: math.unit(120, "lb"),
  22042. name: "Back",
  22043. image: {
  22044. source: "./media/characters/yumi-akiyama/back.svg",
  22045. extra: 1287 / 1245,
  22046. bottom: 0.002
  22047. }
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "Galactic",
  22053. height: math.unit(50, "galaxies"),
  22054. default: true
  22055. },
  22056. {
  22057. name: "Universal",
  22058. height: math.unit(100, "universes")
  22059. },
  22060. ]
  22061. ))
  22062. characterMakers.push(() => makeCharacter(
  22063. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22064. {
  22065. front: {
  22066. height: math.unit(8, "feet"),
  22067. weight: math.unit(500, "lb"),
  22068. name: "Front",
  22069. image: {
  22070. source: "./media/characters/rifter-yrmori/front.svg",
  22071. extra: 1180 / 1125,
  22072. bottom: 0.02
  22073. }
  22074. },
  22075. back: {
  22076. height: math.unit(8, "feet"),
  22077. weight: math.unit(500, "lb"),
  22078. name: "Back",
  22079. image: {
  22080. source: "./media/characters/rifter-yrmori/back.svg",
  22081. extra: 1190 / 1145,
  22082. bottom: 0.001
  22083. }
  22084. },
  22085. wings: {
  22086. height: math.unit(7.75, "feet"),
  22087. weight: math.unit(500, "lb"),
  22088. name: "Wings",
  22089. image: {
  22090. source: "./media/characters/rifter-yrmori/wings.svg",
  22091. extra: 1357 / 1285
  22092. }
  22093. },
  22094. maw: {
  22095. height: math.unit(0.8, "feet"),
  22096. name: "Maw",
  22097. image: {
  22098. source: "./media/characters/rifter-yrmori/maw.svg"
  22099. }
  22100. },
  22101. mawfront: {
  22102. height: math.unit(1.45, "feet"),
  22103. name: "Maw (Front)",
  22104. image: {
  22105. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22106. }
  22107. },
  22108. },
  22109. [
  22110. {
  22111. name: "Normal",
  22112. height: math.unit(8, "feet"),
  22113. default: true
  22114. },
  22115. {
  22116. name: "Macro",
  22117. height: math.unit(42, "meters")
  22118. },
  22119. ]
  22120. ))
  22121. characterMakers.push(() => makeCharacter(
  22122. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22123. {
  22124. were: {
  22125. height: math.unit(25 + 6 / 12, "feet"),
  22126. weight: math.unit(10000, "lb"),
  22127. name: "Were",
  22128. image: {
  22129. source: "./media/characters/tahajin/were.svg",
  22130. extra: 801 / 770,
  22131. bottom: 0.042
  22132. }
  22133. },
  22134. aquatic: {
  22135. height: math.unit(6 + 4 / 12, "feet"),
  22136. weight: math.unit(160, "lb"),
  22137. name: "Aquatic",
  22138. image: {
  22139. source: "./media/characters/tahajin/aquatic.svg",
  22140. extra: 572 / 542,
  22141. bottom: 0.04
  22142. }
  22143. },
  22144. chow: {
  22145. height: math.unit(8 + 11 / 12, "feet"),
  22146. weight: math.unit(450, "lb"),
  22147. name: "Chow",
  22148. image: {
  22149. source: "./media/characters/tahajin/chow.svg",
  22150. extra: 660 / 640,
  22151. bottom: 0.015
  22152. }
  22153. },
  22154. demiNaga: {
  22155. height: math.unit(6 + 8 / 12, "feet"),
  22156. weight: math.unit(300, "lb"),
  22157. name: "Demi Naga",
  22158. image: {
  22159. source: "./media/characters/tahajin/demi-naga.svg",
  22160. extra: 643 / 615,
  22161. bottom: 0.1
  22162. }
  22163. },
  22164. data: {
  22165. height: math.unit(5, "inches"),
  22166. weight: math.unit(0.1, "lb"),
  22167. name: "Data",
  22168. image: {
  22169. source: "./media/characters/tahajin/data.svg"
  22170. }
  22171. },
  22172. fluu: {
  22173. height: math.unit(5 + 7 / 12, "feet"),
  22174. weight: math.unit(140, "lb"),
  22175. name: "Fluu",
  22176. image: {
  22177. source: "./media/characters/tahajin/fluu.svg",
  22178. extra: 628 / 592,
  22179. bottom: 0.02
  22180. }
  22181. },
  22182. starWarrior: {
  22183. height: math.unit(4 + 5 / 12, "feet"),
  22184. weight: math.unit(50, "lb"),
  22185. name: "Star Warrior",
  22186. image: {
  22187. source: "./media/characters/tahajin/star-warrior.svg"
  22188. }
  22189. },
  22190. },
  22191. [
  22192. {
  22193. name: "Normal",
  22194. height: math.unit(25 + 6 / 12, "feet"),
  22195. default: true
  22196. },
  22197. ]
  22198. ))
  22199. characterMakers.push(() => makeCharacter(
  22200. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22201. {
  22202. front: {
  22203. height: math.unit(8, "feet"),
  22204. weight: math.unit(350, "lb"),
  22205. name: "Front",
  22206. image: {
  22207. source: "./media/characters/gabira/front.svg",
  22208. extra: 608 / 580,
  22209. bottom: 0.03
  22210. }
  22211. },
  22212. back: {
  22213. height: math.unit(8, "feet"),
  22214. weight: math.unit(350, "lb"),
  22215. name: "Back",
  22216. image: {
  22217. source: "./media/characters/gabira/back.svg",
  22218. extra: 608 / 580,
  22219. bottom: 0.03
  22220. }
  22221. },
  22222. },
  22223. [
  22224. {
  22225. name: "Normal",
  22226. height: math.unit(8, "feet"),
  22227. default: true
  22228. },
  22229. ]
  22230. ))
  22231. characterMakers.push(() => makeCharacter(
  22232. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22233. {
  22234. front: {
  22235. height: math.unit(5 + 3 / 12, "feet"),
  22236. weight: math.unit(137, "lb"),
  22237. name: "Front",
  22238. image: {
  22239. source: "./media/characters/sasha-katraine/front.svg",
  22240. extra: 1745/1694,
  22241. bottom: 37/1782
  22242. }
  22243. },
  22244. back: {
  22245. height: math.unit(5 + 3 / 12, "feet"),
  22246. weight: math.unit(137, "lb"),
  22247. name: "Back",
  22248. image: {
  22249. source: "./media/characters/sasha-katraine/back.svg",
  22250. extra: 1776/1699,
  22251. bottom: 26/1802
  22252. }
  22253. },
  22254. },
  22255. [
  22256. {
  22257. name: "Micro",
  22258. height: math.unit(5, "inches")
  22259. },
  22260. {
  22261. name: "Normal",
  22262. height: math.unit(5 + 3 / 12, "feet"),
  22263. default: true
  22264. },
  22265. ]
  22266. ))
  22267. characterMakers.push(() => makeCharacter(
  22268. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22269. {
  22270. side: {
  22271. height: math.unit(4, "inches"),
  22272. weight: math.unit(200, "grams"),
  22273. name: "Side",
  22274. image: {
  22275. source: "./media/characters/der/side.svg",
  22276. extra: 719 / 400,
  22277. bottom: 30.6 / 749.9187
  22278. }
  22279. },
  22280. },
  22281. [
  22282. {
  22283. name: "Micro",
  22284. height: math.unit(4, "inches"),
  22285. default: true
  22286. },
  22287. ]
  22288. ))
  22289. characterMakers.push(() => makeCharacter(
  22290. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22291. {
  22292. side: {
  22293. height: math.unit(30, "meters"),
  22294. weight: math.unit(700, "tonnes"),
  22295. name: "Side",
  22296. image: {
  22297. source: "./media/characters/fixerdragon/side.svg",
  22298. extra: (1293.0514 - 116.03) / 1106.86,
  22299. bottom: 116.03 / 1293.0514
  22300. }
  22301. },
  22302. },
  22303. [
  22304. {
  22305. name: "Planck",
  22306. height: math.unit(1.6e-35, "meters")
  22307. },
  22308. {
  22309. name: "Micro",
  22310. height: math.unit(0.4, "meters")
  22311. },
  22312. {
  22313. name: "Normal",
  22314. height: math.unit(30, "meters"),
  22315. default: true
  22316. },
  22317. {
  22318. name: "Megamacro",
  22319. height: math.unit(1.2, "megameters")
  22320. },
  22321. {
  22322. name: "Teramacro",
  22323. height: math.unit(130, "terameters")
  22324. },
  22325. {
  22326. name: "Yottamacro",
  22327. height: math.unit(6200, "yottameters")
  22328. },
  22329. ]
  22330. ));
  22331. characterMakers.push(() => makeCharacter(
  22332. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22333. {
  22334. front: {
  22335. height: math.unit(8, "feet"),
  22336. weight: math.unit(250, "lb"),
  22337. name: "Front",
  22338. image: {
  22339. source: "./media/characters/kite/front.svg",
  22340. extra: 2796 / 2659,
  22341. bottom: 0.002
  22342. }
  22343. },
  22344. },
  22345. [
  22346. {
  22347. name: "Normal",
  22348. height: math.unit(8, "feet"),
  22349. default: true
  22350. },
  22351. {
  22352. name: "Macro",
  22353. height: math.unit(360, "feet")
  22354. },
  22355. {
  22356. name: "Megamacro",
  22357. height: math.unit(1500, "feet")
  22358. },
  22359. ]
  22360. ))
  22361. characterMakers.push(() => makeCharacter(
  22362. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22363. {
  22364. front: {
  22365. height: math.unit(5 + 11/12, "feet"),
  22366. weight: math.unit(170, "lb"),
  22367. name: "Front",
  22368. image: {
  22369. source: "./media/characters/poojawa-vynar/front.svg",
  22370. extra: 1735/1585,
  22371. bottom: 96/1831
  22372. }
  22373. },
  22374. back: {
  22375. height: math.unit(5 + 11/12, "feet"),
  22376. weight: math.unit(170, "lb"),
  22377. name: "Back",
  22378. image: {
  22379. source: "./media/characters/poojawa-vynar/back.svg",
  22380. extra: 1749/1607,
  22381. bottom: 28/1777
  22382. }
  22383. },
  22384. male: {
  22385. height: math.unit(5 + 11/12, "feet"),
  22386. weight: math.unit(170, "lb"),
  22387. name: "Male",
  22388. image: {
  22389. source: "./media/characters/poojawa-vynar/male.svg",
  22390. extra: 1855/1713,
  22391. bottom: 63/1918
  22392. }
  22393. },
  22394. taur: {
  22395. height: math.unit(5 + 11/12, "feet"),
  22396. weight: math.unit(170, "lb"),
  22397. name: "Taur",
  22398. image: {
  22399. source: "./media/characters/poojawa-vynar/taur.svg",
  22400. extra: 1151/1059,
  22401. bottom: 356/1507
  22402. }
  22403. },
  22404. frontDressed: {
  22405. height: math.unit(5 + 11/12, "feet"),
  22406. weight: math.unit(170, "lb"),
  22407. name: "Front (Dressed)",
  22408. image: {
  22409. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22410. extra: 1735/1585,
  22411. bottom: 96/1831
  22412. }
  22413. },
  22414. backDressed: {
  22415. height: math.unit(5 + 11/12, "feet"),
  22416. weight: math.unit(170, "lb"),
  22417. name: "Back (Dressed)",
  22418. image: {
  22419. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22420. extra: 1749/1607,
  22421. bottom: 28/1777
  22422. }
  22423. },
  22424. maleDressed: {
  22425. height: math.unit(5 + 11/12, "feet"),
  22426. weight: math.unit(170, "lb"),
  22427. name: "Male (Dressed)",
  22428. image: {
  22429. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22430. extra: 1855/1713,
  22431. bottom: 63/1918
  22432. }
  22433. },
  22434. taurDressed: {
  22435. height: math.unit(5 + 11/12, "feet"),
  22436. weight: math.unit(170, "lb"),
  22437. name: "Taur (Dressed)",
  22438. image: {
  22439. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22440. extra: 1151/1059,
  22441. bottom: 356/1507
  22442. }
  22443. },
  22444. maw: {
  22445. height: math.unit(1.46, "feet"),
  22446. name: "Maw",
  22447. image: {
  22448. source: "./media/characters/poojawa-vynar/maw.svg"
  22449. }
  22450. },
  22451. head: {
  22452. height: math.unit(2.34, "feet"),
  22453. name: "Head",
  22454. image: {
  22455. source: "./media/characters/poojawa-vynar/head.svg"
  22456. }
  22457. },
  22458. paw: {
  22459. height: math.unit(1.61, "feet"),
  22460. name: "Paw",
  22461. image: {
  22462. source: "./media/characters/poojawa-vynar/paw.svg"
  22463. }
  22464. },
  22465. pawToering: {
  22466. height: math.unit(1.72, "feet"),
  22467. name: "Paw (Toering)",
  22468. image: {
  22469. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22470. }
  22471. },
  22472. toering: {
  22473. height: math.unit(2.9, "inches"),
  22474. name: "Toering",
  22475. image: {
  22476. source: "./media/characters/poojawa-vynar/toering.svg"
  22477. }
  22478. },
  22479. shaft: {
  22480. height: math.unit(0.625, "feet"),
  22481. name: "Shaft",
  22482. image: {
  22483. source: "./media/characters/poojawa-vynar/shaft.svg"
  22484. }
  22485. },
  22486. spade: {
  22487. height: math.unit(0.42, "feet"),
  22488. name: "Spade",
  22489. image: {
  22490. source: "./media/characters/poojawa-vynar/spade.svg"
  22491. }
  22492. },
  22493. },
  22494. [
  22495. {
  22496. name: "Shortstack",
  22497. height: math.unit(4, "feet")
  22498. },
  22499. {
  22500. name: "Normal",
  22501. height: math.unit(5 + 11 / 12, "feet"),
  22502. default: true
  22503. },
  22504. {
  22505. name: "Tauric",
  22506. height: math.unit(4, "meters")
  22507. },
  22508. ]
  22509. ))
  22510. characterMakers.push(() => makeCharacter(
  22511. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22512. {
  22513. front: {
  22514. height: math.unit(293, "meters"),
  22515. weight: math.unit(70400, "tons"),
  22516. name: "Front",
  22517. image: {
  22518. source: "./media/characters/violette/front.svg",
  22519. extra: 1227 / 1180,
  22520. bottom: 0.005
  22521. }
  22522. },
  22523. back: {
  22524. height: math.unit(293, "meters"),
  22525. weight: math.unit(70400, "tons"),
  22526. name: "Back",
  22527. image: {
  22528. source: "./media/characters/violette/back.svg",
  22529. extra: 1227 / 1180,
  22530. bottom: 0.005
  22531. }
  22532. },
  22533. },
  22534. [
  22535. {
  22536. name: "Macro",
  22537. height: math.unit(293, "meters"),
  22538. default: true
  22539. },
  22540. ]
  22541. ))
  22542. characterMakers.push(() => makeCharacter(
  22543. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22544. {
  22545. front: {
  22546. height: math.unit(1050, "feet"),
  22547. weight: math.unit(200000, "tons"),
  22548. name: "Front",
  22549. image: {
  22550. source: "./media/characters/alessandra/front.svg",
  22551. extra: 960 / 912,
  22552. bottom: 0.06
  22553. }
  22554. },
  22555. },
  22556. [
  22557. {
  22558. name: "Macro",
  22559. height: math.unit(1050, "feet")
  22560. },
  22561. {
  22562. name: "Macro+",
  22563. height: math.unit(900, "meters"),
  22564. default: true
  22565. },
  22566. ]
  22567. ))
  22568. characterMakers.push(() => makeCharacter(
  22569. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22570. {
  22571. front: {
  22572. height: math.unit(5, "feet"),
  22573. weight: math.unit(187, "lb"),
  22574. name: "Front",
  22575. image: {
  22576. source: "./media/characters/person/front.svg",
  22577. extra: 3087 / 2945,
  22578. bottom: 91 / 3181
  22579. }
  22580. },
  22581. },
  22582. [
  22583. {
  22584. name: "Micro",
  22585. height: math.unit(3, "inches")
  22586. },
  22587. {
  22588. name: "Normal",
  22589. height: math.unit(5, "feet"),
  22590. default: true
  22591. },
  22592. {
  22593. name: "Macro",
  22594. height: math.unit(90, "feet")
  22595. },
  22596. {
  22597. name: "Max Size",
  22598. height: math.unit(280, "feet")
  22599. },
  22600. ]
  22601. ))
  22602. characterMakers.push(() => makeCharacter(
  22603. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22604. {
  22605. front: {
  22606. height: math.unit(4.5, "meters"),
  22607. weight: math.unit(3200, "lb"),
  22608. name: "Front",
  22609. image: {
  22610. source: "./media/characters/ty/front.svg",
  22611. extra: 1038 / 960,
  22612. bottom: 31.156 / 1068
  22613. }
  22614. },
  22615. back: {
  22616. height: math.unit(4.5, "meters"),
  22617. weight: math.unit(3200, "lb"),
  22618. name: "Back",
  22619. image: {
  22620. source: "./media/characters/ty/back.svg",
  22621. extra: 1044 / 966,
  22622. bottom: 7.48 / 1049
  22623. }
  22624. },
  22625. },
  22626. [
  22627. {
  22628. name: "Normal",
  22629. height: math.unit(4.5, "meters"),
  22630. default: true
  22631. },
  22632. ]
  22633. ))
  22634. characterMakers.push(() => makeCharacter(
  22635. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22636. {
  22637. front: {
  22638. height: math.unit(5 + 4 / 12, "feet"),
  22639. weight: math.unit(115, "lb"),
  22640. name: "Front",
  22641. image: {
  22642. source: "./media/characters/rocky/front.svg",
  22643. extra: 1012 / 975,
  22644. bottom: 54 / 1066
  22645. }
  22646. },
  22647. },
  22648. [
  22649. {
  22650. name: "Normal",
  22651. height: math.unit(5 + 4 / 12, "feet"),
  22652. default: true
  22653. },
  22654. ]
  22655. ))
  22656. characterMakers.push(() => makeCharacter(
  22657. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22658. {
  22659. upright: {
  22660. height: math.unit(6, "meters"),
  22661. weight: math.unit(4000, "kg"),
  22662. name: "Upright",
  22663. image: {
  22664. source: "./media/characters/ruin/upright.svg",
  22665. extra: 668 / 661,
  22666. bottom: 42 / 799.8396
  22667. }
  22668. },
  22669. },
  22670. [
  22671. {
  22672. name: "Normal",
  22673. height: math.unit(6, "meters"),
  22674. default: true
  22675. },
  22676. ]
  22677. ))
  22678. characterMakers.push(() => makeCharacter(
  22679. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22680. {
  22681. front: {
  22682. height: math.unit(5, "feet"),
  22683. weight: math.unit(106, "lb"),
  22684. name: "Front",
  22685. image: {
  22686. source: "./media/characters/robin/front.svg",
  22687. extra: 862 / 799,
  22688. bottom: 42.4 / 914.8856
  22689. }
  22690. },
  22691. },
  22692. [
  22693. {
  22694. name: "Normal",
  22695. height: math.unit(5, "feet"),
  22696. default: true
  22697. },
  22698. ]
  22699. ))
  22700. characterMakers.push(() => makeCharacter(
  22701. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22702. {
  22703. side: {
  22704. height: math.unit(3, "feet"),
  22705. weight: math.unit(225, "lb"),
  22706. name: "Side",
  22707. image: {
  22708. source: "./media/characters/saian/side.svg",
  22709. extra: 566 / 356,
  22710. bottom: 79.7 / 643
  22711. }
  22712. },
  22713. maw: {
  22714. height: math.unit(2.85, "feet"),
  22715. name: "Maw",
  22716. image: {
  22717. source: "./media/characters/saian/maw.svg"
  22718. }
  22719. },
  22720. },
  22721. [
  22722. {
  22723. name: "Normal",
  22724. height: math.unit(3, "feet"),
  22725. default: true
  22726. },
  22727. ]
  22728. ))
  22729. characterMakers.push(() => makeCharacter(
  22730. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22731. {
  22732. side: {
  22733. height: math.unit(8, "feet"),
  22734. weight: math.unit(300, "lb"),
  22735. name: "Side",
  22736. image: {
  22737. source: "./media/characters/equus-silvermane/side.svg",
  22738. extra: 2176 / 2050,
  22739. bottom: 65.7 / 2245
  22740. }
  22741. },
  22742. front: {
  22743. height: math.unit(8, "feet"),
  22744. weight: math.unit(300, "lb"),
  22745. name: "Front",
  22746. image: {
  22747. source: "./media/characters/equus-silvermane/front.svg",
  22748. extra: 4633 / 4400,
  22749. bottom: 71.3 / 4706.915
  22750. }
  22751. },
  22752. sideStepping: {
  22753. height: math.unit(8, "feet"),
  22754. weight: math.unit(300, "lb"),
  22755. name: "Side (Stepping)",
  22756. image: {
  22757. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22758. extra: 1968 / 1860,
  22759. bottom: 16.4 / 1989
  22760. }
  22761. },
  22762. },
  22763. [
  22764. {
  22765. name: "Normal",
  22766. height: math.unit(8, "feet")
  22767. },
  22768. {
  22769. name: "Minimacro",
  22770. height: math.unit(75, "feet"),
  22771. default: true
  22772. },
  22773. {
  22774. name: "Macro",
  22775. height: math.unit(150, "feet")
  22776. },
  22777. {
  22778. name: "Macro+",
  22779. height: math.unit(1000, "feet")
  22780. },
  22781. {
  22782. name: "Megamacro",
  22783. height: math.unit(1, "mile")
  22784. },
  22785. ]
  22786. ))
  22787. characterMakers.push(() => makeCharacter(
  22788. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22789. {
  22790. side: {
  22791. height: math.unit(20, "feet"),
  22792. weight: math.unit(30000, "kg"),
  22793. name: "Side",
  22794. image: {
  22795. source: "./media/characters/windar/side.svg",
  22796. extra: 1491 / 1248,
  22797. bottom: 82.56 / 1568
  22798. }
  22799. },
  22800. },
  22801. [
  22802. {
  22803. name: "Normal",
  22804. height: math.unit(20, "feet"),
  22805. default: true
  22806. },
  22807. ]
  22808. ))
  22809. characterMakers.push(() => makeCharacter(
  22810. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22811. {
  22812. side: {
  22813. height: math.unit(15.66, "feet"),
  22814. weight: math.unit(150, "lb"),
  22815. name: "Side",
  22816. image: {
  22817. source: "./media/characters/melody/side.svg",
  22818. extra: 1097 / 944,
  22819. bottom: 11.8 / 1109
  22820. }
  22821. },
  22822. sideOutfit: {
  22823. height: math.unit(15.66, "feet"),
  22824. weight: math.unit(150, "lb"),
  22825. name: "Side (Outfit)",
  22826. image: {
  22827. source: "./media/characters/melody/side-outfit.svg",
  22828. extra: 1097 / 944,
  22829. bottom: 11.8 / 1109
  22830. }
  22831. },
  22832. },
  22833. [
  22834. {
  22835. name: "Normal",
  22836. height: math.unit(15.66, "feet"),
  22837. default: true
  22838. },
  22839. ]
  22840. ))
  22841. characterMakers.push(() => makeCharacter(
  22842. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22843. {
  22844. front: {
  22845. height: math.unit(8, "feet"),
  22846. weight: math.unit(325, "lb"),
  22847. name: "Front",
  22848. image: {
  22849. source: "./media/characters/windera/front.svg",
  22850. extra: 3180 / 2845,
  22851. bottom: 178 / 3365
  22852. }
  22853. },
  22854. },
  22855. [
  22856. {
  22857. name: "Normal",
  22858. height: math.unit(8, "feet"),
  22859. default: true
  22860. },
  22861. ]
  22862. ))
  22863. characterMakers.push(() => makeCharacter(
  22864. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22865. {
  22866. front: {
  22867. height: math.unit(28.75, "feet"),
  22868. weight: math.unit(2000, "kg"),
  22869. name: "Front",
  22870. image: {
  22871. source: "./media/characters/sonear/front.svg",
  22872. extra: 1041.1 / 964.9,
  22873. bottom: 53.7 / 1096.6
  22874. }
  22875. },
  22876. },
  22877. [
  22878. {
  22879. name: "Normal",
  22880. height: math.unit(28.75, "feet"),
  22881. default: true
  22882. },
  22883. ]
  22884. ))
  22885. characterMakers.push(() => makeCharacter(
  22886. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22887. {
  22888. side: {
  22889. height: math.unit(25.5, "feet"),
  22890. weight: math.unit(23000, "kg"),
  22891. name: "Side",
  22892. image: {
  22893. source: "./media/characters/kanara/side.svg"
  22894. }
  22895. },
  22896. },
  22897. [
  22898. {
  22899. name: "Normal",
  22900. height: math.unit(25.5, "feet"),
  22901. default: true
  22902. },
  22903. ]
  22904. ))
  22905. characterMakers.push(() => makeCharacter(
  22906. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22907. {
  22908. side: {
  22909. height: math.unit(10, "feet"),
  22910. weight: math.unit(1000, "kg"),
  22911. name: "Side",
  22912. image: {
  22913. source: "./media/characters/ereus/side.svg",
  22914. extra: 1157 / 959,
  22915. bottom: 153 / 1312.5
  22916. }
  22917. },
  22918. },
  22919. [
  22920. {
  22921. name: "Normal",
  22922. height: math.unit(10, "feet"),
  22923. default: true
  22924. },
  22925. ]
  22926. ))
  22927. characterMakers.push(() => makeCharacter(
  22928. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22929. {
  22930. side: {
  22931. height: math.unit(4.5, "feet"),
  22932. weight: math.unit(500, "lb"),
  22933. name: "Side",
  22934. image: {
  22935. source: "./media/characters/e-ter/side.svg",
  22936. extra: 1550 / 1248,
  22937. bottom: 146 / 1694
  22938. }
  22939. },
  22940. },
  22941. [
  22942. {
  22943. name: "Normal",
  22944. height: math.unit(4.5, "feet"),
  22945. default: true
  22946. },
  22947. ]
  22948. ))
  22949. characterMakers.push(() => makeCharacter(
  22950. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22951. {
  22952. side: {
  22953. height: math.unit(9.7, "feet"),
  22954. weight: math.unit(4000, "kg"),
  22955. name: "Side",
  22956. image: {
  22957. source: "./media/characters/yamie/side.svg"
  22958. }
  22959. },
  22960. },
  22961. [
  22962. {
  22963. name: "Normal",
  22964. height: math.unit(9.7, "feet"),
  22965. default: true
  22966. },
  22967. ]
  22968. ))
  22969. characterMakers.push(() => makeCharacter(
  22970. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22971. {
  22972. front: {
  22973. height: math.unit(50, "feet"),
  22974. weight: math.unit(50000, "kg"),
  22975. name: "Front",
  22976. image: {
  22977. source: "./media/characters/anders/front.svg",
  22978. extra: 570 / 539,
  22979. bottom: 14.7 / 586.7
  22980. }
  22981. },
  22982. },
  22983. [
  22984. {
  22985. name: "Large",
  22986. height: math.unit(50, "feet")
  22987. },
  22988. {
  22989. name: "Macro",
  22990. height: math.unit(2000, "feet"),
  22991. default: true
  22992. },
  22993. {
  22994. name: "Megamacro",
  22995. height: math.unit(12, "miles")
  22996. },
  22997. ]
  22998. ))
  22999. characterMakers.push(() => makeCharacter(
  23000. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23001. {
  23002. front: {
  23003. height: math.unit(7 + 2 / 12, "feet"),
  23004. weight: math.unit(300, "lb"),
  23005. name: "Front",
  23006. image: {
  23007. source: "./media/characters/reban/front.svg",
  23008. extra: 1287/1212,
  23009. bottom: 148/1435
  23010. }
  23011. },
  23012. head: {
  23013. height: math.unit(1.95, "feet"),
  23014. name: "Head",
  23015. image: {
  23016. source: "./media/characters/reban/head.svg"
  23017. }
  23018. },
  23019. maw: {
  23020. height: math.unit(0.95, "feet"),
  23021. name: "Maw",
  23022. image: {
  23023. source: "./media/characters/reban/maw.svg"
  23024. }
  23025. },
  23026. foot: {
  23027. height: math.unit(1.65, "feet"),
  23028. name: "Foot",
  23029. image: {
  23030. source: "./media/characters/reban/foot.svg"
  23031. }
  23032. },
  23033. dick: {
  23034. height: math.unit(7 / 5, "feet"),
  23035. name: "Dick",
  23036. image: {
  23037. source: "./media/characters/reban/dick.svg"
  23038. }
  23039. },
  23040. },
  23041. [
  23042. {
  23043. name: "Natural Height",
  23044. height: math.unit(7 + 2 / 12, "feet")
  23045. },
  23046. {
  23047. name: "Macro",
  23048. height: math.unit(500, "feet"),
  23049. default: true
  23050. },
  23051. {
  23052. name: "Canon Height",
  23053. height: math.unit(50, "AU")
  23054. },
  23055. ]
  23056. ))
  23057. characterMakers.push(() => makeCharacter(
  23058. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23059. {
  23060. front: {
  23061. height: math.unit(6, "feet"),
  23062. weight: math.unit(150, "lb"),
  23063. name: "Front",
  23064. image: {
  23065. source: "./media/characters/terrance-keayes/front.svg",
  23066. extra: 1.005,
  23067. bottom: 151 / 1615
  23068. }
  23069. },
  23070. side: {
  23071. height: math.unit(6, "feet"),
  23072. weight: math.unit(150, "lb"),
  23073. name: "Side",
  23074. image: {
  23075. source: "./media/characters/terrance-keayes/side.svg",
  23076. extra: 1.005,
  23077. bottom: 129.4 / 1544
  23078. }
  23079. },
  23080. back: {
  23081. height: math.unit(6, "feet"),
  23082. weight: math.unit(150, "lb"),
  23083. name: "Back",
  23084. image: {
  23085. source: "./media/characters/terrance-keayes/back.svg",
  23086. extra: 1.005,
  23087. bottom: 58.4 / 1557.3
  23088. }
  23089. },
  23090. dick: {
  23091. height: math.unit(6 * 0.208, "feet"),
  23092. name: "Dick",
  23093. image: {
  23094. source: "./media/characters/terrance-keayes/dick.svg"
  23095. }
  23096. },
  23097. },
  23098. [
  23099. {
  23100. name: "Canon Height",
  23101. height: math.unit(35, "miles"),
  23102. default: true
  23103. },
  23104. ]
  23105. ))
  23106. characterMakers.push(() => makeCharacter(
  23107. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23108. {
  23109. front: {
  23110. height: math.unit(6, "feet"),
  23111. weight: math.unit(150, "lb"),
  23112. name: "Front",
  23113. image: {
  23114. source: "./media/characters/ofelia/front.svg",
  23115. extra: 1130/1117,
  23116. bottom: 91/1221
  23117. }
  23118. },
  23119. back: {
  23120. height: math.unit(6, "feet"),
  23121. weight: math.unit(150, "lb"),
  23122. name: "Back",
  23123. image: {
  23124. source: "./media/characters/ofelia/back.svg",
  23125. extra: 1172/1159,
  23126. bottom: 28/1200
  23127. }
  23128. },
  23129. maw: {
  23130. height: math.unit(1, "feet"),
  23131. name: "Maw",
  23132. image: {
  23133. source: "./media/characters/ofelia/maw.svg"
  23134. }
  23135. },
  23136. foot: {
  23137. height: math.unit(1.949, "feet"),
  23138. name: "Foot",
  23139. image: {
  23140. source: "./media/characters/ofelia/foot.svg"
  23141. }
  23142. },
  23143. },
  23144. [
  23145. {
  23146. name: "Canon Height",
  23147. height: math.unit(2000, "miles"),
  23148. default: true
  23149. },
  23150. ]
  23151. ))
  23152. characterMakers.push(() => makeCharacter(
  23153. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23154. {
  23155. front: {
  23156. height: math.unit(6, "feet"),
  23157. weight: math.unit(150, "lb"),
  23158. name: "Front",
  23159. image: {
  23160. source: "./media/characters/samuel/front.svg",
  23161. extra: 265 / 258,
  23162. bottom: 2 / 266.1566
  23163. }
  23164. },
  23165. },
  23166. [
  23167. {
  23168. name: "Macro",
  23169. height: math.unit(100, "feet"),
  23170. default: true
  23171. },
  23172. {
  23173. name: "Full Size",
  23174. height: math.unit(1000, "miles")
  23175. },
  23176. ]
  23177. ))
  23178. characterMakers.push(() => makeCharacter(
  23179. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23180. {
  23181. front: {
  23182. height: math.unit(6, "feet"),
  23183. weight: math.unit(300, "lb"),
  23184. name: "Front",
  23185. image: {
  23186. source: "./media/characters/beishir-kiel/front.svg",
  23187. extra: 569 / 547,
  23188. bottom: 41.9 / 609
  23189. }
  23190. },
  23191. maw: {
  23192. height: math.unit(6 * 0.202, "feet"),
  23193. name: "Maw",
  23194. image: {
  23195. source: "./media/characters/beishir-kiel/maw.svg"
  23196. }
  23197. },
  23198. },
  23199. [
  23200. {
  23201. name: "Macro",
  23202. height: math.unit(300, "feet"),
  23203. default: true
  23204. },
  23205. ]
  23206. ))
  23207. characterMakers.push(() => makeCharacter(
  23208. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23209. {
  23210. front: {
  23211. height: math.unit(5 + 7/12, "feet"),
  23212. weight: math.unit(120, "lb"),
  23213. name: "Front",
  23214. image: {
  23215. source: "./media/characters/logan-grey/front.svg",
  23216. extra: 1836/1738,
  23217. bottom: 108/1944
  23218. }
  23219. },
  23220. back: {
  23221. height: math.unit(5 + 7/12, "feet"),
  23222. weight: math.unit(120, "lb"),
  23223. name: "Back",
  23224. image: {
  23225. source: "./media/characters/logan-grey/back.svg",
  23226. extra: 1880/1794,
  23227. bottom: 24/1904
  23228. }
  23229. },
  23230. frontSfw: {
  23231. height: math.unit(5 + 7/12, "feet"),
  23232. weight: math.unit(120, "lb"),
  23233. name: "Front (SFW)",
  23234. image: {
  23235. source: "./media/characters/logan-grey/front-sfw.svg",
  23236. extra: 1836/1738,
  23237. bottom: 108/1944
  23238. }
  23239. },
  23240. backSfw: {
  23241. height: math.unit(5 + 7/12, "feet"),
  23242. weight: math.unit(120, "lb"),
  23243. name: "Back (SFW)",
  23244. image: {
  23245. source: "./media/characters/logan-grey/back-sfw.svg",
  23246. extra: 1880/1794,
  23247. bottom: 24/1904
  23248. }
  23249. },
  23250. hands: {
  23251. height: math.unit(0.84, "feet"),
  23252. name: "Hands",
  23253. image: {
  23254. source: "./media/characters/logan-grey/hands.svg"
  23255. }
  23256. },
  23257. paws: {
  23258. height: math.unit(0.72, "feet"),
  23259. name: "Paws",
  23260. image: {
  23261. source: "./media/characters/logan-grey/paws.svg"
  23262. }
  23263. },
  23264. cock: {
  23265. height: math.unit(1.45, "feet"),
  23266. name: "Cock",
  23267. image: {
  23268. source: "./media/characters/logan-grey/cock.svg"
  23269. }
  23270. },
  23271. cockAlt: {
  23272. height: math.unit(1.437, "feet"),
  23273. name: "Cock (alt)",
  23274. image: {
  23275. source: "./media/characters/logan-grey/cock-alt.svg"
  23276. }
  23277. },
  23278. },
  23279. [
  23280. {
  23281. name: "Normal",
  23282. height: math.unit(5 + 8 / 12, "feet")
  23283. },
  23284. {
  23285. name: "The 500 Foot Femboy",
  23286. height: math.unit(500, "feet"),
  23287. default: true
  23288. },
  23289. {
  23290. name: "Megmacro",
  23291. height: math.unit(20, "miles")
  23292. },
  23293. ]
  23294. ))
  23295. characterMakers.push(() => makeCharacter(
  23296. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23297. {
  23298. front: {
  23299. height: math.unit(8 + 2 / 12, "feet"),
  23300. weight: math.unit(275, "lb"),
  23301. name: "Front",
  23302. image: {
  23303. source: "./media/characters/draganta/front.svg",
  23304. extra: 1177 / 1135,
  23305. bottom: 33.46 / 1212.1
  23306. }
  23307. },
  23308. },
  23309. [
  23310. {
  23311. name: "Normal",
  23312. height: math.unit(8 + 6 / 12, "feet"),
  23313. default: true
  23314. },
  23315. {
  23316. name: "Macro",
  23317. height: math.unit(150, "feet")
  23318. },
  23319. {
  23320. name: "Megamacro",
  23321. height: math.unit(1000, "miles")
  23322. },
  23323. ]
  23324. ))
  23325. characterMakers.push(() => makeCharacter(
  23326. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23327. {
  23328. front: {
  23329. height: math.unit(1.72, "m"),
  23330. weight: math.unit(80, "lb"),
  23331. name: "Front",
  23332. image: {
  23333. source: "./media/characters/voski/front.svg",
  23334. extra: 2076.22 / 2022.4,
  23335. bottom: 102.7 / 2177.3866
  23336. }
  23337. },
  23338. frontFlaccid: {
  23339. height: math.unit(1.72, "m"),
  23340. weight: math.unit(80, "lb"),
  23341. name: "Front (Flaccid)",
  23342. image: {
  23343. source: "./media/characters/voski/front-flaccid.svg",
  23344. extra: 2076.22 / 2022.4,
  23345. bottom: 102.7 / 2177.3866
  23346. }
  23347. },
  23348. frontErect: {
  23349. height: math.unit(1.72, "m"),
  23350. weight: math.unit(80, "lb"),
  23351. name: "Front (Erect)",
  23352. image: {
  23353. source: "./media/characters/voski/front-erect.svg",
  23354. extra: 2076.22 / 2022.4,
  23355. bottom: 102.7 / 2177.3866
  23356. }
  23357. },
  23358. back: {
  23359. height: math.unit(1.72, "m"),
  23360. weight: math.unit(80, "lb"),
  23361. name: "Back",
  23362. image: {
  23363. source: "./media/characters/voski/back.svg",
  23364. extra: 2104 / 2051,
  23365. bottom: 10.45 / 2113.63
  23366. }
  23367. },
  23368. },
  23369. [
  23370. {
  23371. name: "Normal",
  23372. height: math.unit(1.72, "m")
  23373. },
  23374. {
  23375. name: "Macro",
  23376. height: math.unit(55, "m"),
  23377. default: true
  23378. },
  23379. {
  23380. name: "Macro+",
  23381. height: math.unit(300, "m")
  23382. },
  23383. {
  23384. name: "Macro++",
  23385. height: math.unit(700, "m")
  23386. },
  23387. {
  23388. name: "Macro+++",
  23389. height: math.unit(4500, "m")
  23390. },
  23391. {
  23392. name: "Macro++++",
  23393. height: math.unit(45, "km")
  23394. },
  23395. {
  23396. name: "Macro+++++",
  23397. height: math.unit(1220, "km")
  23398. },
  23399. ]
  23400. ))
  23401. characterMakers.push(() => makeCharacter(
  23402. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23403. {
  23404. front: {
  23405. height: math.unit(2.3, "m"),
  23406. weight: math.unit(304, "kg"),
  23407. name: "Front",
  23408. image: {
  23409. source: "./media/characters/icowom-lee/front.svg",
  23410. extra: 985 / 955,
  23411. bottom: 25.4 / 1012
  23412. }
  23413. },
  23414. fronttentacles: {
  23415. height: math.unit(2.3, "m"),
  23416. weight: math.unit(304, "kg"),
  23417. name: "Front-tentacles",
  23418. image: {
  23419. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23420. extra: 985 / 955,
  23421. bottom: 25.4 / 1012
  23422. }
  23423. },
  23424. back: {
  23425. height: math.unit(2.3, "m"),
  23426. weight: math.unit(304, "kg"),
  23427. name: "Back",
  23428. image: {
  23429. source: "./media/characters/icowom-lee/back.svg",
  23430. extra: 975 / 954,
  23431. bottom: 9.5 / 985
  23432. }
  23433. },
  23434. backtentacles: {
  23435. height: math.unit(2.3, "m"),
  23436. weight: math.unit(304, "kg"),
  23437. name: "Back-tentacles",
  23438. image: {
  23439. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23440. extra: 975 / 954,
  23441. bottom: 9.5 / 985
  23442. }
  23443. },
  23444. frontDressed: {
  23445. height: math.unit(2.3, "m"),
  23446. weight: math.unit(304, "kg"),
  23447. name: "Front (Dressed)",
  23448. image: {
  23449. source: "./media/characters/icowom-lee/front-dressed.svg",
  23450. extra: 3076 / 2933,
  23451. bottom: 51.4 / 3125.1889
  23452. }
  23453. },
  23454. rump: {
  23455. height: math.unit(0.776, "meters"),
  23456. name: "Rump",
  23457. image: {
  23458. source: "./media/characters/icowom-lee/rump.svg"
  23459. }
  23460. },
  23461. genitals: {
  23462. height: math.unit(0.78, "meters"),
  23463. name: "Genitals",
  23464. image: {
  23465. source: "./media/characters/icowom-lee/genitals.svg"
  23466. }
  23467. },
  23468. },
  23469. [
  23470. {
  23471. name: "Normal",
  23472. height: math.unit(2.3, "meters"),
  23473. default: true
  23474. },
  23475. {
  23476. name: "Macro",
  23477. height: math.unit(94, "meters"),
  23478. default: true
  23479. },
  23480. ]
  23481. ))
  23482. characterMakers.push(() => makeCharacter(
  23483. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23484. {
  23485. front: {
  23486. height: math.unit(22, "meters"),
  23487. weight: math.unit(21000, "kg"),
  23488. name: "Front",
  23489. image: {
  23490. source: "./media/characters/shock-diamond/front.svg",
  23491. extra: 2204 / 2053,
  23492. bottom: 65 / 2239.47
  23493. }
  23494. },
  23495. frontNude: {
  23496. height: math.unit(22, "meters"),
  23497. weight: math.unit(21000, "kg"),
  23498. name: "Front (Nude)",
  23499. image: {
  23500. source: "./media/characters/shock-diamond/front-nude.svg",
  23501. extra: 2514 / 2285,
  23502. bottom: 13 / 2527.56
  23503. }
  23504. },
  23505. },
  23506. [
  23507. {
  23508. name: "Normal",
  23509. height: math.unit(3, "meters")
  23510. },
  23511. {
  23512. name: "Macro",
  23513. height: math.unit(22, "meters"),
  23514. default: true
  23515. },
  23516. ]
  23517. ))
  23518. characterMakers.push(() => makeCharacter(
  23519. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23520. {
  23521. front: {
  23522. height: math.unit(5 + 4 / 12, "feet"),
  23523. weight: math.unit(120, "lb"),
  23524. name: "Front",
  23525. image: {
  23526. source: "./media/characters/rory/front.svg",
  23527. extra: 1318/1241,
  23528. bottom: 42/1360
  23529. }
  23530. },
  23531. back: {
  23532. height: math.unit(5 + 4 / 12, "feet"),
  23533. weight: math.unit(120, "lb"),
  23534. name: "Back",
  23535. image: {
  23536. source: "./media/characters/rory/back.svg",
  23537. extra: 1318/1241,
  23538. bottom: 42/1360
  23539. }
  23540. },
  23541. butt: {
  23542. height: math.unit(1.74, "feet"),
  23543. name: "Butt",
  23544. image: {
  23545. source: "./media/characters/rory/butt.svg"
  23546. }
  23547. },
  23548. dick: {
  23549. height: math.unit(1.02, "feet"),
  23550. name: "Dick",
  23551. image: {
  23552. source: "./media/characters/rory/dick.svg"
  23553. }
  23554. },
  23555. paws: {
  23556. height: math.unit(1, "feet"),
  23557. name: "Paws",
  23558. image: {
  23559. source: "./media/characters/rory/paws.svg"
  23560. }
  23561. },
  23562. frontAlt: {
  23563. height: math.unit(5 + 4 / 12, "feet"),
  23564. weight: math.unit(120, "lb"),
  23565. name: "Front (Alt)",
  23566. image: {
  23567. source: "./media/characters/rory/front-alt.svg",
  23568. extra: 589 / 556,
  23569. bottom: 45.7 / 635.76
  23570. }
  23571. },
  23572. frontAltNude: {
  23573. height: math.unit(5 + 4 / 12, "feet"),
  23574. weight: math.unit(120, "lb"),
  23575. name: "Front (Alt, Nude)",
  23576. image: {
  23577. source: "./media/characters/rory/front-alt-nude.svg",
  23578. extra: 589 / 556,
  23579. bottom: 45.7 / 635.76
  23580. }
  23581. },
  23582. side: {
  23583. height: math.unit(5 + 4 / 12, "feet"),
  23584. weight: math.unit(120, "lb"),
  23585. name: "Side",
  23586. image: {
  23587. source: "./media/characters/rory/side.svg",
  23588. extra: 597 / 564,
  23589. bottom: 55 / 653
  23590. }
  23591. },
  23592. backAlt: {
  23593. height: math.unit(5 + 4 / 12, "feet"),
  23594. weight: math.unit(120, "lb"),
  23595. name: "Back (Alt)",
  23596. image: {
  23597. source: "./media/characters/rory/back-alt.svg",
  23598. extra: 620 / 585,
  23599. bottom: 8.86 / 630.43
  23600. }
  23601. },
  23602. dickAlt: {
  23603. height: math.unit(0.86, "feet"),
  23604. name: "Dick (Alt)",
  23605. image: {
  23606. source: "./media/characters/rory/dick-alt.svg"
  23607. }
  23608. },
  23609. },
  23610. [
  23611. {
  23612. name: "Normal",
  23613. height: math.unit(5 + 4 / 12, "feet"),
  23614. default: true
  23615. },
  23616. {
  23617. name: "Macro",
  23618. height: math.unit(100, "feet")
  23619. },
  23620. {
  23621. name: "Macro+",
  23622. height: math.unit(140, "feet")
  23623. },
  23624. {
  23625. name: "Macro++",
  23626. height: math.unit(300, "feet")
  23627. },
  23628. ]
  23629. ))
  23630. characterMakers.push(() => makeCharacter(
  23631. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23632. {
  23633. front: {
  23634. height: math.unit(5 + 9 / 12, "feet"),
  23635. weight: math.unit(190, "lb"),
  23636. name: "Front",
  23637. image: {
  23638. source: "./media/characters/sprisk/front.svg",
  23639. extra: 1225 / 1180,
  23640. bottom: 42.7 / 1266.4
  23641. }
  23642. },
  23643. frontNsfw: {
  23644. height: math.unit(5 + 9 / 12, "feet"),
  23645. weight: math.unit(190, "lb"),
  23646. name: "Front (NSFW)",
  23647. image: {
  23648. source: "./media/characters/sprisk/front-nsfw.svg",
  23649. extra: 1225 / 1180,
  23650. bottom: 42.7 / 1266.4
  23651. }
  23652. },
  23653. back: {
  23654. height: math.unit(5 + 9 / 12, "feet"),
  23655. weight: math.unit(190, "lb"),
  23656. name: "Back",
  23657. image: {
  23658. source: "./media/characters/sprisk/back.svg",
  23659. extra: 1247 / 1200,
  23660. bottom: 5.6 / 1253.04
  23661. }
  23662. },
  23663. },
  23664. [
  23665. {
  23666. name: "Tiny",
  23667. height: math.unit(2, "inches")
  23668. },
  23669. {
  23670. name: "Normal",
  23671. height: math.unit(5 + 9 / 12, "feet"),
  23672. default: true
  23673. },
  23674. {
  23675. name: "Mini Macro",
  23676. height: math.unit(18, "feet")
  23677. },
  23678. {
  23679. name: "Macro",
  23680. height: math.unit(100, "feet")
  23681. },
  23682. {
  23683. name: "MACRO",
  23684. height: math.unit(50, "miles")
  23685. },
  23686. {
  23687. name: "M A C R O",
  23688. height: math.unit(300, "miles")
  23689. },
  23690. ]
  23691. ))
  23692. characterMakers.push(() => makeCharacter(
  23693. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23694. {
  23695. side: {
  23696. height: math.unit(15.6, "meters"),
  23697. weight: math.unit(700000, "kg"),
  23698. name: "Side",
  23699. image: {
  23700. source: "./media/characters/bunsen/side.svg",
  23701. extra: 1644 / 358
  23702. }
  23703. },
  23704. foot: {
  23705. height: math.unit(1.611 * 1644 / 358, "meter"),
  23706. name: "Foot",
  23707. image: {
  23708. source: "./media/characters/bunsen/foot.svg"
  23709. }
  23710. },
  23711. },
  23712. [
  23713. {
  23714. name: "Small",
  23715. height: math.unit(10, "feet")
  23716. },
  23717. {
  23718. name: "Normal",
  23719. height: math.unit(15.6, "meters"),
  23720. default: true
  23721. },
  23722. ]
  23723. ))
  23724. characterMakers.push(() => makeCharacter(
  23725. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23726. {
  23727. front: {
  23728. height: math.unit(4 + 11 / 12, "feet"),
  23729. weight: math.unit(140, "lb"),
  23730. name: "Front",
  23731. image: {
  23732. source: "./media/characters/sesh/front.svg",
  23733. extra: 3420 / 3231,
  23734. bottom: 72 / 3949.5
  23735. }
  23736. },
  23737. },
  23738. [
  23739. {
  23740. name: "Normal",
  23741. height: math.unit(4 + 11 / 12, "feet")
  23742. },
  23743. {
  23744. name: "Grown",
  23745. height: math.unit(15, "feet"),
  23746. default: true
  23747. },
  23748. {
  23749. name: "Macro",
  23750. height: math.unit(1500, "feet")
  23751. },
  23752. {
  23753. name: "Megamacro",
  23754. height: math.unit(30, "miles")
  23755. },
  23756. {
  23757. name: "Continental",
  23758. height: math.unit(3000, "miles")
  23759. },
  23760. {
  23761. name: "Gravity Mass",
  23762. height: math.unit(300000, "miles")
  23763. },
  23764. {
  23765. name: "Planet Buster",
  23766. height: math.unit(30000000, "miles")
  23767. },
  23768. {
  23769. name: "Big",
  23770. height: math.unit(3000000000, "miles")
  23771. },
  23772. ]
  23773. ))
  23774. characterMakers.push(() => makeCharacter(
  23775. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23776. {
  23777. front: {
  23778. height: math.unit(9, "feet"),
  23779. weight: math.unit(350, "lb"),
  23780. name: "Front",
  23781. image: {
  23782. source: "./media/characters/pepper/front.svg",
  23783. extra: 1448 / 1312,
  23784. bottom: 9.4 / 1457.88
  23785. }
  23786. },
  23787. back: {
  23788. height: math.unit(9, "feet"),
  23789. weight: math.unit(350, "lb"),
  23790. name: "Back",
  23791. image: {
  23792. source: "./media/characters/pepper/back.svg",
  23793. extra: 1423 / 1300,
  23794. bottom: 4.6 / 1429
  23795. }
  23796. },
  23797. maw: {
  23798. height: math.unit(0.932, "feet"),
  23799. name: "Maw",
  23800. image: {
  23801. source: "./media/characters/pepper/maw.svg"
  23802. }
  23803. },
  23804. },
  23805. [
  23806. {
  23807. name: "Normal",
  23808. height: math.unit(9, "feet"),
  23809. default: true
  23810. },
  23811. ]
  23812. ))
  23813. characterMakers.push(() => makeCharacter(
  23814. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23815. {
  23816. front: {
  23817. height: math.unit(6, "feet"),
  23818. weight: math.unit(150, "lb"),
  23819. name: "Front",
  23820. image: {
  23821. source: "./media/characters/maelstrom/front.svg",
  23822. extra: 2100 / 1883,
  23823. bottom: 94 / 2196.7
  23824. }
  23825. },
  23826. },
  23827. [
  23828. {
  23829. name: "Less Kaiju",
  23830. height: math.unit(200, "feet")
  23831. },
  23832. {
  23833. name: "Kaiju",
  23834. height: math.unit(400, "feet"),
  23835. default: true
  23836. },
  23837. {
  23838. name: "Kaiju-er",
  23839. height: math.unit(600, "feet")
  23840. },
  23841. ]
  23842. ))
  23843. characterMakers.push(() => makeCharacter(
  23844. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23845. {
  23846. front: {
  23847. height: math.unit(6 + 5 / 12, "feet"),
  23848. weight: math.unit(180, "lb"),
  23849. name: "Front",
  23850. image: {
  23851. source: "./media/characters/lexir/front.svg",
  23852. extra: 180 / 172,
  23853. bottom: 12 / 192
  23854. }
  23855. },
  23856. back: {
  23857. height: math.unit(6 + 5 / 12, "feet"),
  23858. weight: math.unit(180, "lb"),
  23859. name: "Back",
  23860. image: {
  23861. source: "./media/characters/lexir/back.svg",
  23862. extra: 1273/1201,
  23863. bottom: 39/1312
  23864. }
  23865. },
  23866. },
  23867. [
  23868. {
  23869. name: "Very Smal",
  23870. height: math.unit(1, "nm")
  23871. },
  23872. {
  23873. name: "Normal",
  23874. height: math.unit(6 + 5 / 12, "feet"),
  23875. default: true
  23876. },
  23877. {
  23878. name: "Macro",
  23879. height: math.unit(1, "mile")
  23880. },
  23881. {
  23882. name: "Megamacro",
  23883. height: math.unit(50, "miles")
  23884. },
  23885. ]
  23886. ))
  23887. characterMakers.push(() => makeCharacter(
  23888. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23889. {
  23890. front: {
  23891. height: math.unit(1.5, "meters"),
  23892. weight: math.unit(100, "lb"),
  23893. name: "Front",
  23894. image: {
  23895. source: "./media/characters/maksio/front.svg",
  23896. extra: 1549 / 1531,
  23897. bottom: 123.7 / 1674.5429
  23898. }
  23899. },
  23900. back: {
  23901. height: math.unit(1.5, "meters"),
  23902. weight: math.unit(100, "lb"),
  23903. name: "Back",
  23904. image: {
  23905. source: "./media/characters/maksio/back.svg",
  23906. extra: 1541 / 1509,
  23907. bottom: 97 / 1639
  23908. }
  23909. },
  23910. hand: {
  23911. height: math.unit(0.621, "feet"),
  23912. name: "Hand",
  23913. image: {
  23914. source: "./media/characters/maksio/hand.svg"
  23915. }
  23916. },
  23917. foot: {
  23918. height: math.unit(1.611, "feet"),
  23919. name: "Foot",
  23920. image: {
  23921. source: "./media/characters/maksio/foot.svg"
  23922. }
  23923. },
  23924. },
  23925. [
  23926. {
  23927. name: "Shrunken",
  23928. height: math.unit(10, "cm")
  23929. },
  23930. {
  23931. name: "Normal",
  23932. height: math.unit(150, "cm"),
  23933. default: true
  23934. },
  23935. ]
  23936. ))
  23937. characterMakers.push(() => makeCharacter(
  23938. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23939. {
  23940. front: {
  23941. height: math.unit(100, "feet"),
  23942. name: "Front",
  23943. image: {
  23944. source: "./media/characters/erza-bear/front.svg",
  23945. extra: 2449 / 2390,
  23946. bottom: 46 / 2494
  23947. }
  23948. },
  23949. back: {
  23950. height: math.unit(100, "feet"),
  23951. name: "Back",
  23952. image: {
  23953. source: "./media/characters/erza-bear/back.svg",
  23954. extra: 2489 / 2430,
  23955. bottom: 85.4 / 2480
  23956. }
  23957. },
  23958. tail: {
  23959. height: math.unit(42, "feet"),
  23960. name: "Tail",
  23961. image: {
  23962. source: "./media/characters/erza-bear/tail.svg"
  23963. }
  23964. },
  23965. tongue: {
  23966. height: math.unit(8, "feet"),
  23967. name: "Tongue",
  23968. image: {
  23969. source: "./media/characters/erza-bear/tongue.svg"
  23970. }
  23971. },
  23972. dick: {
  23973. height: math.unit(10.5, "feet"),
  23974. name: "Dick",
  23975. image: {
  23976. source: "./media/characters/erza-bear/dick.svg"
  23977. }
  23978. },
  23979. dickVertical: {
  23980. height: math.unit(16.9, "feet"),
  23981. name: "Dick (Vertical)",
  23982. image: {
  23983. source: "./media/characters/erza-bear/dick-vertical.svg"
  23984. }
  23985. },
  23986. },
  23987. [
  23988. {
  23989. name: "Macro",
  23990. height: math.unit(100, "feet"),
  23991. default: true
  23992. },
  23993. ]
  23994. ))
  23995. characterMakers.push(() => makeCharacter(
  23996. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23997. {
  23998. front: {
  23999. height: math.unit(172, "cm"),
  24000. weight: math.unit(73, "kg"),
  24001. name: "Front",
  24002. image: {
  24003. source: "./media/characters/violet-flor/front.svg",
  24004. extra: 1530 / 1442,
  24005. bottom: 61.9 / 1588.8
  24006. }
  24007. },
  24008. back: {
  24009. height: math.unit(180, "cm"),
  24010. weight: math.unit(73, "kg"),
  24011. name: "Back",
  24012. image: {
  24013. source: "./media/characters/violet-flor/back.svg",
  24014. extra: 1692 / 1630,
  24015. bottom: 20 / 1712
  24016. }
  24017. },
  24018. },
  24019. [
  24020. {
  24021. name: "Normal",
  24022. height: math.unit(172, "cm"),
  24023. default: true
  24024. },
  24025. ]
  24026. ))
  24027. characterMakers.push(() => makeCharacter(
  24028. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24029. {
  24030. front: {
  24031. height: math.unit(6, "feet"),
  24032. weight: math.unit(220, "lb"),
  24033. name: "Front",
  24034. image: {
  24035. source: "./media/characters/lynn-rhea/front.svg",
  24036. extra: 310 / 273
  24037. }
  24038. },
  24039. back: {
  24040. height: math.unit(6, "feet"),
  24041. weight: math.unit(220, "lb"),
  24042. name: "Back",
  24043. image: {
  24044. source: "./media/characters/lynn-rhea/back.svg",
  24045. extra: 310 / 273
  24046. }
  24047. },
  24048. dicks: {
  24049. height: math.unit(0.9, "feet"),
  24050. name: "Dicks",
  24051. image: {
  24052. source: "./media/characters/lynn-rhea/dicks.svg"
  24053. }
  24054. },
  24055. slit: {
  24056. height: math.unit(0.4, "feet"),
  24057. name: "Slit",
  24058. image: {
  24059. source: "./media/characters/lynn-rhea/slit.svg"
  24060. }
  24061. },
  24062. },
  24063. [
  24064. {
  24065. name: "Micro",
  24066. height: math.unit(1, "inch")
  24067. },
  24068. {
  24069. name: "Macro",
  24070. height: math.unit(60, "feet"),
  24071. default: true
  24072. },
  24073. {
  24074. name: "Megamacro",
  24075. height: math.unit(2, "miles")
  24076. },
  24077. {
  24078. name: "Gigamacro",
  24079. height: math.unit(3, "earths")
  24080. },
  24081. {
  24082. name: "Galactic",
  24083. height: math.unit(0.8, "galaxies")
  24084. },
  24085. ]
  24086. ))
  24087. characterMakers.push(() => makeCharacter(
  24088. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24089. {
  24090. front: {
  24091. height: math.unit(1600, "feet"),
  24092. weight: math.unit(85758785169, "kg"),
  24093. name: "Front",
  24094. image: {
  24095. source: "./media/characters/valathos/front.svg",
  24096. extra: 1451 / 1339
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Macro",
  24103. height: math.unit(1600, "feet"),
  24104. default: true
  24105. },
  24106. ]
  24107. ))
  24108. characterMakers.push(() => makeCharacter(
  24109. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24110. {
  24111. front: {
  24112. height: math.unit(7 + 5 / 12, "feet"),
  24113. weight: math.unit(300, "lb"),
  24114. name: "Front",
  24115. image: {
  24116. source: "./media/characters/azula/front.svg",
  24117. extra: 3208 / 2880,
  24118. bottom: 80.2 / 3277
  24119. }
  24120. },
  24121. back: {
  24122. height: math.unit(7 + 5 / 12, "feet"),
  24123. weight: math.unit(300, "lb"),
  24124. name: "Back",
  24125. image: {
  24126. source: "./media/characters/azula/back.svg",
  24127. extra: 3169 / 2822,
  24128. bottom: 150.6 / 3321
  24129. }
  24130. },
  24131. },
  24132. [
  24133. {
  24134. name: "Normal",
  24135. height: math.unit(7 + 5 / 12, "feet"),
  24136. default: true
  24137. },
  24138. {
  24139. name: "Big",
  24140. height: math.unit(20, "feet")
  24141. },
  24142. ]
  24143. ))
  24144. characterMakers.push(() => makeCharacter(
  24145. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24146. {
  24147. front: {
  24148. height: math.unit(5 + 1 / 12, "feet"),
  24149. weight: math.unit(110, "lb"),
  24150. name: "Front",
  24151. image: {
  24152. source: "./media/characters/rupert/front.svg",
  24153. extra: 1549 / 1495,
  24154. bottom: 54.2 / 1604.4
  24155. }
  24156. },
  24157. },
  24158. [
  24159. {
  24160. name: "Normal",
  24161. height: math.unit(5 + 1 / 12, "feet"),
  24162. default: true
  24163. },
  24164. ]
  24165. ))
  24166. characterMakers.push(() => makeCharacter(
  24167. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24168. {
  24169. front: {
  24170. height: math.unit(8 + 4 / 12, "feet"),
  24171. weight: math.unit(350, "lb"),
  24172. name: "Front",
  24173. image: {
  24174. source: "./media/characters/sheera-castellar/front.svg",
  24175. extra: 1957 / 1894,
  24176. bottom: 26.97 / 1975.017
  24177. }
  24178. },
  24179. side: {
  24180. height: math.unit(8 + 4 / 12, "feet"),
  24181. weight: math.unit(350, "lb"),
  24182. name: "Side",
  24183. image: {
  24184. source: "./media/characters/sheera-castellar/side.svg",
  24185. extra: 1957 / 1894
  24186. }
  24187. },
  24188. back: {
  24189. height: math.unit(8 + 4 / 12, "feet"),
  24190. weight: math.unit(350, "lb"),
  24191. name: "Back",
  24192. image: {
  24193. source: "./media/characters/sheera-castellar/back.svg",
  24194. extra: 1957 / 1894
  24195. }
  24196. },
  24197. angled: {
  24198. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24199. weight: math.unit(350, "lb"),
  24200. name: "Angled",
  24201. image: {
  24202. source: "./media/characters/sheera-castellar/angled.svg",
  24203. extra: 1807 / 1707,
  24204. bottom: 68 / 1875
  24205. }
  24206. },
  24207. genitals: {
  24208. height: math.unit(2.2, "feet"),
  24209. name: "Genitals",
  24210. image: {
  24211. source: "./media/characters/sheera-castellar/genitals.svg"
  24212. }
  24213. },
  24214. taur: {
  24215. height: math.unit(10 + 6/12, "feet"),
  24216. name: "Taur",
  24217. image: {
  24218. source: "./media/characters/sheera-castellar/taur.svg",
  24219. extra: 2017/1909,
  24220. bottom: 185/2202
  24221. }
  24222. },
  24223. },
  24224. [
  24225. {
  24226. name: "Normal",
  24227. height: math.unit(8 + 4 / 12, "feet")
  24228. },
  24229. {
  24230. name: "Macro",
  24231. height: math.unit(150, "feet"),
  24232. default: true
  24233. },
  24234. {
  24235. name: "Macro+",
  24236. height: math.unit(800, "feet")
  24237. },
  24238. ]
  24239. ))
  24240. characterMakers.push(() => makeCharacter(
  24241. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24242. {
  24243. front: {
  24244. height: math.unit(6, "feet"),
  24245. weight: math.unit(150, "lb"),
  24246. name: "Front",
  24247. image: {
  24248. source: "./media/characters/jaipur/front.svg",
  24249. extra: 3860 / 3731,
  24250. bottom: 287 / 4140
  24251. }
  24252. },
  24253. back: {
  24254. height: math.unit(6, "feet"),
  24255. weight: math.unit(150, "lb"),
  24256. name: "Back",
  24257. image: {
  24258. source: "./media/characters/jaipur/back.svg",
  24259. extra: 1637/1561,
  24260. bottom: 154/1791
  24261. }
  24262. },
  24263. },
  24264. [
  24265. {
  24266. name: "Normal",
  24267. height: math.unit(1.85, "meters"),
  24268. default: true
  24269. },
  24270. {
  24271. name: "Macro",
  24272. height: math.unit(150, "meters")
  24273. },
  24274. {
  24275. name: "Macro+",
  24276. height: math.unit(0.5, "miles")
  24277. },
  24278. {
  24279. name: "Macro++",
  24280. height: math.unit(2.5, "miles")
  24281. },
  24282. {
  24283. name: "Macro+++",
  24284. height: math.unit(12, "miles")
  24285. },
  24286. {
  24287. name: "Macro++++",
  24288. height: math.unit(120, "miles")
  24289. },
  24290. {
  24291. name: "Macro+++++",
  24292. height: math.unit(1200, "miles")
  24293. },
  24294. ]
  24295. ))
  24296. characterMakers.push(() => makeCharacter(
  24297. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24298. {
  24299. front: {
  24300. height: math.unit(6, "feet"),
  24301. weight: math.unit(150, "lb"),
  24302. name: "Front",
  24303. image: {
  24304. source: "./media/characters/sheila-wolf/front.svg",
  24305. extra: 1931 / 1808,
  24306. bottom: 29.5 / 1960
  24307. }
  24308. },
  24309. dick: {
  24310. height: math.unit(1.464, "feet"),
  24311. name: "Dick",
  24312. image: {
  24313. source: "./media/characters/sheila-wolf/dick.svg"
  24314. }
  24315. },
  24316. muzzle: {
  24317. height: math.unit(0.513, "feet"),
  24318. name: "Muzzle",
  24319. image: {
  24320. source: "./media/characters/sheila-wolf/muzzle.svg"
  24321. }
  24322. },
  24323. },
  24324. [
  24325. {
  24326. name: "Macro",
  24327. height: math.unit(70, "feet"),
  24328. default: true
  24329. },
  24330. ]
  24331. ))
  24332. characterMakers.push(() => makeCharacter(
  24333. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24334. {
  24335. front: {
  24336. height: math.unit(32, "meters"),
  24337. weight: math.unit(300000, "kg"),
  24338. name: "Front",
  24339. image: {
  24340. source: "./media/characters/almor/front.svg",
  24341. extra: 1408 / 1322,
  24342. bottom: 94.6 / 1506.5
  24343. }
  24344. },
  24345. },
  24346. [
  24347. {
  24348. name: "Macro",
  24349. height: math.unit(32, "meters"),
  24350. default: true
  24351. },
  24352. ]
  24353. ))
  24354. characterMakers.push(() => makeCharacter(
  24355. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24356. {
  24357. front: {
  24358. height: math.unit(7, "feet"),
  24359. weight: math.unit(200, "lb"),
  24360. name: "Front",
  24361. image: {
  24362. source: "./media/characters/silver/front.svg",
  24363. extra: 472.1 / 450.5,
  24364. bottom: 26.5 / 499.424
  24365. }
  24366. },
  24367. },
  24368. [
  24369. {
  24370. name: "Normal",
  24371. height: math.unit(7, "feet"),
  24372. default: true
  24373. },
  24374. {
  24375. name: "Macro",
  24376. height: math.unit(800, "feet")
  24377. },
  24378. {
  24379. name: "Megamacro",
  24380. height: math.unit(250, "miles")
  24381. },
  24382. ]
  24383. ))
  24384. characterMakers.push(() => makeCharacter(
  24385. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24386. {
  24387. front: {
  24388. height: math.unit(6, "feet"),
  24389. weight: math.unit(150, "lb"),
  24390. name: "Front",
  24391. image: {
  24392. source: "./media/characters/pliskin/front.svg",
  24393. extra: 1469 / 1359,
  24394. bottom: 70 / 1540
  24395. }
  24396. },
  24397. },
  24398. [
  24399. {
  24400. name: "Micro",
  24401. height: math.unit(3, "inches")
  24402. },
  24403. {
  24404. name: "Normal",
  24405. height: math.unit(5 + 11 / 12, "feet"),
  24406. default: true
  24407. },
  24408. {
  24409. name: "Macro",
  24410. height: math.unit(120, "feet")
  24411. },
  24412. ]
  24413. ))
  24414. characterMakers.push(() => makeCharacter(
  24415. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24416. {
  24417. front: {
  24418. height: math.unit(6, "feet"),
  24419. weight: math.unit(150, "lb"),
  24420. name: "Front",
  24421. image: {
  24422. source: "./media/characters/sammy/front.svg",
  24423. extra: 1193 / 1089,
  24424. bottom: 30.5 / 1226
  24425. }
  24426. },
  24427. },
  24428. [
  24429. {
  24430. name: "Macro",
  24431. height: math.unit(1700, "feet"),
  24432. default: true
  24433. },
  24434. {
  24435. name: "Examacro",
  24436. height: math.unit(2.5e9, "lightyears")
  24437. },
  24438. ]
  24439. ))
  24440. characterMakers.push(() => makeCharacter(
  24441. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24442. {
  24443. front: {
  24444. height: math.unit(21, "meters"),
  24445. weight: math.unit(12, "tonnes"),
  24446. name: "Front",
  24447. image: {
  24448. source: "./media/characters/kuru/front.svg",
  24449. extra: 4301 / 3785,
  24450. bottom: 371.3 / 4691
  24451. }
  24452. },
  24453. },
  24454. [
  24455. {
  24456. name: "Macro",
  24457. height: math.unit(21, "meters"),
  24458. default: true
  24459. },
  24460. ]
  24461. ))
  24462. characterMakers.push(() => makeCharacter(
  24463. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24464. {
  24465. front: {
  24466. height: math.unit(23, "meters"),
  24467. weight: math.unit(12.2, "tonnes"),
  24468. name: "Front",
  24469. image: {
  24470. source: "./media/characters/rakka/front.svg",
  24471. extra: 4670 / 4169,
  24472. bottom: 301 / 4968.7
  24473. }
  24474. },
  24475. },
  24476. [
  24477. {
  24478. name: "Macro",
  24479. height: math.unit(23, "meters"),
  24480. default: true
  24481. },
  24482. ]
  24483. ))
  24484. characterMakers.push(() => makeCharacter(
  24485. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24486. {
  24487. front: {
  24488. height: math.unit(6, "feet"),
  24489. weight: math.unit(150, "lb"),
  24490. name: "Front",
  24491. image: {
  24492. source: "./media/characters/rhys-feline/front.svg",
  24493. extra: 2488 / 2308,
  24494. bottom: 35.67 / 2519.19
  24495. }
  24496. },
  24497. },
  24498. [
  24499. {
  24500. name: "Really Small",
  24501. height: math.unit(1, "nm")
  24502. },
  24503. {
  24504. name: "Micro",
  24505. height: math.unit(4, "inches")
  24506. },
  24507. {
  24508. name: "Normal",
  24509. height: math.unit(4 + 10 / 12, "feet"),
  24510. default: true
  24511. },
  24512. {
  24513. name: "Macro",
  24514. height: math.unit(100, "feet")
  24515. },
  24516. {
  24517. name: "Megamacto",
  24518. height: math.unit(50, "miles")
  24519. },
  24520. ]
  24521. ))
  24522. characterMakers.push(() => makeCharacter(
  24523. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24524. {
  24525. side: {
  24526. height: math.unit(30, "feet"),
  24527. weight: math.unit(35000, "kg"),
  24528. name: "Side",
  24529. image: {
  24530. source: "./media/characters/alydar/side.svg",
  24531. extra: 234 / 222,
  24532. bottom: 6.5 / 241
  24533. }
  24534. },
  24535. front: {
  24536. height: math.unit(30, "feet"),
  24537. weight: math.unit(35000, "kg"),
  24538. name: "Front",
  24539. image: {
  24540. source: "./media/characters/alydar/front.svg",
  24541. extra: 223.37 / 210.2,
  24542. bottom: 22.3 / 246.76
  24543. }
  24544. },
  24545. top: {
  24546. height: math.unit(64.54, "feet"),
  24547. weight: math.unit(35000, "kg"),
  24548. name: "Top",
  24549. image: {
  24550. source: "./media/characters/alydar/top.svg"
  24551. }
  24552. },
  24553. anthro: {
  24554. height: math.unit(30, "feet"),
  24555. weight: math.unit(9000, "kg"),
  24556. name: "Anthro",
  24557. image: {
  24558. source: "./media/characters/alydar/anthro.svg",
  24559. extra: 432 / 421,
  24560. bottom: 7.18 / 440
  24561. }
  24562. },
  24563. maw: {
  24564. height: math.unit(11.693, "feet"),
  24565. name: "Maw",
  24566. image: {
  24567. source: "./media/characters/alydar/maw.svg"
  24568. }
  24569. },
  24570. head: {
  24571. height: math.unit(11.693, "feet"),
  24572. name: "Head",
  24573. image: {
  24574. source: "./media/characters/alydar/head.svg"
  24575. }
  24576. },
  24577. headAlt: {
  24578. height: math.unit(12.861, "feet"),
  24579. name: "Head (Alt)",
  24580. image: {
  24581. source: "./media/characters/alydar/head-alt.svg"
  24582. }
  24583. },
  24584. wing: {
  24585. height: math.unit(20.712, "feet"),
  24586. name: "Wing",
  24587. image: {
  24588. source: "./media/characters/alydar/wing.svg"
  24589. }
  24590. },
  24591. wingFeather: {
  24592. height: math.unit(9.662, "feet"),
  24593. name: "Wing Feather",
  24594. image: {
  24595. source: "./media/characters/alydar/wing-feather.svg"
  24596. }
  24597. },
  24598. countourFeather: {
  24599. height: math.unit(4.154, "feet"),
  24600. name: "Contour Feather",
  24601. image: {
  24602. source: "./media/characters/alydar/contour-feather.svg"
  24603. }
  24604. },
  24605. },
  24606. [
  24607. {
  24608. name: "Diplomatic",
  24609. height: math.unit(13, "feet"),
  24610. default: true
  24611. },
  24612. {
  24613. name: "Small",
  24614. height: math.unit(30, "feet")
  24615. },
  24616. {
  24617. name: "Normal",
  24618. height: math.unit(95, "feet"),
  24619. default: true
  24620. },
  24621. {
  24622. name: "Large",
  24623. height: math.unit(285, "feet")
  24624. },
  24625. {
  24626. name: "Incomprehensible",
  24627. height: math.unit(450, "megameters")
  24628. },
  24629. ]
  24630. ))
  24631. characterMakers.push(() => makeCharacter(
  24632. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24633. {
  24634. side: {
  24635. height: math.unit(11, "feet"),
  24636. weight: math.unit(1750, "kg"),
  24637. name: "Side",
  24638. image: {
  24639. source: "./media/characters/selicia/side.svg",
  24640. extra: 440 / 396,
  24641. bottom: 24.8 / 465.979
  24642. }
  24643. },
  24644. maw: {
  24645. height: math.unit(4.665, "feet"),
  24646. name: "Maw",
  24647. image: {
  24648. source: "./media/characters/selicia/maw.svg"
  24649. }
  24650. },
  24651. },
  24652. [
  24653. {
  24654. name: "Normal",
  24655. height: math.unit(11, "feet"),
  24656. default: true
  24657. },
  24658. ]
  24659. ))
  24660. characterMakers.push(() => makeCharacter(
  24661. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24662. {
  24663. side: {
  24664. height: math.unit(2 + 6 / 12, "feet"),
  24665. weight: math.unit(30, "lb"),
  24666. name: "Side",
  24667. image: {
  24668. source: "./media/characters/layla/side.svg",
  24669. extra: 244 / 188,
  24670. bottom: 18.2 / 262.1
  24671. }
  24672. },
  24673. back: {
  24674. height: math.unit(2 + 6 / 12, "feet"),
  24675. weight: math.unit(30, "lb"),
  24676. name: "Back",
  24677. image: {
  24678. source: "./media/characters/layla/back.svg",
  24679. extra: 308 / 241.5,
  24680. bottom: 8.9 / 316.8
  24681. }
  24682. },
  24683. cumming: {
  24684. height: math.unit(2 + 6 / 12, "feet"),
  24685. weight: math.unit(30, "lb"),
  24686. name: "Cumming",
  24687. image: {
  24688. source: "./media/characters/layla/cumming.svg",
  24689. extra: 342 / 279,
  24690. bottom: 595 / 938
  24691. }
  24692. },
  24693. dickFlaccid: {
  24694. height: math.unit(2.595, "feet"),
  24695. name: "Flaccid Genitals",
  24696. image: {
  24697. source: "./media/characters/layla/dick-flaccid.svg"
  24698. }
  24699. },
  24700. dickErect: {
  24701. height: math.unit(2.359, "feet"),
  24702. name: "Erect Genitals",
  24703. image: {
  24704. source: "./media/characters/layla/dick-erect.svg"
  24705. }
  24706. },
  24707. dragon: {
  24708. height: math.unit(40, "feet"),
  24709. name: "Dragon",
  24710. image: {
  24711. source: "./media/characters/layla/dragon.svg",
  24712. extra: 610/535,
  24713. bottom: 367/977
  24714. }
  24715. },
  24716. taur: {
  24717. height: math.unit(30, "feet"),
  24718. name: "Taur",
  24719. image: {
  24720. source: "./media/characters/layla/taur.svg",
  24721. extra: 1268/1199,
  24722. bottom: 112/1380
  24723. }
  24724. },
  24725. },
  24726. [
  24727. {
  24728. name: "Micro",
  24729. height: math.unit(1, "inch")
  24730. },
  24731. {
  24732. name: "Small",
  24733. height: math.unit(1, "foot")
  24734. },
  24735. {
  24736. name: "Normal",
  24737. height: math.unit(2 + 6 / 12, "feet"),
  24738. default: true
  24739. },
  24740. {
  24741. name: "Macro",
  24742. height: math.unit(200, "feet")
  24743. },
  24744. {
  24745. name: "Megamacro",
  24746. height: math.unit(1000, "miles")
  24747. },
  24748. {
  24749. name: "Planetary",
  24750. height: math.unit(8000, "miles")
  24751. },
  24752. {
  24753. name: "True Layla",
  24754. height: math.unit(200000 * 7, "multiverses")
  24755. },
  24756. ]
  24757. ))
  24758. characterMakers.push(() => makeCharacter(
  24759. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24760. {
  24761. back: {
  24762. height: math.unit(10.5, "feet"),
  24763. weight: math.unit(800, "lb"),
  24764. name: "Back",
  24765. image: {
  24766. source: "./media/characters/knox/back.svg",
  24767. extra: 1486 / 1089,
  24768. bottom: 107 / 1601.4
  24769. }
  24770. },
  24771. side: {
  24772. height: math.unit(10.5, "feet"),
  24773. weight: math.unit(800, "lb"),
  24774. name: "Side",
  24775. image: {
  24776. source: "./media/characters/knox/side.svg",
  24777. extra: 244 / 218,
  24778. bottom: 14 / 260
  24779. }
  24780. },
  24781. },
  24782. [
  24783. {
  24784. name: "Compact",
  24785. height: math.unit(10.5, "feet"),
  24786. default: true
  24787. },
  24788. {
  24789. name: "Dynamax",
  24790. height: math.unit(210, "feet")
  24791. },
  24792. {
  24793. name: "Full Macro",
  24794. height: math.unit(850, "feet")
  24795. },
  24796. ]
  24797. ))
  24798. characterMakers.push(() => makeCharacter(
  24799. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24800. {
  24801. front: {
  24802. height: math.unit(28, "feet"),
  24803. weight: math.unit(10500, "lb"),
  24804. name: "Front",
  24805. image: {
  24806. source: "./media/characters/kayda/front.svg",
  24807. extra: 1536 / 1428,
  24808. bottom: 68.7 / 1603
  24809. }
  24810. },
  24811. back: {
  24812. height: math.unit(28, "feet"),
  24813. weight: math.unit(10500, "lb"),
  24814. name: "Back",
  24815. image: {
  24816. source: "./media/characters/kayda/back.svg",
  24817. extra: 1557 / 1464,
  24818. bottom: 39.5 / 1597.49
  24819. }
  24820. },
  24821. dick: {
  24822. height: math.unit(3.858, "feet"),
  24823. name: "Dick",
  24824. image: {
  24825. source: "./media/characters/kayda/dick.svg"
  24826. }
  24827. },
  24828. },
  24829. [
  24830. {
  24831. name: "Macro",
  24832. height: math.unit(28, "feet"),
  24833. default: true
  24834. },
  24835. ]
  24836. ))
  24837. characterMakers.push(() => makeCharacter(
  24838. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24839. {
  24840. front: {
  24841. height: math.unit(10 + 11 / 12, "feet"),
  24842. weight: math.unit(1400, "lb"),
  24843. name: "Front",
  24844. image: {
  24845. source: "./media/characters/brian/front.svg",
  24846. extra: 737 / 692,
  24847. bottom: 55.4 / 785
  24848. }
  24849. },
  24850. },
  24851. [
  24852. {
  24853. name: "Normal",
  24854. height: math.unit(10 + 11 / 12, "feet"),
  24855. default: true
  24856. },
  24857. ]
  24858. ))
  24859. characterMakers.push(() => makeCharacter(
  24860. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24861. {
  24862. front: {
  24863. height: math.unit(5 + 8 / 12, "feet"),
  24864. weight: math.unit(140, "lb"),
  24865. name: "Front",
  24866. image: {
  24867. source: "./media/characters/khemri/front.svg",
  24868. extra: 4780 / 4059,
  24869. bottom: 80.1 / 4859.25
  24870. }
  24871. },
  24872. },
  24873. [
  24874. {
  24875. name: "Micro",
  24876. height: math.unit(6, "inches")
  24877. },
  24878. {
  24879. name: "Normal",
  24880. height: math.unit(5 + 8 / 12, "feet"),
  24881. default: true
  24882. },
  24883. ]
  24884. ))
  24885. characterMakers.push(() => makeCharacter(
  24886. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24887. {
  24888. front: {
  24889. height: math.unit(13, "feet"),
  24890. weight: math.unit(1700, "lb"),
  24891. name: "Front",
  24892. image: {
  24893. source: "./media/characters/felix-braveheart/front.svg",
  24894. extra: 1222 / 1157,
  24895. bottom: 53.2 / 1280
  24896. }
  24897. },
  24898. back: {
  24899. height: math.unit(13, "feet"),
  24900. weight: math.unit(1700, "lb"),
  24901. name: "Back",
  24902. image: {
  24903. source: "./media/characters/felix-braveheart/back.svg",
  24904. extra: 1277 / 1203,
  24905. bottom: 50.2 / 1327
  24906. }
  24907. },
  24908. feral: {
  24909. height: math.unit(6, "feet"),
  24910. weight: math.unit(400, "lb"),
  24911. name: "Feral",
  24912. image: {
  24913. source: "./media/characters/felix-braveheart/feral.svg",
  24914. extra: 682 / 625,
  24915. bottom: 6.9 / 688
  24916. }
  24917. },
  24918. },
  24919. [
  24920. {
  24921. name: "Normal",
  24922. height: math.unit(13, "feet"),
  24923. default: true
  24924. },
  24925. ]
  24926. ))
  24927. characterMakers.push(() => makeCharacter(
  24928. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24929. {
  24930. side: {
  24931. height: math.unit(5 + 11 / 12, "feet"),
  24932. weight: math.unit(1400, "lb"),
  24933. name: "Side",
  24934. image: {
  24935. source: "./media/characters/shadow-blade/side.svg",
  24936. extra: 1726 / 1267,
  24937. bottom: 58.4 / 1785
  24938. }
  24939. },
  24940. },
  24941. [
  24942. {
  24943. name: "Normal",
  24944. height: math.unit(5 + 11 / 12, "feet"),
  24945. default: true
  24946. },
  24947. ]
  24948. ))
  24949. characterMakers.push(() => makeCharacter(
  24950. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24951. {
  24952. front: {
  24953. height: math.unit(1 + 6 / 12, "feet"),
  24954. weight: math.unit(25, "lb"),
  24955. name: "Front",
  24956. image: {
  24957. source: "./media/characters/karla-halldor/front.svg",
  24958. extra: 1459 / 1383,
  24959. bottom: 12 / 1472
  24960. }
  24961. },
  24962. },
  24963. [
  24964. {
  24965. name: "Normal",
  24966. height: math.unit(1 + 6 / 12, "feet"),
  24967. default: true
  24968. },
  24969. ]
  24970. ))
  24971. characterMakers.push(() => makeCharacter(
  24972. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24973. {
  24974. front: {
  24975. height: math.unit(6 + 2 / 12, "feet"),
  24976. weight: math.unit(160, "lb"),
  24977. name: "Front",
  24978. image: {
  24979. source: "./media/characters/ariam/front.svg",
  24980. extra: 1073/976,
  24981. bottom: 52/1125
  24982. }
  24983. },
  24984. back: {
  24985. height: math.unit(6 + 2/12, "feet"),
  24986. weight: math.unit(160, "lb"),
  24987. name: "Back",
  24988. image: {
  24989. source: "./media/characters/ariam/back.svg",
  24990. extra: 1103/1023,
  24991. bottom: 9/1112
  24992. }
  24993. },
  24994. dressed: {
  24995. height: math.unit(6 + 2/12, "feet"),
  24996. weight: math.unit(160, "lb"),
  24997. name: "Dressed",
  24998. image: {
  24999. source: "./media/characters/ariam/dressed.svg",
  25000. extra: 1099/1009,
  25001. bottom: 25/1124
  25002. }
  25003. },
  25004. squatting: {
  25005. height: math.unit(4.1, "feet"),
  25006. weight: math.unit(160, "lb"),
  25007. name: "Squatting",
  25008. image: {
  25009. source: "./media/characters/ariam/squatting.svg",
  25010. extra: 2617 / 2112,
  25011. bottom: 61.2 / 2681,
  25012. }
  25013. },
  25014. },
  25015. [
  25016. {
  25017. name: "Normal",
  25018. height: math.unit(6 + 2 / 12, "feet"),
  25019. default: true
  25020. },
  25021. {
  25022. name: "Normal+",
  25023. height: math.unit(4, "meters")
  25024. },
  25025. {
  25026. name: "Macro",
  25027. height: math.unit(50, "meters")
  25028. },
  25029. {
  25030. name: "Macro+",
  25031. height: math.unit(100, "meters")
  25032. },
  25033. {
  25034. name: "Megamacro",
  25035. height: math.unit(20, "km")
  25036. },
  25037. {
  25038. name: "Caretaker",
  25039. height: math.unit(444, "megameters")
  25040. },
  25041. ]
  25042. ))
  25043. characterMakers.push(() => makeCharacter(
  25044. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25045. {
  25046. front: {
  25047. height: math.unit(1.67, "meters"),
  25048. weight: math.unit(140, "lb"),
  25049. name: "Front",
  25050. image: {
  25051. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25052. extra: 438 / 410,
  25053. bottom: 0.75 / 439
  25054. }
  25055. },
  25056. },
  25057. [
  25058. {
  25059. name: "Shrunken",
  25060. height: math.unit(7.6, "cm")
  25061. },
  25062. {
  25063. name: "Human Scale",
  25064. height: math.unit(1.67, "meters")
  25065. },
  25066. {
  25067. name: "Wolxi Scale",
  25068. height: math.unit(36.7, "meters"),
  25069. default: true
  25070. },
  25071. ]
  25072. ))
  25073. characterMakers.push(() => makeCharacter(
  25074. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25075. {
  25076. front: {
  25077. height: math.unit(1.73, "meters"),
  25078. weight: math.unit(240, "lb"),
  25079. name: "Front",
  25080. image: {
  25081. source: "./media/characters/izue-two-mothers/front.svg",
  25082. extra: 469 / 437,
  25083. bottom: 1.24 / 470.6
  25084. }
  25085. },
  25086. },
  25087. [
  25088. {
  25089. name: "Shrunken",
  25090. height: math.unit(7.86, "cm")
  25091. },
  25092. {
  25093. name: "Human Scale",
  25094. height: math.unit(1.73, "meters")
  25095. },
  25096. {
  25097. name: "Wolxi Scale",
  25098. height: math.unit(38, "meters"),
  25099. default: true
  25100. },
  25101. ]
  25102. ))
  25103. characterMakers.push(() => makeCharacter(
  25104. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25105. {
  25106. front: {
  25107. height: math.unit(1.55, "meters"),
  25108. weight: math.unit(120, "lb"),
  25109. name: "Front",
  25110. image: {
  25111. source: "./media/characters/teeku-love-shack/front.svg",
  25112. extra: 387 / 362,
  25113. bottom: 1.51 / 388
  25114. }
  25115. },
  25116. },
  25117. [
  25118. {
  25119. name: "Shrunken",
  25120. height: math.unit(7, "cm")
  25121. },
  25122. {
  25123. name: "Human Scale",
  25124. height: math.unit(1.55, "meters")
  25125. },
  25126. {
  25127. name: "Wolxi Scale",
  25128. height: math.unit(34.1, "meters"),
  25129. default: true
  25130. },
  25131. ]
  25132. ))
  25133. characterMakers.push(() => makeCharacter(
  25134. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25135. {
  25136. front: {
  25137. height: math.unit(1.83, "meters"),
  25138. weight: math.unit(135, "lb"),
  25139. name: "Front",
  25140. image: {
  25141. source: "./media/characters/dejma-the-red/front.svg",
  25142. extra: 480 / 458,
  25143. bottom: 1.8 / 482
  25144. }
  25145. },
  25146. },
  25147. [
  25148. {
  25149. name: "Shrunken",
  25150. height: math.unit(8.3, "cm")
  25151. },
  25152. {
  25153. name: "Human Scale",
  25154. height: math.unit(1.83, "meters")
  25155. },
  25156. {
  25157. name: "Wolxi Scale",
  25158. height: math.unit(40, "meters"),
  25159. default: true
  25160. },
  25161. ]
  25162. ))
  25163. characterMakers.push(() => makeCharacter(
  25164. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25165. {
  25166. front: {
  25167. height: math.unit(1.78, "meters"),
  25168. weight: math.unit(65, "kg"),
  25169. name: "Front",
  25170. image: {
  25171. source: "./media/characters/aki/front.svg",
  25172. extra: 452 / 415
  25173. }
  25174. },
  25175. frontNsfw: {
  25176. height: math.unit(1.78, "meters"),
  25177. weight: math.unit(65, "kg"),
  25178. name: "Front (NSFW)",
  25179. image: {
  25180. source: "./media/characters/aki/front-nsfw.svg",
  25181. extra: 452 / 415
  25182. }
  25183. },
  25184. back: {
  25185. height: math.unit(1.78, "meters"),
  25186. weight: math.unit(65, "kg"),
  25187. name: "Back",
  25188. image: {
  25189. source: "./media/characters/aki/back.svg",
  25190. extra: 452 / 415
  25191. }
  25192. },
  25193. rump: {
  25194. height: math.unit(2.05, "feet"),
  25195. name: "Rump",
  25196. image: {
  25197. source: "./media/characters/aki/rump.svg"
  25198. }
  25199. },
  25200. dick: {
  25201. height: math.unit(0.95, "feet"),
  25202. name: "Dick",
  25203. image: {
  25204. source: "./media/characters/aki/dick.svg"
  25205. }
  25206. },
  25207. },
  25208. [
  25209. {
  25210. name: "Micro",
  25211. height: math.unit(15, "cm")
  25212. },
  25213. {
  25214. name: "Normal",
  25215. height: math.unit(178, "cm"),
  25216. default: true
  25217. },
  25218. {
  25219. name: "Macro",
  25220. height: math.unit(214, "m")
  25221. },
  25222. {
  25223. name: "Macro+",
  25224. height: math.unit(534, "m")
  25225. },
  25226. ]
  25227. ))
  25228. characterMakers.push(() => makeCharacter(
  25229. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25230. {
  25231. front: {
  25232. height: math.unit(5 + 5 / 12, "feet"),
  25233. weight: math.unit(120, "lb"),
  25234. name: "Front",
  25235. image: {
  25236. source: "./media/characters/ari/front.svg",
  25237. extra: 1550/1471,
  25238. bottom: 39/1589
  25239. }
  25240. },
  25241. },
  25242. [
  25243. {
  25244. name: "Normal",
  25245. height: math.unit(5 + 5 / 12, "feet")
  25246. },
  25247. {
  25248. name: "Macro",
  25249. height: math.unit(100, "feet"),
  25250. default: true
  25251. },
  25252. {
  25253. name: "Megamacro",
  25254. height: math.unit(100, "miles")
  25255. },
  25256. {
  25257. name: "Gigamacro",
  25258. height: math.unit(80000, "miles")
  25259. },
  25260. ]
  25261. ))
  25262. characterMakers.push(() => makeCharacter(
  25263. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25264. {
  25265. side: {
  25266. height: math.unit(9, "feet"),
  25267. weight: math.unit(400, "kg"),
  25268. name: "Side",
  25269. image: {
  25270. source: "./media/characters/bolt/side.svg",
  25271. extra: 1126 / 896,
  25272. bottom: 60 / 1187.3,
  25273. }
  25274. },
  25275. },
  25276. [
  25277. {
  25278. name: "Micro",
  25279. height: math.unit(5, "inches")
  25280. },
  25281. {
  25282. name: "Normal",
  25283. height: math.unit(9, "feet"),
  25284. default: true
  25285. },
  25286. {
  25287. name: "Macro",
  25288. height: math.unit(700, "feet")
  25289. },
  25290. {
  25291. name: "Max Size",
  25292. height: math.unit(1.52e22, "yottameters")
  25293. },
  25294. ]
  25295. ))
  25296. characterMakers.push(() => makeCharacter(
  25297. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25298. {
  25299. front: {
  25300. height: math.unit(4.3, "meters"),
  25301. weight: math.unit(3, "tons"),
  25302. name: "Front",
  25303. image: {
  25304. source: "./media/characters/draekon-sylviar/front.svg",
  25305. extra: 2072/1512,
  25306. bottom: 74/2146
  25307. }
  25308. },
  25309. back: {
  25310. height: math.unit(4.3, "meters"),
  25311. weight: math.unit(3, "tons"),
  25312. name: "Back",
  25313. image: {
  25314. source: "./media/characters/draekon-sylviar/back.svg",
  25315. extra: 1639/1483,
  25316. bottom: 41/1680
  25317. }
  25318. },
  25319. feral: {
  25320. height: math.unit(1.15, "meters"),
  25321. weight: math.unit(3, "tons"),
  25322. name: "Feral",
  25323. image: {
  25324. source: "./media/characters/draekon-sylviar/feral.svg",
  25325. extra: 1033/395,
  25326. bottom: 130/1163
  25327. }
  25328. },
  25329. maw: {
  25330. height: math.unit(1.3, "meters"),
  25331. name: "Maw",
  25332. image: {
  25333. source: "./media/characters/draekon-sylviar/maw.svg"
  25334. }
  25335. },
  25336. mawSeparated: {
  25337. height: math.unit(1.53, "meters"),
  25338. name: "Separated Maw",
  25339. image: {
  25340. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25341. }
  25342. },
  25343. tail: {
  25344. height: math.unit(1.15, "meters"),
  25345. name: "Tail",
  25346. image: {
  25347. source: "./media/characters/draekon-sylviar/tail.svg"
  25348. }
  25349. },
  25350. tailDick: {
  25351. height: math.unit(1.15, "meters"),
  25352. name: "Tail (Dick)",
  25353. image: {
  25354. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25355. }
  25356. },
  25357. tailDickSeparated: {
  25358. height: math.unit(1.19, "meters"),
  25359. name: "Tail (Separated Dick)",
  25360. image: {
  25361. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25362. }
  25363. },
  25364. slit: {
  25365. height: math.unit(1, "meters"),
  25366. name: "Slit",
  25367. image: {
  25368. source: "./media/characters/draekon-sylviar/slit.svg"
  25369. }
  25370. },
  25371. dick: {
  25372. height: math.unit(1.15, "meters"),
  25373. name: "Dick",
  25374. image: {
  25375. source: "./media/characters/draekon-sylviar/dick.svg"
  25376. }
  25377. },
  25378. dickSeparated: {
  25379. height: math.unit(1.1, "meters"),
  25380. name: "Separated Dick",
  25381. image: {
  25382. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25383. }
  25384. },
  25385. sheath: {
  25386. height: math.unit(1.15, "meters"),
  25387. name: "Sheath",
  25388. image: {
  25389. source: "./media/characters/draekon-sylviar/sheath.svg"
  25390. }
  25391. },
  25392. },
  25393. [
  25394. {
  25395. name: "Small",
  25396. height: math.unit(4.53 / 2, "meters"),
  25397. default: true
  25398. },
  25399. {
  25400. name: "Normal",
  25401. height: math.unit(4.53, "meters"),
  25402. default: true
  25403. },
  25404. {
  25405. name: "Large",
  25406. height: math.unit(4.53 * 2, "meters"),
  25407. },
  25408. ]
  25409. ))
  25410. characterMakers.push(() => makeCharacter(
  25411. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25412. {
  25413. front: {
  25414. height: math.unit(6 + 2 / 12, "feet"),
  25415. weight: math.unit(180, "lb"),
  25416. name: "Front",
  25417. image: {
  25418. source: "./media/characters/brawler/front.svg",
  25419. extra: 3301 / 3027,
  25420. bottom: 138 / 3439
  25421. }
  25422. },
  25423. },
  25424. [
  25425. {
  25426. name: "Normal",
  25427. height: math.unit(6 + 2 / 12, "feet"),
  25428. default: true
  25429. },
  25430. ]
  25431. ))
  25432. characterMakers.push(() => makeCharacter(
  25433. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25434. {
  25435. front: {
  25436. height: math.unit(11, "feet"),
  25437. weight: math.unit(1000, "lb"),
  25438. name: "Front",
  25439. image: {
  25440. source: "./media/characters/alex/front.svg",
  25441. bottom: 44.5 / 620
  25442. }
  25443. },
  25444. },
  25445. [
  25446. {
  25447. name: "Micro",
  25448. height: math.unit(5, "inches")
  25449. },
  25450. {
  25451. name: "Normal",
  25452. height: math.unit(11, "feet"),
  25453. default: true
  25454. },
  25455. {
  25456. name: "Macro",
  25457. height: math.unit(9.5e9, "feet")
  25458. },
  25459. {
  25460. name: "Max Size",
  25461. height: math.unit(1.4e283, "yottameters")
  25462. },
  25463. ]
  25464. ))
  25465. characterMakers.push(() => makeCharacter(
  25466. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25467. {
  25468. female: {
  25469. height: math.unit(29.9, "m"),
  25470. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25471. name: "Female",
  25472. image: {
  25473. source: "./media/characters/zenari/female.svg",
  25474. extra: 3281.6 / 3217,
  25475. bottom: 72.2 / 3353
  25476. }
  25477. },
  25478. male: {
  25479. height: math.unit(27.7, "m"),
  25480. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25481. name: "Male",
  25482. image: {
  25483. source: "./media/characters/zenari/male.svg",
  25484. extra: 3008 / 2991,
  25485. bottom: 54.6 / 3069
  25486. }
  25487. },
  25488. },
  25489. [
  25490. {
  25491. name: "Macro",
  25492. height: math.unit(29.7, "meters"),
  25493. default: true
  25494. },
  25495. ]
  25496. ))
  25497. characterMakers.push(() => makeCharacter(
  25498. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25499. {
  25500. female: {
  25501. height: math.unit(23.8, "m"),
  25502. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25503. name: "Female",
  25504. image: {
  25505. source: "./media/characters/mactarian/female.svg",
  25506. extra: 2662 / 2569,
  25507. bottom: 73 / 2736
  25508. }
  25509. },
  25510. male: {
  25511. height: math.unit(23.8, "m"),
  25512. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25513. name: "Male",
  25514. image: {
  25515. source: "./media/characters/mactarian/male.svg",
  25516. extra: 2673 / 2600,
  25517. bottom: 76 / 2750
  25518. }
  25519. },
  25520. },
  25521. [
  25522. {
  25523. name: "Macro",
  25524. height: math.unit(23.8, "meters"),
  25525. default: true
  25526. },
  25527. ]
  25528. ))
  25529. characterMakers.push(() => makeCharacter(
  25530. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25531. {
  25532. female: {
  25533. height: math.unit(19.3, "m"),
  25534. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25535. name: "Female",
  25536. image: {
  25537. source: "./media/characters/umok/female.svg",
  25538. extra: 2186 / 2078,
  25539. bottom: 87 / 2277
  25540. }
  25541. },
  25542. male: {
  25543. height: math.unit(19.5, "m"),
  25544. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25545. name: "Male",
  25546. image: {
  25547. source: "./media/characters/umok/male.svg",
  25548. extra: 2233 / 2140,
  25549. bottom: 24.4 / 2258
  25550. }
  25551. },
  25552. },
  25553. [
  25554. {
  25555. name: "Macro",
  25556. height: math.unit(19.3, "meters"),
  25557. default: true
  25558. },
  25559. ]
  25560. ))
  25561. characterMakers.push(() => makeCharacter(
  25562. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25563. {
  25564. female: {
  25565. height: math.unit(26.15, "m"),
  25566. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25567. name: "Female",
  25568. image: {
  25569. source: "./media/characters/joraxian/female.svg",
  25570. extra: 2912 / 2824,
  25571. bottom: 36 / 2956
  25572. }
  25573. },
  25574. male: {
  25575. height: math.unit(25.4, "m"),
  25576. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25577. name: "Male",
  25578. image: {
  25579. source: "./media/characters/joraxian/male.svg",
  25580. extra: 2877 / 2721,
  25581. bottom: 82 / 2967
  25582. }
  25583. },
  25584. },
  25585. [
  25586. {
  25587. name: "Macro",
  25588. height: math.unit(26.15, "meters"),
  25589. default: true
  25590. },
  25591. ]
  25592. ))
  25593. characterMakers.push(() => makeCharacter(
  25594. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25595. {
  25596. female: {
  25597. height: math.unit(21.6, "m"),
  25598. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25599. name: "Female",
  25600. image: {
  25601. source: "./media/characters/sthara/female.svg",
  25602. extra: 2516 / 2347,
  25603. bottom: 21.5 / 2537
  25604. }
  25605. },
  25606. male: {
  25607. height: math.unit(24, "m"),
  25608. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25609. name: "Male",
  25610. image: {
  25611. source: "./media/characters/sthara/male.svg",
  25612. extra: 2732 / 2607,
  25613. bottom: 23 / 2732
  25614. }
  25615. },
  25616. },
  25617. [
  25618. {
  25619. name: "Macro",
  25620. height: math.unit(21.6, "meters"),
  25621. default: true
  25622. },
  25623. ]
  25624. ))
  25625. characterMakers.push(() => makeCharacter(
  25626. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25627. {
  25628. front: {
  25629. height: math.unit(6 + 4 / 12, "feet"),
  25630. weight: math.unit(175, "lb"),
  25631. name: "Front",
  25632. image: {
  25633. source: "./media/characters/luka-bryzant/front.svg",
  25634. extra: 311 / 289,
  25635. bottom: 4 / 315
  25636. }
  25637. },
  25638. back: {
  25639. height: math.unit(6 + 4 / 12, "feet"),
  25640. weight: math.unit(175, "lb"),
  25641. name: "Back",
  25642. image: {
  25643. source: "./media/characters/luka-bryzant/back.svg",
  25644. extra: 311 / 289,
  25645. bottom: 3.8 / 313.7
  25646. }
  25647. },
  25648. },
  25649. [
  25650. {
  25651. name: "Micro",
  25652. height: math.unit(10, "inches")
  25653. },
  25654. {
  25655. name: "Normal",
  25656. height: math.unit(6 + 4 / 12, "feet"),
  25657. default: true
  25658. },
  25659. {
  25660. name: "Large",
  25661. height: math.unit(12, "feet")
  25662. },
  25663. ]
  25664. ))
  25665. characterMakers.push(() => makeCharacter(
  25666. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25667. {
  25668. front: {
  25669. height: math.unit(5 + 7 / 12, "feet"),
  25670. weight: math.unit(185, "lb"),
  25671. name: "Front",
  25672. image: {
  25673. source: "./media/characters/aman-aquila/front.svg",
  25674. extra: 1013 / 976,
  25675. bottom: 45.6 / 1057
  25676. }
  25677. },
  25678. side: {
  25679. height: math.unit(5 + 7 / 12, "feet"),
  25680. weight: math.unit(185, "lb"),
  25681. name: "Side",
  25682. image: {
  25683. source: "./media/characters/aman-aquila/side.svg",
  25684. extra: 1054 / 1011,
  25685. bottom: 15 / 1070
  25686. }
  25687. },
  25688. back: {
  25689. height: math.unit(5 + 7 / 12, "feet"),
  25690. weight: math.unit(185, "lb"),
  25691. name: "Back",
  25692. image: {
  25693. source: "./media/characters/aman-aquila/back.svg",
  25694. extra: 1026 / 970,
  25695. bottom: 12 / 1039
  25696. }
  25697. },
  25698. head: {
  25699. height: math.unit(1.211, "feet"),
  25700. name: "Head",
  25701. image: {
  25702. source: "./media/characters/aman-aquila/head.svg",
  25703. }
  25704. },
  25705. },
  25706. [
  25707. {
  25708. name: "Minimicro",
  25709. height: math.unit(0.057, "inches")
  25710. },
  25711. {
  25712. name: "Micro",
  25713. height: math.unit(7, "inches")
  25714. },
  25715. {
  25716. name: "Mini",
  25717. height: math.unit(3 + 7 / 12, "feet")
  25718. },
  25719. {
  25720. name: "Normal",
  25721. height: math.unit(5 + 7 / 12, "feet"),
  25722. default: true
  25723. },
  25724. {
  25725. name: "Macro",
  25726. height: math.unit(157 + 7 / 12, "feet")
  25727. },
  25728. {
  25729. name: "Megamacro",
  25730. height: math.unit(1557 + 7 / 12, "feet")
  25731. },
  25732. {
  25733. name: "Gigamacro",
  25734. height: math.unit(15557 + 7 / 12, "feet")
  25735. },
  25736. ]
  25737. ))
  25738. characterMakers.push(() => makeCharacter(
  25739. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25740. {
  25741. front: {
  25742. height: math.unit(3 + 2 / 12, "inches"),
  25743. weight: math.unit(0.3, "ounces"),
  25744. name: "Front",
  25745. image: {
  25746. source: "./media/characters/hiphae/front.svg",
  25747. extra: 1931 / 1683,
  25748. bottom: 24 / 1955
  25749. }
  25750. },
  25751. },
  25752. [
  25753. {
  25754. name: "Normal",
  25755. height: math.unit(3 + 1 / 2, "inches"),
  25756. default: true
  25757. },
  25758. ]
  25759. ))
  25760. characterMakers.push(() => makeCharacter(
  25761. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25762. {
  25763. front: {
  25764. height: math.unit(5 + 10 / 12, "feet"),
  25765. weight: math.unit(165, "lb"),
  25766. name: "Front",
  25767. image: {
  25768. source: "./media/characters/nicky/front.svg",
  25769. extra: 3144 / 2886,
  25770. bottom: 45.6 / 3192
  25771. }
  25772. },
  25773. back: {
  25774. height: math.unit(5 + 10 / 12, "feet"),
  25775. weight: math.unit(165, "lb"),
  25776. name: "Back",
  25777. image: {
  25778. source: "./media/characters/nicky/back.svg",
  25779. extra: 3055 / 2804,
  25780. bottom: 28.4 / 3087
  25781. }
  25782. },
  25783. frontclothed: {
  25784. height: math.unit(5 + 10 / 12, "feet"),
  25785. weight: math.unit(165, "lb"),
  25786. name: "Front-clothed",
  25787. image: {
  25788. source: "./media/characters/nicky/front-clothed.svg",
  25789. extra: 3184.9 / 2926.9,
  25790. bottom: 86.5 / 3239.9
  25791. }
  25792. },
  25793. foot: {
  25794. height: math.unit(1.16, "feet"),
  25795. name: "Foot",
  25796. image: {
  25797. source: "./media/characters/nicky/foot.svg"
  25798. }
  25799. },
  25800. feet: {
  25801. height: math.unit(1.34, "feet"),
  25802. name: "Feet",
  25803. image: {
  25804. source: "./media/characters/nicky/feet.svg"
  25805. }
  25806. },
  25807. maw: {
  25808. height: math.unit(0.9, "feet"),
  25809. name: "Maw",
  25810. image: {
  25811. source: "./media/characters/nicky/maw.svg"
  25812. }
  25813. },
  25814. },
  25815. [
  25816. {
  25817. name: "Normal",
  25818. height: math.unit(5 + 10 / 12, "feet"),
  25819. default: true
  25820. },
  25821. {
  25822. name: "Macro",
  25823. height: math.unit(60, "feet")
  25824. },
  25825. {
  25826. name: "Megamacro",
  25827. height: math.unit(1, "mile")
  25828. },
  25829. ]
  25830. ))
  25831. characterMakers.push(() => makeCharacter(
  25832. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25833. {
  25834. side: {
  25835. height: math.unit(10, "feet"),
  25836. weight: math.unit(600, "lb"),
  25837. name: "Side",
  25838. image: {
  25839. source: "./media/characters/blair/side.svg",
  25840. bottom: 16.6 / 475,
  25841. extra: 458 / 431
  25842. }
  25843. },
  25844. },
  25845. [
  25846. {
  25847. name: "Micro",
  25848. height: math.unit(8, "inches")
  25849. },
  25850. {
  25851. name: "Normal",
  25852. height: math.unit(10, "feet"),
  25853. default: true
  25854. },
  25855. {
  25856. name: "Macro",
  25857. height: math.unit(180, "feet")
  25858. },
  25859. ]
  25860. ))
  25861. characterMakers.push(() => makeCharacter(
  25862. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25863. {
  25864. front: {
  25865. height: math.unit(5 + 4 / 12, "feet"),
  25866. weight: math.unit(125, "lb"),
  25867. name: "Front",
  25868. image: {
  25869. source: "./media/characters/fisher/front.svg",
  25870. extra: 444 / 390,
  25871. bottom: 2 / 444.8
  25872. }
  25873. },
  25874. },
  25875. [
  25876. {
  25877. name: "Micro",
  25878. height: math.unit(4, "inches")
  25879. },
  25880. {
  25881. name: "Normal",
  25882. height: math.unit(5 + 4 / 12, "feet"),
  25883. default: true
  25884. },
  25885. {
  25886. name: "Macro",
  25887. height: math.unit(100, "feet")
  25888. },
  25889. ]
  25890. ))
  25891. characterMakers.push(() => makeCharacter(
  25892. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25893. {
  25894. front: {
  25895. height: math.unit(6.71, "feet"),
  25896. weight: math.unit(200, "lb"),
  25897. capacity: math.unit(1000000, "people"),
  25898. name: "Front",
  25899. image: {
  25900. source: "./media/characters/gliss/front.svg",
  25901. extra: 2347 / 2231,
  25902. bottom: 113 / 2462
  25903. }
  25904. },
  25905. hammerspaceSize: {
  25906. height: math.unit(6.71 * 717, "feet"),
  25907. weight: math.unit(200, "lb"),
  25908. capacity: math.unit(1000000, "people"),
  25909. name: "Hammerspace Size",
  25910. image: {
  25911. source: "./media/characters/gliss/front.svg",
  25912. extra: 2347 / 2231,
  25913. bottom: 113 / 2462
  25914. }
  25915. },
  25916. },
  25917. [
  25918. {
  25919. name: "Normal",
  25920. height: math.unit(6.71, "feet"),
  25921. default: true
  25922. },
  25923. ]
  25924. ))
  25925. characterMakers.push(() => makeCharacter(
  25926. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25927. {
  25928. side: {
  25929. height: math.unit(1.44, "m"),
  25930. weight: math.unit(80, "kg"),
  25931. name: "Side",
  25932. image: {
  25933. source: "./media/characters/dune-anderson/side.svg",
  25934. bottom: 49 / 1426
  25935. }
  25936. },
  25937. },
  25938. [
  25939. {
  25940. name: "Wolf-sized",
  25941. height: math.unit(1.44, "meters")
  25942. },
  25943. {
  25944. name: "Normal",
  25945. height: math.unit(5.05, "meters"),
  25946. default: true
  25947. },
  25948. {
  25949. name: "Big",
  25950. height: math.unit(14.4, "meters")
  25951. },
  25952. {
  25953. name: "Huge",
  25954. height: math.unit(144, "meters")
  25955. },
  25956. ]
  25957. ))
  25958. characterMakers.push(() => makeCharacter(
  25959. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25960. {
  25961. front: {
  25962. height: math.unit(7, "feet"),
  25963. weight: math.unit(425, "lb"),
  25964. name: "Front",
  25965. image: {
  25966. source: "./media/characters/hind/front.svg",
  25967. extra: 2091 / 1860,
  25968. bottom: 129 / 2220
  25969. }
  25970. },
  25971. back: {
  25972. height: math.unit(7, "feet"),
  25973. weight: math.unit(425, "lb"),
  25974. name: "Back",
  25975. image: {
  25976. source: "./media/characters/hind/back.svg",
  25977. extra: 2091 / 1860,
  25978. bottom: 24.6 / 2309
  25979. }
  25980. },
  25981. tail: {
  25982. height: math.unit(2.8, "feet"),
  25983. name: "Tail",
  25984. image: {
  25985. source: "./media/characters/hind/tail.svg"
  25986. }
  25987. },
  25988. head: {
  25989. height: math.unit(2.55, "feet"),
  25990. name: "Head",
  25991. image: {
  25992. source: "./media/characters/hind/head.svg"
  25993. }
  25994. },
  25995. },
  25996. [
  25997. {
  25998. name: "XS",
  25999. height: math.unit(0.7, "feet")
  26000. },
  26001. {
  26002. name: "Normal",
  26003. height: math.unit(7, "feet"),
  26004. default: true
  26005. },
  26006. {
  26007. name: "XL",
  26008. height: math.unit(70, "feet")
  26009. },
  26010. ]
  26011. ))
  26012. characterMakers.push(() => makeCharacter(
  26013. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26014. {
  26015. front: {
  26016. height: math.unit(2.1, "meters"),
  26017. weight: math.unit(150, "lb"),
  26018. name: "Front",
  26019. image: {
  26020. source: "./media/characters/tharquench-sizestealer/front.svg",
  26021. extra: 1605/1470,
  26022. bottom: 36/1641
  26023. }
  26024. },
  26025. frontAlt: {
  26026. height: math.unit(2.1, "meters"),
  26027. weight: math.unit(150, "lb"),
  26028. name: "Front (Alt)",
  26029. image: {
  26030. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26031. extra: 2318 / 2063,
  26032. bottom: 93.4 / 2410
  26033. }
  26034. },
  26035. },
  26036. [
  26037. {
  26038. name: "Nano",
  26039. height: math.unit(1, "mm")
  26040. },
  26041. {
  26042. name: "Micro",
  26043. height: math.unit(1, "cm")
  26044. },
  26045. {
  26046. name: "Normal",
  26047. height: math.unit(2.1, "meters"),
  26048. default: true
  26049. },
  26050. ]
  26051. ))
  26052. characterMakers.push(() => makeCharacter(
  26053. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26054. {
  26055. front: {
  26056. height: math.unit(7 + 5 / 12, "feet"),
  26057. weight: math.unit(357, "lb"),
  26058. name: "Front",
  26059. image: {
  26060. source: "./media/characters/solex-draconov/front.svg",
  26061. extra: 1993 / 1865,
  26062. bottom: 117 / 2111
  26063. }
  26064. },
  26065. },
  26066. [
  26067. {
  26068. name: "Natural Height",
  26069. height: math.unit(7 + 5 / 12, "feet"),
  26070. default: true
  26071. },
  26072. {
  26073. name: "Macro",
  26074. height: math.unit(350, "feet")
  26075. },
  26076. {
  26077. name: "Macro+",
  26078. height: math.unit(1000, "feet")
  26079. },
  26080. {
  26081. name: "Megamacro",
  26082. height: math.unit(20, "km")
  26083. },
  26084. {
  26085. name: "Megamacro+",
  26086. height: math.unit(1000, "km")
  26087. },
  26088. {
  26089. name: "Gigamacro",
  26090. height: math.unit(2.5, "Gm")
  26091. },
  26092. {
  26093. name: "Teramacro",
  26094. height: math.unit(15, "Tm")
  26095. },
  26096. {
  26097. name: "Galactic",
  26098. height: math.unit(30, "Zm")
  26099. },
  26100. {
  26101. name: "Universal",
  26102. height: math.unit(21000, "Ym")
  26103. },
  26104. {
  26105. name: "Omniversal",
  26106. height: math.unit(9.861e50, "Ym")
  26107. },
  26108. {
  26109. name: "Existential",
  26110. height: math.unit(1e300, "meters")
  26111. },
  26112. ]
  26113. ))
  26114. characterMakers.push(() => makeCharacter(
  26115. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26116. {
  26117. side: {
  26118. height: math.unit(25, "feet"),
  26119. weight: math.unit(90000, "lb"),
  26120. name: "Side",
  26121. image: {
  26122. source: "./media/characters/mandarax/side.svg",
  26123. extra: 614 / 332,
  26124. bottom: 55 / 630
  26125. }
  26126. },
  26127. lounging: {
  26128. height: math.unit(15.4, "feet"),
  26129. weight: math.unit(90000, "lb"),
  26130. name: "Lounging",
  26131. image: {
  26132. source: "./media/characters/mandarax/lounging.svg",
  26133. extra: 817/609,
  26134. bottom: 685/1502
  26135. }
  26136. },
  26137. head: {
  26138. height: math.unit(11.4, "feet"),
  26139. name: "Head",
  26140. image: {
  26141. source: "./media/characters/mandarax/head.svg"
  26142. }
  26143. },
  26144. belly: {
  26145. height: math.unit(33, "feet"),
  26146. name: "Belly",
  26147. capacity: math.unit(500, "people"),
  26148. image: {
  26149. source: "./media/characters/mandarax/belly.svg"
  26150. }
  26151. },
  26152. dick: {
  26153. height: math.unit(8.46, "feet"),
  26154. name: "Dick",
  26155. image: {
  26156. source: "./media/characters/mandarax/dick.svg"
  26157. }
  26158. },
  26159. top: {
  26160. height: math.unit(28, "meters"),
  26161. name: "Top",
  26162. image: {
  26163. source: "./media/characters/mandarax/top.svg"
  26164. }
  26165. },
  26166. },
  26167. [
  26168. {
  26169. name: "Normal",
  26170. height: math.unit(25, "feet"),
  26171. default: true
  26172. },
  26173. ]
  26174. ))
  26175. characterMakers.push(() => makeCharacter(
  26176. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26177. {
  26178. front: {
  26179. height: math.unit(5, "feet"),
  26180. weight: math.unit(90, "lb"),
  26181. name: "Front",
  26182. image: {
  26183. source: "./media/characters/pixil/front.svg",
  26184. extra: 2000 / 1618,
  26185. bottom: 12.3 / 2011
  26186. }
  26187. },
  26188. },
  26189. [
  26190. {
  26191. name: "Normal",
  26192. height: math.unit(5, "feet"),
  26193. default: true
  26194. },
  26195. {
  26196. name: "Megamacro",
  26197. height: math.unit(10, "miles"),
  26198. },
  26199. ]
  26200. ))
  26201. characterMakers.push(() => makeCharacter(
  26202. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26203. {
  26204. front: {
  26205. height: math.unit(7 + 2 / 12, "feet"),
  26206. weight: math.unit(200, "lb"),
  26207. name: "Front",
  26208. image: {
  26209. source: "./media/characters/angel/front.svg",
  26210. extra: 1830 / 1737,
  26211. bottom: 22.6 / 1854,
  26212. }
  26213. },
  26214. },
  26215. [
  26216. {
  26217. name: "Normal",
  26218. height: math.unit(7 + 2 / 12, "feet"),
  26219. default: true
  26220. },
  26221. {
  26222. name: "Macro",
  26223. height: math.unit(1000, "feet")
  26224. },
  26225. {
  26226. name: "Megamacro",
  26227. height: math.unit(2, "miles")
  26228. },
  26229. {
  26230. name: "Gigamacro",
  26231. height: math.unit(20, "earths")
  26232. },
  26233. ]
  26234. ))
  26235. characterMakers.push(() => makeCharacter(
  26236. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26237. {
  26238. front: {
  26239. height: math.unit(5, "feet"),
  26240. weight: math.unit(180, "lb"),
  26241. name: "Front",
  26242. image: {
  26243. source: "./media/characters/mekana/front.svg",
  26244. extra: 1671 / 1605,
  26245. bottom: 3.5 / 1691
  26246. }
  26247. },
  26248. side: {
  26249. height: math.unit(5, "feet"),
  26250. weight: math.unit(180, "lb"),
  26251. name: "Side",
  26252. image: {
  26253. source: "./media/characters/mekana/side.svg",
  26254. extra: 1671 / 1605,
  26255. bottom: 3.5 / 1691
  26256. }
  26257. },
  26258. back: {
  26259. height: math.unit(5, "feet"),
  26260. weight: math.unit(180, "lb"),
  26261. name: "Back",
  26262. image: {
  26263. source: "./media/characters/mekana/back.svg",
  26264. extra: 1671 / 1605,
  26265. bottom: 3.5 / 1691
  26266. }
  26267. },
  26268. },
  26269. [
  26270. {
  26271. name: "Normal",
  26272. height: math.unit(5, "feet"),
  26273. default: true
  26274. },
  26275. ]
  26276. ))
  26277. characterMakers.push(() => makeCharacter(
  26278. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26279. {
  26280. front: {
  26281. height: math.unit(4 + 6 / 12, "feet"),
  26282. weight: math.unit(80, "lb"),
  26283. name: "Front",
  26284. image: {
  26285. source: "./media/characters/pixie/front.svg",
  26286. extra: 1924 / 1825,
  26287. bottom: 22.4 / 1946
  26288. }
  26289. },
  26290. },
  26291. [
  26292. {
  26293. name: "Normal",
  26294. height: math.unit(4 + 6 / 12, "feet"),
  26295. default: true
  26296. },
  26297. {
  26298. name: "Macro",
  26299. height: math.unit(40, "feet")
  26300. },
  26301. ]
  26302. ))
  26303. characterMakers.push(() => makeCharacter(
  26304. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26305. {
  26306. front: {
  26307. height: math.unit(2.1, "meters"),
  26308. weight: math.unit(200, "lb"),
  26309. name: "Front",
  26310. image: {
  26311. source: "./media/characters/the-lascivious/front.svg",
  26312. extra: 1 / 0.893,
  26313. bottom: 3.5 / 573.7
  26314. }
  26315. },
  26316. },
  26317. [
  26318. {
  26319. name: "Human Scale",
  26320. height: math.unit(2.1, "meters")
  26321. },
  26322. {
  26323. name: "Wolxi Scale",
  26324. height: math.unit(46.2, "m"),
  26325. default: true
  26326. },
  26327. {
  26328. name: "Boinker of Buildings",
  26329. height: math.unit(10, "km")
  26330. },
  26331. {
  26332. name: "Shagger of Skyscrapers",
  26333. height: math.unit(40, "km")
  26334. },
  26335. {
  26336. name: "Banger of Boroughs",
  26337. height: math.unit(4000, "km")
  26338. },
  26339. {
  26340. name: "Screwer of States",
  26341. height: math.unit(100000, "km")
  26342. },
  26343. {
  26344. name: "Pounder of Planets",
  26345. height: math.unit(2000000, "km")
  26346. },
  26347. ]
  26348. ))
  26349. characterMakers.push(() => makeCharacter(
  26350. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26351. {
  26352. front: {
  26353. height: math.unit(6, "feet"),
  26354. weight: math.unit(150, "lb"),
  26355. name: "Front",
  26356. image: {
  26357. source: "./media/characters/aj/front.svg",
  26358. extra: 2039 / 1562,
  26359. bottom: 40 / 2079
  26360. }
  26361. },
  26362. },
  26363. [
  26364. {
  26365. name: "Normal",
  26366. height: math.unit(11 + 6 / 12, "feet"),
  26367. default: true
  26368. },
  26369. {
  26370. name: "Megamacro",
  26371. height: math.unit(60, "megameters")
  26372. },
  26373. ]
  26374. ))
  26375. characterMakers.push(() => makeCharacter(
  26376. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26377. {
  26378. side: {
  26379. height: math.unit(31 + 8 / 12, "feet"),
  26380. weight: math.unit(75000, "kg"),
  26381. name: "Side",
  26382. image: {
  26383. source: "./media/characters/koros/side.svg",
  26384. extra: 1442 / 1297,
  26385. bottom: 122.7 / 1562
  26386. }
  26387. },
  26388. dicksKingsCrown: {
  26389. height: math.unit(6, "feet"),
  26390. name: "Dicks (King's Crown)",
  26391. image: {
  26392. source: "./media/characters/koros/dicks-kings-crown.svg"
  26393. }
  26394. },
  26395. dicksTailSet: {
  26396. height: math.unit(3, "feet"),
  26397. name: "Dicks (Tail Set)",
  26398. image: {
  26399. source: "./media/characters/koros/dicks-tail-set.svg"
  26400. }
  26401. },
  26402. dickCumming: {
  26403. height: math.unit(7.98, "feet"),
  26404. name: "Dick (Cumming)",
  26405. image: {
  26406. source: "./media/characters/koros/dick-cumming.svg"
  26407. }
  26408. },
  26409. dicksBack: {
  26410. height: math.unit(5.9, "feet"),
  26411. name: "Dicks (Back)",
  26412. image: {
  26413. source: "./media/characters/koros/dicks-back.svg"
  26414. }
  26415. },
  26416. dicksFront: {
  26417. height: math.unit(3.72, "feet"),
  26418. name: "Dicks (Front)",
  26419. image: {
  26420. source: "./media/characters/koros/dicks-front.svg"
  26421. }
  26422. },
  26423. dicksPeeking: {
  26424. height: math.unit(3.0, "feet"),
  26425. name: "Dicks (Peeking)",
  26426. image: {
  26427. source: "./media/characters/koros/dicks-peeking.svg"
  26428. }
  26429. },
  26430. eye: {
  26431. height: math.unit(1.7, "feet"),
  26432. name: "Eye",
  26433. image: {
  26434. source: "./media/characters/koros/eye.svg"
  26435. }
  26436. },
  26437. headFront: {
  26438. height: math.unit(11.69, "feet"),
  26439. name: "Head (Front)",
  26440. image: {
  26441. source: "./media/characters/koros/head-front.svg"
  26442. }
  26443. },
  26444. headSide: {
  26445. height: math.unit(14, "feet"),
  26446. name: "Head (Side)",
  26447. image: {
  26448. source: "./media/characters/koros/head-side.svg"
  26449. }
  26450. },
  26451. leg: {
  26452. height: math.unit(17, "feet"),
  26453. name: "Leg",
  26454. image: {
  26455. source: "./media/characters/koros/leg.svg"
  26456. }
  26457. },
  26458. mawSide: {
  26459. height: math.unit(12.8, "feet"),
  26460. name: "Maw (Side)",
  26461. image: {
  26462. source: "./media/characters/koros/maw-side.svg"
  26463. }
  26464. },
  26465. mawSpitting: {
  26466. height: math.unit(17, "feet"),
  26467. name: "Maw (Spitting)",
  26468. image: {
  26469. source: "./media/characters/koros/maw-spitting.svg"
  26470. }
  26471. },
  26472. slit: {
  26473. height: math.unit(2.8, "feet"),
  26474. name: "Slit",
  26475. image: {
  26476. source: "./media/characters/koros/slit.svg"
  26477. }
  26478. },
  26479. stomach: {
  26480. height: math.unit(6.8, "feet"),
  26481. capacity: math.unit(20, "people"),
  26482. name: "Stomach",
  26483. image: {
  26484. source: "./media/characters/koros/stomach.svg"
  26485. }
  26486. },
  26487. wingspanBottom: {
  26488. height: math.unit(114, "feet"),
  26489. name: "Wingspan (Bottom)",
  26490. image: {
  26491. source: "./media/characters/koros/wingspan-bottom.svg"
  26492. }
  26493. },
  26494. wingspanTop: {
  26495. height: math.unit(104, "feet"),
  26496. name: "Wingspan (Top)",
  26497. image: {
  26498. source: "./media/characters/koros/wingspan-top.svg"
  26499. }
  26500. },
  26501. },
  26502. [
  26503. {
  26504. name: "Normal",
  26505. height: math.unit(31 + 8 / 12, "feet"),
  26506. default: true
  26507. },
  26508. ]
  26509. ))
  26510. characterMakers.push(() => makeCharacter(
  26511. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26512. {
  26513. front: {
  26514. height: math.unit(18 + 5 / 12, "feet"),
  26515. weight: math.unit(3750, "kg"),
  26516. name: "Front",
  26517. image: {
  26518. source: "./media/characters/vexx/front.svg",
  26519. extra: 426 / 396,
  26520. bottom: 31.5 / 458
  26521. }
  26522. },
  26523. maw: {
  26524. height: math.unit(6, "feet"),
  26525. name: "Maw",
  26526. image: {
  26527. source: "./media/characters/vexx/maw.svg"
  26528. }
  26529. },
  26530. },
  26531. [
  26532. {
  26533. name: "Normal",
  26534. height: math.unit(18 + 5 / 12, "feet"),
  26535. default: true
  26536. },
  26537. ]
  26538. ))
  26539. characterMakers.push(() => makeCharacter(
  26540. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26541. {
  26542. front: {
  26543. height: math.unit(17 + 6 / 12, "feet"),
  26544. weight: math.unit(150, "lb"),
  26545. name: "Front",
  26546. image: {
  26547. source: "./media/characters/baadra/front.svg",
  26548. extra: 1694/1553,
  26549. bottom: 179/1873
  26550. }
  26551. },
  26552. frontAlt: {
  26553. height: math.unit(17 + 6 / 12, "feet"),
  26554. weight: math.unit(150, "lb"),
  26555. name: "Front (Alt)",
  26556. image: {
  26557. source: "./media/characters/baadra/front-alt.svg",
  26558. extra: 3137 / 2890,
  26559. bottom: 168.4 / 3305
  26560. }
  26561. },
  26562. back: {
  26563. height: math.unit(17 + 6 / 12, "feet"),
  26564. weight: math.unit(150, "lb"),
  26565. name: "Back",
  26566. image: {
  26567. source: "./media/characters/baadra/back.svg",
  26568. extra: 3142 / 2890,
  26569. bottom: 220 / 3371
  26570. }
  26571. },
  26572. head: {
  26573. height: math.unit(5.45, "feet"),
  26574. name: "Head",
  26575. image: {
  26576. source: "./media/characters/baadra/head.svg"
  26577. }
  26578. },
  26579. headAngry: {
  26580. height: math.unit(4.95, "feet"),
  26581. name: "Head (Angry)",
  26582. image: {
  26583. source: "./media/characters/baadra/head-angry.svg"
  26584. }
  26585. },
  26586. headOpen: {
  26587. height: math.unit(6, "feet"),
  26588. name: "Head (Open)",
  26589. image: {
  26590. source: "./media/characters/baadra/head-open.svg"
  26591. }
  26592. },
  26593. },
  26594. [
  26595. {
  26596. name: "Normal",
  26597. height: math.unit(17 + 6 / 12, "feet"),
  26598. default: true
  26599. },
  26600. ]
  26601. ))
  26602. characterMakers.push(() => makeCharacter(
  26603. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26604. {
  26605. front: {
  26606. height: math.unit(7 + 3 / 12, "feet"),
  26607. weight: math.unit(180, "lb"),
  26608. name: "Front",
  26609. image: {
  26610. source: "./media/characters/juri/front.svg",
  26611. extra: 1401 / 1237,
  26612. bottom: 18.5 / 1418
  26613. }
  26614. },
  26615. side: {
  26616. height: math.unit(7 + 3 / 12, "feet"),
  26617. weight: math.unit(180, "lb"),
  26618. name: "Side",
  26619. image: {
  26620. source: "./media/characters/juri/side.svg",
  26621. extra: 1424 / 1242,
  26622. bottom: 18.5 / 1447
  26623. }
  26624. },
  26625. sitting: {
  26626. height: math.unit(6, "feet"),
  26627. weight: math.unit(180, "lb"),
  26628. name: "Sitting",
  26629. image: {
  26630. source: "./media/characters/juri/sitting.svg",
  26631. extra: 1270 / 1143,
  26632. bottom: 100 / 1343
  26633. }
  26634. },
  26635. back: {
  26636. height: math.unit(7 + 3 / 12, "feet"),
  26637. weight: math.unit(180, "lb"),
  26638. name: "Back",
  26639. image: {
  26640. source: "./media/characters/juri/back.svg",
  26641. extra: 1377 / 1240,
  26642. bottom: 23.7 / 1405
  26643. }
  26644. },
  26645. maw: {
  26646. height: math.unit(2.8, "feet"),
  26647. name: "Maw",
  26648. image: {
  26649. source: "./media/characters/juri/maw.svg"
  26650. }
  26651. },
  26652. stomach: {
  26653. height: math.unit(0.89, "feet"),
  26654. capacity: math.unit(4, "liters"),
  26655. name: "Stomach",
  26656. image: {
  26657. source: "./media/characters/juri/stomach.svg"
  26658. }
  26659. },
  26660. },
  26661. [
  26662. {
  26663. name: "Normal",
  26664. height: math.unit(7 + 3 / 12, "feet"),
  26665. default: true
  26666. },
  26667. ]
  26668. ))
  26669. characterMakers.push(() => makeCharacter(
  26670. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26671. {
  26672. fox: {
  26673. height: math.unit(5 + 6 / 12, "feet"),
  26674. weight: math.unit(140, "lb"),
  26675. name: "Fox",
  26676. image: {
  26677. source: "./media/characters/maxene-sita/fox.svg",
  26678. extra: 146 / 138,
  26679. bottom: 2.1 / 148.19
  26680. }
  26681. },
  26682. foxLaying: {
  26683. height: math.unit(1.70, "feet"),
  26684. weight: math.unit(140, "lb"),
  26685. name: "Fox (Laying)",
  26686. image: {
  26687. source: "./media/characters/maxene-sita/fox-laying.svg",
  26688. extra: 910 / 572,
  26689. bottom: 71 / 981
  26690. }
  26691. },
  26692. kitsune: {
  26693. height: math.unit(10, "feet"),
  26694. weight: math.unit(800, "lb"),
  26695. name: "Kitsune",
  26696. image: {
  26697. source: "./media/characters/maxene-sita/kitsune.svg",
  26698. extra: 185 / 176,
  26699. bottom: 4.7 / 189.9
  26700. }
  26701. },
  26702. hellhound: {
  26703. height: math.unit(10, "feet"),
  26704. weight: math.unit(700, "lb"),
  26705. name: "Hellhound",
  26706. image: {
  26707. source: "./media/characters/maxene-sita/hellhound.svg",
  26708. extra: 1600 / 1545,
  26709. bottom: 81 / 1681
  26710. }
  26711. },
  26712. },
  26713. [
  26714. {
  26715. name: "Normal",
  26716. height: math.unit(5 + 6 / 12, "feet"),
  26717. default: true
  26718. },
  26719. ]
  26720. ))
  26721. characterMakers.push(() => makeCharacter(
  26722. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26723. {
  26724. front: {
  26725. height: math.unit(3 + 4 / 12, "feet"),
  26726. weight: math.unit(70, "lb"),
  26727. name: "Front",
  26728. image: {
  26729. source: "./media/characters/maia/front.svg",
  26730. extra: 227 / 219.5,
  26731. bottom: 40 / 267
  26732. }
  26733. },
  26734. back: {
  26735. height: math.unit(3 + 4 / 12, "feet"),
  26736. weight: math.unit(70, "lb"),
  26737. name: "Back",
  26738. image: {
  26739. source: "./media/characters/maia/back.svg",
  26740. extra: 237 / 225
  26741. }
  26742. },
  26743. },
  26744. [
  26745. {
  26746. name: "Normal",
  26747. height: math.unit(3 + 4 / 12, "feet"),
  26748. default: true
  26749. },
  26750. ]
  26751. ))
  26752. characterMakers.push(() => makeCharacter(
  26753. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26754. {
  26755. front: {
  26756. height: math.unit(5 + 10 / 12, "feet"),
  26757. weight: math.unit(197, "lb"),
  26758. name: "Front",
  26759. image: {
  26760. source: "./media/characters/jabaro/front.svg",
  26761. extra: 225 / 216,
  26762. bottom: 5.06 / 230
  26763. }
  26764. },
  26765. back: {
  26766. height: math.unit(5 + 10 / 12, "feet"),
  26767. weight: math.unit(197, "lb"),
  26768. name: "Back",
  26769. image: {
  26770. source: "./media/characters/jabaro/back.svg",
  26771. extra: 225 / 219,
  26772. bottom: 1.9 / 227
  26773. }
  26774. },
  26775. },
  26776. [
  26777. {
  26778. name: "Normal",
  26779. height: math.unit(5 + 10 / 12, "feet"),
  26780. default: true
  26781. },
  26782. ]
  26783. ))
  26784. characterMakers.push(() => makeCharacter(
  26785. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26786. {
  26787. front: {
  26788. height: math.unit(5 + 8 / 12, "feet"),
  26789. weight: math.unit(139, "lb"),
  26790. name: "Front",
  26791. image: {
  26792. source: "./media/characters/risa/front.svg",
  26793. extra: 270 / 260,
  26794. bottom: 11.2 / 282
  26795. }
  26796. },
  26797. back: {
  26798. height: math.unit(5 + 8 / 12, "feet"),
  26799. weight: math.unit(139, "lb"),
  26800. name: "Back",
  26801. image: {
  26802. source: "./media/characters/risa/back.svg",
  26803. extra: 264 / 255,
  26804. bottom: 4 / 268
  26805. }
  26806. },
  26807. },
  26808. [
  26809. {
  26810. name: "Normal",
  26811. height: math.unit(5 + 8 / 12, "feet"),
  26812. default: true
  26813. },
  26814. ]
  26815. ))
  26816. characterMakers.push(() => makeCharacter(
  26817. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26818. {
  26819. front: {
  26820. height: math.unit(2 + 11 / 12, "feet"),
  26821. weight: math.unit(30, "lb"),
  26822. name: "Front",
  26823. image: {
  26824. source: "./media/characters/weatley/front.svg",
  26825. bottom: 10.7 / 414,
  26826. extra: 403.5 / 362
  26827. }
  26828. },
  26829. back: {
  26830. height: math.unit(2 + 11 / 12, "feet"),
  26831. weight: math.unit(30, "lb"),
  26832. name: "Back",
  26833. image: {
  26834. source: "./media/characters/weatley/back.svg",
  26835. bottom: 10.7 / 414,
  26836. extra: 403.5 / 362
  26837. }
  26838. },
  26839. },
  26840. [
  26841. {
  26842. name: "Normal",
  26843. height: math.unit(2 + 11 / 12, "feet"),
  26844. default: true
  26845. },
  26846. ]
  26847. ))
  26848. characterMakers.push(() => makeCharacter(
  26849. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26850. {
  26851. front: {
  26852. height: math.unit(5 + 2 / 12, "feet"),
  26853. weight: math.unit(50, "kg"),
  26854. name: "Front",
  26855. image: {
  26856. source: "./media/characters/mercury-crescent/front.svg",
  26857. extra: 1088 / 1033,
  26858. bottom: 18.9 / 1109
  26859. }
  26860. },
  26861. },
  26862. [
  26863. {
  26864. name: "Normal",
  26865. height: math.unit(5 + 2 / 12, "feet"),
  26866. default: true
  26867. },
  26868. ]
  26869. ))
  26870. characterMakers.push(() => makeCharacter(
  26871. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26872. {
  26873. front: {
  26874. height: math.unit(2, "feet"),
  26875. weight: math.unit(15, "kg"),
  26876. name: "Front",
  26877. image: {
  26878. source: "./media/characters/diamond-jones/front.svg",
  26879. extra: 727/723,
  26880. bottom: 46/773
  26881. }
  26882. },
  26883. },
  26884. [
  26885. {
  26886. name: "Normal",
  26887. height: math.unit(2, "feet"),
  26888. default: true
  26889. },
  26890. ]
  26891. ))
  26892. characterMakers.push(() => makeCharacter(
  26893. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26894. {
  26895. front: {
  26896. height: math.unit(3, "feet"),
  26897. weight: math.unit(30, "kg"),
  26898. name: "Front",
  26899. image: {
  26900. source: "./media/characters/sweet-bit/front.svg",
  26901. extra: 675 / 567,
  26902. bottom: 27.7 / 703
  26903. }
  26904. },
  26905. },
  26906. [
  26907. {
  26908. name: "Normal",
  26909. height: math.unit(3, "feet"),
  26910. default: true
  26911. },
  26912. ]
  26913. ))
  26914. characterMakers.push(() => makeCharacter(
  26915. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26916. {
  26917. side: {
  26918. height: math.unit(9.178, "feet"),
  26919. weight: math.unit(500, "lb"),
  26920. name: "Side",
  26921. image: {
  26922. source: "./media/characters/umbrazen/side.svg",
  26923. extra: 1730 / 1473,
  26924. bottom: 34.6 / 1765
  26925. }
  26926. },
  26927. },
  26928. [
  26929. {
  26930. name: "Normal",
  26931. height: math.unit(9.178, "feet"),
  26932. default: true
  26933. },
  26934. ]
  26935. ))
  26936. characterMakers.push(() => makeCharacter(
  26937. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26938. {
  26939. front: {
  26940. height: math.unit(10, "feet"),
  26941. weight: math.unit(750, "lb"),
  26942. name: "Front",
  26943. image: {
  26944. source: "./media/characters/arlist/front.svg",
  26945. extra: 961 / 778,
  26946. bottom: 6.2 / 986
  26947. }
  26948. },
  26949. },
  26950. [
  26951. {
  26952. name: "Normal",
  26953. height: math.unit(10, "feet"),
  26954. default: true
  26955. },
  26956. ]
  26957. ))
  26958. characterMakers.push(() => makeCharacter(
  26959. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26960. {
  26961. front: {
  26962. height: math.unit(5 + 1 / 12, "feet"),
  26963. weight: math.unit(110, "lb"),
  26964. name: "Front",
  26965. image: {
  26966. source: "./media/characters/aradel/front.svg",
  26967. extra: 324 / 303,
  26968. bottom: 3.6 / 329.4
  26969. }
  26970. },
  26971. },
  26972. [
  26973. {
  26974. name: "Normal",
  26975. height: math.unit(5 + 1 / 12, "feet"),
  26976. default: true
  26977. },
  26978. ]
  26979. ))
  26980. characterMakers.push(() => makeCharacter(
  26981. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26982. {
  26983. dressed: {
  26984. height: math.unit(3 + 8 / 12, "feet"),
  26985. weight: math.unit(50, "lb"),
  26986. name: "Dressed",
  26987. image: {
  26988. source: "./media/characters/serryn/dressed.svg",
  26989. extra: 1792 / 1656,
  26990. bottom: 43.5 / 1840
  26991. }
  26992. },
  26993. nude: {
  26994. height: math.unit(3 + 8 / 12, "feet"),
  26995. weight: math.unit(50, "lb"),
  26996. name: "Nude",
  26997. image: {
  26998. source: "./media/characters/serryn/nude.svg",
  26999. extra: 1792 / 1656,
  27000. bottom: 43.5 / 1840
  27001. }
  27002. },
  27003. },
  27004. [
  27005. {
  27006. name: "Normal",
  27007. height: math.unit(3 + 8 / 12, "feet"),
  27008. default: true
  27009. },
  27010. ]
  27011. ))
  27012. characterMakers.push(() => makeCharacter(
  27013. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27014. {
  27015. front: {
  27016. height: math.unit(7 + 10 / 12, "feet"),
  27017. weight: math.unit(255, "lb"),
  27018. name: "Front",
  27019. image: {
  27020. source: "./media/characters/xavier-thyme/front.svg",
  27021. extra: 3733 / 3642,
  27022. bottom: 131 / 3869
  27023. }
  27024. },
  27025. frontRaven: {
  27026. height: math.unit(7 + 10 / 12, "feet"),
  27027. weight: math.unit(255, "lb"),
  27028. name: "Front (Raven)",
  27029. image: {
  27030. source: "./media/characters/xavier-thyme/front-raven.svg",
  27031. extra: 4385 / 3642,
  27032. bottom: 131 / 4517
  27033. }
  27034. },
  27035. },
  27036. [
  27037. {
  27038. name: "Normal",
  27039. height: math.unit(7 + 10 / 12, "feet"),
  27040. default: true
  27041. },
  27042. ]
  27043. ))
  27044. characterMakers.push(() => makeCharacter(
  27045. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27046. {
  27047. front: {
  27048. height: math.unit(1.6, "m"),
  27049. weight: math.unit(50, "kg"),
  27050. name: "Front",
  27051. image: {
  27052. source: "./media/characters/kiki/front.svg",
  27053. extra: 4682 / 3610,
  27054. bottom: 115 / 4777
  27055. }
  27056. },
  27057. },
  27058. [
  27059. {
  27060. name: "Normal",
  27061. height: math.unit(1.6, "meters"),
  27062. default: true
  27063. },
  27064. ]
  27065. ))
  27066. characterMakers.push(() => makeCharacter(
  27067. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27068. {
  27069. front: {
  27070. height: math.unit(50, "m"),
  27071. weight: math.unit(500, "tonnes"),
  27072. name: "Front",
  27073. image: {
  27074. source: "./media/characters/ryoko/front.svg",
  27075. extra: 4632 / 3926,
  27076. bottom: 193 / 4823
  27077. }
  27078. },
  27079. },
  27080. [
  27081. {
  27082. name: "Normal",
  27083. height: math.unit(50, "meters"),
  27084. default: true
  27085. },
  27086. ]
  27087. ))
  27088. characterMakers.push(() => makeCharacter(
  27089. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27090. {
  27091. front: {
  27092. height: math.unit(30, "m"),
  27093. weight: math.unit(22, "tonnes"),
  27094. name: "Front",
  27095. image: {
  27096. source: "./media/characters/elio/front.svg",
  27097. extra: 4582 / 3720,
  27098. bottom: 236 / 4828
  27099. }
  27100. },
  27101. },
  27102. [
  27103. {
  27104. name: "Normal",
  27105. height: math.unit(30, "meters"),
  27106. default: true
  27107. },
  27108. ]
  27109. ))
  27110. characterMakers.push(() => makeCharacter(
  27111. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27112. {
  27113. front: {
  27114. height: math.unit(6 + 3 / 12, "feet"),
  27115. weight: math.unit(120, "lb"),
  27116. name: "Front",
  27117. image: {
  27118. source: "./media/characters/azura/front.svg",
  27119. extra: 1149 / 1135,
  27120. bottom: 45 / 1194
  27121. }
  27122. },
  27123. frontClothed: {
  27124. height: math.unit(6 + 3 / 12, "feet"),
  27125. weight: math.unit(120, "lb"),
  27126. name: "Front (Clothed)",
  27127. image: {
  27128. source: "./media/characters/azura/front-clothed.svg",
  27129. extra: 1149 / 1135,
  27130. bottom: 45 / 1194
  27131. }
  27132. },
  27133. },
  27134. [
  27135. {
  27136. name: "Normal",
  27137. height: math.unit(6 + 3 / 12, "feet"),
  27138. default: true
  27139. },
  27140. {
  27141. name: "Macro",
  27142. height: math.unit(20 + 6 / 12, "feet")
  27143. },
  27144. {
  27145. name: "Megamacro",
  27146. height: math.unit(12, "miles")
  27147. },
  27148. {
  27149. name: "Gigamacro",
  27150. height: math.unit(10000, "miles")
  27151. },
  27152. {
  27153. name: "Teramacro",
  27154. height: math.unit(900000, "miles")
  27155. },
  27156. ]
  27157. ))
  27158. characterMakers.push(() => makeCharacter(
  27159. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27160. {
  27161. front: {
  27162. height: math.unit(12, "feet"),
  27163. weight: math.unit(1, "ton"),
  27164. capacity: math.unit(660000, "gallons"),
  27165. name: "Front",
  27166. image: {
  27167. source: "./media/characters/zeus/front.svg",
  27168. extra: 5005 / 4717,
  27169. bottom: 363 / 5388
  27170. }
  27171. },
  27172. },
  27173. [
  27174. {
  27175. name: "Normal",
  27176. height: math.unit(12, "feet")
  27177. },
  27178. {
  27179. name: "Preferred Size",
  27180. height: math.unit(0.5, "miles"),
  27181. default: true
  27182. },
  27183. {
  27184. name: "Giga Horse",
  27185. height: math.unit(300, "miles")
  27186. },
  27187. {
  27188. name: "Riding Planets",
  27189. height: math.unit(30, "megameters")
  27190. },
  27191. {
  27192. name: "Cosmic Giant",
  27193. height: math.unit(3, "zettameters")
  27194. },
  27195. {
  27196. name: "Breeding God",
  27197. height: math.unit(9.92e22, "yottameters")
  27198. },
  27199. ]
  27200. ))
  27201. characterMakers.push(() => makeCharacter(
  27202. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27203. {
  27204. side: {
  27205. height: math.unit(9, "feet"),
  27206. weight: math.unit(1500, "kg"),
  27207. name: "Side",
  27208. image: {
  27209. source: "./media/characters/fang/side.svg",
  27210. extra: 924 / 866,
  27211. bottom: 47.5 / 972.3
  27212. }
  27213. },
  27214. },
  27215. [
  27216. {
  27217. name: "Normal",
  27218. height: math.unit(9, "feet"),
  27219. default: true
  27220. },
  27221. {
  27222. name: "Macro",
  27223. height: math.unit(75 + 6 / 12, "feet")
  27224. },
  27225. {
  27226. name: "Teramacro",
  27227. height: math.unit(50000, "miles")
  27228. },
  27229. ]
  27230. ))
  27231. characterMakers.push(() => makeCharacter(
  27232. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27233. {
  27234. front: {
  27235. height: math.unit(10, "feet"),
  27236. weight: math.unit(2, "tons"),
  27237. name: "Front",
  27238. image: {
  27239. source: "./media/characters/rekhit/front.svg",
  27240. extra: 2796 / 2590,
  27241. bottom: 225 / 3022
  27242. }
  27243. },
  27244. },
  27245. [
  27246. {
  27247. name: "Normal",
  27248. height: math.unit(10, "feet"),
  27249. default: true
  27250. },
  27251. {
  27252. name: "Macro",
  27253. height: math.unit(500, "feet")
  27254. },
  27255. ]
  27256. ))
  27257. characterMakers.push(() => makeCharacter(
  27258. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27259. {
  27260. front: {
  27261. height: math.unit(7 + 6.451 / 12, "feet"),
  27262. weight: math.unit(310, "lb"),
  27263. name: "Front",
  27264. image: {
  27265. source: "./media/characters/dahlia-verrick/front.svg",
  27266. extra: 1488 / 1365,
  27267. bottom: 6.2 / 1495
  27268. }
  27269. },
  27270. back: {
  27271. height: math.unit(7 + 6.451 / 12, "feet"),
  27272. weight: math.unit(310, "lb"),
  27273. name: "Back",
  27274. image: {
  27275. source: "./media/characters/dahlia-verrick/back.svg",
  27276. extra: 1472 / 1351,
  27277. bottom: 5.28 / 1477
  27278. }
  27279. },
  27280. frontBusiness: {
  27281. height: math.unit(7 + 6.451 / 12, "feet"),
  27282. weight: math.unit(200, "lb"),
  27283. name: "Front (Business)",
  27284. image: {
  27285. source: "./media/characters/dahlia-verrick/front-business.svg",
  27286. extra: 1478 / 1381,
  27287. bottom: 5.5 / 1484
  27288. }
  27289. },
  27290. frontCasual: {
  27291. height: math.unit(7 + 6.451 / 12, "feet"),
  27292. weight: math.unit(200, "lb"),
  27293. name: "Front (Casual)",
  27294. image: {
  27295. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27296. extra: 1478 / 1381,
  27297. bottom: 5.5 / 1484
  27298. }
  27299. },
  27300. },
  27301. [
  27302. {
  27303. name: "Travel-Sized",
  27304. height: math.unit(7.45, "inches")
  27305. },
  27306. {
  27307. name: "Normal",
  27308. height: math.unit(7 + 6.451 / 12, "feet"),
  27309. default: true
  27310. },
  27311. {
  27312. name: "Hitting the Town",
  27313. height: math.unit(37 + 8 / 12, "feet")
  27314. },
  27315. {
  27316. name: "Stomp in the Suburbs",
  27317. height: math.unit(964 + 9.728 / 12, "feet")
  27318. },
  27319. {
  27320. name: "Sit on the City",
  27321. height: math.unit(61747 + 10.592 / 12, "feet")
  27322. },
  27323. {
  27324. name: "Glomp the Globe",
  27325. height: math.unit(252919327 + 4.832 / 12, "feet")
  27326. },
  27327. ]
  27328. ))
  27329. characterMakers.push(() => makeCharacter(
  27330. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27331. {
  27332. front: {
  27333. height: math.unit(6 + 4 / 12, "feet"),
  27334. weight: math.unit(320, "lb"),
  27335. name: "Front",
  27336. image: {
  27337. source: "./media/characters/balina-mahigan/front.svg",
  27338. extra: 447 / 428,
  27339. bottom: 18 / 466
  27340. }
  27341. },
  27342. back: {
  27343. height: math.unit(6 + 4 / 12, "feet"),
  27344. weight: math.unit(320, "lb"),
  27345. name: "Back",
  27346. image: {
  27347. source: "./media/characters/balina-mahigan/back.svg",
  27348. extra: 445 / 428,
  27349. bottom: 4.07 / 448
  27350. }
  27351. },
  27352. arm: {
  27353. height: math.unit(1.88, "feet"),
  27354. name: "Arm",
  27355. image: {
  27356. source: "./media/characters/balina-mahigan/arm.svg"
  27357. }
  27358. },
  27359. backPort: {
  27360. height: math.unit(0.685, "feet"),
  27361. name: "Back Port",
  27362. image: {
  27363. source: "./media/characters/balina-mahigan/back-port.svg"
  27364. }
  27365. },
  27366. hoofpaw: {
  27367. height: math.unit(1.41, "feet"),
  27368. name: "Hoofpaw",
  27369. image: {
  27370. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27371. }
  27372. },
  27373. leftHandBack: {
  27374. height: math.unit(0.938, "feet"),
  27375. name: "Left Hand (Back)",
  27376. image: {
  27377. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27378. }
  27379. },
  27380. leftHandFront: {
  27381. height: math.unit(0.938, "feet"),
  27382. name: "Left Hand (Front)",
  27383. image: {
  27384. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27385. }
  27386. },
  27387. rightHandBack: {
  27388. height: math.unit(0.95, "feet"),
  27389. name: "Right Hand (Back)",
  27390. image: {
  27391. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27392. }
  27393. },
  27394. rightHandFront: {
  27395. height: math.unit(0.95, "feet"),
  27396. name: "Right Hand (Front)",
  27397. image: {
  27398. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27399. }
  27400. },
  27401. },
  27402. [
  27403. {
  27404. name: "Normal",
  27405. height: math.unit(6 + 4 / 12, "feet"),
  27406. default: true
  27407. },
  27408. ]
  27409. ))
  27410. characterMakers.push(() => makeCharacter(
  27411. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27412. {
  27413. front: {
  27414. height: math.unit(6, "feet"),
  27415. weight: math.unit(320, "lb"),
  27416. name: "Front",
  27417. image: {
  27418. source: "./media/characters/balina-mejeri/front.svg",
  27419. extra: 517 / 488,
  27420. bottom: 44.2 / 561
  27421. }
  27422. },
  27423. },
  27424. [
  27425. {
  27426. name: "Normal",
  27427. height: math.unit(6 + 4 / 12, "feet")
  27428. },
  27429. {
  27430. name: "Business",
  27431. height: math.unit(155, "feet"),
  27432. default: true
  27433. },
  27434. ]
  27435. ))
  27436. characterMakers.push(() => makeCharacter(
  27437. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27438. {
  27439. kneeling: {
  27440. height: math.unit(6 + 4 / 12, "feet"),
  27441. weight: math.unit(300 * 20, "lb"),
  27442. name: "Kneeling",
  27443. image: {
  27444. source: "./media/characters/balbarian/kneeling.svg",
  27445. extra: 922 / 862,
  27446. bottom: 42.4 / 965
  27447. }
  27448. },
  27449. },
  27450. [
  27451. {
  27452. name: "Normal",
  27453. height: math.unit(6 + 4 / 12, "feet")
  27454. },
  27455. {
  27456. name: "Treasured",
  27457. height: math.unit(18 + 9 / 12, "feet"),
  27458. default: true
  27459. },
  27460. {
  27461. name: "Macro",
  27462. height: math.unit(900, "feet")
  27463. },
  27464. ]
  27465. ))
  27466. characterMakers.push(() => makeCharacter(
  27467. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27468. {
  27469. front: {
  27470. height: math.unit(6 + 4 / 12, "feet"),
  27471. weight: math.unit(325, "lb"),
  27472. name: "Front",
  27473. image: {
  27474. source: "./media/characters/balina-amarini/front.svg",
  27475. extra: 415 / 403,
  27476. bottom: 19 / 433.4
  27477. }
  27478. },
  27479. back: {
  27480. height: math.unit(6 + 4 / 12, "feet"),
  27481. weight: math.unit(325, "lb"),
  27482. name: "Back",
  27483. image: {
  27484. source: "./media/characters/balina-amarini/back.svg",
  27485. extra: 415 / 403,
  27486. bottom: 13.5 / 432
  27487. }
  27488. },
  27489. overdrive: {
  27490. height: math.unit(6 + 4 / 12, "feet"),
  27491. weight: math.unit(400, "lb"),
  27492. name: "Overdrive",
  27493. image: {
  27494. source: "./media/characters/balina-amarini/overdrive.svg",
  27495. extra: 269 / 259,
  27496. bottom: 12 / 282
  27497. }
  27498. },
  27499. },
  27500. [
  27501. {
  27502. name: "Boom",
  27503. height: math.unit(9 + 10 / 12, "feet"),
  27504. default: true
  27505. },
  27506. {
  27507. name: "Macro",
  27508. height: math.unit(280, "feet")
  27509. },
  27510. ]
  27511. ))
  27512. characterMakers.push(() => makeCharacter(
  27513. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27514. {
  27515. goddess: {
  27516. height: math.unit(600, "feet"),
  27517. weight: math.unit(2000000, "tons"),
  27518. name: "Goddess",
  27519. image: {
  27520. source: "./media/characters/lady-kubwa/goddess.svg",
  27521. extra: 1240.5 / 1223,
  27522. bottom: 22 / 1263
  27523. }
  27524. },
  27525. goddesser: {
  27526. height: math.unit(900, "feet"),
  27527. weight: math.unit(20000000, "lb"),
  27528. name: "Goddess-er",
  27529. image: {
  27530. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27531. extra: 899 / 888,
  27532. bottom: 12.6 / 912
  27533. }
  27534. },
  27535. },
  27536. [
  27537. {
  27538. name: "Macro",
  27539. height: math.unit(600, "feet"),
  27540. default: true
  27541. },
  27542. {
  27543. name: "Megamacro",
  27544. height: math.unit(250, "miles")
  27545. },
  27546. ]
  27547. ))
  27548. characterMakers.push(() => makeCharacter(
  27549. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27550. {
  27551. front: {
  27552. height: math.unit(7 + 7 / 12, "feet"),
  27553. weight: math.unit(250, "lb"),
  27554. name: "Front",
  27555. image: {
  27556. source: "./media/characters/tala-grovehorn/front.svg",
  27557. extra: 2636 / 2525,
  27558. bottom: 147 / 2781
  27559. }
  27560. },
  27561. back: {
  27562. height: math.unit(7 + 7 / 12, "feet"),
  27563. weight: math.unit(250, "lb"),
  27564. name: "Back",
  27565. image: {
  27566. source: "./media/characters/tala-grovehorn/back.svg",
  27567. extra: 2635 / 2539,
  27568. bottom: 100 / 2732.8
  27569. }
  27570. },
  27571. mouth: {
  27572. height: math.unit(1.15, "feet"),
  27573. name: "Mouth",
  27574. image: {
  27575. source: "./media/characters/tala-grovehorn/mouth.svg"
  27576. }
  27577. },
  27578. dick: {
  27579. height: math.unit(2.36, "feet"),
  27580. name: "Dick",
  27581. image: {
  27582. source: "./media/characters/tala-grovehorn/dick.svg"
  27583. }
  27584. },
  27585. slit: {
  27586. height: math.unit(0.61, "feet"),
  27587. name: "Slit",
  27588. image: {
  27589. source: "./media/characters/tala-grovehorn/slit.svg"
  27590. }
  27591. },
  27592. },
  27593. [
  27594. ]
  27595. ))
  27596. characterMakers.push(() => makeCharacter(
  27597. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27598. {
  27599. front: {
  27600. height: math.unit(7 + 7 / 12, "feet"),
  27601. weight: math.unit(225, "lb"),
  27602. name: "Front",
  27603. image: {
  27604. source: "./media/characters/epona/front.svg",
  27605. extra: 2445 / 2290,
  27606. bottom: 251 / 2696
  27607. }
  27608. },
  27609. back: {
  27610. height: math.unit(7 + 7 / 12, "feet"),
  27611. weight: math.unit(225, "lb"),
  27612. name: "Back",
  27613. image: {
  27614. source: "./media/characters/epona/back.svg",
  27615. extra: 2546 / 2408,
  27616. bottom: 44 / 2589
  27617. }
  27618. },
  27619. genitals: {
  27620. height: math.unit(1.5, "feet"),
  27621. name: "Genitals",
  27622. image: {
  27623. source: "./media/characters/epona/genitals.svg"
  27624. }
  27625. },
  27626. },
  27627. [
  27628. {
  27629. name: "Normal",
  27630. height: math.unit(7 + 7 / 12, "feet"),
  27631. default: true
  27632. },
  27633. ]
  27634. ))
  27635. characterMakers.push(() => makeCharacter(
  27636. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27637. {
  27638. front: {
  27639. height: math.unit(7, "feet"),
  27640. weight: math.unit(518, "lb"),
  27641. name: "Front",
  27642. image: {
  27643. source: "./media/characters/avia-bloodbourn/front.svg",
  27644. extra: 1466 / 1350,
  27645. bottom: 65 / 1527
  27646. }
  27647. },
  27648. },
  27649. [
  27650. ]
  27651. ))
  27652. characterMakers.push(() => makeCharacter(
  27653. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27654. {
  27655. front: {
  27656. height: math.unit(9.35, "feet"),
  27657. weight: math.unit(600, "lb"),
  27658. name: "Front",
  27659. image: {
  27660. source: "./media/characters/amera/front.svg",
  27661. extra: 891 / 818,
  27662. bottom: 30 / 922.7
  27663. }
  27664. },
  27665. back: {
  27666. height: math.unit(9.35, "feet"),
  27667. weight: math.unit(600, "lb"),
  27668. name: "Back",
  27669. image: {
  27670. source: "./media/characters/amera/back.svg",
  27671. extra: 876 / 824,
  27672. bottom: 6.8 / 884
  27673. }
  27674. },
  27675. dick: {
  27676. height: math.unit(2.14, "feet"),
  27677. name: "Dick",
  27678. image: {
  27679. source: "./media/characters/amera/dick.svg"
  27680. }
  27681. },
  27682. },
  27683. [
  27684. {
  27685. name: "Normal",
  27686. height: math.unit(9.35, "feet"),
  27687. default: true
  27688. },
  27689. ]
  27690. ))
  27691. characterMakers.push(() => makeCharacter(
  27692. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27693. {
  27694. kneeling: {
  27695. height: math.unit(3 + 4 / 12, "feet"),
  27696. weight: math.unit(90, "lb"),
  27697. name: "Kneeling",
  27698. image: {
  27699. source: "./media/characters/rosewen/kneeling.svg",
  27700. extra: 1835 / 1571,
  27701. bottom: 27.7 / 1862
  27702. }
  27703. },
  27704. },
  27705. [
  27706. {
  27707. name: "Normal",
  27708. height: math.unit(3 + 4 / 12, "feet"),
  27709. default: true
  27710. },
  27711. ]
  27712. ))
  27713. characterMakers.push(() => makeCharacter(
  27714. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27715. {
  27716. front: {
  27717. height: math.unit(5 + 10 / 12, "feet"),
  27718. weight: math.unit(200, "lb"),
  27719. name: "Front",
  27720. image: {
  27721. source: "./media/characters/sabah/front.svg",
  27722. extra: 849 / 763,
  27723. bottom: 33.9 / 881
  27724. }
  27725. },
  27726. },
  27727. [
  27728. {
  27729. name: "Normal",
  27730. height: math.unit(5 + 10 / 12, "feet"),
  27731. default: true
  27732. },
  27733. ]
  27734. ))
  27735. characterMakers.push(() => makeCharacter(
  27736. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27737. {
  27738. front: {
  27739. height: math.unit(3 + 5 / 12, "feet"),
  27740. weight: math.unit(40, "kg"),
  27741. name: "Front",
  27742. image: {
  27743. source: "./media/characters/purple-flame/front.svg",
  27744. extra: 1577 / 1412,
  27745. bottom: 97 / 1694
  27746. }
  27747. },
  27748. frontDressed: {
  27749. height: math.unit(3 + 5 / 12, "feet"),
  27750. weight: math.unit(40, "kg"),
  27751. name: "Front (Dressed)",
  27752. image: {
  27753. source: "./media/characters/purple-flame/front-dressed.svg",
  27754. extra: 1577 / 1412,
  27755. bottom: 97 / 1694
  27756. }
  27757. },
  27758. headphones: {
  27759. height: math.unit(0.85, "feet"),
  27760. name: "Headphones",
  27761. image: {
  27762. source: "./media/characters/purple-flame/headphones.svg"
  27763. }
  27764. },
  27765. },
  27766. [
  27767. {
  27768. name: "Really Small",
  27769. height: math.unit(5, "cm")
  27770. },
  27771. {
  27772. name: "Micro",
  27773. height: math.unit(1 + 5 / 12, "feet")
  27774. },
  27775. {
  27776. name: "Normal",
  27777. height: math.unit(3 + 5 / 12, "feet"),
  27778. default: true
  27779. },
  27780. {
  27781. name: "Minimacro",
  27782. height: math.unit(125, "feet")
  27783. },
  27784. {
  27785. name: "Macro",
  27786. height: math.unit(0.5, "miles")
  27787. },
  27788. {
  27789. name: "Megamacro",
  27790. height: math.unit(50, "miles")
  27791. },
  27792. {
  27793. name: "Gigantic",
  27794. height: math.unit(750, "miles")
  27795. },
  27796. {
  27797. name: "Planetary",
  27798. height: math.unit(15000, "miles")
  27799. },
  27800. ]
  27801. ))
  27802. characterMakers.push(() => makeCharacter(
  27803. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27804. {
  27805. front: {
  27806. height: math.unit(14, "feet"),
  27807. weight: math.unit(959, "lb"),
  27808. name: "Front",
  27809. image: {
  27810. source: "./media/characters/arsenal/front.svg",
  27811. extra: 2357 / 2157,
  27812. bottom: 93 / 2458
  27813. }
  27814. },
  27815. },
  27816. [
  27817. {
  27818. name: "Normal",
  27819. height: math.unit(14, "feet"),
  27820. default: true
  27821. },
  27822. ]
  27823. ))
  27824. characterMakers.push(() => makeCharacter(
  27825. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27826. {
  27827. front: {
  27828. height: math.unit(6, "feet"),
  27829. weight: math.unit(150, "lb"),
  27830. name: "Front",
  27831. image: {
  27832. source: "./media/characters/adira/front.svg",
  27833. extra: 1078 / 1029,
  27834. bottom: 87 / 1166
  27835. }
  27836. },
  27837. },
  27838. [
  27839. {
  27840. name: "Micro",
  27841. height: math.unit(4, "inches"),
  27842. default: true
  27843. },
  27844. {
  27845. name: "Macro",
  27846. height: math.unit(50, "feet")
  27847. },
  27848. ]
  27849. ))
  27850. characterMakers.push(() => makeCharacter(
  27851. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27852. {
  27853. front: {
  27854. height: math.unit(16, "feet"),
  27855. weight: math.unit(1000, "lb"),
  27856. name: "Front",
  27857. image: {
  27858. source: "./media/characters/grim/front.svg",
  27859. extra: 622 / 614,
  27860. bottom: 18.1 / 642
  27861. }
  27862. },
  27863. back: {
  27864. height: math.unit(16, "feet"),
  27865. weight: math.unit(1000, "lb"),
  27866. name: "Back",
  27867. image: {
  27868. source: "./media/characters/grim/back.svg",
  27869. extra: 610.6 / 602,
  27870. bottom: 40.8 / 652
  27871. }
  27872. },
  27873. hunched: {
  27874. height: math.unit(9.75, "feet"),
  27875. weight: math.unit(1000, "lb"),
  27876. name: "Hunched",
  27877. image: {
  27878. source: "./media/characters/grim/hunched.svg",
  27879. extra: 304 / 297,
  27880. bottom: 35.4 / 394
  27881. }
  27882. },
  27883. },
  27884. [
  27885. {
  27886. name: "Normal",
  27887. height: math.unit(16, "feet"),
  27888. default: true
  27889. },
  27890. ]
  27891. ))
  27892. characterMakers.push(() => makeCharacter(
  27893. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27894. {
  27895. front: {
  27896. height: math.unit(2.3, "meters"),
  27897. weight: math.unit(300, "lb"),
  27898. name: "Front",
  27899. image: {
  27900. source: "./media/characters/sinja/front-sfw.svg",
  27901. extra: 1393 / 1294,
  27902. bottom: 70 / 1463
  27903. }
  27904. },
  27905. frontNsfw: {
  27906. height: math.unit(2.3, "meters"),
  27907. weight: math.unit(300, "lb"),
  27908. name: "Front (NSFW)",
  27909. image: {
  27910. source: "./media/characters/sinja/front-nsfw.svg",
  27911. extra: 1393 / 1294,
  27912. bottom: 70 / 1463
  27913. }
  27914. },
  27915. back: {
  27916. height: math.unit(2.3, "meters"),
  27917. weight: math.unit(300, "lb"),
  27918. name: "Back",
  27919. image: {
  27920. source: "./media/characters/sinja/back.svg",
  27921. extra: 1393 / 1294,
  27922. bottom: 70 / 1463
  27923. }
  27924. },
  27925. head: {
  27926. height: math.unit(1.771, "feet"),
  27927. name: "Head",
  27928. image: {
  27929. source: "./media/characters/sinja/head.svg"
  27930. }
  27931. },
  27932. slit: {
  27933. height: math.unit(0.8, "feet"),
  27934. name: "Slit",
  27935. image: {
  27936. source: "./media/characters/sinja/slit.svg"
  27937. }
  27938. },
  27939. },
  27940. [
  27941. {
  27942. name: "Normal",
  27943. height: math.unit(2.3, "meters")
  27944. },
  27945. {
  27946. name: "Macro",
  27947. height: math.unit(91, "meters"),
  27948. default: true
  27949. },
  27950. {
  27951. name: "Megamacro",
  27952. height: math.unit(91440, "meters")
  27953. },
  27954. {
  27955. name: "Gigamacro",
  27956. height: math.unit(60960000, "meters")
  27957. },
  27958. {
  27959. name: "Teramacro",
  27960. height: math.unit(9144000000, "meters")
  27961. },
  27962. ]
  27963. ))
  27964. characterMakers.push(() => makeCharacter(
  27965. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27966. {
  27967. front: {
  27968. height: math.unit(1.7, "meters"),
  27969. weight: math.unit(130, "lb"),
  27970. name: "Front",
  27971. image: {
  27972. source: "./media/characters/kyu/front.svg",
  27973. extra: 415 / 395,
  27974. bottom: 5 / 420
  27975. }
  27976. },
  27977. head: {
  27978. height: math.unit(1.75, "feet"),
  27979. name: "Head",
  27980. image: {
  27981. source: "./media/characters/kyu/head.svg"
  27982. }
  27983. },
  27984. foot: {
  27985. height: math.unit(0.81, "feet"),
  27986. name: "Foot",
  27987. image: {
  27988. source: "./media/characters/kyu/foot.svg"
  27989. }
  27990. },
  27991. },
  27992. [
  27993. {
  27994. name: "Normal",
  27995. height: math.unit(1.7, "meters")
  27996. },
  27997. {
  27998. name: "Macro",
  27999. height: math.unit(131, "feet"),
  28000. default: true
  28001. },
  28002. {
  28003. name: "Megamacro",
  28004. height: math.unit(91440, "meters")
  28005. },
  28006. {
  28007. name: "Gigamacro",
  28008. height: math.unit(60960000, "meters")
  28009. },
  28010. {
  28011. name: "Teramacro",
  28012. height: math.unit(9144000000, "meters")
  28013. },
  28014. ]
  28015. ))
  28016. characterMakers.push(() => makeCharacter(
  28017. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28018. {
  28019. front: {
  28020. height: math.unit(7 + 1 / 12, "feet"),
  28021. weight: math.unit(250, "lb"),
  28022. name: "Front",
  28023. image: {
  28024. source: "./media/characters/joey/front.svg",
  28025. extra: 1791 / 1537,
  28026. bottom: 28 / 1816
  28027. }
  28028. },
  28029. },
  28030. [
  28031. {
  28032. name: "Micro",
  28033. height: math.unit(3, "inches")
  28034. },
  28035. {
  28036. name: "Normal",
  28037. height: math.unit(7 + 1 / 12, "feet"),
  28038. default: true
  28039. },
  28040. ]
  28041. ))
  28042. characterMakers.push(() => makeCharacter(
  28043. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28044. {
  28045. front: {
  28046. height: math.unit(165, "cm"),
  28047. weight: math.unit(140, "lb"),
  28048. name: "Front",
  28049. image: {
  28050. source: "./media/characters/sam-evans/front.svg",
  28051. extra: 3417 / 3230,
  28052. bottom: 41.3 / 3417
  28053. }
  28054. },
  28055. frontSixTails: {
  28056. height: math.unit(165, "cm"),
  28057. weight: math.unit(140, "lb"),
  28058. name: "Front-six-tails",
  28059. image: {
  28060. source: "./media/characters/sam-evans/front-six-tails.svg",
  28061. extra: 3417 / 3230,
  28062. bottom: 41.3 / 3417
  28063. }
  28064. },
  28065. back: {
  28066. height: math.unit(165, "cm"),
  28067. weight: math.unit(140, "lb"),
  28068. name: "Back",
  28069. image: {
  28070. source: "./media/characters/sam-evans/back.svg",
  28071. extra: 3227 / 3032,
  28072. bottom: 6.8 / 3234
  28073. }
  28074. },
  28075. face: {
  28076. height: math.unit(0.68, "feet"),
  28077. name: "Face",
  28078. image: {
  28079. source: "./media/characters/sam-evans/face.svg"
  28080. }
  28081. },
  28082. },
  28083. [
  28084. {
  28085. name: "Normal",
  28086. height: math.unit(165, "cm"),
  28087. default: true
  28088. },
  28089. {
  28090. name: "Macro",
  28091. height: math.unit(100, "meters")
  28092. },
  28093. {
  28094. name: "Macro+",
  28095. height: math.unit(800, "meters")
  28096. },
  28097. {
  28098. name: "Macro++",
  28099. height: math.unit(3, "km")
  28100. },
  28101. {
  28102. name: "Macro+++",
  28103. height: math.unit(30, "km")
  28104. },
  28105. ]
  28106. ))
  28107. characterMakers.push(() => makeCharacter(
  28108. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28109. {
  28110. front: {
  28111. height: math.unit(10, "feet"),
  28112. weight: math.unit(750, "lb"),
  28113. name: "Front",
  28114. image: {
  28115. source: "./media/characters/juliet-a/front.svg",
  28116. extra: 1766 / 1720,
  28117. bottom: 43 / 1809
  28118. }
  28119. },
  28120. back: {
  28121. height: math.unit(10, "feet"),
  28122. weight: math.unit(750, "lb"),
  28123. name: "Back",
  28124. image: {
  28125. source: "./media/characters/juliet-a/back.svg",
  28126. extra: 1781 / 1734,
  28127. bottom: 35 / 1810,
  28128. }
  28129. },
  28130. },
  28131. [
  28132. {
  28133. name: "Normal",
  28134. height: math.unit(10, "feet"),
  28135. default: true
  28136. },
  28137. {
  28138. name: "Dragon Form",
  28139. height: math.unit(250, "feet")
  28140. },
  28141. {
  28142. name: "Macro",
  28143. height: math.unit(1000, "feet")
  28144. },
  28145. {
  28146. name: "Megamacro",
  28147. height: math.unit(10000, "feet")
  28148. }
  28149. ]
  28150. ))
  28151. characterMakers.push(() => makeCharacter(
  28152. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28153. {
  28154. regular: {
  28155. height: math.unit(7 + 3 / 12, "feet"),
  28156. weight: math.unit(260, "lb"),
  28157. name: "Regular",
  28158. image: {
  28159. source: "./media/characters/wild/regular.svg",
  28160. extra: 97.45 / 92,
  28161. bottom: 6.8 / 104.3
  28162. }
  28163. },
  28164. biggums: {
  28165. height: math.unit(8 + 6 / 12, "feet"),
  28166. weight: math.unit(425, "lb"),
  28167. name: "Biggums",
  28168. image: {
  28169. source: "./media/characters/wild/biggums.svg",
  28170. extra: 97.45 / 92,
  28171. bottom: 7.5 / 132.34
  28172. }
  28173. },
  28174. mawRegular: {
  28175. height: math.unit(1.24, "feet"),
  28176. name: "Maw (Regular)",
  28177. image: {
  28178. source: "./media/characters/wild/maw.svg"
  28179. }
  28180. },
  28181. mawBiggums: {
  28182. height: math.unit(1.47, "feet"),
  28183. name: "Maw (Biggums)",
  28184. image: {
  28185. source: "./media/characters/wild/maw.svg"
  28186. }
  28187. },
  28188. },
  28189. [
  28190. {
  28191. name: "Normal",
  28192. height: math.unit(7 + 3 / 12, "feet"),
  28193. default: true
  28194. },
  28195. ]
  28196. ))
  28197. characterMakers.push(() => makeCharacter(
  28198. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28199. {
  28200. front: {
  28201. height: math.unit(2.5, "meters"),
  28202. weight: math.unit(200, "kg"),
  28203. name: "Front",
  28204. image: {
  28205. source: "./media/characters/vidar/front.svg",
  28206. extra: 2994 / 2795,
  28207. bottom: 56 / 3061
  28208. }
  28209. },
  28210. back: {
  28211. height: math.unit(2.5, "meters"),
  28212. weight: math.unit(200, "kg"),
  28213. name: "Back",
  28214. image: {
  28215. source: "./media/characters/vidar/back.svg",
  28216. extra: 3131 / 2928,
  28217. bottom: 13.5 / 3141.5
  28218. }
  28219. },
  28220. feral: {
  28221. height: math.unit(2.5, "meters"),
  28222. weight: math.unit(2000, "kg"),
  28223. name: "Feral",
  28224. image: {
  28225. source: "./media/characters/vidar/feral.svg",
  28226. extra: 2790 / 1765,
  28227. bottom: 6 / 2796
  28228. }
  28229. },
  28230. },
  28231. [
  28232. {
  28233. name: "Normal",
  28234. height: math.unit(2.5, "meters"),
  28235. default: true
  28236. },
  28237. {
  28238. name: "Macro",
  28239. height: math.unit(100, "meters")
  28240. },
  28241. ]
  28242. ))
  28243. characterMakers.push(() => makeCharacter(
  28244. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28245. {
  28246. front: {
  28247. height: math.unit(5 + 9 / 12, "feet"),
  28248. weight: math.unit(120, "lb"),
  28249. name: "Front",
  28250. image: {
  28251. source: "./media/characters/ash/front.svg",
  28252. extra: 2189 / 1961,
  28253. bottom: 5.2 / 2194
  28254. }
  28255. },
  28256. },
  28257. [
  28258. {
  28259. name: "Normal",
  28260. height: math.unit(5 + 9 / 12, "feet"),
  28261. default: true
  28262. },
  28263. ]
  28264. ))
  28265. characterMakers.push(() => makeCharacter(
  28266. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28267. {
  28268. front: {
  28269. height: math.unit(9, "feet"),
  28270. weight: math.unit(10000, "lb"),
  28271. name: "Front",
  28272. image: {
  28273. source: "./media/characters/gygabite/front.svg",
  28274. bottom: 31.7 / 537.8,
  28275. extra: 505 / 370
  28276. }
  28277. },
  28278. },
  28279. [
  28280. {
  28281. name: "Normal",
  28282. height: math.unit(9, "feet"),
  28283. default: true
  28284. },
  28285. ]
  28286. ))
  28287. characterMakers.push(() => makeCharacter(
  28288. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28289. {
  28290. front: {
  28291. height: math.unit(12, "feet"),
  28292. weight: math.unit(35000, "lb"),
  28293. name: "Front",
  28294. image: {
  28295. source: "./media/characters/p0tat0/front.svg",
  28296. extra: 1065 / 921,
  28297. bottom: 55.7 / 1121.25
  28298. }
  28299. },
  28300. },
  28301. [
  28302. {
  28303. name: "Normal",
  28304. height: math.unit(12, "feet"),
  28305. default: true
  28306. },
  28307. ]
  28308. ))
  28309. characterMakers.push(() => makeCharacter(
  28310. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28311. {
  28312. side: {
  28313. height: math.unit(6.5, "feet"),
  28314. weight: math.unit(800, "lb"),
  28315. name: "Side",
  28316. image: {
  28317. source: "./media/characters/dusk/side.svg",
  28318. extra: 615 / 373,
  28319. bottom: 53 / 664
  28320. }
  28321. },
  28322. sitting: {
  28323. height: math.unit(7, "feet"),
  28324. weight: math.unit(800, "lb"),
  28325. name: "Sitting",
  28326. image: {
  28327. source: "./media/characters/dusk/sitting.svg",
  28328. extra: 753 / 425,
  28329. bottom: 33 / 774
  28330. }
  28331. },
  28332. head: {
  28333. height: math.unit(6.1, "feet"),
  28334. name: "Head",
  28335. image: {
  28336. source: "./media/characters/dusk/head.svg"
  28337. }
  28338. },
  28339. },
  28340. [
  28341. {
  28342. name: "Normal",
  28343. height: math.unit(7, "feet"),
  28344. default: true
  28345. },
  28346. ]
  28347. ))
  28348. characterMakers.push(() => makeCharacter(
  28349. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28350. {
  28351. front: {
  28352. height: math.unit(15, "feet"),
  28353. weight: math.unit(7000, "lb"),
  28354. name: "Front",
  28355. image: {
  28356. source: "./media/characters/jay-direwolf/front.svg",
  28357. extra: 1810 / 1732,
  28358. bottom: 66 / 1892
  28359. }
  28360. },
  28361. },
  28362. [
  28363. {
  28364. name: "Normal",
  28365. height: math.unit(15, "feet"),
  28366. default: true
  28367. },
  28368. ]
  28369. ))
  28370. characterMakers.push(() => makeCharacter(
  28371. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28372. {
  28373. front: {
  28374. height: math.unit(4 + 9 / 12, "feet"),
  28375. weight: math.unit(130, "lb"),
  28376. name: "Front",
  28377. image: {
  28378. source: "./media/characters/anchovie/front.svg",
  28379. extra: 382 / 350,
  28380. bottom: 25 / 409
  28381. }
  28382. },
  28383. back: {
  28384. height: math.unit(4 + 9 / 12, "feet"),
  28385. weight: math.unit(130, "lb"),
  28386. name: "Back",
  28387. image: {
  28388. source: "./media/characters/anchovie/back.svg",
  28389. extra: 385 / 352,
  28390. bottom: 16.6 / 402
  28391. }
  28392. },
  28393. frontDressed: {
  28394. height: math.unit(4 + 9 / 12, "feet"),
  28395. weight: math.unit(130, "lb"),
  28396. name: "Front (Dressed)",
  28397. image: {
  28398. source: "./media/characters/anchovie/front-dressed.svg",
  28399. extra: 382 / 350,
  28400. bottom: 25 / 409
  28401. }
  28402. },
  28403. backDressed: {
  28404. height: math.unit(4 + 9 / 12, "feet"),
  28405. weight: math.unit(130, "lb"),
  28406. name: "Back (Dressed)",
  28407. image: {
  28408. source: "./media/characters/anchovie/back-dressed.svg",
  28409. extra: 385 / 352,
  28410. bottom: 16.6 / 402
  28411. }
  28412. },
  28413. },
  28414. [
  28415. {
  28416. name: "Micro",
  28417. height: math.unit(6.4, "inches")
  28418. },
  28419. {
  28420. name: "Normal",
  28421. height: math.unit(4 + 9 / 12, "feet"),
  28422. default: true
  28423. },
  28424. ]
  28425. ))
  28426. characterMakers.push(() => makeCharacter(
  28427. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28428. {
  28429. front: {
  28430. height: math.unit(2, "meters"),
  28431. weight: math.unit(180, "lb"),
  28432. name: "Front",
  28433. image: {
  28434. source: "./media/characters/acidrenamon/front.svg",
  28435. extra: 987 / 890,
  28436. bottom: 22.8 / 1009
  28437. }
  28438. },
  28439. back: {
  28440. height: math.unit(2, "meters"),
  28441. weight: math.unit(180, "lb"),
  28442. name: "Back",
  28443. image: {
  28444. source: "./media/characters/acidrenamon/back.svg",
  28445. extra: 983 / 891,
  28446. bottom: 8.4 / 992
  28447. }
  28448. },
  28449. head: {
  28450. height: math.unit(1.92, "feet"),
  28451. name: "Head",
  28452. image: {
  28453. source: "./media/characters/acidrenamon/head.svg"
  28454. }
  28455. },
  28456. rump: {
  28457. height: math.unit(1.72, "feet"),
  28458. name: "Rump",
  28459. image: {
  28460. source: "./media/characters/acidrenamon/rump.svg"
  28461. }
  28462. },
  28463. tail: {
  28464. height: math.unit(4.2, "feet"),
  28465. name: "Tail",
  28466. image: {
  28467. source: "./media/characters/acidrenamon/tail.svg"
  28468. }
  28469. },
  28470. },
  28471. [
  28472. {
  28473. name: "Normal",
  28474. height: math.unit(2, "meters"),
  28475. default: true
  28476. },
  28477. {
  28478. name: "Minimacro",
  28479. height: math.unit(7, "meters")
  28480. },
  28481. {
  28482. name: "Macro",
  28483. height: math.unit(200, "meters")
  28484. },
  28485. {
  28486. name: "Gigamacro",
  28487. height: math.unit(0.2, "earths")
  28488. },
  28489. ]
  28490. ))
  28491. characterMakers.push(() => makeCharacter(
  28492. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28493. {
  28494. front: {
  28495. height: math.unit(152, "feet"),
  28496. name: "Front",
  28497. image: {
  28498. source: "./media/characters/kenzie-lee/front.svg",
  28499. extra: 1869/1774,
  28500. bottom: 128/1997
  28501. }
  28502. },
  28503. side: {
  28504. height: math.unit(86, "feet"),
  28505. name: "Side",
  28506. image: {
  28507. source: "./media/characters/kenzie-lee/side.svg",
  28508. extra: 930/815,
  28509. bottom: 177/1107
  28510. }
  28511. },
  28512. paw: {
  28513. height: math.unit(15, "feet"),
  28514. name: "Paw",
  28515. image: {
  28516. source: "./media/characters/kenzie-lee/paw.svg"
  28517. }
  28518. },
  28519. },
  28520. [
  28521. {
  28522. name: "Micro",
  28523. height: math.unit(1.5, "inches")
  28524. },
  28525. {
  28526. name: "Normal",
  28527. height: math.unit(152, "feet"),
  28528. default: true
  28529. },
  28530. {
  28531. name: "Megamacro",
  28532. height: math.unit(7, "miles")
  28533. },
  28534. {
  28535. name: "Gigamacro",
  28536. height: math.unit(8000, "miles")
  28537. },
  28538. ]
  28539. ))
  28540. characterMakers.push(() => makeCharacter(
  28541. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28542. {
  28543. side: {
  28544. height: math.unit(6, "feet"),
  28545. weight: math.unit(150, "lb"),
  28546. name: "Side",
  28547. image: {
  28548. source: "./media/characters/withers/side.svg",
  28549. extra: 1830 / 1728,
  28550. bottom: 96 / 1927
  28551. }
  28552. },
  28553. front: {
  28554. height: math.unit(6, "feet"),
  28555. weight: math.unit(150, "lb"),
  28556. name: "Front",
  28557. image: {
  28558. source: "./media/characters/withers/front.svg",
  28559. extra: 1514 / 1438,
  28560. bottom: 118 / 1632
  28561. }
  28562. },
  28563. },
  28564. [
  28565. {
  28566. name: "Macro",
  28567. height: math.unit(168, "feet"),
  28568. default: true
  28569. },
  28570. {
  28571. name: "Megamacro",
  28572. height: math.unit(15, "miles")
  28573. }
  28574. ]
  28575. ))
  28576. characterMakers.push(() => makeCharacter(
  28577. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28578. {
  28579. front: {
  28580. height: math.unit(6 + 7 / 12, "feet"),
  28581. weight: math.unit(250, "lb"),
  28582. name: "Front",
  28583. image: {
  28584. source: "./media/characters/nemoskii/front.svg",
  28585. extra: 2270 / 1734,
  28586. bottom: 86 / 2354
  28587. }
  28588. },
  28589. back: {
  28590. height: math.unit(6 + 7 / 12, "feet"),
  28591. weight: math.unit(250, "lb"),
  28592. name: "Back",
  28593. image: {
  28594. source: "./media/characters/nemoskii/back.svg",
  28595. extra: 1845 / 1788,
  28596. bottom: 10.5 / 1852
  28597. }
  28598. },
  28599. head: {
  28600. height: math.unit(1.31, "feet"),
  28601. name: "Head",
  28602. image: {
  28603. source: "./media/characters/nemoskii/head.svg"
  28604. }
  28605. },
  28606. },
  28607. [
  28608. {
  28609. name: "Micro",
  28610. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28611. },
  28612. {
  28613. name: "Normal",
  28614. height: math.unit(6 + 7 / 12, "feet"),
  28615. default: true
  28616. },
  28617. {
  28618. name: "Macro",
  28619. height: math.unit((6 + 7 / 12) * 150, "feet")
  28620. },
  28621. {
  28622. name: "Macro+",
  28623. height: math.unit((6 + 7 / 12) * 500, "feet")
  28624. },
  28625. {
  28626. name: "Megamacro",
  28627. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28628. },
  28629. ]
  28630. ))
  28631. characterMakers.push(() => makeCharacter(
  28632. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28633. {
  28634. front: {
  28635. height: math.unit(1, "mile"),
  28636. weight: math.unit(265261.9, "lb"),
  28637. name: "Front",
  28638. image: {
  28639. source: "./media/characters/shui/front.svg",
  28640. extra: 1633 / 1564,
  28641. bottom: 91.5 / 1726
  28642. }
  28643. },
  28644. },
  28645. [
  28646. {
  28647. name: "Macro",
  28648. height: math.unit(1, "mile"),
  28649. default: true
  28650. },
  28651. ]
  28652. ))
  28653. characterMakers.push(() => makeCharacter(
  28654. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28655. {
  28656. front: {
  28657. height: math.unit(12 + 6 / 12, "feet"),
  28658. weight: math.unit(1342, "lb"),
  28659. name: "Front",
  28660. image: {
  28661. source: "./media/characters/arokh-takakura/front.svg",
  28662. extra: 1089 / 1043,
  28663. bottom: 77.4 / 1176.7
  28664. }
  28665. },
  28666. back: {
  28667. height: math.unit(12 + 6 / 12, "feet"),
  28668. weight: math.unit(1342, "lb"),
  28669. name: "Back",
  28670. image: {
  28671. source: "./media/characters/arokh-takakura/back.svg",
  28672. extra: 1046 / 1019,
  28673. bottom: 102 / 1150
  28674. }
  28675. },
  28676. },
  28677. [
  28678. {
  28679. name: "Big",
  28680. height: math.unit(12 + 6 / 12, "feet"),
  28681. default: true
  28682. },
  28683. ]
  28684. ))
  28685. characterMakers.push(() => makeCharacter(
  28686. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28687. {
  28688. front: {
  28689. height: math.unit(5 + 6 / 12, "feet"),
  28690. weight: math.unit(150, "lb"),
  28691. name: "Front",
  28692. image: {
  28693. source: "./media/characters/theo/front.svg",
  28694. extra: 1184 / 1131,
  28695. bottom: 7.4 / 1191
  28696. }
  28697. },
  28698. },
  28699. [
  28700. {
  28701. name: "Micro",
  28702. height: math.unit(5, "inches")
  28703. },
  28704. {
  28705. name: "Normal",
  28706. height: math.unit(5 + 6 / 12, "feet"),
  28707. default: true
  28708. },
  28709. ]
  28710. ))
  28711. characterMakers.push(() => makeCharacter(
  28712. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28713. {
  28714. front: {
  28715. height: math.unit(5 + 9 / 12, "feet"),
  28716. weight: math.unit(130, "lb"),
  28717. name: "Front",
  28718. image: {
  28719. source: "./media/characters/cecelia-swift/front.svg",
  28720. extra: 502 / 484,
  28721. bottom: 23 / 523
  28722. }
  28723. },
  28724. back: {
  28725. height: math.unit(5 + 9 / 12, "feet"),
  28726. weight: math.unit(130, "lb"),
  28727. name: "Back",
  28728. image: {
  28729. source: "./media/characters/cecelia-swift/back.svg",
  28730. extra: 499 / 485,
  28731. bottom: 12 / 511
  28732. }
  28733. },
  28734. head: {
  28735. height: math.unit(0.90, "feet"),
  28736. name: "Head",
  28737. image: {
  28738. source: "./media/characters/cecelia-swift/head.svg"
  28739. }
  28740. },
  28741. rump: {
  28742. height: math.unit(1.75, "feet"),
  28743. name: "Rump",
  28744. image: {
  28745. source: "./media/characters/cecelia-swift/rump.svg"
  28746. }
  28747. },
  28748. },
  28749. [
  28750. {
  28751. name: "Normal",
  28752. height: math.unit(5 + 9 / 12, "feet"),
  28753. default: true
  28754. },
  28755. {
  28756. name: "Big",
  28757. height: math.unit(50, "feet")
  28758. },
  28759. {
  28760. name: "Macro",
  28761. height: math.unit(100, "feet")
  28762. },
  28763. {
  28764. name: "Macro+",
  28765. height: math.unit(500, "feet")
  28766. },
  28767. {
  28768. name: "Macro++",
  28769. height: math.unit(1000, "feet")
  28770. },
  28771. ]
  28772. ))
  28773. characterMakers.push(() => makeCharacter(
  28774. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28775. {
  28776. front: {
  28777. height: math.unit(6, "feet"),
  28778. weight: math.unit(150, "lb"),
  28779. name: "Front",
  28780. image: {
  28781. source: "./media/characters/kaunan/front.svg",
  28782. extra: 2890 / 2523,
  28783. bottom: 49 / 2939
  28784. }
  28785. },
  28786. },
  28787. [
  28788. {
  28789. name: "Macro",
  28790. height: math.unit(150, "feet"),
  28791. default: true
  28792. },
  28793. ]
  28794. ))
  28795. characterMakers.push(() => makeCharacter(
  28796. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28797. {
  28798. front: {
  28799. height: math.unit(175, "cm"),
  28800. weight: math.unit(60, "kg"),
  28801. name: "Front",
  28802. image: {
  28803. source: "./media/characters/fei/front.svg",
  28804. extra: 1873/1723,
  28805. bottom: 53/1926
  28806. }
  28807. },
  28808. },
  28809. [
  28810. {
  28811. name: "Mortal",
  28812. height: math.unit(175, "cm")
  28813. },
  28814. {
  28815. name: "Normal",
  28816. height: math.unit(3500, "m"),
  28817. default: true
  28818. },
  28819. {
  28820. name: "Stroll",
  28821. height: math.unit(17.5, "km")
  28822. },
  28823. {
  28824. name: "Showoff",
  28825. height: math.unit(175, "km")
  28826. },
  28827. ]
  28828. ))
  28829. characterMakers.push(() => makeCharacter(
  28830. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28831. {
  28832. front: {
  28833. height: math.unit(7, "feet"),
  28834. weight: math.unit(1000, "kg"),
  28835. name: "Front",
  28836. image: {
  28837. source: "./media/characters/edrax/front.svg",
  28838. extra: 2838 / 2550,
  28839. bottom: 130 / 2968
  28840. }
  28841. },
  28842. },
  28843. [
  28844. {
  28845. name: "Small",
  28846. height: math.unit(7, "feet")
  28847. },
  28848. {
  28849. name: "Normal",
  28850. height: math.unit(1500, "meters")
  28851. },
  28852. {
  28853. name: "Mega",
  28854. height: math.unit(12000000, "km"),
  28855. default: true
  28856. },
  28857. {
  28858. name: "Megamacro",
  28859. height: math.unit(10600000, "lightyears")
  28860. },
  28861. {
  28862. name: "Hypermacro",
  28863. height: math.unit(256, "yottameters")
  28864. },
  28865. ]
  28866. ))
  28867. characterMakers.push(() => makeCharacter(
  28868. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28869. {
  28870. front: {
  28871. height: math.unit(10, "feet"),
  28872. weight: math.unit(750, "lb"),
  28873. name: "Front",
  28874. image: {
  28875. source: "./media/characters/clove/front.svg",
  28876. extra: 1918/1751,
  28877. bottom: 52/1970
  28878. }
  28879. },
  28880. back: {
  28881. height: math.unit(10, "feet"),
  28882. weight: math.unit(750, "lb"),
  28883. name: "Back",
  28884. image: {
  28885. source: "./media/characters/clove/back.svg",
  28886. extra: 1912/1747,
  28887. bottom: 50/1962
  28888. }
  28889. },
  28890. },
  28891. [
  28892. {
  28893. name: "Normal",
  28894. height: math.unit(10, "feet"),
  28895. default: true
  28896. },
  28897. ]
  28898. ))
  28899. characterMakers.push(() => makeCharacter(
  28900. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28901. {
  28902. front: {
  28903. height: math.unit(4, "feet"),
  28904. weight: math.unit(50, "lb"),
  28905. name: "Front",
  28906. image: {
  28907. source: "./media/characters/alex-rabbit/front.svg",
  28908. extra: 507 / 458,
  28909. bottom: 18.5 / 527
  28910. }
  28911. },
  28912. back: {
  28913. height: math.unit(4, "feet"),
  28914. weight: math.unit(50, "lb"),
  28915. name: "Back",
  28916. image: {
  28917. source: "./media/characters/alex-rabbit/back.svg",
  28918. extra: 502 / 460,
  28919. bottom: 18.9 / 521
  28920. }
  28921. },
  28922. },
  28923. [
  28924. {
  28925. name: "Normal",
  28926. height: math.unit(4, "feet"),
  28927. default: true
  28928. },
  28929. ]
  28930. ))
  28931. characterMakers.push(() => makeCharacter(
  28932. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28933. {
  28934. front: {
  28935. height: math.unit(1 + 3 / 12, "feet"),
  28936. weight: math.unit(80, "lb"),
  28937. name: "Front",
  28938. image: {
  28939. source: "./media/characters/zander-rose/front.svg",
  28940. extra: 916 / 797,
  28941. bottom: 17 / 933
  28942. }
  28943. },
  28944. back: {
  28945. height: math.unit(1 + 3 / 12, "feet"),
  28946. weight: math.unit(80, "lb"),
  28947. name: "Back",
  28948. image: {
  28949. source: "./media/characters/zander-rose/back.svg",
  28950. extra: 903 / 779,
  28951. bottom: 31 / 934
  28952. }
  28953. },
  28954. },
  28955. [
  28956. {
  28957. name: "Normal",
  28958. height: math.unit(1 + 3 / 12, "feet"),
  28959. default: true
  28960. },
  28961. ]
  28962. ))
  28963. characterMakers.push(() => makeCharacter(
  28964. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28965. {
  28966. anthro: {
  28967. height: math.unit(6, "feet"),
  28968. weight: math.unit(150, "lb"),
  28969. name: "Anthro",
  28970. image: {
  28971. source: "./media/characters/razz/anthro.svg",
  28972. extra: 1437 / 1343,
  28973. bottom: 48 / 1485
  28974. }
  28975. },
  28976. feral: {
  28977. height: math.unit(6, "feet"),
  28978. weight: math.unit(150, "lb"),
  28979. name: "Feral",
  28980. image: {
  28981. source: "./media/characters/razz/feral.svg",
  28982. extra: 2569 / 1385,
  28983. bottom: 95 / 2664
  28984. }
  28985. },
  28986. },
  28987. [
  28988. {
  28989. name: "Normal",
  28990. height: math.unit(6, "feet"),
  28991. default: true
  28992. },
  28993. ]
  28994. ))
  28995. characterMakers.push(() => makeCharacter(
  28996. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28997. {
  28998. front: {
  28999. height: math.unit(9 + 4 / 12, "feet"),
  29000. weight: math.unit(500, "lb"),
  29001. name: "Front",
  29002. image: {
  29003. source: "./media/characters/morrigan/front.svg",
  29004. extra: 2707 / 2579,
  29005. bottom: 156 / 2863
  29006. }
  29007. },
  29008. },
  29009. [
  29010. {
  29011. name: "Normal",
  29012. height: math.unit(9 + 4 / 12, "feet"),
  29013. default: true
  29014. },
  29015. ]
  29016. ))
  29017. characterMakers.push(() => makeCharacter(
  29018. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29019. {
  29020. front: {
  29021. height: math.unit(5, "stories"),
  29022. weight: math.unit(4000, "lb"),
  29023. name: "Front",
  29024. image: {
  29025. source: "./media/characters/jenene/front.svg",
  29026. extra: 1780 / 1710,
  29027. bottom: 57 / 1837
  29028. }
  29029. },
  29030. },
  29031. [
  29032. {
  29033. name: "Normal",
  29034. height: math.unit(5, "stories"),
  29035. default: true
  29036. },
  29037. ]
  29038. ))
  29039. characterMakers.push(() => makeCharacter(
  29040. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29041. {
  29042. taurSfw: {
  29043. height: math.unit(10, "meters"),
  29044. weight: math.unit(17500, "kg"),
  29045. name: "Taur",
  29046. image: {
  29047. source: "./media/characters/faey/taur-sfw.svg",
  29048. extra: 1200 / 968,
  29049. bottom: 41 / 1241
  29050. }
  29051. },
  29052. chestmaw: {
  29053. height: math.unit(2.01, "meters"),
  29054. name: "Chestmaw",
  29055. image: {
  29056. source: "./media/characters/faey/chestmaw.svg"
  29057. }
  29058. },
  29059. foot: {
  29060. height: math.unit(2.43, "meters"),
  29061. name: "Foot",
  29062. image: {
  29063. source: "./media/characters/faey/foot.svg"
  29064. }
  29065. },
  29066. jaws: {
  29067. height: math.unit(1.66, "meters"),
  29068. name: "Jaws",
  29069. image: {
  29070. source: "./media/characters/faey/jaws.svg"
  29071. }
  29072. },
  29073. tongues: {
  29074. height: math.unit(2.01, "meters"),
  29075. name: "Tongues",
  29076. image: {
  29077. source: "./media/characters/faey/tongues.svg"
  29078. }
  29079. },
  29080. },
  29081. [
  29082. {
  29083. name: "Small",
  29084. height: math.unit(10, "meters"),
  29085. default: true
  29086. },
  29087. {
  29088. name: "Big",
  29089. height: math.unit(500000, "km")
  29090. },
  29091. ]
  29092. ))
  29093. characterMakers.push(() => makeCharacter(
  29094. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29095. {
  29096. front: {
  29097. height: math.unit(7, "feet"),
  29098. weight: math.unit(275, "lb"),
  29099. name: "Front",
  29100. image: {
  29101. source: "./media/characters/roku/front.svg",
  29102. extra: 903 / 878,
  29103. bottom: 37 / 940
  29104. }
  29105. },
  29106. },
  29107. [
  29108. {
  29109. name: "Normal",
  29110. height: math.unit(7, "feet"),
  29111. default: true
  29112. },
  29113. {
  29114. name: "Macro",
  29115. height: math.unit(500, "feet")
  29116. },
  29117. {
  29118. name: "Megamacro",
  29119. height: math.unit(200, "miles")
  29120. },
  29121. ]
  29122. ))
  29123. characterMakers.push(() => makeCharacter(
  29124. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29125. {
  29126. front: {
  29127. height: math.unit(6 + 2 / 12, "feet"),
  29128. weight: math.unit(150, "lb"),
  29129. name: "Front",
  29130. image: {
  29131. source: "./media/characters/lira/front.svg",
  29132. extra: 1727 / 1605,
  29133. bottom: 26 / 1753
  29134. }
  29135. },
  29136. back: {
  29137. height: math.unit(6 + 2 / 12, "feet"),
  29138. weight: math.unit(150, "lb"),
  29139. name: "Back",
  29140. image: {
  29141. source: "./media/characters/lira/back.svg",
  29142. extra: 1713/1621,
  29143. bottom: 20/1733
  29144. }
  29145. },
  29146. hand: {
  29147. height: math.unit(0.75, "feet"),
  29148. name: "Hand",
  29149. image: {
  29150. source: "./media/characters/lira/hand.svg"
  29151. }
  29152. },
  29153. maw: {
  29154. height: math.unit(0.65, "feet"),
  29155. name: "Maw",
  29156. image: {
  29157. source: "./media/characters/lira/maw.svg"
  29158. }
  29159. },
  29160. pawDigi: {
  29161. height: math.unit(1.6, "feet"),
  29162. name: "Paw Digi",
  29163. image: {
  29164. source: "./media/characters/lira/paw-digi.svg"
  29165. }
  29166. },
  29167. pawPlanti: {
  29168. height: math.unit(1.4, "feet"),
  29169. name: "Paw Planti",
  29170. image: {
  29171. source: "./media/characters/lira/paw-planti.svg"
  29172. }
  29173. },
  29174. },
  29175. [
  29176. {
  29177. name: "Normal",
  29178. height: math.unit(6 + 2 / 12, "feet"),
  29179. default: true
  29180. },
  29181. {
  29182. name: "Macro",
  29183. height: math.unit(100, "feet")
  29184. },
  29185. {
  29186. name: "Macro²",
  29187. height: math.unit(1600, "feet")
  29188. },
  29189. {
  29190. name: "Planetary",
  29191. height: math.unit(20, "earths")
  29192. },
  29193. ]
  29194. ))
  29195. characterMakers.push(() => makeCharacter(
  29196. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29197. {
  29198. front: {
  29199. height: math.unit(6, "feet"),
  29200. weight: math.unit(150, "lb"),
  29201. name: "Front",
  29202. image: {
  29203. source: "./media/characters/hadjet/front.svg",
  29204. extra: 1480 / 1346,
  29205. bottom: 26 / 1506
  29206. }
  29207. },
  29208. frontNsfw: {
  29209. height: math.unit(6, "feet"),
  29210. weight: math.unit(150, "lb"),
  29211. name: "Front (NSFW)",
  29212. image: {
  29213. source: "./media/characters/hadjet/front-nsfw.svg",
  29214. extra: 1440 / 1358,
  29215. bottom: 52 / 1492
  29216. }
  29217. },
  29218. },
  29219. [
  29220. {
  29221. name: "Macro",
  29222. height: math.unit(10, "stories"),
  29223. default: true
  29224. },
  29225. {
  29226. name: "Megamacro",
  29227. height: math.unit(1.5, "miles")
  29228. },
  29229. {
  29230. name: "Megamacro+",
  29231. height: math.unit(5, "miles")
  29232. },
  29233. ]
  29234. ))
  29235. characterMakers.push(() => makeCharacter(
  29236. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29237. {
  29238. side: {
  29239. height: math.unit(106, "feet"),
  29240. weight: math.unit(500, "tonnes"),
  29241. name: "Side",
  29242. image: {
  29243. source: "./media/characters/kodran/side.svg",
  29244. extra: 553 / 480,
  29245. bottom: 33 / 586
  29246. }
  29247. },
  29248. front: {
  29249. height: math.unit(132, "feet"),
  29250. weight: math.unit(500, "tonnes"),
  29251. name: "Front",
  29252. image: {
  29253. source: "./media/characters/kodran/front.svg",
  29254. extra: 667 / 643,
  29255. bottom: 42 / 709
  29256. }
  29257. },
  29258. flying: {
  29259. height: math.unit(350, "feet"),
  29260. weight: math.unit(500, "tonnes"),
  29261. name: "Flying",
  29262. image: {
  29263. source: "./media/characters/kodran/flying.svg"
  29264. }
  29265. },
  29266. foot: {
  29267. height: math.unit(33, "feet"),
  29268. name: "Foot",
  29269. image: {
  29270. source: "./media/characters/kodran/foot.svg"
  29271. }
  29272. },
  29273. footFront: {
  29274. height: math.unit(19, "feet"),
  29275. name: "Foot (Front)",
  29276. image: {
  29277. source: "./media/characters/kodran/foot-front.svg",
  29278. extra: 261 / 261,
  29279. bottom: 91 / 352
  29280. }
  29281. },
  29282. headFront: {
  29283. height: math.unit(53, "feet"),
  29284. name: "Head (Front)",
  29285. image: {
  29286. source: "./media/characters/kodran/head-front.svg"
  29287. }
  29288. },
  29289. headSide: {
  29290. height: math.unit(65, "feet"),
  29291. name: "Head (Side)",
  29292. image: {
  29293. source: "./media/characters/kodran/head-side.svg"
  29294. }
  29295. },
  29296. throat: {
  29297. height: math.unit(79, "feet"),
  29298. name: "Throat",
  29299. image: {
  29300. source: "./media/characters/kodran/throat.svg"
  29301. }
  29302. },
  29303. },
  29304. [
  29305. {
  29306. name: "Large",
  29307. height: math.unit(106, "feet"),
  29308. default: true
  29309. },
  29310. ]
  29311. ))
  29312. characterMakers.push(() => makeCharacter(
  29313. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29314. {
  29315. side: {
  29316. height: math.unit(11, "feet"),
  29317. weight: math.unit(150, "lb"),
  29318. name: "Side",
  29319. image: {
  29320. source: "./media/characters/pyxaron/side.svg",
  29321. extra: 305 / 195,
  29322. bottom: 17 / 322
  29323. }
  29324. },
  29325. },
  29326. [
  29327. {
  29328. name: "Normal",
  29329. height: math.unit(11, "feet"),
  29330. default: true
  29331. },
  29332. ]
  29333. ))
  29334. characterMakers.push(() => makeCharacter(
  29335. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29336. {
  29337. front: {
  29338. height: math.unit(6, "feet"),
  29339. weight: math.unit(150, "lb"),
  29340. name: "Front",
  29341. image: {
  29342. source: "./media/characters/meep/front.svg",
  29343. extra: 88 / 80,
  29344. bottom: 6 / 94
  29345. }
  29346. },
  29347. },
  29348. [
  29349. {
  29350. name: "Fun Sized",
  29351. height: math.unit(2, "inches"),
  29352. default: true
  29353. },
  29354. {
  29355. name: "Friend Sized",
  29356. height: math.unit(8, "inches")
  29357. },
  29358. ]
  29359. ))
  29360. characterMakers.push(() => makeCharacter(
  29361. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29362. {
  29363. front: {
  29364. height: math.unit(15, "feet"),
  29365. weight: math.unit(2500, "lb"),
  29366. name: "Front",
  29367. image: {
  29368. source: "./media/characters/holly-rabbit/front.svg",
  29369. extra: 1433 / 1233,
  29370. bottom: 125 / 1558
  29371. }
  29372. },
  29373. dick: {
  29374. height: math.unit(4.6, "feet"),
  29375. name: "Dick",
  29376. image: {
  29377. source: "./media/characters/holly-rabbit/dick.svg"
  29378. }
  29379. },
  29380. },
  29381. [
  29382. {
  29383. name: "Normal",
  29384. height: math.unit(15, "feet"),
  29385. default: true
  29386. },
  29387. {
  29388. name: "Macro",
  29389. height: math.unit(250, "feet")
  29390. },
  29391. {
  29392. name: "Macro+",
  29393. height: math.unit(2500, "feet")
  29394. },
  29395. ]
  29396. ))
  29397. characterMakers.push(() => makeCharacter(
  29398. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29399. {
  29400. front: {
  29401. height: math.unit(3.02, "meters"),
  29402. weight: math.unit(500, "kg"),
  29403. name: "Front",
  29404. image: {
  29405. source: "./media/characters/drena/front.svg",
  29406. extra: 282 / 243,
  29407. bottom: 8 / 290
  29408. }
  29409. },
  29410. side: {
  29411. height: math.unit(3.02, "meters"),
  29412. weight: math.unit(500, "kg"),
  29413. name: "Side",
  29414. image: {
  29415. source: "./media/characters/drena/side.svg",
  29416. extra: 280 / 245,
  29417. bottom: 10 / 290
  29418. }
  29419. },
  29420. back: {
  29421. height: math.unit(3.02, "meters"),
  29422. weight: math.unit(500, "kg"),
  29423. name: "Back",
  29424. image: {
  29425. source: "./media/characters/drena/back.svg",
  29426. extra: 278 / 243,
  29427. bottom: 2 / 280
  29428. }
  29429. },
  29430. foot: {
  29431. height: math.unit(0.75, "meters"),
  29432. name: "Foot",
  29433. image: {
  29434. source: "./media/characters/drena/foot.svg"
  29435. }
  29436. },
  29437. maw: {
  29438. height: math.unit(0.82, "meters"),
  29439. name: "Maw",
  29440. image: {
  29441. source: "./media/characters/drena/maw.svg"
  29442. }
  29443. },
  29444. eating: {
  29445. height: math.unit(0.75, "meters"),
  29446. name: "Eating",
  29447. image: {
  29448. source: "./media/characters/drena/eating.svg"
  29449. }
  29450. },
  29451. rump: {
  29452. height: math.unit(0.93, "meters"),
  29453. name: "Rump",
  29454. image: {
  29455. source: "./media/characters/drena/rump.svg"
  29456. }
  29457. },
  29458. },
  29459. [
  29460. {
  29461. name: "Normal",
  29462. height: math.unit(3.02, "meters"),
  29463. default: true
  29464. },
  29465. ]
  29466. ))
  29467. characterMakers.push(() => makeCharacter(
  29468. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29469. {
  29470. front: {
  29471. height: math.unit(6 + 4 / 12, "feet"),
  29472. weight: math.unit(250, "lb"),
  29473. name: "Front",
  29474. image: {
  29475. source: "./media/characters/remmyzilla/front.svg",
  29476. extra: 4033 / 3588,
  29477. bottom: 123 / 4156
  29478. }
  29479. },
  29480. back: {
  29481. height: math.unit(6 + 4 / 12, "feet"),
  29482. weight: math.unit(250, "lb"),
  29483. name: "Back",
  29484. image: {
  29485. source: "./media/characters/remmyzilla/back.svg",
  29486. extra: 2687 / 2555,
  29487. bottom: 48 / 2735
  29488. }
  29489. },
  29490. paw: {
  29491. height: math.unit(1.73, "feet"),
  29492. name: "Paw",
  29493. image: {
  29494. source: "./media/characters/remmyzilla/paw.svg"
  29495. }
  29496. },
  29497. maw: {
  29498. height: math.unit(1.73, "feet"),
  29499. name: "Maw",
  29500. image: {
  29501. source: "./media/characters/remmyzilla/maw.svg"
  29502. }
  29503. },
  29504. },
  29505. [
  29506. {
  29507. name: "Normal",
  29508. height: math.unit(6 + 4 / 12, "feet")
  29509. },
  29510. {
  29511. name: "Minimacro",
  29512. height: math.unit(12 + 8 / 12, "feet")
  29513. },
  29514. {
  29515. name: "Normal",
  29516. height: math.unit(640, "feet"),
  29517. default: true
  29518. },
  29519. {
  29520. name: "Megamacro",
  29521. height: math.unit(6400, "feet")
  29522. },
  29523. {
  29524. name: "Gigamacro",
  29525. height: math.unit(64000, "miles")
  29526. },
  29527. ]
  29528. ))
  29529. characterMakers.push(() => makeCharacter(
  29530. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29531. {
  29532. front: {
  29533. height: math.unit(2.5, "meters"),
  29534. weight: math.unit(300, "lb"),
  29535. name: "Front",
  29536. image: {
  29537. source: "./media/characters/lawrence/front.svg",
  29538. extra: 357 / 335,
  29539. bottom: 30 / 387
  29540. }
  29541. },
  29542. back: {
  29543. height: math.unit(2.5, "meters"),
  29544. weight: math.unit(300, "lb"),
  29545. name: "Back",
  29546. image: {
  29547. source: "./media/characters/lawrence/back.svg",
  29548. extra: 357 / 338,
  29549. bottom: 16 / 373
  29550. }
  29551. },
  29552. head: {
  29553. height: math.unit(0.9, "meter"),
  29554. name: "Head",
  29555. image: {
  29556. source: "./media/characters/lawrence/head.svg"
  29557. }
  29558. },
  29559. maw: {
  29560. height: math.unit(0.7, "meter"),
  29561. name: "Maw",
  29562. image: {
  29563. source: "./media/characters/lawrence/maw.svg"
  29564. }
  29565. },
  29566. footBottom: {
  29567. height: math.unit(0.5, "meter"),
  29568. name: "Foot (Bottom)",
  29569. image: {
  29570. source: "./media/characters/lawrence/foot-bottom.svg"
  29571. }
  29572. },
  29573. footTop: {
  29574. height: math.unit(0.5, "meter"),
  29575. name: "Foot (Top)",
  29576. image: {
  29577. source: "./media/characters/lawrence/foot-top.svg"
  29578. }
  29579. },
  29580. },
  29581. [
  29582. {
  29583. name: "Normal",
  29584. height: math.unit(2.5, "meters"),
  29585. default: true
  29586. },
  29587. {
  29588. name: "Macro",
  29589. height: math.unit(95, "meters")
  29590. },
  29591. {
  29592. name: "Megamacro",
  29593. height: math.unit(150, "km")
  29594. },
  29595. ]
  29596. ))
  29597. characterMakers.push(() => makeCharacter(
  29598. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29599. {
  29600. front: {
  29601. height: math.unit(4.2, "meters"),
  29602. name: "Front",
  29603. image: {
  29604. source: "./media/characters/sydney/front.svg",
  29605. extra: 1323 / 1277,
  29606. bottom: 111 / 1434
  29607. }
  29608. },
  29609. },
  29610. [
  29611. {
  29612. name: "Normal",
  29613. height: math.unit(4.2, "meters"),
  29614. default: true
  29615. },
  29616. ]
  29617. ))
  29618. characterMakers.push(() => makeCharacter(
  29619. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29620. {
  29621. back: {
  29622. height: math.unit(201, "feet"),
  29623. name: "Back",
  29624. image: {
  29625. source: "./media/characters/jessica/back.svg",
  29626. extra: 273 / 259,
  29627. bottom: 7 / 280
  29628. }
  29629. },
  29630. },
  29631. [
  29632. {
  29633. name: "Normal",
  29634. height: math.unit(201, "feet"),
  29635. default: true
  29636. },
  29637. {
  29638. name: "Megamacro",
  29639. height: math.unit(8, "miles")
  29640. },
  29641. ]
  29642. ))
  29643. characterMakers.push(() => makeCharacter(
  29644. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29645. {
  29646. side: {
  29647. height: math.unit(5.6, "m"),
  29648. weight: math.unit(8000, "kg"),
  29649. name: "Side",
  29650. image: {
  29651. source: "./media/characters/victoria/side.svg",
  29652. extra: 1542/1229,
  29653. bottom: 124/1666
  29654. }
  29655. },
  29656. maw: {
  29657. height: math.unit(7.14, "feet"),
  29658. name: "Maw",
  29659. image: {
  29660. source: "./media/characters/victoria/maw.svg"
  29661. }
  29662. },
  29663. },
  29664. [
  29665. {
  29666. name: "Normal",
  29667. height: math.unit(5.6, "m"),
  29668. default: true
  29669. },
  29670. ]
  29671. ))
  29672. characterMakers.push(() => makeCharacter(
  29673. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29674. {
  29675. front: {
  29676. height: math.unit(5 + 6 / 12, "feet"),
  29677. name: "Front",
  29678. image: {
  29679. source: "./media/characters/cat/front.svg",
  29680. extra: 1449/1295,
  29681. bottom: 34/1483
  29682. },
  29683. form: "cat",
  29684. default: true
  29685. },
  29686. back: {
  29687. height: math.unit(5 + 6 / 12, "feet"),
  29688. name: "Back",
  29689. image: {
  29690. source: "./media/characters/cat/back.svg",
  29691. extra: 1466/1301,
  29692. bottom: 19/1485
  29693. },
  29694. form: "cat"
  29695. },
  29696. taur: {
  29697. height: math.unit(7, "feet"),
  29698. name: "Taur",
  29699. image: {
  29700. source: "./media/characters/cat/taur.svg",
  29701. extra: 1389/1233,
  29702. bottom: 83/1472
  29703. },
  29704. form: "taur",
  29705. default: true
  29706. },
  29707. lucarioFront: {
  29708. height: math.unit(4, "feet"),
  29709. name: "Lucario (Front)",
  29710. image: {
  29711. source: "./media/characters/cat/lucario-front.svg",
  29712. extra: 1149/1019,
  29713. bottom: 84/1233
  29714. },
  29715. form: "lucario",
  29716. default: true
  29717. },
  29718. lucarioBack: {
  29719. height: math.unit(4, "feet"),
  29720. name: "Lucario (Back)",
  29721. image: {
  29722. source: "./media/characters/cat/lucario-back.svg",
  29723. extra: 1190/1059,
  29724. bottom: 33/1223
  29725. },
  29726. form: "lucario"
  29727. },
  29728. megaLucario: {
  29729. height: math.unit(4, "feet"),
  29730. name: "Mega Lucario",
  29731. image: {
  29732. source: "./media/characters/cat/mega-lucario.svg",
  29733. extra: 1515 / 1319,
  29734. bottom: 63 / 1578
  29735. },
  29736. form: "lucario"
  29737. },
  29738. nickit: {
  29739. height: math.unit(2, "feet"),
  29740. name: "Nickit",
  29741. image: {
  29742. source: "./media/characters/cat/nickit.svg",
  29743. extra: 1980 / 1585,
  29744. bottom: 102 / 2082
  29745. },
  29746. form: "nickit",
  29747. default: true
  29748. },
  29749. lopunnyFront: {
  29750. height: math.unit(5, "feet"),
  29751. name: "Lopunny (Front)",
  29752. image: {
  29753. source: "./media/characters/cat/lopunny-front.svg",
  29754. extra: 1782 / 1469,
  29755. bottom: 38 / 1820
  29756. },
  29757. form: "lopunny",
  29758. default: true
  29759. },
  29760. lopunnyBack: {
  29761. height: math.unit(5, "feet"),
  29762. name: "Lopunny (Back)",
  29763. image: {
  29764. source: "./media/characters/cat/lopunny-back.svg",
  29765. extra: 1660 / 1490,
  29766. bottom: 25 / 1685
  29767. },
  29768. form: "lopunny"
  29769. },
  29770. },
  29771. [
  29772. {
  29773. name: "Really small",
  29774. height: math.unit(1, "nm")
  29775. },
  29776. {
  29777. name: "Micro",
  29778. height: math.unit(5, "inches")
  29779. },
  29780. {
  29781. name: "Normal",
  29782. height: math.unit(5 + 6 / 12, "feet"),
  29783. default: true
  29784. },
  29785. {
  29786. name: "Macro",
  29787. height: math.unit(50, "feet")
  29788. },
  29789. {
  29790. name: "Macro+",
  29791. height: math.unit(150, "feet")
  29792. },
  29793. {
  29794. name: "Megamacro",
  29795. height: math.unit(100, "miles")
  29796. },
  29797. ]
  29798. ))
  29799. characterMakers.push(() => makeCharacter(
  29800. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29801. {
  29802. front: {
  29803. height: math.unit(63.4, "meters"),
  29804. weight: math.unit(3.28349e+6, "kilograms"),
  29805. name: "Front",
  29806. image: {
  29807. source: "./media/characters/kirina-violet/front.svg",
  29808. extra: 2812 / 2725,
  29809. bottom: 0 / 2812
  29810. }
  29811. },
  29812. back: {
  29813. height: math.unit(63.4, "meters"),
  29814. weight: math.unit(3.28349e+6, "kilograms"),
  29815. name: "Back",
  29816. image: {
  29817. source: "./media/characters/kirina-violet/back.svg",
  29818. extra: 2812 / 2725,
  29819. bottom: 0 / 2812
  29820. }
  29821. },
  29822. mouth: {
  29823. height: math.unit(4.35, "meters"),
  29824. name: "Mouth",
  29825. image: {
  29826. source: "./media/characters/kirina-violet/mouth.svg"
  29827. }
  29828. },
  29829. paw: {
  29830. height: math.unit(5.6, "meters"),
  29831. name: "Paw",
  29832. image: {
  29833. source: "./media/characters/kirina-violet/paw.svg"
  29834. }
  29835. },
  29836. tail: {
  29837. height: math.unit(18, "meters"),
  29838. name: "Tail",
  29839. image: {
  29840. source: "./media/characters/kirina-violet/tail.svg"
  29841. }
  29842. },
  29843. },
  29844. [
  29845. {
  29846. name: "Macro",
  29847. height: math.unit(63.4, "meters"),
  29848. default: true
  29849. },
  29850. ]
  29851. ))
  29852. characterMakers.push(() => makeCharacter(
  29853. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29854. {
  29855. front: {
  29856. height: math.unit(75, "feet"),
  29857. name: "Front",
  29858. image: {
  29859. source: "./media/characters/cat-gigachu/front.svg",
  29860. extra: 1239/1027,
  29861. bottom: 32/1271
  29862. }
  29863. },
  29864. back: {
  29865. height: math.unit(75, "feet"),
  29866. name: "Back",
  29867. image: {
  29868. source: "./media/characters/cat-gigachu/back.svg",
  29869. extra: 1229/1030,
  29870. bottom: 9/1238
  29871. }
  29872. },
  29873. },
  29874. [
  29875. {
  29876. name: "Dynamax",
  29877. height: math.unit(75, "feet"),
  29878. default: true
  29879. },
  29880. ]
  29881. ))
  29882. characterMakers.push(() => makeCharacter(
  29883. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29884. {
  29885. front: {
  29886. height: math.unit(6, "feet"),
  29887. weight: math.unit(150, "lb"),
  29888. name: "Front",
  29889. image: {
  29890. source: "./media/characters/sfaiyan/front.svg",
  29891. extra: 999 / 978,
  29892. bottom: 5 / 1004
  29893. }
  29894. },
  29895. },
  29896. [
  29897. {
  29898. name: "Normal",
  29899. height: math.unit(1.82, "meters")
  29900. },
  29901. {
  29902. name: "Giant",
  29903. height: math.unit(2.27, "km"),
  29904. default: true
  29905. },
  29906. ]
  29907. ))
  29908. characterMakers.push(() => makeCharacter(
  29909. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29910. {
  29911. front: {
  29912. height: math.unit(179, "cm"),
  29913. weight: math.unit(100, "kg"),
  29914. name: "Front",
  29915. image: {
  29916. source: "./media/characters/raunehkeli/front.svg",
  29917. extra: 1934 / 1926,
  29918. bottom: 0 / 1934
  29919. }
  29920. },
  29921. },
  29922. [
  29923. {
  29924. name: "Normal",
  29925. height: math.unit(179, "cm")
  29926. },
  29927. {
  29928. name: "Maximum",
  29929. height: math.unit(575, "meters"),
  29930. default: true
  29931. },
  29932. ]
  29933. ))
  29934. characterMakers.push(() => makeCharacter(
  29935. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29936. {
  29937. front: {
  29938. height: math.unit(6, "feet"),
  29939. weight: math.unit(150, "lb"),
  29940. name: "Front",
  29941. image: {
  29942. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29943. extra: 2625 / 2518,
  29944. bottom: 60 / 2685
  29945. }
  29946. },
  29947. },
  29948. [
  29949. {
  29950. name: "Normal",
  29951. height: math.unit(6 + 2 / 12, "feet")
  29952. },
  29953. {
  29954. name: "Macro",
  29955. height: math.unit(1180, "feet"),
  29956. default: true
  29957. },
  29958. ]
  29959. ))
  29960. characterMakers.push(() => makeCharacter(
  29961. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29962. {
  29963. front: {
  29964. height: math.unit(5 + 6 / 12, "feet"),
  29965. weight: math.unit(108, "lb"),
  29966. name: "Front",
  29967. image: {
  29968. source: "./media/characters/lilith-zott/front.svg",
  29969. extra: 2510 / 2238,
  29970. bottom: 100 / 2610
  29971. }
  29972. },
  29973. frontDressed: {
  29974. height: math.unit(5 + 6 / 12, "feet"),
  29975. weight: math.unit(108, "lb"),
  29976. name: "Front (Dressed)",
  29977. image: {
  29978. source: "./media/characters/lilith-zott/front-dressed.svg",
  29979. extra: 2510 / 2238,
  29980. bottom: 100 / 2610
  29981. }
  29982. },
  29983. },
  29984. [
  29985. {
  29986. name: "Normal",
  29987. height: math.unit(5 + 6 / 12, "feet")
  29988. },
  29989. {
  29990. name: "Macro",
  29991. height: math.unit(1030, "feet"),
  29992. default: true
  29993. },
  29994. ]
  29995. ))
  29996. characterMakers.push(() => makeCharacter(
  29997. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29998. {
  29999. front: {
  30000. height: math.unit(6, "feet"),
  30001. weight: math.unit(150, "lb"),
  30002. name: "Front",
  30003. image: {
  30004. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30005. extra: 2567 / 2435,
  30006. bottom: 39 / 2606
  30007. }
  30008. },
  30009. frontSuper: {
  30010. height: math.unit(6, "feet"),
  30011. name: "Front (Super)",
  30012. image: {
  30013. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30014. extra: 2567 / 2435,
  30015. bottom: 39 / 2606
  30016. }
  30017. },
  30018. },
  30019. [
  30020. {
  30021. name: "Normal",
  30022. height: math.unit(5 + 10 / 12, "feet")
  30023. },
  30024. {
  30025. name: "Macro",
  30026. height: math.unit(1100, "feet"),
  30027. default: true
  30028. },
  30029. ]
  30030. ))
  30031. characterMakers.push(() => makeCharacter(
  30032. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30033. {
  30034. front: {
  30035. height: math.unit(100, "miles"),
  30036. name: "Front",
  30037. image: {
  30038. source: "./media/characters/sona/front.svg",
  30039. extra: 2433 / 2201,
  30040. bottom: 53 / 2486
  30041. }
  30042. },
  30043. foot: {
  30044. height: math.unit(16.1, "miles"),
  30045. name: "Foot",
  30046. image: {
  30047. source: "./media/characters/sona/foot.svg"
  30048. }
  30049. },
  30050. },
  30051. [
  30052. {
  30053. name: "Macro",
  30054. height: math.unit(100, "miles"),
  30055. default: true
  30056. },
  30057. ]
  30058. ))
  30059. characterMakers.push(() => makeCharacter(
  30060. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30061. {
  30062. front: {
  30063. height: math.unit(6, "feet"),
  30064. weight: math.unit(150, "lb"),
  30065. name: "Front",
  30066. image: {
  30067. source: "./media/characters/bailey/front.svg",
  30068. extra: 1778 / 1724,
  30069. bottom: 30 / 1808
  30070. }
  30071. },
  30072. },
  30073. [
  30074. {
  30075. name: "Micro",
  30076. height: math.unit(4, "inches")
  30077. },
  30078. {
  30079. name: "Normal",
  30080. height: math.unit(5 + 5 / 12, "feet"),
  30081. default: true
  30082. },
  30083. {
  30084. name: "Macro",
  30085. height: math.unit(250, "feet")
  30086. },
  30087. {
  30088. name: "Megamacro",
  30089. height: math.unit(100, "miles")
  30090. },
  30091. ]
  30092. ))
  30093. characterMakers.push(() => makeCharacter(
  30094. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30095. {
  30096. front: {
  30097. height: math.unit(5 + 2 / 12, "feet"),
  30098. weight: math.unit(120, "lb"),
  30099. name: "Front",
  30100. image: {
  30101. source: "./media/characters/snaps/front.svg",
  30102. extra: 2370 / 2177,
  30103. bottom: 48 / 2418
  30104. }
  30105. },
  30106. back: {
  30107. height: math.unit(5 + 2 / 12, "feet"),
  30108. weight: math.unit(120, "lb"),
  30109. name: "Back",
  30110. image: {
  30111. source: "./media/characters/snaps/back.svg",
  30112. extra: 2408 / 2258,
  30113. bottom: 15 / 2423
  30114. }
  30115. },
  30116. },
  30117. [
  30118. {
  30119. name: "Micro",
  30120. height: math.unit(9, "inches")
  30121. },
  30122. {
  30123. name: "Normal",
  30124. height: math.unit(5 + 2 / 12, "feet"),
  30125. default: true
  30126. },
  30127. {
  30128. name: "Mini Macro",
  30129. height: math.unit(10, "feet")
  30130. },
  30131. ]
  30132. ))
  30133. characterMakers.push(() => makeCharacter(
  30134. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30135. {
  30136. front: {
  30137. height: math.unit(1.8, "meters"),
  30138. weight: math.unit(85, "kg"),
  30139. name: "Front",
  30140. image: {
  30141. source: "./media/characters/azteck/front.svg",
  30142. extra: 2815 / 2625,
  30143. bottom: 89 / 2904
  30144. }
  30145. },
  30146. back: {
  30147. height: math.unit(1.8, "meters"),
  30148. weight: math.unit(85, "kg"),
  30149. name: "Back",
  30150. image: {
  30151. source: "./media/characters/azteck/back.svg",
  30152. extra: 2856 / 2648,
  30153. bottom: 85 / 2941
  30154. }
  30155. },
  30156. frontDressed: {
  30157. height: math.unit(1.8, "meters"),
  30158. weight: math.unit(85, "kg"),
  30159. name: "Front (Dressed)",
  30160. image: {
  30161. source: "./media/characters/azteck/front-dressed.svg",
  30162. extra: 2147 / 2003,
  30163. bottom: 68 / 2215
  30164. }
  30165. },
  30166. head: {
  30167. height: math.unit(0.47, "meters"),
  30168. weight: math.unit(85, "kg"),
  30169. name: "Head",
  30170. image: {
  30171. source: "./media/characters/azteck/head.svg"
  30172. }
  30173. },
  30174. },
  30175. [
  30176. {
  30177. name: "Bite sized",
  30178. height: math.unit(16, "cm")
  30179. },
  30180. {
  30181. name: "Normal",
  30182. height: math.unit(1.8, "meters"),
  30183. default: true
  30184. },
  30185. ]
  30186. ))
  30187. characterMakers.push(() => makeCharacter(
  30188. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30189. {
  30190. front: {
  30191. height: math.unit(6, "feet"),
  30192. weight: math.unit(150, "lb"),
  30193. name: "Front",
  30194. image: {
  30195. source: "./media/characters/pidge/front.svg",
  30196. extra: 1936/1820,
  30197. bottom: 0/1936
  30198. }
  30199. },
  30200. back: {
  30201. height: math.unit(6, "feet"),
  30202. weight: math.unit(150, "lb"),
  30203. name: "Back",
  30204. image: {
  30205. source: "./media/characters/pidge/back.svg",
  30206. extra: 1938/1843,
  30207. bottom: 0/1938
  30208. }
  30209. },
  30210. casual: {
  30211. height: math.unit(6, "feet"),
  30212. weight: math.unit(150, "lb"),
  30213. name: "Casual",
  30214. image: {
  30215. source: "./media/characters/pidge/casual.svg",
  30216. extra: 1936/1820,
  30217. bottom: 0/1936
  30218. }
  30219. },
  30220. tech: {
  30221. height: math.unit(6, "feet"),
  30222. weight: math.unit(150, "lb"),
  30223. name: "Tech",
  30224. image: {
  30225. source: "./media/characters/pidge/tech.svg",
  30226. extra: 1802/1682,
  30227. bottom: 0/1802
  30228. }
  30229. },
  30230. head: {
  30231. height: math.unit(1.61, "feet"),
  30232. name: "Head",
  30233. image: {
  30234. source: "./media/characters/pidge/head.svg"
  30235. }
  30236. },
  30237. collar: {
  30238. height: math.unit(0.82, "feet"),
  30239. name: "Collar",
  30240. image: {
  30241. source: "./media/characters/pidge/collar.svg"
  30242. }
  30243. },
  30244. },
  30245. [
  30246. {
  30247. name: "Macro",
  30248. height: math.unit(2, "mile"),
  30249. default: true
  30250. },
  30251. {
  30252. name: "PUPPY",
  30253. height: math.unit(20, "miles")
  30254. },
  30255. ]
  30256. ))
  30257. characterMakers.push(() => makeCharacter(
  30258. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30259. {
  30260. front: {
  30261. height: math.unit(6, "feet"),
  30262. weight: math.unit(150, "lb"),
  30263. name: "Front",
  30264. image: {
  30265. source: "./media/characters/en/front.svg",
  30266. extra: 1697 / 1563,
  30267. bottom: 103 / 1800
  30268. }
  30269. },
  30270. back: {
  30271. height: math.unit(6, "feet"),
  30272. weight: math.unit(150, "lb"),
  30273. name: "Back",
  30274. image: {
  30275. source: "./media/characters/en/back.svg",
  30276. extra: 1700 / 1570,
  30277. bottom: 51 / 1751
  30278. }
  30279. },
  30280. frontDressed: {
  30281. height: math.unit(6, "feet"),
  30282. weight: math.unit(150, "lb"),
  30283. name: "Front (Dressed)",
  30284. image: {
  30285. source: "./media/characters/en/front-dressed.svg",
  30286. extra: 1697 / 1563,
  30287. bottom: 103 / 1800
  30288. }
  30289. },
  30290. backDressed: {
  30291. height: math.unit(6, "feet"),
  30292. weight: math.unit(150, "lb"),
  30293. name: "Back (Dressed)",
  30294. image: {
  30295. source: "./media/characters/en/back-dressed.svg",
  30296. extra: 1700 / 1570,
  30297. bottom: 51 / 1751
  30298. }
  30299. },
  30300. },
  30301. [
  30302. {
  30303. name: "Macro",
  30304. height: math.unit(210, "feet"),
  30305. default: true
  30306. },
  30307. ]
  30308. ))
  30309. characterMakers.push(() => makeCharacter(
  30310. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30311. {
  30312. front: {
  30313. height: math.unit(6, "feet"),
  30314. weight: math.unit(150, "lb"),
  30315. name: "Front",
  30316. image: {
  30317. source: "./media/characters/haze-orris/front.svg",
  30318. extra: 3975 / 3525,
  30319. bottom: 137 / 4112
  30320. }
  30321. },
  30322. },
  30323. [
  30324. {
  30325. name: "Micro",
  30326. height: math.unit(150, "mm"),
  30327. default: true
  30328. },
  30329. ]
  30330. ))
  30331. characterMakers.push(() => makeCharacter(
  30332. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30333. {
  30334. front: {
  30335. height: math.unit(6, "feet"),
  30336. weight: math.unit(150, "lb"),
  30337. name: "Front",
  30338. image: {
  30339. source: "./media/characters/casselene-yaro/front.svg",
  30340. extra: 4721 / 4541,
  30341. bottom: 82 / 4803
  30342. }
  30343. },
  30344. back: {
  30345. height: math.unit(6, "feet"),
  30346. weight: math.unit(150, "lb"),
  30347. name: "Back",
  30348. image: {
  30349. source: "./media/characters/casselene-yaro/back.svg",
  30350. extra: 4569 / 4377,
  30351. bottom: 69 / 4638
  30352. }
  30353. },
  30354. dressed: {
  30355. height: math.unit(6, "feet"),
  30356. weight: math.unit(150, "lb"),
  30357. name: "Dressed",
  30358. image: {
  30359. source: "./media/characters/casselene-yaro/dressed.svg",
  30360. extra: 4721 / 4541,
  30361. bottom: 82 / 4803
  30362. }
  30363. },
  30364. maw: {
  30365. height: math.unit(1, "feet"),
  30366. name: "Maw",
  30367. image: {
  30368. source: "./media/characters/casselene-yaro/maw.svg"
  30369. }
  30370. },
  30371. },
  30372. [
  30373. {
  30374. name: "Macro",
  30375. height: math.unit(190, "feet"),
  30376. default: true
  30377. },
  30378. ]
  30379. ))
  30380. characterMakers.push(() => makeCharacter(
  30381. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30382. {
  30383. front: {
  30384. height: math.unit(10, "feet"),
  30385. weight: math.unit(15015, "lb"),
  30386. name: "Front",
  30387. image: {
  30388. source: "./media/characters/fem!plat/front.svg",
  30389. extra: 2799 / 2604,
  30390. bottom: 149 / 2948
  30391. }
  30392. },
  30393. },
  30394. [
  30395. {
  30396. name: "Normal",
  30397. height: math.unit(10, "feet"),
  30398. default: true
  30399. },
  30400. {
  30401. name: "Macro",
  30402. height: math.unit(100, "feet")
  30403. },
  30404. {
  30405. name: "Megamacro",
  30406. height: math.unit(1000, "feet")
  30407. },
  30408. ]
  30409. ))
  30410. characterMakers.push(() => makeCharacter(
  30411. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30412. {
  30413. front: {
  30414. height: math.unit(15 + 5 / 12, "feet"),
  30415. weight: math.unit(4600, "lb"),
  30416. name: "Front",
  30417. image: {
  30418. source: "./media/characters/neapolitan-ananassa/front.svg",
  30419. extra: 2903 / 2736,
  30420. bottom: 0 / 2903
  30421. }
  30422. },
  30423. side: {
  30424. height: math.unit(15 + 5 / 12, "feet"),
  30425. weight: math.unit(4600, "lb"),
  30426. name: "Side",
  30427. image: {
  30428. source: "./media/characters/neapolitan-ananassa/side.svg",
  30429. extra: 2925 / 2719,
  30430. bottom: 0 / 2925
  30431. }
  30432. },
  30433. back: {
  30434. height: math.unit(15 + 5 / 12, "feet"),
  30435. weight: math.unit(4600, "lb"),
  30436. name: "Back",
  30437. image: {
  30438. source: "./media/characters/neapolitan-ananassa/back.svg",
  30439. extra: 2903 / 2736,
  30440. bottom: 0 / 2903
  30441. }
  30442. },
  30443. },
  30444. [
  30445. {
  30446. name: "Normal",
  30447. height: math.unit(15 + 5 / 12, "feet"),
  30448. default: true
  30449. },
  30450. {
  30451. name: "Post-Millenium",
  30452. height: math.unit(35 + 5 / 12, "feet")
  30453. },
  30454. {
  30455. name: "Post-Era",
  30456. height: math.unit(450 + 5 / 12, "feet")
  30457. },
  30458. ]
  30459. ))
  30460. characterMakers.push(() => makeCharacter(
  30461. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30462. {
  30463. front: {
  30464. height: math.unit(300, "meters"),
  30465. weight: math.unit(125000, "tonnes"),
  30466. name: "Front",
  30467. image: {
  30468. source: "./media/characters/pazuzu/front.svg",
  30469. extra: 877 / 794,
  30470. bottom: 47 / 924
  30471. }
  30472. },
  30473. },
  30474. [
  30475. {
  30476. name: "Macro",
  30477. height: math.unit(300, "meters"),
  30478. default: true
  30479. },
  30480. ]
  30481. ))
  30482. characterMakers.push(() => makeCharacter(
  30483. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30484. {
  30485. side: {
  30486. height: math.unit(10 + 7 / 12, "feet"),
  30487. weight: math.unit(2.5, "tons"),
  30488. name: "Side",
  30489. image: {
  30490. source: "./media/characters/aasha/side.svg",
  30491. extra: 1345 / 1245,
  30492. bottom: 111 / 1456
  30493. }
  30494. },
  30495. back: {
  30496. height: math.unit(10 + 7 / 12, "feet"),
  30497. weight: math.unit(2.5, "tons"),
  30498. name: "Back",
  30499. image: {
  30500. source: "./media/characters/aasha/back.svg",
  30501. extra: 1133 / 1057,
  30502. bottom: 257 / 1390
  30503. }
  30504. },
  30505. },
  30506. [
  30507. {
  30508. name: "Normal",
  30509. height: math.unit(10 + 7 / 12, "feet"),
  30510. default: true
  30511. },
  30512. ]
  30513. ))
  30514. characterMakers.push(() => makeCharacter(
  30515. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30516. {
  30517. front: {
  30518. height: math.unit(6 + 3 / 12, "feet"),
  30519. name: "Front",
  30520. image: {
  30521. source: "./media/characters/nevan/front.svg",
  30522. extra: 704 / 704,
  30523. bottom: 28 / 732
  30524. }
  30525. },
  30526. back: {
  30527. height: math.unit(6 + 3 / 12, "feet"),
  30528. name: "Back",
  30529. image: {
  30530. source: "./media/characters/nevan/back.svg",
  30531. extra: 714 / 714,
  30532. bottom: 21 / 735
  30533. }
  30534. },
  30535. frontFlaccid: {
  30536. height: math.unit(6 + 3 / 12, "feet"),
  30537. name: "Front (Flaccid)",
  30538. image: {
  30539. source: "./media/characters/nevan/front-flaccid.svg",
  30540. extra: 704 / 704,
  30541. bottom: 28 / 732
  30542. }
  30543. },
  30544. frontErect: {
  30545. height: math.unit(6 + 3 / 12, "feet"),
  30546. name: "Front (Erect)",
  30547. image: {
  30548. source: "./media/characters/nevan/front-erect.svg",
  30549. extra: 704 / 704,
  30550. bottom: 28 / 732
  30551. }
  30552. },
  30553. backFlaccid: {
  30554. height: math.unit(6 + 3 / 12, "feet"),
  30555. name: "Back (Flaccid)",
  30556. image: {
  30557. source: "./media/characters/nevan/back-flaccid.svg",
  30558. extra: 714 / 714,
  30559. bottom: 21 / 735
  30560. }
  30561. },
  30562. },
  30563. [
  30564. {
  30565. name: "Normal",
  30566. height: math.unit(6 + 3 / 12, "feet"),
  30567. default: true
  30568. },
  30569. ]
  30570. ))
  30571. characterMakers.push(() => makeCharacter(
  30572. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30573. {
  30574. front: {
  30575. height: math.unit(4, "feet"),
  30576. name: "Front",
  30577. image: {
  30578. source: "./media/characters/arhan/front.svg",
  30579. extra: 3368 / 3133,
  30580. bottom: 0 / 3368
  30581. }
  30582. },
  30583. side: {
  30584. height: math.unit(4, "feet"),
  30585. name: "Side",
  30586. image: {
  30587. source: "./media/characters/arhan/side.svg",
  30588. extra: 3347 / 3105,
  30589. bottom: 0 / 3347
  30590. }
  30591. },
  30592. tongue: {
  30593. height: math.unit(1.42, "feet"),
  30594. name: "Tongue",
  30595. image: {
  30596. source: "./media/characters/arhan/tongue.svg"
  30597. }
  30598. },
  30599. head: {
  30600. height: math.unit(0.85, "feet"),
  30601. name: "Head",
  30602. image: {
  30603. source: "./media/characters/arhan/head.svg"
  30604. }
  30605. },
  30606. },
  30607. [
  30608. {
  30609. name: "Normal",
  30610. height: math.unit(4, "feet"),
  30611. default: true
  30612. },
  30613. ]
  30614. ))
  30615. characterMakers.push(() => makeCharacter(
  30616. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30617. {
  30618. front: {
  30619. height: math.unit(5 + 7.5 / 12, "feet"),
  30620. weight: math.unit(120, "lb"),
  30621. name: "Front",
  30622. image: {
  30623. source: "./media/characters/digi-duncan/front.svg",
  30624. extra: 330 / 326,
  30625. bottom: 16 / 346
  30626. }
  30627. },
  30628. side: {
  30629. height: math.unit(5 + 7.5 / 12, "feet"),
  30630. weight: math.unit(120, "lb"),
  30631. name: "Side",
  30632. image: {
  30633. source: "./media/characters/digi-duncan/side.svg",
  30634. extra: 341 / 337,
  30635. bottom: 1 / 342
  30636. }
  30637. },
  30638. back: {
  30639. height: math.unit(5 + 7.5 / 12, "feet"),
  30640. weight: math.unit(120, "lb"),
  30641. name: "Back",
  30642. image: {
  30643. source: "./media/characters/digi-duncan/back.svg",
  30644. extra: 330 / 326,
  30645. bottom: 12 / 342
  30646. }
  30647. },
  30648. },
  30649. [
  30650. {
  30651. name: "Speck",
  30652. height: math.unit(0.25, "mm")
  30653. },
  30654. {
  30655. name: "Micro",
  30656. height: math.unit(5, "mm")
  30657. },
  30658. {
  30659. name: "Tiny",
  30660. height: math.unit(0.5, "inches"),
  30661. default: true
  30662. },
  30663. {
  30664. name: "Human",
  30665. height: math.unit(5 + 7.5 / 12, "feet")
  30666. },
  30667. {
  30668. name: "Minigiant",
  30669. height: math.unit(8 + 5.25, "feet")
  30670. },
  30671. {
  30672. name: "Giant",
  30673. height: math.unit(2000, "feet")
  30674. },
  30675. {
  30676. name: "Mega",
  30677. height: math.unit(371.1, "miles")
  30678. },
  30679. ]
  30680. ))
  30681. characterMakers.push(() => makeCharacter(
  30682. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30683. {
  30684. front: {
  30685. height: math.unit(2, "meters"),
  30686. weight: math.unit(350, "kg"),
  30687. name: "Front",
  30688. image: {
  30689. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30690. extra: 898 / 838,
  30691. bottom: 9 / 907
  30692. }
  30693. },
  30694. },
  30695. [
  30696. {
  30697. name: "Micro",
  30698. height: math.unit(8, "meters")
  30699. },
  30700. {
  30701. name: "Normal",
  30702. height: math.unit(50, "meters"),
  30703. default: true
  30704. },
  30705. {
  30706. name: "Macro",
  30707. height: math.unit(500, "meters")
  30708. },
  30709. ]
  30710. ))
  30711. characterMakers.push(() => makeCharacter(
  30712. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30713. {
  30714. front: {
  30715. height: math.unit(6 + 6 / 12, "feet"),
  30716. name: "Front",
  30717. image: {
  30718. source: "./media/characters/khardesh/front.svg",
  30719. extra: 1788/1596,
  30720. bottom: 66/1854
  30721. }
  30722. },
  30723. back: {
  30724. height: math.unit(6 + 6 / 12, "feet"),
  30725. name: "Back",
  30726. image: {
  30727. source: "./media/characters/khardesh/back.svg",
  30728. extra: 1781/1584,
  30729. bottom: 68/1849
  30730. }
  30731. },
  30732. },
  30733. [
  30734. {
  30735. name: "Normal",
  30736. height: math.unit(6 + 6 / 12, "feet"),
  30737. default: true
  30738. },
  30739. {
  30740. name: "Normal+",
  30741. height: math.unit(4, "meters")
  30742. },
  30743. {
  30744. name: "Macro",
  30745. height: math.unit(50, "meters")
  30746. },
  30747. {
  30748. name: "Macro+",
  30749. height: math.unit(100, "meters")
  30750. },
  30751. {
  30752. name: "Megamacro",
  30753. height: math.unit(20, "km")
  30754. },
  30755. ]
  30756. ))
  30757. characterMakers.push(() => makeCharacter(
  30758. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30759. {
  30760. front: {
  30761. height: math.unit(6, "feet"),
  30762. weight: math.unit(150, "lb"),
  30763. name: "Front",
  30764. image: {
  30765. source: "./media/characters/kosho/front.svg",
  30766. extra: 1847 / 1847,
  30767. bottom: 86 / 1933
  30768. }
  30769. },
  30770. },
  30771. [
  30772. {
  30773. name: "Second-stage micro",
  30774. height: math.unit(0.5, "inches")
  30775. },
  30776. {
  30777. name: "First-stage micro",
  30778. height: math.unit(6, "inches")
  30779. },
  30780. {
  30781. name: "Normal",
  30782. height: math.unit(6, "feet"),
  30783. default: true
  30784. },
  30785. {
  30786. name: "First-stage macro",
  30787. height: math.unit(72, "feet")
  30788. },
  30789. {
  30790. name: "Second-stage macro",
  30791. height: math.unit(864, "feet")
  30792. },
  30793. ]
  30794. ))
  30795. characterMakers.push(() => makeCharacter(
  30796. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30797. {
  30798. normal: {
  30799. height: math.unit(4 + 6 / 12, "feet"),
  30800. name: "Normal",
  30801. image: {
  30802. source: "./media/characters/hydra/normal.svg",
  30803. extra: 2833 / 2634,
  30804. bottom: 68 / 2901
  30805. }
  30806. },
  30807. smol: {
  30808. height: math.unit(0.705, "inches"),
  30809. name: "Smol",
  30810. image: {
  30811. source: "./media/characters/hydra/smol.svg",
  30812. extra: 2715 / 2540,
  30813. bottom: 0 / 2715
  30814. }
  30815. },
  30816. },
  30817. [
  30818. {
  30819. name: "Normal",
  30820. height: math.unit(4 + 6 / 12, "feet"),
  30821. default: true
  30822. }
  30823. ]
  30824. ))
  30825. characterMakers.push(() => makeCharacter(
  30826. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30827. {
  30828. front: {
  30829. height: math.unit(0.6, "cm"),
  30830. name: "Front",
  30831. image: {
  30832. source: "./media/characters/daz/front.svg",
  30833. extra: 1682 / 1164,
  30834. bottom: 42 / 1724
  30835. }
  30836. },
  30837. },
  30838. [
  30839. {
  30840. name: "Normal",
  30841. height: math.unit(0.6, "cm"),
  30842. default: true
  30843. },
  30844. ]
  30845. ))
  30846. characterMakers.push(() => makeCharacter(
  30847. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30848. {
  30849. front: {
  30850. height: math.unit(6, "feet"),
  30851. weight: math.unit(235, "lb"),
  30852. name: "Front",
  30853. image: {
  30854. source: "./media/characters/theo-pangolin/front.svg",
  30855. extra: 1996 / 1969,
  30856. bottom: 115 / 2111
  30857. }
  30858. },
  30859. back: {
  30860. height: math.unit(6, "feet"),
  30861. weight: math.unit(235, "lb"),
  30862. name: "Back",
  30863. image: {
  30864. source: "./media/characters/theo-pangolin/back.svg",
  30865. extra: 1979 / 1979,
  30866. bottom: 40 / 2019
  30867. }
  30868. },
  30869. feral: {
  30870. height: math.unit(2, "feet"),
  30871. weight: math.unit(30, "lb"),
  30872. name: "Feral",
  30873. image: {
  30874. source: "./media/characters/theo-pangolin/feral.svg",
  30875. extra: 803 / 791,
  30876. bottom: 181 / 984
  30877. }
  30878. },
  30879. footFive: {
  30880. height: math.unit(1.43, "feet"),
  30881. name: "Foot (Five Toes)",
  30882. image: {
  30883. source: "./media/characters/theo-pangolin/foot-five.svg"
  30884. }
  30885. },
  30886. footFour: {
  30887. height: math.unit(1.43, "feet"),
  30888. name: "Foot (Four Toes)",
  30889. image: {
  30890. source: "./media/characters/theo-pangolin/foot-four.svg"
  30891. }
  30892. },
  30893. handFour: {
  30894. height: math.unit(0.81, "feet"),
  30895. name: "Hand (Four Fingers)",
  30896. image: {
  30897. source: "./media/characters/theo-pangolin/hand-four.svg"
  30898. }
  30899. },
  30900. handThree: {
  30901. height: math.unit(0.81, "feet"),
  30902. name: "Hand (Three Fingers)",
  30903. image: {
  30904. source: "./media/characters/theo-pangolin/hand-three.svg"
  30905. }
  30906. },
  30907. headFront: {
  30908. height: math.unit(1.37, "feet"),
  30909. name: "Head (Front)",
  30910. image: {
  30911. source: "./media/characters/theo-pangolin/head-front.svg"
  30912. }
  30913. },
  30914. headSide: {
  30915. height: math.unit(1.43, "feet"),
  30916. name: "Head (Side)",
  30917. image: {
  30918. source: "./media/characters/theo-pangolin/head-side.svg"
  30919. }
  30920. },
  30921. tongue: {
  30922. height: math.unit(2.29, "feet"),
  30923. name: "Tongue",
  30924. image: {
  30925. source: "./media/characters/theo-pangolin/tongue.svg"
  30926. }
  30927. },
  30928. },
  30929. [
  30930. {
  30931. name: "Normal",
  30932. height: math.unit(6, "feet")
  30933. },
  30934. {
  30935. name: "Macro",
  30936. height: math.unit(400, "feet"),
  30937. default: true
  30938. },
  30939. ]
  30940. ))
  30941. characterMakers.push(() => makeCharacter(
  30942. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30943. {
  30944. front: {
  30945. height: math.unit(6, "inches"),
  30946. weight: math.unit(0.036, "kg"),
  30947. name: "Front",
  30948. image: {
  30949. source: "./media/characters/renée/front.svg",
  30950. extra: 900 / 886,
  30951. bottom: 8 / 908
  30952. }
  30953. },
  30954. },
  30955. [
  30956. {
  30957. name: "Nano",
  30958. height: math.unit(1, "nm")
  30959. },
  30960. {
  30961. name: "Micro",
  30962. height: math.unit(1, "mm")
  30963. },
  30964. {
  30965. name: "Normal",
  30966. height: math.unit(6, "inches")
  30967. },
  30968. {
  30969. name: "Macro",
  30970. height: math.unit(2000, "feet"),
  30971. default: true
  30972. },
  30973. {
  30974. name: "Megamacro",
  30975. height: math.unit(2, "km")
  30976. },
  30977. {
  30978. name: "Gigamacro",
  30979. height: math.unit(2000, "km")
  30980. },
  30981. {
  30982. name: "Teramacro",
  30983. height: math.unit(250000, "km")
  30984. },
  30985. ]
  30986. ))
  30987. characterMakers.push(() => makeCharacter(
  30988. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30989. {
  30990. front: {
  30991. height: math.unit(4, "meters"),
  30992. weight: math.unit(150, "kg"),
  30993. name: "Front",
  30994. image: {
  30995. source: "./media/characters/caledvwlch/front.svg",
  30996. extra: 1760 / 1551,
  30997. bottom: 28 / 1788
  30998. }
  30999. },
  31000. side: {
  31001. height: math.unit(4, "meters"),
  31002. weight: math.unit(150, "kg"),
  31003. name: "Side",
  31004. image: {
  31005. source: "./media/characters/caledvwlch/side.svg",
  31006. extra: 1605 / 1536,
  31007. bottom: 31 / 1636
  31008. }
  31009. },
  31010. back: {
  31011. height: math.unit(4, "meters"),
  31012. weight: math.unit(150, "kg"),
  31013. name: "Back",
  31014. image: {
  31015. source: "./media/characters/caledvwlch/back.svg",
  31016. extra: 1635 / 1565,
  31017. bottom: 27 / 1662
  31018. }
  31019. },
  31020. },
  31021. [
  31022. {
  31023. name: "\"Incognito\"",
  31024. height: math.unit(4, "meters")
  31025. },
  31026. {
  31027. name: "Small rampage",
  31028. height: math.unit(600, "meters")
  31029. },
  31030. {
  31031. name: "Mega",
  31032. height: math.unit(30, "km")
  31033. },
  31034. {
  31035. name: "Home-size",
  31036. height: math.unit(50, "km"),
  31037. default: true
  31038. },
  31039. {
  31040. name: "Giga",
  31041. height: math.unit(300, "km")
  31042. },
  31043. {
  31044. name: "Lounging",
  31045. height: math.unit(11000, "km")
  31046. },
  31047. {
  31048. name: "Planet snacking",
  31049. height: math.unit(2000000, "km")
  31050. },
  31051. ]
  31052. ))
  31053. characterMakers.push(() => makeCharacter(
  31054. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31055. {
  31056. front: {
  31057. height: math.unit(6, "feet"),
  31058. weight: math.unit(215, "lb"),
  31059. name: "Front",
  31060. image: {
  31061. source: "./media/characters/sapphire-svell/front.svg",
  31062. extra: 495 / 455,
  31063. bottom: 20 / 515
  31064. }
  31065. },
  31066. back: {
  31067. height: math.unit(6, "feet"),
  31068. weight: math.unit(216, "lb"),
  31069. name: "Back",
  31070. image: {
  31071. source: "./media/characters/sapphire-svell/back.svg",
  31072. extra: 497 / 477,
  31073. bottom: 7 / 504
  31074. }
  31075. },
  31076. maw: {
  31077. height: math.unit(1.57, "feet"),
  31078. name: "Maw",
  31079. image: {
  31080. source: "./media/characters/sapphire-svell/maw.svg"
  31081. }
  31082. },
  31083. foot: {
  31084. height: math.unit(1.07, "feet"),
  31085. name: "Foot",
  31086. image: {
  31087. source: "./media/characters/sapphire-svell/foot.svg"
  31088. }
  31089. },
  31090. toering: {
  31091. height: math.unit(1.7, "inch"),
  31092. name: "Toering",
  31093. image: {
  31094. source: "./media/characters/sapphire-svell/toering.svg"
  31095. }
  31096. },
  31097. },
  31098. [
  31099. {
  31100. name: "Normal",
  31101. height: math.unit(300, "feet"),
  31102. default: true
  31103. },
  31104. {
  31105. name: "Augmented",
  31106. height: math.unit(1250, "feet")
  31107. },
  31108. {
  31109. name: "Unleashed",
  31110. height: math.unit(3000, "feet")
  31111. },
  31112. ]
  31113. ))
  31114. characterMakers.push(() => makeCharacter(
  31115. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31116. {
  31117. side: {
  31118. height: math.unit(2 + 3 / 12, "feet"),
  31119. weight: math.unit(110, "lb"),
  31120. name: "Side",
  31121. image: {
  31122. source: "./media/characters/glitch-flux/side.svg",
  31123. extra: 997 / 805,
  31124. bottom: 20 / 1017
  31125. }
  31126. },
  31127. },
  31128. [
  31129. {
  31130. name: "Normal",
  31131. height: math.unit(2 + 3 / 12, "feet"),
  31132. default: true
  31133. },
  31134. ]
  31135. ))
  31136. characterMakers.push(() => makeCharacter(
  31137. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31138. {
  31139. front: {
  31140. height: math.unit(4, "meters"),
  31141. name: "Front",
  31142. image: {
  31143. source: "./media/characters/mid/front.svg",
  31144. extra: 507 / 476,
  31145. bottom: 17 / 524
  31146. }
  31147. },
  31148. back: {
  31149. height: math.unit(4, "meters"),
  31150. name: "Back",
  31151. image: {
  31152. source: "./media/characters/mid/back.svg",
  31153. extra: 519 / 487,
  31154. bottom: 7 / 526
  31155. }
  31156. },
  31157. stuck: {
  31158. height: math.unit(2.2, "meters"),
  31159. name: "Stuck",
  31160. image: {
  31161. source: "./media/characters/mid/stuck.svg",
  31162. extra: 1951 / 1869,
  31163. bottom: 88 / 2039
  31164. }
  31165. }
  31166. },
  31167. [
  31168. {
  31169. name: "Normal",
  31170. height: math.unit(4, "meters"),
  31171. default: true
  31172. },
  31173. {
  31174. name: "Big",
  31175. height: math.unit(10, "meters")
  31176. },
  31177. {
  31178. name: "Macro",
  31179. height: math.unit(800, "meters")
  31180. },
  31181. {
  31182. name: "Megamacro",
  31183. height: math.unit(100, "km")
  31184. },
  31185. {
  31186. name: "Overgrown",
  31187. height: math.unit(1, "parsec")
  31188. },
  31189. ]
  31190. ))
  31191. characterMakers.push(() => makeCharacter(
  31192. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31193. {
  31194. front: {
  31195. height: math.unit(2.5, "meters"),
  31196. weight: math.unit(225, "kg"),
  31197. name: "Front",
  31198. image: {
  31199. source: "./media/characters/iris/front.svg",
  31200. extra: 3348 / 3251,
  31201. bottom: 205 / 3553
  31202. }
  31203. },
  31204. maw: {
  31205. height: math.unit(0.56, "meter"),
  31206. name: "Maw",
  31207. image: {
  31208. source: "./media/characters/iris/maw.svg"
  31209. }
  31210. },
  31211. },
  31212. [
  31213. {
  31214. name: "Mewter cat",
  31215. height: math.unit(1.2, "meters")
  31216. },
  31217. {
  31218. name: "Minimacro",
  31219. height: math.unit(2.5, "meters"),
  31220. default: true
  31221. },
  31222. {
  31223. name: "Macro",
  31224. height: math.unit(180, "meters")
  31225. },
  31226. {
  31227. name: "Megamacro",
  31228. height: math.unit(2746, "meters")
  31229. },
  31230. ]
  31231. ))
  31232. characterMakers.push(() => makeCharacter(
  31233. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31234. {
  31235. front: {
  31236. height: math.unit(6, "feet"),
  31237. weight: math.unit(135, "lb"),
  31238. name: "Front",
  31239. image: {
  31240. source: "./media/characters/axel/front.svg",
  31241. extra: 908 / 908,
  31242. bottom: 58 / 966
  31243. }
  31244. },
  31245. side: {
  31246. height: math.unit(6, "feet"),
  31247. weight: math.unit(135, "lb"),
  31248. name: "Side",
  31249. image: {
  31250. source: "./media/characters/axel/side.svg",
  31251. extra: 958 / 958,
  31252. bottom: 11 / 969
  31253. }
  31254. },
  31255. back: {
  31256. height: math.unit(6, "feet"),
  31257. weight: math.unit(135, "lb"),
  31258. name: "Back",
  31259. image: {
  31260. source: "./media/characters/axel/back.svg",
  31261. extra: 887 / 887,
  31262. bottom: 34 / 921
  31263. }
  31264. },
  31265. head: {
  31266. height: math.unit(1.07, "feet"),
  31267. name: "Head",
  31268. image: {
  31269. source: "./media/characters/axel/head.svg"
  31270. }
  31271. },
  31272. beak: {
  31273. height: math.unit(1.4, "feet"),
  31274. name: "Beak",
  31275. image: {
  31276. source: "./media/characters/axel/beak.svg"
  31277. }
  31278. },
  31279. beakSide: {
  31280. height: math.unit(1.4, "feet"),
  31281. name: "Beak Side",
  31282. image: {
  31283. source: "./media/characters/axel/beak-side.svg"
  31284. }
  31285. },
  31286. sheath: {
  31287. height: math.unit(0.5, "feet"),
  31288. name: "Sheath",
  31289. image: {
  31290. source: "./media/characters/axel/sheath.svg"
  31291. }
  31292. },
  31293. dick: {
  31294. height: math.unit(0.98, "feet"),
  31295. name: "Dick",
  31296. image: {
  31297. source: "./media/characters/axel/dick.svg"
  31298. }
  31299. },
  31300. },
  31301. [
  31302. {
  31303. name: "Macro",
  31304. height: math.unit(68, "meters"),
  31305. default: true
  31306. },
  31307. ]
  31308. ))
  31309. characterMakers.push(() => makeCharacter(
  31310. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31311. {
  31312. front: {
  31313. height: math.unit(3.5, "meters"),
  31314. weight: math.unit(1200, "kg"),
  31315. name: "Front",
  31316. image: {
  31317. source: "./media/characters/joanna/front.svg",
  31318. extra: 1596 / 1488,
  31319. bottom: 29 / 1625
  31320. }
  31321. },
  31322. back: {
  31323. height: math.unit(3.5, "meters"),
  31324. weight: math.unit(1200, "kg"),
  31325. name: "Back",
  31326. image: {
  31327. source: "./media/characters/joanna/back.svg",
  31328. extra: 1594 / 1495,
  31329. bottom: 26 / 1620
  31330. }
  31331. },
  31332. frontShorts: {
  31333. height: math.unit(3.5, "meters"),
  31334. weight: math.unit(1200, "kg"),
  31335. name: "Front (Shorts)",
  31336. image: {
  31337. source: "./media/characters/joanna/front-shorts.svg",
  31338. extra: 1596 / 1488,
  31339. bottom: 29 / 1625
  31340. }
  31341. },
  31342. frontBiker: {
  31343. height: math.unit(3.5, "meters"),
  31344. weight: math.unit(1200, "kg"),
  31345. name: "Front (Biker)",
  31346. image: {
  31347. source: "./media/characters/joanna/front-biker.svg",
  31348. extra: 1596 / 1488,
  31349. bottom: 29 / 1625
  31350. }
  31351. },
  31352. backBiker: {
  31353. height: math.unit(3.5, "meters"),
  31354. weight: math.unit(1200, "kg"),
  31355. name: "Back (Biker)",
  31356. image: {
  31357. source: "./media/characters/joanna/back-biker.svg",
  31358. extra: 1594 / 1495,
  31359. bottom: 88 / 1682
  31360. }
  31361. },
  31362. bikeLeft: {
  31363. height: math.unit(2.4, "meters"),
  31364. weight: math.unit(1600, "kg"),
  31365. name: "Bike (Left)",
  31366. image: {
  31367. source: "./media/characters/joanna/bike-left.svg",
  31368. extra: 720 / 720,
  31369. bottom: 8 / 728
  31370. }
  31371. },
  31372. bikeRight: {
  31373. height: math.unit(2.4, "meters"),
  31374. weight: math.unit(1600, "kg"),
  31375. name: "Bike (Right)",
  31376. image: {
  31377. source: "./media/characters/joanna/bike-right.svg",
  31378. extra: 720 / 720,
  31379. bottom: 8 / 728
  31380. }
  31381. },
  31382. },
  31383. [
  31384. {
  31385. name: "Incognito",
  31386. height: math.unit(3.5, "meters")
  31387. },
  31388. {
  31389. name: "Casual Big",
  31390. height: math.unit(200, "meters")
  31391. },
  31392. {
  31393. name: "Macro",
  31394. height: math.unit(600, "meters")
  31395. },
  31396. {
  31397. name: "Original",
  31398. height: math.unit(20, "km"),
  31399. default: true
  31400. },
  31401. {
  31402. name: "Giga",
  31403. height: math.unit(400, "km")
  31404. },
  31405. {
  31406. name: "Lounging",
  31407. height: math.unit(1500, "km")
  31408. },
  31409. {
  31410. name: "Planetary",
  31411. height: math.unit(200000, "km")
  31412. },
  31413. ]
  31414. ))
  31415. characterMakers.push(() => makeCharacter(
  31416. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31417. {
  31418. front: {
  31419. height: math.unit(6, "feet"),
  31420. weight: math.unit(150, "lb"),
  31421. name: "Front",
  31422. image: {
  31423. source: "./media/characters/hugo-sigil/front.svg",
  31424. extra: 522 / 500,
  31425. bottom: 2 / 524
  31426. }
  31427. },
  31428. back: {
  31429. height: math.unit(6, "feet"),
  31430. weight: math.unit(150, "lb"),
  31431. name: "Back",
  31432. image: {
  31433. source: "./media/characters/hugo-sigil/back.svg",
  31434. extra: 519 / 495,
  31435. bottom: 5 / 524
  31436. }
  31437. },
  31438. maw: {
  31439. height: math.unit(1.4, "feet"),
  31440. weight: math.unit(150, "lb"),
  31441. name: "Maw",
  31442. image: {
  31443. source: "./media/characters/hugo-sigil/maw.svg"
  31444. }
  31445. },
  31446. feet: {
  31447. height: math.unit(1.56, "feet"),
  31448. weight: math.unit(150, "lb"),
  31449. name: "Feet",
  31450. image: {
  31451. source: "./media/characters/hugo-sigil/feet.svg",
  31452. extra: 177 / 177,
  31453. bottom: 12 / 189
  31454. }
  31455. },
  31456. },
  31457. [
  31458. {
  31459. name: "Normal",
  31460. height: math.unit(6, "feet")
  31461. },
  31462. {
  31463. name: "Macro",
  31464. height: math.unit(200, "feet"),
  31465. default: true
  31466. },
  31467. ]
  31468. ))
  31469. characterMakers.push(() => makeCharacter(
  31470. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31471. {
  31472. front: {
  31473. height: math.unit(6, "feet"),
  31474. weight: math.unit(150, "lb"),
  31475. name: "Front",
  31476. image: {
  31477. source: "./media/characters/peri/front.svg",
  31478. extra: 2354 / 2233,
  31479. bottom: 49 / 2403
  31480. }
  31481. },
  31482. },
  31483. [
  31484. {
  31485. name: "Really Small",
  31486. height: math.unit(1, "nm")
  31487. },
  31488. {
  31489. name: "Micro",
  31490. height: math.unit(4, "inches")
  31491. },
  31492. {
  31493. name: "Normal",
  31494. height: math.unit(7, "inches"),
  31495. default: true
  31496. },
  31497. {
  31498. name: "Macro",
  31499. height: math.unit(400, "feet")
  31500. },
  31501. {
  31502. name: "Megamacro",
  31503. height: math.unit(100, "miles")
  31504. },
  31505. ]
  31506. ))
  31507. characterMakers.push(() => makeCharacter(
  31508. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31509. {
  31510. frontSlim: {
  31511. height: math.unit(7, "feet"),
  31512. name: "Front (Slim)",
  31513. image: {
  31514. source: "./media/characters/issilora/front-slim.svg",
  31515. extra: 529 / 449,
  31516. bottom: 53 / 582
  31517. }
  31518. },
  31519. sideSlim: {
  31520. height: math.unit(7, "feet"),
  31521. name: "Side (Slim)",
  31522. image: {
  31523. source: "./media/characters/issilora/side-slim.svg",
  31524. extra: 570 / 480,
  31525. bottom: 30 / 600
  31526. }
  31527. },
  31528. backSlim: {
  31529. height: math.unit(7, "feet"),
  31530. name: "Back (Slim)",
  31531. image: {
  31532. source: "./media/characters/issilora/back-slim.svg",
  31533. extra: 537 / 455,
  31534. bottom: 46 / 583
  31535. }
  31536. },
  31537. frontBuff: {
  31538. height: math.unit(7, "feet"),
  31539. name: "Front (Buff)",
  31540. image: {
  31541. source: "./media/characters/issilora/front-buff.svg",
  31542. extra: 2310 / 2035,
  31543. bottom: 335 / 2645
  31544. }
  31545. },
  31546. head: {
  31547. height: math.unit(1.94, "feet"),
  31548. name: "Head",
  31549. image: {
  31550. source: "./media/characters/issilora/head.svg"
  31551. }
  31552. },
  31553. },
  31554. [
  31555. {
  31556. name: "Minimum",
  31557. height: math.unit(7, "feet")
  31558. },
  31559. {
  31560. name: "Comfortable",
  31561. height: math.unit(17, "feet")
  31562. },
  31563. {
  31564. name: "Fun Size",
  31565. height: math.unit(47, "feet")
  31566. },
  31567. {
  31568. name: "Natural Macro",
  31569. height: math.unit(137, "feet"),
  31570. default: true
  31571. },
  31572. {
  31573. name: "Maximum Kaiju",
  31574. height: math.unit(397, "feet")
  31575. },
  31576. ]
  31577. ))
  31578. characterMakers.push(() => makeCharacter(
  31579. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31580. {
  31581. front: {
  31582. height: math.unit(50 + 9/12, "feet"),
  31583. weight: math.unit(32.8, "tons"),
  31584. name: "Front",
  31585. image: {
  31586. source: "./media/characters/irb'iiritaahn/front.svg",
  31587. extra: 1878/1826,
  31588. bottom: 326/2204
  31589. }
  31590. },
  31591. back: {
  31592. height: math.unit(50 + 9/12, "feet"),
  31593. weight: math.unit(32.8, "tons"),
  31594. name: "Back",
  31595. image: {
  31596. source: "./media/characters/irb'iiritaahn/back.svg",
  31597. extra: 2052/2018,
  31598. bottom: 152/2204
  31599. }
  31600. },
  31601. head: {
  31602. height: math.unit(12.86, "feet"),
  31603. name: "Head",
  31604. image: {
  31605. source: "./media/characters/irb'iiritaahn/head.svg"
  31606. }
  31607. },
  31608. maw: {
  31609. height: math.unit(9.66, "feet"),
  31610. name: "Maw",
  31611. image: {
  31612. source: "./media/characters/irb'iiritaahn/maw.svg"
  31613. }
  31614. },
  31615. frontDick: {
  31616. height: math.unit(8.78461, "feet"),
  31617. name: "Front Dick",
  31618. image: {
  31619. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31620. }
  31621. },
  31622. rearDick: {
  31623. height: math.unit(8.78461, "feet"),
  31624. name: "Rear Dick",
  31625. image: {
  31626. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31627. }
  31628. },
  31629. rearDickUnfolded: {
  31630. height: math.unit(8.78, "feet"),
  31631. name: "Rear Dick (Unfolded)",
  31632. image: {
  31633. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31634. }
  31635. },
  31636. wings: {
  31637. height: math.unit(43, "feet"),
  31638. name: "Wings",
  31639. image: {
  31640. source: "./media/characters/irb'iiritaahn/wings.svg"
  31641. }
  31642. },
  31643. },
  31644. [
  31645. {
  31646. name: "Macro",
  31647. height: math.unit(50 + 9/12, "feet"),
  31648. default: true
  31649. },
  31650. ]
  31651. ))
  31652. characterMakers.push(() => makeCharacter(
  31653. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31654. {
  31655. front: {
  31656. height: math.unit(205, "cm"),
  31657. weight: math.unit(102, "kg"),
  31658. name: "Front",
  31659. image: {
  31660. source: "./media/characters/irbisgreif/front.svg",
  31661. extra: 785/706,
  31662. bottom: 13/798
  31663. }
  31664. },
  31665. back: {
  31666. height: math.unit(205, "cm"),
  31667. weight: math.unit(102, "kg"),
  31668. name: "Back",
  31669. image: {
  31670. source: "./media/characters/irbisgreif/back.svg",
  31671. extra: 713/701,
  31672. bottom: 26/739
  31673. }
  31674. },
  31675. frontDressed: {
  31676. height: math.unit(216, "cm"),
  31677. weight: math.unit(102, "kg"),
  31678. name: "Front-dressed",
  31679. image: {
  31680. source: "./media/characters/irbisgreif/front-dressed.svg",
  31681. extra: 902/776,
  31682. bottom: 14/916
  31683. }
  31684. },
  31685. sideDressed: {
  31686. height: math.unit(195, "cm"),
  31687. weight: math.unit(102, "kg"),
  31688. name: "Side-dressed",
  31689. image: {
  31690. source: "./media/characters/irbisgreif/side-dressed.svg",
  31691. extra: 788/688,
  31692. bottom: 21/809
  31693. }
  31694. },
  31695. backDressed: {
  31696. height: math.unit(216, "cm"),
  31697. weight: math.unit(102, "kg"),
  31698. name: "Back-dressed",
  31699. image: {
  31700. source: "./media/characters/irbisgreif/back-dressed.svg",
  31701. extra: 901/783,
  31702. bottom: 10/911
  31703. }
  31704. },
  31705. dick: {
  31706. height: math.unit(0.49, "feet"),
  31707. name: "Dick",
  31708. image: {
  31709. source: "./media/characters/irbisgreif/dick.svg"
  31710. }
  31711. },
  31712. wingTop: {
  31713. height: math.unit(1.93 , "feet"),
  31714. name: "Wing-top",
  31715. image: {
  31716. source: "./media/characters/irbisgreif/wing-top.svg"
  31717. }
  31718. },
  31719. wingBottom: {
  31720. height: math.unit(1.93 , "feet"),
  31721. name: "Wing-bottom",
  31722. image: {
  31723. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31724. }
  31725. },
  31726. },
  31727. [
  31728. {
  31729. name: "Normal",
  31730. height: math.unit(216, "cm"),
  31731. default: true
  31732. },
  31733. ]
  31734. ))
  31735. characterMakers.push(() => makeCharacter(
  31736. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31737. {
  31738. front: {
  31739. height: math.unit(6, "feet"),
  31740. weight: math.unit(150, "lb"),
  31741. name: "Front",
  31742. image: {
  31743. source: "./media/characters/pride/front.svg",
  31744. extra: 1299/1230,
  31745. bottom: 18/1317
  31746. }
  31747. },
  31748. },
  31749. [
  31750. {
  31751. name: "Normal",
  31752. height: math.unit(7, "feet")
  31753. },
  31754. {
  31755. name: "Mini-macro",
  31756. height: math.unit(11, "feet")
  31757. },
  31758. {
  31759. name: "Macro",
  31760. height: math.unit(15, "meters"),
  31761. default: true
  31762. },
  31763. {
  31764. name: "Macro+",
  31765. height: math.unit(40, "meters")
  31766. },
  31767. ]
  31768. ))
  31769. characterMakers.push(() => makeCharacter(
  31770. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31771. {
  31772. front: {
  31773. height: math.unit(4 + 2 / 12, "feet"),
  31774. weight: math.unit(95, "lb"),
  31775. name: "Front",
  31776. image: {
  31777. source: "./media/characters/vaelophis-nyx/front.svg",
  31778. extra: 2532/2330,
  31779. bottom: 0/2532
  31780. }
  31781. },
  31782. back: {
  31783. height: math.unit(4 + 2 / 12, "feet"),
  31784. weight: math.unit(95, "lb"),
  31785. name: "Back",
  31786. image: {
  31787. source: "./media/characters/vaelophis-nyx/back.svg",
  31788. extra: 2484/2361,
  31789. bottom: 0/2484
  31790. }
  31791. },
  31792. feralSide: {
  31793. height: math.unit(2 + 1/12, "feet"),
  31794. weight: math.unit(20, "lb"),
  31795. name: "Feral (Side)",
  31796. image: {
  31797. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31798. extra: 1721/1581,
  31799. bottom: 70/1791
  31800. }
  31801. },
  31802. feralLazing: {
  31803. height: math.unit(1.08, "feet"),
  31804. weight: math.unit(20, "lb"),
  31805. name: "Feral (Lazing)",
  31806. image: {
  31807. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31808. extra: 822/822,
  31809. bottom: 248/1070
  31810. }
  31811. },
  31812. ear: {
  31813. height: math.unit(0.416, "feet"),
  31814. name: "Ear",
  31815. image: {
  31816. source: "./media/characters/vaelophis-nyx/ear.svg"
  31817. }
  31818. },
  31819. eye: {
  31820. height: math.unit(0.0748, "feet"),
  31821. name: "Eye",
  31822. image: {
  31823. source: "./media/characters/vaelophis-nyx/eye.svg"
  31824. }
  31825. },
  31826. mouth: {
  31827. height: math.unit(0.378, "feet"),
  31828. name: "Mouth",
  31829. image: {
  31830. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31831. }
  31832. },
  31833. spade: {
  31834. height: math.unit(0.55, "feet"),
  31835. name: "Spade",
  31836. image: {
  31837. source: "./media/characters/vaelophis-nyx/spade.svg"
  31838. }
  31839. },
  31840. },
  31841. [
  31842. {
  31843. name: "Normal",
  31844. height: math.unit(4 + 2/12, "feet"),
  31845. default: true
  31846. },
  31847. ]
  31848. ))
  31849. characterMakers.push(() => makeCharacter(
  31850. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31851. {
  31852. front: {
  31853. height: math.unit(7, "feet"),
  31854. weight: math.unit(231, "lb"),
  31855. name: "Front",
  31856. image: {
  31857. source: "./media/characters/flux/front.svg",
  31858. extra: 919/871,
  31859. bottom: 0/919
  31860. }
  31861. },
  31862. back: {
  31863. height: math.unit(7, "feet"),
  31864. weight: math.unit(231, "lb"),
  31865. name: "Back",
  31866. image: {
  31867. source: "./media/characters/flux/back.svg",
  31868. extra: 1040/992,
  31869. bottom: 0/1040
  31870. }
  31871. },
  31872. frontDressed: {
  31873. height: math.unit(7, "feet"),
  31874. weight: math.unit(231, "lb"),
  31875. name: "Front (Dressed)",
  31876. image: {
  31877. source: "./media/characters/flux/front-dressed.svg",
  31878. extra: 919/871,
  31879. bottom: 0/919
  31880. }
  31881. },
  31882. feralSide: {
  31883. height: math.unit(5, "feet"),
  31884. weight: math.unit(150, "lb"),
  31885. name: "Feral (Side)",
  31886. image: {
  31887. source: "./media/characters/flux/feral-side.svg",
  31888. extra: 598/528,
  31889. bottom: 28/626
  31890. }
  31891. },
  31892. head: {
  31893. height: math.unit(1.585, "feet"),
  31894. name: "Head",
  31895. image: {
  31896. source: "./media/characters/flux/head.svg"
  31897. }
  31898. },
  31899. headSide: {
  31900. height: math.unit(1.74, "feet"),
  31901. name: "Head (Side)",
  31902. image: {
  31903. source: "./media/characters/flux/head-side.svg"
  31904. }
  31905. },
  31906. headSideFire: {
  31907. height: math.unit(1.76, "feet"),
  31908. name: "Head (Side, Fire)",
  31909. image: {
  31910. source: "./media/characters/flux/head-side-fire.svg"
  31911. }
  31912. },
  31913. },
  31914. [
  31915. {
  31916. name: "Normal",
  31917. height: math.unit(7, "feet"),
  31918. default: true
  31919. },
  31920. ]
  31921. ))
  31922. characterMakers.push(() => makeCharacter(
  31923. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31924. {
  31925. front: {
  31926. height: math.unit(9, "feet"),
  31927. weight: math.unit(1012, "lb"),
  31928. name: "Front",
  31929. image: {
  31930. source: "./media/characters/ulfra-lupae/front.svg",
  31931. extra: 1083/1011,
  31932. bottom: 67/1150
  31933. }
  31934. },
  31935. },
  31936. [
  31937. {
  31938. name: "Micro",
  31939. height: math.unit(6, "inches")
  31940. },
  31941. {
  31942. name: "Socializing",
  31943. height: math.unit(6 + 5/12, "feet")
  31944. },
  31945. {
  31946. name: "Normal",
  31947. height: math.unit(9, "feet"),
  31948. default: true
  31949. },
  31950. {
  31951. name: "Macro",
  31952. height: math.unit(150, "feet")
  31953. },
  31954. ]
  31955. ))
  31956. characterMakers.push(() => makeCharacter(
  31957. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31958. {
  31959. front: {
  31960. height: math.unit(5 + 2/12, "feet"),
  31961. weight: math.unit(120, "lb"),
  31962. name: "Front",
  31963. image: {
  31964. source: "./media/characters/timber/front.svg",
  31965. extra: 2814/2705,
  31966. bottom: 181/2995
  31967. }
  31968. },
  31969. },
  31970. [
  31971. {
  31972. name: "Normal",
  31973. height: math.unit(5 + 2/12, "feet"),
  31974. default: true
  31975. },
  31976. ]
  31977. ))
  31978. characterMakers.push(() => makeCharacter(
  31979. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31980. {
  31981. front: {
  31982. height: math.unit(9, "feet"),
  31983. name: "Front",
  31984. image: {
  31985. source: "./media/characters/nicki/front.svg",
  31986. extra: 1240/990,
  31987. bottom: 45/1285
  31988. },
  31989. form: "anthro",
  31990. default: true
  31991. },
  31992. side: {
  31993. height: math.unit(9, "feet"),
  31994. name: "Side",
  31995. image: {
  31996. source: "./media/characters/nicki/side.svg",
  31997. extra: 1047/973,
  31998. bottom: 61/1108
  31999. },
  32000. form: "anthro"
  32001. },
  32002. back: {
  32003. height: math.unit(9, "feet"),
  32004. name: "Back",
  32005. image: {
  32006. source: "./media/characters/nicki/back.svg",
  32007. extra: 1006/965,
  32008. bottom: 39/1045
  32009. },
  32010. form: "anthro"
  32011. },
  32012. taur: {
  32013. height: math.unit(15, "feet"),
  32014. name: "Taur",
  32015. image: {
  32016. source: "./media/characters/nicki/taur.svg",
  32017. extra: 1592/1347,
  32018. bottom: 0/1592
  32019. },
  32020. form: "taur",
  32021. default: true
  32022. },
  32023. },
  32024. [
  32025. {
  32026. name: "Normal",
  32027. height: math.unit(9, "feet"),
  32028. form: "anthro",
  32029. default: true
  32030. },
  32031. {
  32032. name: "Normal",
  32033. height: math.unit(15, "feet"),
  32034. form: "taur",
  32035. default: true
  32036. }
  32037. ],
  32038. {
  32039. "anthro": {
  32040. name: "Anthro",
  32041. default: true
  32042. },
  32043. "taur": {
  32044. name: "Taur"
  32045. }
  32046. }
  32047. ))
  32048. characterMakers.push(() => makeCharacter(
  32049. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32050. {
  32051. front: {
  32052. height: math.unit(7 + 10/12, "feet"),
  32053. weight: math.unit(3.5, "tons"),
  32054. name: "Front",
  32055. image: {
  32056. source: "./media/characters/lee/front.svg",
  32057. extra: 1773/1615,
  32058. bottom: 86/1859
  32059. }
  32060. },
  32061. hand: {
  32062. height: math.unit(1.78, "feet"),
  32063. name: "Hand",
  32064. image: {
  32065. source: "./media/characters/lee/hand.svg"
  32066. }
  32067. },
  32068. maw: {
  32069. height: math.unit(1.18, "feet"),
  32070. name: "Maw",
  32071. image: {
  32072. source: "./media/characters/lee/maw.svg"
  32073. }
  32074. },
  32075. },
  32076. [
  32077. {
  32078. name: "Normal",
  32079. height: math.unit(7 + 10/12, "feet"),
  32080. default: true
  32081. },
  32082. ]
  32083. ))
  32084. characterMakers.push(() => makeCharacter(
  32085. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32086. {
  32087. front: {
  32088. height: math.unit(9, "feet"),
  32089. name: "Front",
  32090. image: {
  32091. source: "./media/characters/guti/front.svg",
  32092. extra: 4551/4355,
  32093. bottom: 123/4674
  32094. }
  32095. },
  32096. tongue: {
  32097. height: math.unit(1, "feet"),
  32098. name: "Tongue",
  32099. image: {
  32100. source: "./media/characters/guti/tongue.svg"
  32101. }
  32102. },
  32103. paw: {
  32104. height: math.unit(1.18, "feet"),
  32105. name: "Paw",
  32106. image: {
  32107. source: "./media/characters/guti/paw.svg"
  32108. }
  32109. },
  32110. },
  32111. [
  32112. {
  32113. name: "Normal",
  32114. height: math.unit(9, "feet"),
  32115. default: true
  32116. },
  32117. ]
  32118. ))
  32119. characterMakers.push(() => makeCharacter(
  32120. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32121. {
  32122. side: {
  32123. height: math.unit(5, "meters"),
  32124. name: "Side",
  32125. image: {
  32126. source: "./media/characters/vesper/side.svg",
  32127. extra: 1605/1518,
  32128. bottom: 0/1605
  32129. }
  32130. },
  32131. },
  32132. [
  32133. {
  32134. name: "Small",
  32135. height: math.unit(5, "meters")
  32136. },
  32137. {
  32138. name: "Sage",
  32139. height: math.unit(100, "meters"),
  32140. default: true
  32141. },
  32142. {
  32143. name: "Fun Size",
  32144. height: math.unit(600, "meters")
  32145. },
  32146. {
  32147. name: "Goddess",
  32148. height: math.unit(20000, "km")
  32149. },
  32150. {
  32151. name: "Maximum",
  32152. height: math.unit(5, "galaxies")
  32153. },
  32154. ]
  32155. ))
  32156. characterMakers.push(() => makeCharacter(
  32157. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32158. {
  32159. front: {
  32160. height: math.unit(6 + 3/12, "feet"),
  32161. weight: math.unit(190, "lb"),
  32162. name: "Front",
  32163. image: {
  32164. source: "./media/characters/gawain/front.svg",
  32165. extra: 2222/2139,
  32166. bottom: 90/2312
  32167. }
  32168. },
  32169. back: {
  32170. height: math.unit(6 + 3/12, "feet"),
  32171. weight: math.unit(190, "lb"),
  32172. name: "Back",
  32173. image: {
  32174. source: "./media/characters/gawain/back.svg",
  32175. extra: 2199/2111,
  32176. bottom: 73/2272
  32177. }
  32178. },
  32179. },
  32180. [
  32181. {
  32182. name: "Normal",
  32183. height: math.unit(6 + 3/12, "feet"),
  32184. default: true
  32185. },
  32186. ]
  32187. ))
  32188. characterMakers.push(() => makeCharacter(
  32189. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32190. {
  32191. side: {
  32192. height: math.unit(3.5, "meters"),
  32193. weight: math.unit(16000, "lb"),
  32194. name: "Side",
  32195. image: {
  32196. source: "./media/characters/dascalti/side.svg",
  32197. extra: 392/273,
  32198. bottom: 47/439
  32199. }
  32200. },
  32201. breath: {
  32202. height: math.unit(7.4, "feet"),
  32203. name: "Breath",
  32204. image: {
  32205. source: "./media/characters/dascalti/breath.svg"
  32206. }
  32207. },
  32208. fed: {
  32209. height: math.unit(3.6, "meters"),
  32210. weight: math.unit(16000, "lb"),
  32211. name: "Fed",
  32212. image: {
  32213. source: "./media/characters/dascalti/fed.svg",
  32214. extra: 1419/820,
  32215. bottom: 95/1514
  32216. }
  32217. },
  32218. },
  32219. [
  32220. {
  32221. name: "Normal",
  32222. height: math.unit(3.5, "meters"),
  32223. default: true
  32224. },
  32225. ]
  32226. ))
  32227. characterMakers.push(() => makeCharacter(
  32228. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32229. {
  32230. front: {
  32231. height: math.unit(3 + 5/12, "feet"),
  32232. name: "Front",
  32233. image: {
  32234. source: "./media/characters/mauve/front.svg",
  32235. extra: 1126/1033,
  32236. bottom: 65/1191
  32237. }
  32238. },
  32239. side: {
  32240. height: math.unit(3 + 5/12, "feet"),
  32241. name: "Side",
  32242. image: {
  32243. source: "./media/characters/mauve/side.svg",
  32244. extra: 1089/1001,
  32245. bottom: 29/1118
  32246. }
  32247. },
  32248. back: {
  32249. height: math.unit(3 + 5/12, "feet"),
  32250. name: "Back",
  32251. image: {
  32252. source: "./media/characters/mauve/back.svg",
  32253. extra: 1173/1053,
  32254. bottom: 109/1282
  32255. }
  32256. },
  32257. },
  32258. [
  32259. {
  32260. name: "Normal",
  32261. height: math.unit(3 + 5/12, "feet"),
  32262. default: true
  32263. },
  32264. ]
  32265. ))
  32266. characterMakers.push(() => makeCharacter(
  32267. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32268. {
  32269. front: {
  32270. height: math.unit(6 + 3/12, "feet"),
  32271. weight: math.unit(430, "lb"),
  32272. name: "Front",
  32273. image: {
  32274. source: "./media/characters/carlos/front.svg",
  32275. extra: 1964/1913,
  32276. bottom: 70/2034
  32277. }
  32278. },
  32279. },
  32280. [
  32281. {
  32282. name: "Normal",
  32283. height: math.unit(6 + 3/12, "feet"),
  32284. default: true
  32285. },
  32286. ]
  32287. ))
  32288. characterMakers.push(() => makeCharacter(
  32289. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32290. {
  32291. back: {
  32292. height: math.unit(5 + 10/12, "feet"),
  32293. weight: math.unit(200, "lb"),
  32294. name: "Back",
  32295. image: {
  32296. source: "./media/characters/jax/back.svg",
  32297. extra: 764/739,
  32298. bottom: 25/789
  32299. }
  32300. },
  32301. },
  32302. [
  32303. {
  32304. name: "Normal",
  32305. height: math.unit(5 + 10/12, "feet"),
  32306. default: true
  32307. },
  32308. ]
  32309. ))
  32310. characterMakers.push(() => makeCharacter(
  32311. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32312. {
  32313. front: {
  32314. height: math.unit(8, "feet"),
  32315. weight: math.unit(250, "lb"),
  32316. name: "Front",
  32317. image: {
  32318. source: "./media/characters/eikthynir/front.svg",
  32319. extra: 1332/1166,
  32320. bottom: 82/1414
  32321. }
  32322. },
  32323. back: {
  32324. height: math.unit(8, "feet"),
  32325. weight: math.unit(250, "lb"),
  32326. name: "Back",
  32327. image: {
  32328. source: "./media/characters/eikthynir/back.svg",
  32329. extra: 1342/1190,
  32330. bottom: 19/1361
  32331. }
  32332. },
  32333. dick: {
  32334. height: math.unit(2.35, "feet"),
  32335. name: "Dick",
  32336. image: {
  32337. source: "./media/characters/eikthynir/dick.svg"
  32338. }
  32339. },
  32340. },
  32341. [
  32342. {
  32343. name: "Normal",
  32344. height: math.unit(8, "feet"),
  32345. default: true
  32346. },
  32347. ]
  32348. ))
  32349. characterMakers.push(() => makeCharacter(
  32350. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32351. {
  32352. front: {
  32353. height: math.unit(99, "meters"),
  32354. weight: math.unit(13000, "tons"),
  32355. name: "Front",
  32356. image: {
  32357. source: "./media/characters/zlmos/front.svg",
  32358. extra: 2202/1992,
  32359. bottom: 315/2517
  32360. }
  32361. },
  32362. },
  32363. [
  32364. {
  32365. name: "Macro",
  32366. height: math.unit(99, "meters"),
  32367. default: true
  32368. },
  32369. ]
  32370. ))
  32371. characterMakers.push(() => makeCharacter(
  32372. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32373. {
  32374. front: {
  32375. height: math.unit(6 + 5/12, "feet"),
  32376. name: "Front",
  32377. image: {
  32378. source: "./media/characters/purri/front.svg",
  32379. extra: 1698/1610,
  32380. bottom: 32/1730
  32381. }
  32382. },
  32383. frontAlt: {
  32384. height: math.unit(6 + 5/12, "feet"),
  32385. name: "Front (Alt)",
  32386. image: {
  32387. source: "./media/characters/purri/front-alt.svg",
  32388. extra: 450/420,
  32389. bottom: 26/476
  32390. }
  32391. },
  32392. boots: {
  32393. height: math.unit(5.5, "feet"),
  32394. name: "Boots",
  32395. image: {
  32396. source: "./media/characters/purri/boots.svg",
  32397. extra: 905/853,
  32398. bottom: 18/923
  32399. }
  32400. },
  32401. lying: {
  32402. height: math.unit(2, "feet"),
  32403. name: "Lying",
  32404. image: {
  32405. source: "./media/characters/purri/lying.svg",
  32406. extra: 940/843,
  32407. bottom: 146/1086
  32408. }
  32409. },
  32410. devious: {
  32411. height: math.unit(1.77, "feet"),
  32412. name: "Devious",
  32413. image: {
  32414. source: "./media/characters/purri/devious.svg",
  32415. extra: 1440/1155,
  32416. bottom: 147/1587
  32417. }
  32418. },
  32419. bean: {
  32420. height: math.unit(1.94, "feet"),
  32421. name: "Bean",
  32422. image: {
  32423. source: "./media/characters/purri/bean.svg"
  32424. }
  32425. },
  32426. },
  32427. [
  32428. {
  32429. name: "Micro",
  32430. height: math.unit(1, "mm")
  32431. },
  32432. {
  32433. name: "Normal",
  32434. height: math.unit(6 + 5/12, "feet"),
  32435. default: true
  32436. },
  32437. {
  32438. name: "Macro :3c",
  32439. height: math.unit(2, "miles")
  32440. },
  32441. ]
  32442. ))
  32443. characterMakers.push(() => makeCharacter(
  32444. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32445. {
  32446. front: {
  32447. height: math.unit(6 + 2/12, "feet"),
  32448. weight: math.unit(250, "lb"),
  32449. name: "Front",
  32450. image: {
  32451. source: "./media/characters/moonlight/front.svg",
  32452. extra: 1044/908,
  32453. bottom: 56/1100
  32454. }
  32455. },
  32456. feral: {
  32457. height: math.unit(3 + 1/12, "feet"),
  32458. weight: math.unit(50, "kg"),
  32459. name: "Feral",
  32460. image: {
  32461. source: "./media/characters/moonlight/feral.svg",
  32462. extra: 3705/2791,
  32463. bottom: 145/3850
  32464. }
  32465. },
  32466. paw: {
  32467. height: math.unit(1, "feet"),
  32468. name: "Paw",
  32469. image: {
  32470. source: "./media/characters/moonlight/paw.svg"
  32471. }
  32472. },
  32473. paws: {
  32474. height: math.unit(0.98, "feet"),
  32475. name: "Paws",
  32476. image: {
  32477. source: "./media/characters/moonlight/paws.svg",
  32478. extra: 939/939,
  32479. bottom: 50/989
  32480. }
  32481. },
  32482. mouth: {
  32483. height: math.unit(0.48, "feet"),
  32484. name: "Mouth",
  32485. image: {
  32486. source: "./media/characters/moonlight/mouth.svg"
  32487. }
  32488. },
  32489. dick: {
  32490. height: math.unit(1.46, "feet"),
  32491. name: "Dick",
  32492. image: {
  32493. source: "./media/characters/moonlight/dick.svg"
  32494. }
  32495. },
  32496. },
  32497. [
  32498. {
  32499. name: "Normal",
  32500. height: math.unit(6 + 2/12, "feet"),
  32501. default: true
  32502. },
  32503. {
  32504. name: "Macro",
  32505. height: math.unit(300, "feet")
  32506. },
  32507. {
  32508. name: "Macro+",
  32509. height: math.unit(1, "mile")
  32510. },
  32511. {
  32512. name: "Mt. Moon",
  32513. height: math.unit(5, "miles")
  32514. },
  32515. {
  32516. name: "Megamacro",
  32517. height: math.unit(15, "miles")
  32518. },
  32519. ]
  32520. ))
  32521. characterMakers.push(() => makeCharacter(
  32522. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32523. {
  32524. back: {
  32525. height: math.unit(6, "feet"),
  32526. weight: math.unit(150, "lb"),
  32527. name: "Back",
  32528. image: {
  32529. source: "./media/characters/sylen/back.svg",
  32530. extra: 1335/1273,
  32531. bottom: 107/1442
  32532. }
  32533. },
  32534. },
  32535. [
  32536. {
  32537. name: "Normal",
  32538. height: math.unit(5 + 5/12, "feet")
  32539. },
  32540. {
  32541. name: "Megamacro",
  32542. height: math.unit(3, "miles"),
  32543. default: true
  32544. },
  32545. ]
  32546. ))
  32547. characterMakers.push(() => makeCharacter(
  32548. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32549. {
  32550. front: {
  32551. height: math.unit(6, "feet"),
  32552. weight: math.unit(190, "lb"),
  32553. name: "Front",
  32554. image: {
  32555. source: "./media/characters/huttser/front.svg",
  32556. extra: 1152/1058,
  32557. bottom: 23/1175
  32558. }
  32559. },
  32560. side: {
  32561. height: math.unit(6, "feet"),
  32562. weight: math.unit(190, "lb"),
  32563. name: "Side",
  32564. image: {
  32565. source: "./media/characters/huttser/side.svg",
  32566. extra: 1174/1065,
  32567. bottom: 18/1192
  32568. }
  32569. },
  32570. back: {
  32571. height: math.unit(6, "feet"),
  32572. weight: math.unit(190, "lb"),
  32573. name: "Back",
  32574. image: {
  32575. source: "./media/characters/huttser/back.svg",
  32576. extra: 1158/1056,
  32577. bottom: 12/1170
  32578. }
  32579. },
  32580. },
  32581. [
  32582. ]
  32583. ))
  32584. characterMakers.push(() => makeCharacter(
  32585. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32586. {
  32587. side: {
  32588. height: math.unit(12 + 9/12, "feet"),
  32589. weight: math.unit(15000, "lb"),
  32590. name: "Side",
  32591. image: {
  32592. source: "./media/characters/faan/side.svg",
  32593. extra: 2747/2697,
  32594. bottom: 0/2747
  32595. }
  32596. },
  32597. front: {
  32598. height: math.unit(12 + 9/12, "feet"),
  32599. weight: math.unit(15000, "lb"),
  32600. name: "Front",
  32601. image: {
  32602. source: "./media/characters/faan/front.svg",
  32603. extra: 607/571,
  32604. bottom: 24/631
  32605. }
  32606. },
  32607. head: {
  32608. height: math.unit(2.85, "feet"),
  32609. name: "Head",
  32610. image: {
  32611. source: "./media/characters/faan/head.svg"
  32612. }
  32613. },
  32614. headAlt: {
  32615. height: math.unit(3.13, "feet"),
  32616. name: "Head-alt",
  32617. image: {
  32618. source: "./media/characters/faan/head-alt.svg"
  32619. }
  32620. },
  32621. },
  32622. [
  32623. {
  32624. name: "Normal",
  32625. height: math.unit(12 + 9/12, "feet"),
  32626. default: true
  32627. },
  32628. ]
  32629. ))
  32630. characterMakers.push(() => makeCharacter(
  32631. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32632. {
  32633. front: {
  32634. height: math.unit(6, "feet"),
  32635. weight: math.unit(300, "lb"),
  32636. name: "Front",
  32637. image: {
  32638. source: "./media/characters/tanio/front.svg",
  32639. extra: 711/673,
  32640. bottom: 25/736
  32641. }
  32642. },
  32643. },
  32644. [
  32645. {
  32646. name: "Normal",
  32647. height: math.unit(6, "feet"),
  32648. default: true
  32649. },
  32650. ]
  32651. ))
  32652. characterMakers.push(() => makeCharacter(
  32653. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32654. {
  32655. front: {
  32656. height: math.unit(3, "inches"),
  32657. name: "Front",
  32658. image: {
  32659. source: "./media/characters/noboru/front.svg",
  32660. extra: 1039/932,
  32661. bottom: 18/1057
  32662. }
  32663. },
  32664. },
  32665. [
  32666. {
  32667. name: "Micro",
  32668. height: math.unit(3, "inches"),
  32669. default: true
  32670. },
  32671. ]
  32672. ))
  32673. characterMakers.push(() => makeCharacter(
  32674. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32675. {
  32676. front: {
  32677. height: math.unit(1.85, "meters"),
  32678. weight: math.unit(80, "kg"),
  32679. name: "Front",
  32680. image: {
  32681. source: "./media/characters/daniel-barrett/front.svg",
  32682. extra: 355/337,
  32683. bottom: 9/364
  32684. }
  32685. },
  32686. },
  32687. [
  32688. {
  32689. name: "Pico",
  32690. height: math.unit(0.0433, "mm")
  32691. },
  32692. {
  32693. name: "Nano",
  32694. height: math.unit(1.5, "mm")
  32695. },
  32696. {
  32697. name: "Micro",
  32698. height: math.unit(5.3, "cm"),
  32699. default: true
  32700. },
  32701. {
  32702. name: "Normal",
  32703. height: math.unit(1.85, "meters")
  32704. },
  32705. {
  32706. name: "Macro",
  32707. height: math.unit(64.7, "meters")
  32708. },
  32709. {
  32710. name: "Megamacro",
  32711. height: math.unit(2.26, "km")
  32712. },
  32713. {
  32714. name: "Gigamacro",
  32715. height: math.unit(79, "km")
  32716. },
  32717. {
  32718. name: "Teramacro",
  32719. height: math.unit(2765, "km")
  32720. },
  32721. {
  32722. name: "Petamacro",
  32723. height: math.unit(96678, "km")
  32724. },
  32725. ]
  32726. ))
  32727. characterMakers.push(() => makeCharacter(
  32728. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32729. {
  32730. front: {
  32731. height: math.unit(30, "meters"),
  32732. weight: math.unit(400, "tons"),
  32733. name: "Front",
  32734. image: {
  32735. source: "./media/characters/zeel/front.svg",
  32736. extra: 2599/2599,
  32737. bottom: 226/2825
  32738. }
  32739. },
  32740. },
  32741. [
  32742. {
  32743. name: "Macro",
  32744. height: math.unit(30, "meters"),
  32745. default: true
  32746. },
  32747. ]
  32748. ))
  32749. characterMakers.push(() => makeCharacter(
  32750. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32751. {
  32752. front: {
  32753. height: math.unit(6 + 7/12, "feet"),
  32754. weight: math.unit(210, "lb"),
  32755. name: "Front",
  32756. image: {
  32757. source: "./media/characters/tarn/front.svg",
  32758. extra: 3517/3220,
  32759. bottom: 91/3608
  32760. }
  32761. },
  32762. back: {
  32763. height: math.unit(6 + 7/12, "feet"),
  32764. weight: math.unit(210, "lb"),
  32765. name: "Back",
  32766. image: {
  32767. source: "./media/characters/tarn/back.svg",
  32768. extra: 3566/3241,
  32769. bottom: 34/3600
  32770. }
  32771. },
  32772. dick: {
  32773. height: math.unit(1.65, "feet"),
  32774. name: "Dick",
  32775. image: {
  32776. source: "./media/characters/tarn/dick.svg"
  32777. }
  32778. },
  32779. paw: {
  32780. height: math.unit(1.80, "feet"),
  32781. name: "Paw",
  32782. image: {
  32783. source: "./media/characters/tarn/paw.svg"
  32784. }
  32785. },
  32786. tongue: {
  32787. height: math.unit(0.97, "feet"),
  32788. name: "Tongue",
  32789. image: {
  32790. source: "./media/characters/tarn/tongue.svg"
  32791. }
  32792. },
  32793. },
  32794. [
  32795. {
  32796. name: "Micro",
  32797. height: math.unit(4, "inches")
  32798. },
  32799. {
  32800. name: "Normal",
  32801. height: math.unit(6 + 7/12, "feet"),
  32802. default: true
  32803. },
  32804. {
  32805. name: "Macro",
  32806. height: math.unit(300, "feet")
  32807. },
  32808. ]
  32809. ))
  32810. characterMakers.push(() => makeCharacter(
  32811. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32812. {
  32813. front: {
  32814. height: math.unit(5 + 7/12, "feet"),
  32815. weight: math.unit(80, "kg"),
  32816. name: "Front",
  32817. image: {
  32818. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32819. extra: 3023/2865,
  32820. bottom: 33/3056
  32821. }
  32822. },
  32823. back: {
  32824. height: math.unit(5 + 7/12, "feet"),
  32825. weight: math.unit(80, "kg"),
  32826. name: "Back",
  32827. image: {
  32828. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32829. extra: 3020/2886,
  32830. bottom: 30/3050
  32831. }
  32832. },
  32833. dick: {
  32834. height: math.unit(0.98, "feet"),
  32835. name: "Dick",
  32836. image: {
  32837. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32838. }
  32839. },
  32840. anatomy: {
  32841. height: math.unit(2.86, "feet"),
  32842. name: "Anatomy",
  32843. image: {
  32844. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32845. }
  32846. },
  32847. },
  32848. [
  32849. {
  32850. name: "Really Small",
  32851. height: math.unit(2, "inches")
  32852. },
  32853. {
  32854. name: "Micro",
  32855. height: math.unit(5.583, "inches")
  32856. },
  32857. {
  32858. name: "Normal",
  32859. height: math.unit(5 + 7/12, "feet"),
  32860. default: true
  32861. },
  32862. {
  32863. name: "Macro",
  32864. height: math.unit(67, "feet")
  32865. },
  32866. {
  32867. name: "Megamacro",
  32868. height: math.unit(134, "feet")
  32869. },
  32870. ]
  32871. ))
  32872. characterMakers.push(() => makeCharacter(
  32873. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32874. {
  32875. front: {
  32876. height: math.unit(9, "feet"),
  32877. weight: math.unit(120, "lb"),
  32878. name: "Front",
  32879. image: {
  32880. source: "./media/characters/sally/front.svg",
  32881. extra: 1506/1349,
  32882. bottom: 66/1572
  32883. }
  32884. },
  32885. },
  32886. [
  32887. {
  32888. name: "Normal",
  32889. height: math.unit(9, "feet"),
  32890. default: true
  32891. },
  32892. ]
  32893. ))
  32894. characterMakers.push(() => makeCharacter(
  32895. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32896. {
  32897. front: {
  32898. height: math.unit(8, "feet"),
  32899. weight: math.unit(900, "lb"),
  32900. name: "Front",
  32901. image: {
  32902. source: "./media/characters/owen/front.svg",
  32903. extra: 1761/1657,
  32904. bottom: 74/1835
  32905. }
  32906. },
  32907. side: {
  32908. height: math.unit(8, "feet"),
  32909. weight: math.unit(900, "lb"),
  32910. name: "Side",
  32911. image: {
  32912. source: "./media/characters/owen/side.svg",
  32913. extra: 1797/1734,
  32914. bottom: 30/1827
  32915. }
  32916. },
  32917. back: {
  32918. height: math.unit(8, "feet"),
  32919. weight: math.unit(900, "lb"),
  32920. name: "Back",
  32921. image: {
  32922. source: "./media/characters/owen/back.svg",
  32923. extra: 1796/1706,
  32924. bottom: 59/1855
  32925. }
  32926. },
  32927. maw: {
  32928. height: math.unit(1.76, "feet"),
  32929. name: "Maw",
  32930. image: {
  32931. source: "./media/characters/owen/maw.svg"
  32932. }
  32933. },
  32934. },
  32935. [
  32936. {
  32937. name: "Normal",
  32938. height: math.unit(8, "feet"),
  32939. default: true
  32940. },
  32941. ]
  32942. ))
  32943. characterMakers.push(() => makeCharacter(
  32944. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32945. {
  32946. front: {
  32947. height: math.unit(4, "feet"),
  32948. weight: math.unit(400, "lb"),
  32949. name: "Front",
  32950. image: {
  32951. source: "./media/characters/ryth/front.svg",
  32952. extra: 1920/1748,
  32953. bottom: 42/1962
  32954. }
  32955. },
  32956. back: {
  32957. height: math.unit(4, "feet"),
  32958. weight: math.unit(400, "lb"),
  32959. name: "Back",
  32960. image: {
  32961. source: "./media/characters/ryth/back.svg",
  32962. extra: 1897/1690,
  32963. bottom: 89/1986
  32964. }
  32965. },
  32966. mouth: {
  32967. height: math.unit(1.39, "feet"),
  32968. name: "Mouth",
  32969. image: {
  32970. source: "./media/characters/ryth/mouth.svg"
  32971. }
  32972. },
  32973. tailmaw: {
  32974. height: math.unit(1.23, "feet"),
  32975. name: "Tailmaw",
  32976. image: {
  32977. source: "./media/characters/ryth/tailmaw.svg"
  32978. }
  32979. },
  32980. goia: {
  32981. height: math.unit(4, "meters"),
  32982. weight: math.unit(10800, "lb"),
  32983. name: "Goia",
  32984. image: {
  32985. source: "./media/characters/ryth/goia.svg",
  32986. extra: 745/640,
  32987. bottom: 107/852
  32988. }
  32989. },
  32990. goiaFront: {
  32991. height: math.unit(4, "meters"),
  32992. weight: math.unit(10800, "lb"),
  32993. name: "Goia (Front)",
  32994. image: {
  32995. source: "./media/characters/ryth/goia-front.svg",
  32996. extra: 750/586,
  32997. bottom: 114/864
  32998. }
  32999. },
  33000. goiaMaw: {
  33001. height: math.unit(5.55, "feet"),
  33002. name: "Goia Maw",
  33003. image: {
  33004. source: "./media/characters/ryth/goia-maw.svg"
  33005. }
  33006. },
  33007. goiaForepaw: {
  33008. height: math.unit(3.5, "feet"),
  33009. name: "Goia Forepaw",
  33010. image: {
  33011. source: "./media/characters/ryth/goia-forepaw.svg"
  33012. }
  33013. },
  33014. goiaHindpaw: {
  33015. height: math.unit(5.55, "feet"),
  33016. name: "Goia Hindpaw",
  33017. image: {
  33018. source: "./media/characters/ryth/goia-hindpaw.svg"
  33019. }
  33020. },
  33021. },
  33022. [
  33023. {
  33024. name: "Normal",
  33025. height: math.unit(4, "feet"),
  33026. default: true
  33027. },
  33028. ]
  33029. ))
  33030. characterMakers.push(() => makeCharacter(
  33031. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33032. {
  33033. front: {
  33034. height: math.unit(7, "feet"),
  33035. weight: math.unit(180, "lb"),
  33036. name: "Front",
  33037. image: {
  33038. source: "./media/characters/necrolance/front.svg",
  33039. extra: 1062/947,
  33040. bottom: 41/1103
  33041. }
  33042. },
  33043. back: {
  33044. height: math.unit(7, "feet"),
  33045. weight: math.unit(180, "lb"),
  33046. name: "Back",
  33047. image: {
  33048. source: "./media/characters/necrolance/back.svg",
  33049. extra: 1045/984,
  33050. bottom: 14/1059
  33051. }
  33052. },
  33053. wing: {
  33054. height: math.unit(2.67, "feet"),
  33055. name: "Wing",
  33056. image: {
  33057. source: "./media/characters/necrolance/wing.svg"
  33058. }
  33059. },
  33060. },
  33061. [
  33062. {
  33063. name: "Normal",
  33064. height: math.unit(7, "feet"),
  33065. default: true
  33066. },
  33067. ]
  33068. ))
  33069. characterMakers.push(() => makeCharacter(
  33070. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33071. {
  33072. front: {
  33073. height: math.unit(76, "meters"),
  33074. weight: math.unit(30000, "tons"),
  33075. name: "Front",
  33076. image: {
  33077. source: "./media/characters/tyler/front.svg",
  33078. extra: 1640/1640,
  33079. bottom: 114/1754
  33080. }
  33081. },
  33082. },
  33083. [
  33084. {
  33085. name: "Macro",
  33086. height: math.unit(76, "meters"),
  33087. default: true
  33088. },
  33089. ]
  33090. ))
  33091. characterMakers.push(() => makeCharacter(
  33092. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33093. {
  33094. front: {
  33095. height: math.unit(4 + 11/12, "feet"),
  33096. weight: math.unit(132, "lb"),
  33097. name: "Front",
  33098. image: {
  33099. source: "./media/characters/icey/front.svg",
  33100. extra: 2750/2550,
  33101. bottom: 33/2783
  33102. }
  33103. },
  33104. back: {
  33105. height: math.unit(4 + 11/12, "feet"),
  33106. weight: math.unit(132, "lb"),
  33107. name: "Back",
  33108. image: {
  33109. source: "./media/characters/icey/back.svg",
  33110. extra: 2624/2481,
  33111. bottom: 35/2659
  33112. }
  33113. },
  33114. },
  33115. [
  33116. {
  33117. name: "Normal",
  33118. height: math.unit(4 + 11/12, "feet"),
  33119. default: true
  33120. },
  33121. ]
  33122. ))
  33123. characterMakers.push(() => makeCharacter(
  33124. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33125. {
  33126. front: {
  33127. height: math.unit(100, "feet"),
  33128. weight: math.unit(0, "lb"),
  33129. name: "Front",
  33130. image: {
  33131. source: "./media/characters/smile/front.svg",
  33132. extra: 2983/2912,
  33133. bottom: 162/3145
  33134. }
  33135. },
  33136. back: {
  33137. height: math.unit(100, "feet"),
  33138. weight: math.unit(0, "lb"),
  33139. name: "Back",
  33140. image: {
  33141. source: "./media/characters/smile/back.svg",
  33142. extra: 3143/3031,
  33143. bottom: 91/3234
  33144. }
  33145. },
  33146. head: {
  33147. height: math.unit(26.3, "feet"),
  33148. weight: math.unit(0, "lb"),
  33149. name: "Head",
  33150. image: {
  33151. source: "./media/characters/smile/head.svg"
  33152. }
  33153. },
  33154. collar: {
  33155. height: math.unit(5.3, "feet"),
  33156. weight: math.unit(0, "lb"),
  33157. name: "Collar",
  33158. image: {
  33159. source: "./media/characters/smile/collar.svg"
  33160. }
  33161. },
  33162. },
  33163. [
  33164. {
  33165. name: "Macro",
  33166. height: math.unit(100, "feet"),
  33167. default: true
  33168. },
  33169. ]
  33170. ))
  33171. characterMakers.push(() => makeCharacter(
  33172. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33173. {
  33174. dragon: {
  33175. height: math.unit(26, "feet"),
  33176. weight: math.unit(36, "tons"),
  33177. name: "Dragon",
  33178. image: {
  33179. source: "./media/characters/arimphae/dragon.svg",
  33180. extra: 1574/983,
  33181. bottom: 357/1931
  33182. }
  33183. },
  33184. drake: {
  33185. height: math.unit(9, "feet"),
  33186. weight: math.unit(1.5, "tons"),
  33187. name: "Drake",
  33188. image: {
  33189. source: "./media/characters/arimphae/drake.svg",
  33190. extra: 1120/925,
  33191. bottom: 435/1555
  33192. }
  33193. },
  33194. },
  33195. [
  33196. {
  33197. name: "Small",
  33198. height: math.unit(26*5/9, "feet")
  33199. },
  33200. {
  33201. name: "Normal",
  33202. height: math.unit(26, "feet"),
  33203. default: true
  33204. },
  33205. ]
  33206. ))
  33207. characterMakers.push(() => makeCharacter(
  33208. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33209. {
  33210. front: {
  33211. height: math.unit(8 + 9/12, "feet"),
  33212. name: "Front",
  33213. image: {
  33214. source: "./media/characters/xander/front.svg",
  33215. extra: 1237/974,
  33216. bottom: 94/1331
  33217. }
  33218. },
  33219. },
  33220. [
  33221. {
  33222. name: "Normal",
  33223. height: math.unit(8 + 9/12, "feet"),
  33224. default: true
  33225. },
  33226. {
  33227. name: "Gaze Grabber",
  33228. height: math.unit(13 + 8/12, "feet")
  33229. },
  33230. {
  33231. name: "Jaw Dropper",
  33232. height: math.unit(27, "feet")
  33233. },
  33234. {
  33235. name: "Show Stopper",
  33236. height: math.unit(136, "feet")
  33237. },
  33238. {
  33239. name: "Superstar",
  33240. height: math.unit(1.9e6, "miles")
  33241. },
  33242. ]
  33243. ))
  33244. characterMakers.push(() => makeCharacter(
  33245. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33246. {
  33247. side: {
  33248. height: math.unit(2100, "feet"),
  33249. name: "Side",
  33250. image: {
  33251. source: "./media/characters/osiris/side.svg",
  33252. extra: 1105/939,
  33253. bottom: 167/1272
  33254. }
  33255. },
  33256. },
  33257. [
  33258. {
  33259. name: "Macro",
  33260. height: math.unit(2100, "feet"),
  33261. default: true
  33262. },
  33263. ]
  33264. ))
  33265. characterMakers.push(() => makeCharacter(
  33266. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33267. {
  33268. front: {
  33269. height: math.unit(6 + 8/12, "feet"),
  33270. weight: math.unit(225, "lb"),
  33271. name: "Front",
  33272. image: {
  33273. source: "./media/characters/rhys-londe/front.svg",
  33274. extra: 2258/2141,
  33275. bottom: 188/2446
  33276. }
  33277. },
  33278. back: {
  33279. height: math.unit(6 + 8/12, "feet"),
  33280. weight: math.unit(225, "lb"),
  33281. name: "Back",
  33282. image: {
  33283. source: "./media/characters/rhys-londe/back.svg",
  33284. extra: 2237/2137,
  33285. bottom: 63/2300
  33286. }
  33287. },
  33288. frontNsfw: {
  33289. height: math.unit(6 + 8/12, "feet"),
  33290. weight: math.unit(225, "lb"),
  33291. name: "Front (NSFW)",
  33292. image: {
  33293. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33294. extra: 2258/2141,
  33295. bottom: 188/2446
  33296. }
  33297. },
  33298. backNsfw: {
  33299. height: math.unit(6 + 8/12, "feet"),
  33300. weight: math.unit(225, "lb"),
  33301. name: "Back (NSFW)",
  33302. image: {
  33303. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33304. extra: 2237/2137,
  33305. bottom: 63/2300
  33306. }
  33307. },
  33308. dick: {
  33309. height: math.unit(30, "inches"),
  33310. name: "Dick",
  33311. image: {
  33312. source: "./media/characters/rhys-londe/dick.svg"
  33313. }
  33314. },
  33315. maw: {
  33316. height: math.unit(1.6, "feet"),
  33317. name: "Maw",
  33318. image: {
  33319. source: "./media/characters/rhys-londe/maw.svg"
  33320. }
  33321. },
  33322. },
  33323. [
  33324. {
  33325. name: "Normal",
  33326. height: math.unit(6 + 8/12, "feet"),
  33327. default: true
  33328. },
  33329. ]
  33330. ))
  33331. characterMakers.push(() => makeCharacter(
  33332. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33333. {
  33334. front: {
  33335. height: math.unit(3 + 10/12, "feet"),
  33336. weight: math.unit(90, "lb"),
  33337. name: "Front",
  33338. image: {
  33339. source: "./media/characters/taivas-ensim/front.svg",
  33340. extra: 1327/1216,
  33341. bottom: 96/1423
  33342. }
  33343. },
  33344. back: {
  33345. height: math.unit(3 + 10/12, "feet"),
  33346. weight: math.unit(90, "lb"),
  33347. name: "Back",
  33348. image: {
  33349. source: "./media/characters/taivas-ensim/back.svg",
  33350. extra: 1355/1247,
  33351. bottom: 11/1366
  33352. }
  33353. },
  33354. frontNsfw: {
  33355. height: math.unit(3 + 10/12, "feet"),
  33356. weight: math.unit(90, "lb"),
  33357. name: "Front (NSFW)",
  33358. image: {
  33359. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33360. extra: 1327/1216,
  33361. bottom: 96/1423
  33362. }
  33363. },
  33364. backNsfw: {
  33365. height: math.unit(3 + 10/12, "feet"),
  33366. weight: math.unit(90, "lb"),
  33367. name: "Back (NSFW)",
  33368. image: {
  33369. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33370. extra: 1355/1247,
  33371. bottom: 11/1366
  33372. }
  33373. },
  33374. },
  33375. [
  33376. {
  33377. name: "Normal",
  33378. height: math.unit(3 + 10/12, "feet"),
  33379. default: true
  33380. },
  33381. ]
  33382. ))
  33383. characterMakers.push(() => makeCharacter(
  33384. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33385. {
  33386. front: {
  33387. height: math.unit(9 + 6/12, "feet"),
  33388. weight: math.unit(940, "lb"),
  33389. name: "Front",
  33390. image: {
  33391. source: "./media/characters/byliss/front.svg",
  33392. extra: 1327/1290,
  33393. bottom: 82/1409
  33394. }
  33395. },
  33396. back: {
  33397. height: math.unit(9 + 6/12, "feet"),
  33398. weight: math.unit(940, "lb"),
  33399. name: "Back",
  33400. image: {
  33401. source: "./media/characters/byliss/back.svg",
  33402. extra: 1376/1349,
  33403. bottom: 9/1385
  33404. }
  33405. },
  33406. frontNsfw: {
  33407. height: math.unit(9 + 6/12, "feet"),
  33408. weight: math.unit(940, "lb"),
  33409. name: "Front (NSFW)",
  33410. image: {
  33411. source: "./media/characters/byliss/front-nsfw.svg",
  33412. extra: 1327/1290,
  33413. bottom: 82/1409
  33414. }
  33415. },
  33416. backNsfw: {
  33417. height: math.unit(9 + 6/12, "feet"),
  33418. weight: math.unit(940, "lb"),
  33419. name: "Back (NSFW)",
  33420. image: {
  33421. source: "./media/characters/byliss/back-nsfw.svg",
  33422. extra: 1376/1349,
  33423. bottom: 9/1385
  33424. }
  33425. },
  33426. },
  33427. [
  33428. {
  33429. name: "Normal",
  33430. height: math.unit(9 + 6/12, "feet"),
  33431. default: true
  33432. },
  33433. ]
  33434. ))
  33435. characterMakers.push(() => makeCharacter(
  33436. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33437. {
  33438. front: {
  33439. height: math.unit(5 + 2/12, "feet"),
  33440. weight: math.unit(200, "lb"),
  33441. name: "Front",
  33442. image: {
  33443. source: "./media/characters/noraly/front.svg",
  33444. extra: 4985/4773,
  33445. bottom: 150/5135
  33446. }
  33447. },
  33448. full: {
  33449. height: math.unit(5 + 2/12, "feet"),
  33450. weight: math.unit(164, "lb"),
  33451. name: "Full",
  33452. image: {
  33453. source: "./media/characters/noraly/full.svg",
  33454. extra: 1114/1059,
  33455. bottom: 35/1149
  33456. }
  33457. },
  33458. fuller: {
  33459. height: math.unit(5 + 2/12, "feet"),
  33460. weight: math.unit(230, "lb"),
  33461. name: "Fuller",
  33462. image: {
  33463. source: "./media/characters/noraly/fuller.svg",
  33464. extra: 1114/1059,
  33465. bottom: 35/1149
  33466. }
  33467. },
  33468. fullest: {
  33469. height: math.unit(5 + 2/12, "feet"),
  33470. weight: math.unit(300, "lb"),
  33471. name: "Fullest",
  33472. image: {
  33473. source: "./media/characters/noraly/fullest.svg",
  33474. extra: 1114/1059,
  33475. bottom: 35/1149
  33476. }
  33477. },
  33478. },
  33479. [
  33480. {
  33481. name: "Normal",
  33482. height: math.unit(5 + 2/12, "feet"),
  33483. default: true
  33484. },
  33485. ]
  33486. ))
  33487. characterMakers.push(() => makeCharacter(
  33488. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33489. {
  33490. front: {
  33491. height: math.unit(5 + 2/12, "feet"),
  33492. weight: math.unit(210, "lb"),
  33493. name: "Front",
  33494. image: {
  33495. source: "./media/characters/pera/front.svg",
  33496. extra: 1560/1531,
  33497. bottom: 165/1725
  33498. }
  33499. },
  33500. back: {
  33501. height: math.unit(5 + 2/12, "feet"),
  33502. weight: math.unit(210, "lb"),
  33503. name: "Back",
  33504. image: {
  33505. source: "./media/characters/pera/back.svg",
  33506. extra: 1523/1493,
  33507. bottom: 152/1675
  33508. }
  33509. },
  33510. dick: {
  33511. height: math.unit(2.4, "feet"),
  33512. name: "Dick",
  33513. image: {
  33514. source: "./media/characters/pera/dick.svg"
  33515. }
  33516. },
  33517. },
  33518. [
  33519. {
  33520. name: "Normal",
  33521. height: math.unit(5 + 2/12, "feet"),
  33522. default: true
  33523. },
  33524. ]
  33525. ))
  33526. characterMakers.push(() => makeCharacter(
  33527. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33528. {
  33529. front: {
  33530. height: math.unit(12, "feet"),
  33531. weight: math.unit(3200, "lb"),
  33532. name: "Front",
  33533. image: {
  33534. source: "./media/characters/julian/front.svg",
  33535. extra: 2962/2701,
  33536. bottom: 184/3146
  33537. }
  33538. },
  33539. maw: {
  33540. height: math.unit(5.35, "feet"),
  33541. name: "Maw",
  33542. image: {
  33543. source: "./media/characters/julian/maw.svg"
  33544. }
  33545. },
  33546. paw: {
  33547. height: math.unit(3.07, "feet"),
  33548. name: "Paw",
  33549. image: {
  33550. source: "./media/characters/julian/paw.svg"
  33551. }
  33552. },
  33553. },
  33554. [
  33555. {
  33556. name: "Default",
  33557. height: math.unit(12, "feet"),
  33558. default: true
  33559. },
  33560. {
  33561. name: "Big",
  33562. height: math.unit(50, "feet")
  33563. },
  33564. {
  33565. name: "Really Big",
  33566. height: math.unit(1, "mile")
  33567. },
  33568. {
  33569. name: "Extremely Big",
  33570. height: math.unit(100, "miles")
  33571. },
  33572. {
  33573. name: "Planet Hugger",
  33574. height: math.unit(200, "megameters")
  33575. },
  33576. {
  33577. name: "Unreasonably Big",
  33578. height: math.unit(1e300, "meters")
  33579. },
  33580. ]
  33581. ))
  33582. characterMakers.push(() => makeCharacter(
  33583. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33584. {
  33585. solgooleo: {
  33586. height: math.unit(4, "meters"),
  33587. weight: math.unit(6000*1.5, "kg"),
  33588. volume: math.unit(6000, "liters"),
  33589. name: "Solgooleo",
  33590. image: {
  33591. source: "./media/characters/pi/solgooleo.svg",
  33592. extra: 388/331,
  33593. bottom: 29/417
  33594. }
  33595. },
  33596. },
  33597. [
  33598. {
  33599. name: "Normal",
  33600. height: math.unit(4, "meters"),
  33601. default: true
  33602. },
  33603. ]
  33604. ))
  33605. characterMakers.push(() => makeCharacter(
  33606. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33607. {
  33608. front: {
  33609. height: math.unit(8, "feet"),
  33610. weight: math.unit(4, "tons"),
  33611. name: "Front",
  33612. image: {
  33613. source: "./media/characters/shaun/front.svg",
  33614. extra: 503/495,
  33615. bottom: 20/523
  33616. }
  33617. },
  33618. back: {
  33619. height: math.unit(8, "feet"),
  33620. weight: math.unit(4, "tons"),
  33621. name: "Back",
  33622. image: {
  33623. source: "./media/characters/shaun/back.svg",
  33624. extra: 487/480,
  33625. bottom: 20/507
  33626. }
  33627. },
  33628. },
  33629. [
  33630. {
  33631. name: "Lorg",
  33632. height: math.unit(8, "feet"),
  33633. default: true
  33634. },
  33635. ]
  33636. ))
  33637. characterMakers.push(() => makeCharacter(
  33638. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33639. {
  33640. frontAnthro: {
  33641. height: math.unit(7, "feet"),
  33642. name: "Front",
  33643. image: {
  33644. source: "./media/characters/sini/front-anthro.svg",
  33645. extra: 726/678,
  33646. bottom: 35/761
  33647. },
  33648. form: "anthro",
  33649. default: true
  33650. },
  33651. backAnthro: {
  33652. height: math.unit(7, "feet"),
  33653. name: "Back",
  33654. image: {
  33655. source: "./media/characters/sini/back-anthro.svg",
  33656. extra: 743/701,
  33657. bottom: 12/755
  33658. },
  33659. form: "anthro",
  33660. },
  33661. frontAnthroNsfw: {
  33662. height: math.unit(7, "feet"),
  33663. name: "Front (NSFW)",
  33664. image: {
  33665. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33666. extra: 726/678,
  33667. bottom: 35/761
  33668. },
  33669. form: "anthro"
  33670. },
  33671. backAnthroNsfw: {
  33672. height: math.unit(7, "feet"),
  33673. name: "Back (NSFW)",
  33674. image: {
  33675. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33676. extra: 743/701,
  33677. bottom: 12/755
  33678. },
  33679. form: "anthro",
  33680. },
  33681. mawAnthro: {
  33682. height: math.unit(2.14, "feet"),
  33683. name: "Maw",
  33684. image: {
  33685. source: "./media/characters/sini/maw-anthro.svg"
  33686. },
  33687. form: "anthro"
  33688. },
  33689. dick: {
  33690. height: math.unit(1.45, "feet"),
  33691. name: "Dick",
  33692. image: {
  33693. source: "./media/characters/sini/dick-anthro.svg"
  33694. },
  33695. form: "anthro"
  33696. },
  33697. feral: {
  33698. height: math.unit(16, "feet"),
  33699. name: "Feral",
  33700. image: {
  33701. source: "./media/characters/sini/feral.svg",
  33702. extra: 814/605,
  33703. bottom: 11/825
  33704. },
  33705. form: "feral",
  33706. default: true
  33707. },
  33708. feralNsfw: {
  33709. height: math.unit(16, "feet"),
  33710. name: "Feral (NSFW)",
  33711. image: {
  33712. source: "./media/characters/sini/feral-nsfw.svg",
  33713. extra: 814/605,
  33714. bottom: 11/825
  33715. },
  33716. form: "feral"
  33717. },
  33718. mawFeral: {
  33719. height: math.unit(5.66, "feet"),
  33720. name: "Maw",
  33721. image: {
  33722. source: "./media/characters/sini/maw-feral.svg"
  33723. },
  33724. form: "feral",
  33725. },
  33726. pawFeral: {
  33727. height: math.unit(5.17, "feet"),
  33728. name: "Paw",
  33729. image: {
  33730. source: "./media/characters/sini/paw-feral.svg"
  33731. },
  33732. form: "feral",
  33733. },
  33734. rumpFeral: {
  33735. height: math.unit(13.11, "feet"),
  33736. name: "Rump",
  33737. image: {
  33738. source: "./media/characters/sini/rump-feral.svg"
  33739. },
  33740. form: "feral",
  33741. },
  33742. dickFeral: {
  33743. height: math.unit(1, "feet"),
  33744. name: "Dick",
  33745. image: {
  33746. source: "./media/characters/sini/dick-feral.svg"
  33747. },
  33748. form: "feral",
  33749. },
  33750. eyeFeral: {
  33751. height: math.unit(1.23, "feet"),
  33752. name: "Eye",
  33753. image: {
  33754. source: "./media/characters/sini/eye-feral.svg"
  33755. },
  33756. form: "feral",
  33757. },
  33758. },
  33759. [
  33760. {
  33761. name: "Normal",
  33762. height: math.unit(7, "feet"),
  33763. default: true,
  33764. form: "anthro"
  33765. },
  33766. {
  33767. name: "Normal",
  33768. height: math.unit(16, "feet"),
  33769. default: true,
  33770. form: "feral"
  33771. },
  33772. ],
  33773. {
  33774. "anthro": {
  33775. name: "Anthro",
  33776. default: true
  33777. },
  33778. "feral": {
  33779. name: "Feral",
  33780. }
  33781. }
  33782. ))
  33783. characterMakers.push(() => makeCharacter(
  33784. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33785. {
  33786. side: {
  33787. height: math.unit(13, "meters"),
  33788. weight: math.unit(9072, "kg"),
  33789. name: "Side",
  33790. image: {
  33791. source: "./media/characters/raylldo/side.svg",
  33792. extra: 403/344,
  33793. bottom: 42/445
  33794. }
  33795. },
  33796. leaping: {
  33797. height: math.unit(12.3, "meters"),
  33798. weight: math.unit(9072, "kg"),
  33799. name: "Leaping",
  33800. image: {
  33801. source: "./media/characters/raylldo/leaping.svg",
  33802. extra: 470/249,
  33803. bottom: 13/483
  33804. }
  33805. },
  33806. flying: {
  33807. height: math.unit(18, "meters"),
  33808. weight: math.unit(9072, "kg"),
  33809. name: "Flying",
  33810. image: {
  33811. source: "./media/characters/raylldo/flying.svg"
  33812. }
  33813. },
  33814. head: {
  33815. height: math.unit(5.85, "meters"),
  33816. name: "Head",
  33817. image: {
  33818. source: "./media/characters/raylldo/head.svg"
  33819. }
  33820. },
  33821. maw: {
  33822. height: math.unit(5.32, "meters"),
  33823. name: "Maw",
  33824. image: {
  33825. source: "./media/characters/raylldo/maw.svg"
  33826. }
  33827. },
  33828. eye: {
  33829. height: math.unit(0.54, "meters"),
  33830. name: "Eye",
  33831. image: {
  33832. source: "./media/characters/raylldo/eye.svg"
  33833. }
  33834. },
  33835. },
  33836. [
  33837. {
  33838. name: "Normal",
  33839. height: math.unit(13, "meters"),
  33840. default: true
  33841. },
  33842. ]
  33843. ))
  33844. characterMakers.push(() => makeCharacter(
  33845. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33846. {
  33847. anthroFront: {
  33848. height: math.unit(9, "feet"),
  33849. weight: math.unit(600, "lb"),
  33850. name: "Anthro (Front)",
  33851. image: {
  33852. source: "./media/characters/glint/anthro-front.svg",
  33853. extra: 1097/1018,
  33854. bottom: 28/1125
  33855. }
  33856. },
  33857. anthroBack: {
  33858. height: math.unit(9, "feet"),
  33859. weight: math.unit(600, "lb"),
  33860. name: "Anthro (Back)",
  33861. image: {
  33862. source: "./media/characters/glint/anthro-back.svg",
  33863. extra: 1154/997,
  33864. bottom: 36/1190
  33865. }
  33866. },
  33867. feral: {
  33868. height: math.unit(11, "feet"),
  33869. weight: math.unit(50000, "lb"),
  33870. name: "Feral",
  33871. image: {
  33872. source: "./media/characters/glint/feral.svg",
  33873. extra: 3035/1585,
  33874. bottom: 1169/4204
  33875. }
  33876. },
  33877. dickAnthro: {
  33878. height: math.unit(0.7, "meters"),
  33879. name: "Dick (Anthro)",
  33880. image: {
  33881. source: "./media/characters/glint/dick-anthro.svg"
  33882. }
  33883. },
  33884. dickFeral: {
  33885. height: math.unit(2.65, "meters"),
  33886. name: "Dick (Feral)",
  33887. image: {
  33888. source: "./media/characters/glint/dick-feral.svg"
  33889. }
  33890. },
  33891. slitHidden: {
  33892. height: math.unit(5.85, "meters"),
  33893. name: "Slit (Hidden)",
  33894. image: {
  33895. source: "./media/characters/glint/slit-hidden.svg"
  33896. }
  33897. },
  33898. slitErect: {
  33899. height: math.unit(5.85, "meters"),
  33900. name: "Slit (Erect)",
  33901. image: {
  33902. source: "./media/characters/glint/slit-erect.svg"
  33903. }
  33904. },
  33905. mawAnthro: {
  33906. height: math.unit(0.63, "meters"),
  33907. name: "Maw (Anthro)",
  33908. image: {
  33909. source: "./media/characters/glint/maw.svg"
  33910. }
  33911. },
  33912. mawFeral: {
  33913. height: math.unit(2.89, "meters"),
  33914. name: "Maw (Feral)",
  33915. image: {
  33916. source: "./media/characters/glint/maw.svg"
  33917. }
  33918. },
  33919. },
  33920. [
  33921. {
  33922. name: "Normal",
  33923. height: math.unit(9, "feet"),
  33924. default: true
  33925. },
  33926. ]
  33927. ))
  33928. characterMakers.push(() => makeCharacter(
  33929. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33930. {
  33931. side: {
  33932. height: math.unit(15, "feet"),
  33933. weight: math.unit(5000, "kg"),
  33934. name: "Side",
  33935. image: {
  33936. source: "./media/characters/kairne/side.svg",
  33937. extra: 979/811,
  33938. bottom: 13/992
  33939. }
  33940. },
  33941. front: {
  33942. height: math.unit(15, "feet"),
  33943. weight: math.unit(5000, "kg"),
  33944. name: "Front",
  33945. image: {
  33946. source: "./media/characters/kairne/front.svg",
  33947. extra: 908/814,
  33948. bottom: 26/934
  33949. }
  33950. },
  33951. sideNsfw: {
  33952. height: math.unit(15, "feet"),
  33953. weight: math.unit(5000, "kg"),
  33954. name: "Side (NSFW)",
  33955. image: {
  33956. source: "./media/characters/kairne/side-nsfw.svg",
  33957. extra: 979/811,
  33958. bottom: 13/992
  33959. }
  33960. },
  33961. frontNsfw: {
  33962. height: math.unit(15, "feet"),
  33963. weight: math.unit(5000, "kg"),
  33964. name: "Front (NSFW)",
  33965. image: {
  33966. source: "./media/characters/kairne/front-nsfw.svg",
  33967. extra: 908/814,
  33968. bottom: 26/934
  33969. }
  33970. },
  33971. dickCaged: {
  33972. height: math.unit(0.65, "meters"),
  33973. name: "Dick-caged",
  33974. image: {
  33975. source: "./media/characters/kairne/dick-caged.svg"
  33976. }
  33977. },
  33978. dick: {
  33979. height: math.unit(0.79, "meters"),
  33980. name: "Dick",
  33981. image: {
  33982. source: "./media/characters/kairne/dick.svg"
  33983. }
  33984. },
  33985. genitals: {
  33986. height: math.unit(1.29, "meters"),
  33987. name: "Genitals",
  33988. image: {
  33989. source: "./media/characters/kairne/genitals.svg"
  33990. }
  33991. },
  33992. maw: {
  33993. height: math.unit(1.73, "meters"),
  33994. name: "Maw",
  33995. image: {
  33996. source: "./media/characters/kairne/maw.svg"
  33997. }
  33998. },
  33999. },
  34000. [
  34001. {
  34002. name: "Normal",
  34003. height: math.unit(15, "feet"),
  34004. default: true
  34005. },
  34006. ]
  34007. ))
  34008. characterMakers.push(() => makeCharacter(
  34009. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34010. {
  34011. front: {
  34012. height: math.unit(5 + 8/12, "feet"),
  34013. weight: math.unit(139, "lb"),
  34014. name: "Front",
  34015. image: {
  34016. source: "./media/characters/biscuit-jackal/front.svg",
  34017. extra: 2106/1961,
  34018. bottom: 58/2164
  34019. }
  34020. },
  34021. back: {
  34022. height: math.unit(5 + 8/12, "feet"),
  34023. weight: math.unit(139, "lb"),
  34024. name: "Back",
  34025. image: {
  34026. source: "./media/characters/biscuit-jackal/back.svg",
  34027. extra: 2132/1976,
  34028. bottom: 57/2189
  34029. }
  34030. },
  34031. werejackal: {
  34032. height: math.unit(6 + 3/12, "feet"),
  34033. weight: math.unit(188, "lb"),
  34034. name: "Werejackal",
  34035. image: {
  34036. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34037. extra: 2373/2178,
  34038. bottom: 53/2426
  34039. }
  34040. },
  34041. },
  34042. [
  34043. {
  34044. name: "Normal",
  34045. height: math.unit(5 + 8/12, "feet"),
  34046. default: true
  34047. },
  34048. ]
  34049. ))
  34050. characterMakers.push(() => makeCharacter(
  34051. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34052. {
  34053. front: {
  34054. height: math.unit(140, "cm"),
  34055. weight: math.unit(45, "kg"),
  34056. name: "Front",
  34057. image: {
  34058. source: "./media/characters/tayra-white/front.svg",
  34059. extra: 2229/2192,
  34060. bottom: 75/2304
  34061. }
  34062. },
  34063. },
  34064. [
  34065. {
  34066. name: "Normal",
  34067. height: math.unit(140, "cm"),
  34068. default: true
  34069. },
  34070. ]
  34071. ))
  34072. characterMakers.push(() => makeCharacter(
  34073. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34074. {
  34075. front: {
  34076. height: math.unit(4 + 5/12, "feet"),
  34077. name: "Front",
  34078. image: {
  34079. source: "./media/characters/scoop/front.svg",
  34080. extra: 1257/1136,
  34081. bottom: 69/1326
  34082. }
  34083. },
  34084. back: {
  34085. height: math.unit(4 + 5/12, "feet"),
  34086. name: "Back",
  34087. image: {
  34088. source: "./media/characters/scoop/back.svg",
  34089. extra: 1321/1152,
  34090. bottom: 32/1353
  34091. }
  34092. },
  34093. maw: {
  34094. height: math.unit(0.68, "feet"),
  34095. name: "Maw",
  34096. image: {
  34097. source: "./media/characters/scoop/maw.svg"
  34098. }
  34099. },
  34100. },
  34101. [
  34102. {
  34103. name: "Really Small",
  34104. height: math.unit(1, "mm")
  34105. },
  34106. {
  34107. name: "Micro",
  34108. height: math.unit(1, "inch")
  34109. },
  34110. {
  34111. name: "Normal",
  34112. height: math.unit(4 + 5/12, "feet"),
  34113. default: true
  34114. },
  34115. {
  34116. name: "Macro",
  34117. height: math.unit(200, "feet")
  34118. },
  34119. {
  34120. name: "Megamacro",
  34121. height: math.unit(3240, "feet")
  34122. },
  34123. {
  34124. name: "Teramacro",
  34125. height: math.unit(2500, "miles")
  34126. },
  34127. ]
  34128. ))
  34129. characterMakers.push(() => makeCharacter(
  34130. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34131. {
  34132. front: {
  34133. height: math.unit(15 + 7/12, "feet"),
  34134. weight: math.unit(1150, "tons"),
  34135. name: "Front",
  34136. image: {
  34137. source: "./media/characters/saphinara/front.svg",
  34138. extra: 1837/1643,
  34139. bottom: 84/1921
  34140. },
  34141. form: "normal",
  34142. default: true
  34143. },
  34144. side: {
  34145. height: math.unit(15 + 7/12, "feet"),
  34146. weight: math.unit(1150, "tons"),
  34147. name: "Side",
  34148. image: {
  34149. source: "./media/characters/saphinara/side.svg",
  34150. extra: 605/547,
  34151. bottom: 6/611
  34152. },
  34153. form: "normal"
  34154. },
  34155. back: {
  34156. height: math.unit(15 + 7/12, "feet"),
  34157. weight: math.unit(1150, "tons"),
  34158. name: "Back",
  34159. image: {
  34160. source: "./media/characters/saphinara/back.svg",
  34161. extra: 591/531,
  34162. bottom: 13/604
  34163. },
  34164. form: "normal"
  34165. },
  34166. frontTail: {
  34167. height: math.unit(15 + 7/12, "feet"),
  34168. weight: math.unit(1150, "tons"),
  34169. name: "Front (Full Tail)",
  34170. image: {
  34171. source: "./media/characters/saphinara/front-tail.svg",
  34172. extra: 2256/1630,
  34173. bottom: 261/2517
  34174. },
  34175. form: "normal"
  34176. },
  34177. insides: {
  34178. height: math.unit(11.92, "feet"),
  34179. name: "Insides",
  34180. image: {
  34181. source: "./media/characters/saphinara/insides.svg"
  34182. },
  34183. form: "normal"
  34184. },
  34185. head: {
  34186. height: math.unit(4.17, "feet"),
  34187. name: "Head",
  34188. image: {
  34189. source: "./media/characters/saphinara/head.svg"
  34190. },
  34191. form: "normal"
  34192. },
  34193. tongue: {
  34194. height: math.unit(4.60, "feet"),
  34195. name: "Tongue",
  34196. image: {
  34197. source: "./media/characters/saphinara/tongue.svg"
  34198. },
  34199. form: "normal"
  34200. },
  34201. headEnraged: {
  34202. height: math.unit(5.55, "feet"),
  34203. name: "Head (Enraged)",
  34204. image: {
  34205. source: "./media/characters/saphinara/head-enraged.svg"
  34206. },
  34207. form: "normal"
  34208. },
  34209. wings: {
  34210. height: math.unit(11.95, "feet"),
  34211. name: "Wings",
  34212. image: {
  34213. source: "./media/characters/saphinara/wings.svg"
  34214. },
  34215. form: "normal"
  34216. },
  34217. feathers: {
  34218. height: math.unit(8.92, "feet"),
  34219. name: "Feathers",
  34220. image: {
  34221. source: "./media/characters/saphinara/feathers.svg"
  34222. },
  34223. form: "normal"
  34224. },
  34225. shackles: {
  34226. height: math.unit(2, "feet"),
  34227. name: "Shackles",
  34228. image: {
  34229. source: "./media/characters/saphinara/shackles.svg"
  34230. },
  34231. form: "normal"
  34232. },
  34233. eyes: {
  34234. height: math.unit(1.331, "feet"),
  34235. name: "Eyes",
  34236. image: {
  34237. source: "./media/characters/saphinara/eyes.svg"
  34238. },
  34239. form: "normal"
  34240. },
  34241. eyesEnraged: {
  34242. height: math.unit(1.331, "feet"),
  34243. name: "Eyes (Enraged)",
  34244. image: {
  34245. source: "./media/characters/saphinara/eyes-enraged.svg"
  34246. },
  34247. form: "normal"
  34248. },
  34249. trueFormSide: {
  34250. height: math.unit(200, "feet"),
  34251. weight: math.unit(1e7, "tons"),
  34252. name: "Side",
  34253. image: {
  34254. source: "./media/characters/saphinara/true-form-side.svg",
  34255. extra: 1399/770,
  34256. bottom: 97/1496
  34257. },
  34258. form: "true-form",
  34259. default: true
  34260. },
  34261. trueFormMaw: {
  34262. height: math.unit(71.5, "feet"),
  34263. name: "Maw",
  34264. image: {
  34265. source: "./media/characters/saphinara/true-form-maw.svg",
  34266. extra: 2302/1453,
  34267. bottom: 0/2302
  34268. },
  34269. form: "true-form"
  34270. },
  34271. },
  34272. [
  34273. {
  34274. name: "Normal",
  34275. height: math.unit(15 + 7/12, "feet"),
  34276. default: true,
  34277. form: "normal"
  34278. },
  34279. {
  34280. name: "Angry",
  34281. height: math.unit(30 + 6/12, "feet"),
  34282. form: "normal"
  34283. },
  34284. {
  34285. name: "Enraged",
  34286. height: math.unit(102 + 1/12, "feet"),
  34287. form: "normal"
  34288. },
  34289. {
  34290. name: "True",
  34291. height: math.unit(200, "feet"),
  34292. default: true,
  34293. form: "true-form"
  34294. }
  34295. ],
  34296. {
  34297. "normal": {
  34298. name: "Normal",
  34299. default: true
  34300. },
  34301. "true-form": {
  34302. name: "True Form"
  34303. }
  34304. }
  34305. ))
  34306. characterMakers.push(() => makeCharacter(
  34307. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34308. {
  34309. front: {
  34310. height: math.unit(6 + 8/12, "feet"),
  34311. weight: math.unit(300, "lb"),
  34312. name: "Front",
  34313. image: {
  34314. source: "./media/characters/jrain/front.svg",
  34315. extra: 3039/2865,
  34316. bottom: 399/3438
  34317. }
  34318. },
  34319. back: {
  34320. height: math.unit(6 + 8/12, "feet"),
  34321. weight: math.unit(300, "lb"),
  34322. name: "Back",
  34323. image: {
  34324. source: "./media/characters/jrain/back.svg",
  34325. extra: 3089/2938,
  34326. bottom: 172/3261
  34327. }
  34328. },
  34329. head: {
  34330. height: math.unit(2.14, "feet"),
  34331. name: "Head",
  34332. image: {
  34333. source: "./media/characters/jrain/head.svg"
  34334. }
  34335. },
  34336. maw: {
  34337. height: math.unit(1.77, "feet"),
  34338. name: "Maw",
  34339. image: {
  34340. source: "./media/characters/jrain/maw.svg"
  34341. }
  34342. },
  34343. leftHand: {
  34344. height: math.unit(1.1, "feet"),
  34345. name: "Left Hand",
  34346. image: {
  34347. source: "./media/characters/jrain/left-hand.svg"
  34348. }
  34349. },
  34350. rightHand: {
  34351. height: math.unit(1.1, "feet"),
  34352. name: "Right Hand",
  34353. image: {
  34354. source: "./media/characters/jrain/right-hand.svg"
  34355. }
  34356. },
  34357. eye: {
  34358. height: math.unit(0.35, "feet"),
  34359. name: "Eye",
  34360. image: {
  34361. source: "./media/characters/jrain/eye.svg"
  34362. }
  34363. },
  34364. },
  34365. [
  34366. {
  34367. name: "Normal",
  34368. height: math.unit(6 + 8/12, "feet"),
  34369. default: true
  34370. },
  34371. {
  34372. name: "Casually Large",
  34373. height: math.unit(25, "feet")
  34374. },
  34375. {
  34376. name: "Giant",
  34377. height: math.unit(100, "feet")
  34378. },
  34379. {
  34380. name: "Kaiju",
  34381. height: math.unit(300, "feet")
  34382. },
  34383. ]
  34384. ))
  34385. characterMakers.push(() => makeCharacter(
  34386. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34387. {
  34388. dragon: {
  34389. height: math.unit(5, "meters"),
  34390. name: "Dragon",
  34391. image: {
  34392. source: "./media/characters/sabrina/dragon.svg",
  34393. extra: 3670 / 2365,
  34394. bottom: 333 / 4003
  34395. }
  34396. },
  34397. gryphon: {
  34398. height: math.unit(3, "meters"),
  34399. name: "Gryphon",
  34400. image: {
  34401. source: "./media/characters/sabrina/gryphon.svg",
  34402. extra: 1576 / 945,
  34403. bottom: 71 / 1647
  34404. }
  34405. },
  34406. snake: {
  34407. height: math.unit(12, "meters"),
  34408. name: "Snake",
  34409. image: {
  34410. source: "./media/characters/sabrina/snake.svg",
  34411. extra: 1758 / 1320,
  34412. bottom: 186 / 1944
  34413. }
  34414. },
  34415. collar: {
  34416. height: math.unit(1.86, "meters"),
  34417. name: "Collar",
  34418. image: {
  34419. source: "./media/characters/sabrina/collar.svg"
  34420. }
  34421. },
  34422. eye: {
  34423. height: math.unit(0.53, "meters"),
  34424. name: "Eye",
  34425. image: {
  34426. source: "./media/characters/sabrina/eye.svg"
  34427. }
  34428. },
  34429. foot: {
  34430. height: math.unit(1.86, "meters"),
  34431. name: "Foot",
  34432. image: {
  34433. source: "./media/characters/sabrina/foot.svg"
  34434. }
  34435. },
  34436. hand: {
  34437. height: math.unit(1.32, "meters"),
  34438. name: "Hand",
  34439. image: {
  34440. source: "./media/characters/sabrina/hand.svg"
  34441. }
  34442. },
  34443. head: {
  34444. height: math.unit(2.44, "meters"),
  34445. name: "Head",
  34446. image: {
  34447. source: "./media/characters/sabrina/head.svg"
  34448. }
  34449. },
  34450. headAngry: {
  34451. height: math.unit(2.44, "meters"),
  34452. name: "Head (Angry))",
  34453. image: {
  34454. source: "./media/characters/sabrina/head-angry.svg"
  34455. }
  34456. },
  34457. maw: {
  34458. height: math.unit(1.65, "meters"),
  34459. name: "Maw",
  34460. image: {
  34461. source: "./media/characters/sabrina/maw.svg"
  34462. }
  34463. },
  34464. spikes: {
  34465. height: math.unit(1.69, "meters"),
  34466. name: "Spikes",
  34467. image: {
  34468. source: "./media/characters/sabrina/spikes.svg"
  34469. }
  34470. },
  34471. stomach: {
  34472. height: math.unit(1.15, "meters"),
  34473. name: "Stomach",
  34474. image: {
  34475. source: "./media/characters/sabrina/stomach.svg"
  34476. }
  34477. },
  34478. tongue: {
  34479. height: math.unit(1.27, "meters"),
  34480. name: "Tongue",
  34481. image: {
  34482. source: "./media/characters/sabrina/tongue.svg"
  34483. }
  34484. },
  34485. wingDorsal: {
  34486. height: math.unit(4.85, "meters"),
  34487. name: "Wing (Dorsal)",
  34488. image: {
  34489. source: "./media/characters/sabrina/wing-dorsal.svg"
  34490. }
  34491. },
  34492. wingVentral: {
  34493. height: math.unit(4.85, "meters"),
  34494. name: "Wing (Ventral)",
  34495. image: {
  34496. source: "./media/characters/sabrina/wing-ventral.svg"
  34497. }
  34498. },
  34499. },
  34500. [
  34501. {
  34502. name: "Normal",
  34503. height: math.unit(5, "meters"),
  34504. default: true
  34505. },
  34506. ]
  34507. ))
  34508. characterMakers.push(() => makeCharacter(
  34509. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34510. {
  34511. frontMaid: {
  34512. height: math.unit(5 + 5/12, "feet"),
  34513. weight: math.unit(130, "lb"),
  34514. name: "Front (Maid)",
  34515. image: {
  34516. source: "./media/characters/midnight-tales/front-maid.svg",
  34517. extra: 489/454,
  34518. bottom: 61/550
  34519. }
  34520. },
  34521. frontFormal: {
  34522. height: math.unit(5 + 5/12, "feet"),
  34523. weight: math.unit(130, "lb"),
  34524. name: "Front (Formal)",
  34525. image: {
  34526. source: "./media/characters/midnight-tales/front-formal.svg",
  34527. extra: 489/454,
  34528. bottom: 61/550
  34529. }
  34530. },
  34531. back: {
  34532. height: math.unit(5 + 5/12, "feet"),
  34533. weight: math.unit(130, "lb"),
  34534. name: "Back",
  34535. image: {
  34536. source: "./media/characters/midnight-tales/back.svg",
  34537. extra: 498/456,
  34538. bottom: 33/531
  34539. }
  34540. },
  34541. frontBeast: {
  34542. height: math.unit(40, "feet"),
  34543. weight: math.unit(64000, "lb"),
  34544. name: "Front (Beast)",
  34545. image: {
  34546. source: "./media/characters/midnight-tales/front-beast.svg",
  34547. extra: 927/860,
  34548. bottom: 53/980
  34549. }
  34550. },
  34551. backBeast: {
  34552. height: math.unit(40, "feet"),
  34553. weight: math.unit(64000, "lb"),
  34554. name: "Back (Beast)",
  34555. image: {
  34556. source: "./media/characters/midnight-tales/back-beast.svg",
  34557. extra: 929/855,
  34558. bottom: 16/945
  34559. }
  34560. },
  34561. footBeast: {
  34562. height: math.unit(6.7, "feet"),
  34563. name: "Foot (Beast)",
  34564. image: {
  34565. source: "./media/characters/midnight-tales/foot-beast.svg"
  34566. }
  34567. },
  34568. headBeast: {
  34569. height: math.unit(8, "feet"),
  34570. name: "Head (Beast)",
  34571. image: {
  34572. source: "./media/characters/midnight-tales/head-beast.svg"
  34573. }
  34574. },
  34575. },
  34576. [
  34577. {
  34578. name: "Normal",
  34579. height: math.unit(5 + 5 / 12, "feet"),
  34580. default: true
  34581. },
  34582. {
  34583. name: "Macro",
  34584. height: math.unit(25, "feet")
  34585. },
  34586. ]
  34587. ))
  34588. characterMakers.push(() => makeCharacter(
  34589. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34590. {
  34591. front: {
  34592. height: math.unit(5 + 10/12, "feet"),
  34593. name: "Front",
  34594. image: {
  34595. source: "./media/characters/argon/front.svg",
  34596. extra: 2009/1935,
  34597. bottom: 118/2127
  34598. }
  34599. },
  34600. back: {
  34601. height: math.unit(5 + 10/12, "feet"),
  34602. name: "Back",
  34603. image: {
  34604. source: "./media/characters/argon/back.svg",
  34605. extra: 2047/1992,
  34606. bottom: 20/2067
  34607. }
  34608. },
  34609. frontDressed: {
  34610. height: math.unit(5 + 10/12, "feet"),
  34611. name: "Front (Dressed)",
  34612. image: {
  34613. source: "./media/characters/argon/front-dressed.svg",
  34614. extra: 2009/1935,
  34615. bottom: 118/2127
  34616. }
  34617. },
  34618. },
  34619. [
  34620. {
  34621. name: "Normal",
  34622. height: math.unit(5 + 10/12, "feet"),
  34623. default: true
  34624. },
  34625. ]
  34626. ))
  34627. characterMakers.push(() => makeCharacter(
  34628. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34629. {
  34630. front: {
  34631. height: math.unit(8 + 6/12, "feet"),
  34632. weight: math.unit(1150, "lb"),
  34633. name: "Front",
  34634. image: {
  34635. source: "./media/characters/kichi/front.svg",
  34636. extra: 1267/1164,
  34637. bottom: 61/1328
  34638. }
  34639. },
  34640. back: {
  34641. height: math.unit(8 + 6/12, "feet"),
  34642. weight: math.unit(1150, "lb"),
  34643. name: "Back",
  34644. image: {
  34645. source: "./media/characters/kichi/back.svg",
  34646. extra: 1273/1166,
  34647. bottom: 33/1306
  34648. }
  34649. },
  34650. },
  34651. [
  34652. {
  34653. name: "Normal",
  34654. height: math.unit(8 + 6/12, "feet"),
  34655. default: true
  34656. },
  34657. ]
  34658. ))
  34659. characterMakers.push(() => makeCharacter(
  34660. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34661. {
  34662. front: {
  34663. height: math.unit(6, "feet"),
  34664. weight: math.unit(210, "lb"),
  34665. name: "Front",
  34666. image: {
  34667. source: "./media/characters/manetel-greyscale/front.svg",
  34668. extra: 350/312,
  34669. bottom: 8/358
  34670. }
  34671. },
  34672. },
  34673. [
  34674. {
  34675. name: "Micro",
  34676. height: math.unit(2, "inches")
  34677. },
  34678. {
  34679. name: "Normal",
  34680. height: math.unit(6, "feet"),
  34681. default: true
  34682. },
  34683. {
  34684. name: "Minimacro",
  34685. height: math.unit(17, "feet")
  34686. },
  34687. {
  34688. name: "Macro",
  34689. height: math.unit(117, "feet")
  34690. },
  34691. ]
  34692. ))
  34693. characterMakers.push(() => makeCharacter(
  34694. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34695. {
  34696. side: {
  34697. height: math.unit(5 + 1/12, "feet"),
  34698. weight: math.unit(418, "lb"),
  34699. name: "Side",
  34700. image: {
  34701. source: "./media/characters/softpurr/side.svg",
  34702. extra: 1993/1945,
  34703. bottom: 134/2127
  34704. }
  34705. },
  34706. front: {
  34707. height: math.unit(5 + 1/12, "feet"),
  34708. weight: math.unit(418, "lb"),
  34709. name: "Front",
  34710. image: {
  34711. source: "./media/characters/softpurr/front.svg",
  34712. extra: 1950/1856,
  34713. bottom: 174/2124
  34714. }
  34715. },
  34716. paw: {
  34717. height: math.unit(1, "feet"),
  34718. name: "Paw",
  34719. image: {
  34720. source: "./media/characters/softpurr/paw.svg"
  34721. }
  34722. },
  34723. },
  34724. [
  34725. {
  34726. name: "Normal",
  34727. height: math.unit(5 + 1/12, "feet"),
  34728. default: true
  34729. },
  34730. ]
  34731. ))
  34732. characterMakers.push(() => makeCharacter(
  34733. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34734. {
  34735. front: {
  34736. height: math.unit(260, "meters"),
  34737. name: "Front",
  34738. image: {
  34739. source: "./media/characters/anahita/front.svg",
  34740. extra: 665/635,
  34741. bottom: 89/754
  34742. }
  34743. },
  34744. },
  34745. [
  34746. {
  34747. name: "Macro",
  34748. height: math.unit(260, "meters"),
  34749. default: true
  34750. },
  34751. ]
  34752. ))
  34753. characterMakers.push(() => makeCharacter(
  34754. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34755. {
  34756. front: {
  34757. height: math.unit(4 + 10/12, "feet"),
  34758. weight: math.unit(160, "lb"),
  34759. name: "Front",
  34760. image: {
  34761. source: "./media/characters/chip-mouse/front.svg",
  34762. extra: 3528/3408,
  34763. bottom: 0/3528
  34764. }
  34765. },
  34766. frontNsfw: {
  34767. height: math.unit(4 + 10/12, "feet"),
  34768. weight: math.unit(160, "lb"),
  34769. name: "Front (NSFW)",
  34770. image: {
  34771. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34772. extra: 3528/3408,
  34773. bottom: 0/3528
  34774. }
  34775. },
  34776. },
  34777. [
  34778. {
  34779. name: "Normal",
  34780. height: math.unit(4 + 10/12, "feet"),
  34781. default: true
  34782. },
  34783. ]
  34784. ))
  34785. characterMakers.push(() => makeCharacter(
  34786. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34787. {
  34788. side: {
  34789. height: math.unit(10, "feet"),
  34790. weight: math.unit(14000, "lb"),
  34791. name: "Side",
  34792. image: {
  34793. source: "./media/characters/kremm/side.svg",
  34794. extra: 1390/1053,
  34795. bottom: 90/1480
  34796. }
  34797. },
  34798. gut: {
  34799. height: math.unit(5.8, "feet"),
  34800. name: "Gut",
  34801. image: {
  34802. source: "./media/characters/kremm/gut.svg"
  34803. }
  34804. },
  34805. ass: {
  34806. height: math.unit(6.1, "feet"),
  34807. name: "Ass",
  34808. image: {
  34809. source: "./media/characters/kremm/ass.svg"
  34810. }
  34811. },
  34812. jaws: {
  34813. height: math.unit(2.2, "feet"),
  34814. name: "Jaws",
  34815. image: {
  34816. source: "./media/characters/kremm/jaws.svg"
  34817. }
  34818. },
  34819. dick: {
  34820. height: math.unit(4.26, "feet"),
  34821. name: "Dick",
  34822. image: {
  34823. source: "./media/characters/kremm/dick.svg"
  34824. }
  34825. },
  34826. },
  34827. [
  34828. {
  34829. name: "Normal",
  34830. height: math.unit(10, "feet"),
  34831. default: true
  34832. },
  34833. ]
  34834. ))
  34835. characterMakers.push(() => makeCharacter(
  34836. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34837. {
  34838. front: {
  34839. height: math.unit(30, "stories"),
  34840. name: "Front",
  34841. image: {
  34842. source: "./media/characters/kai/front.svg",
  34843. extra: 1892/1718,
  34844. bottom: 162/2054
  34845. }
  34846. },
  34847. },
  34848. [
  34849. {
  34850. name: "Macro",
  34851. height: math.unit(30, "stories"),
  34852. default: true
  34853. },
  34854. ]
  34855. ))
  34856. characterMakers.push(() => makeCharacter(
  34857. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34858. {
  34859. front: {
  34860. height: math.unit(6 + 4/12, "feet"),
  34861. weight: math.unit(145, "lb"),
  34862. name: "Front",
  34863. image: {
  34864. source: "./media/characters/sykes/front.svg",
  34865. extra: 1321 / 1187,
  34866. bottom: 66 / 1387
  34867. }
  34868. },
  34869. back: {
  34870. height: math.unit(6 + 4/12, "feet"),
  34871. weight: math.unit(145, "lb"),
  34872. name: "Back",
  34873. image: {
  34874. source: "./media/characters/sykes/back.svg",
  34875. extra: 1326/1181,
  34876. bottom: 31/1357
  34877. }
  34878. },
  34879. traditionalOutfit: {
  34880. height: math.unit(6 + 4/12, "feet"),
  34881. weight: math.unit(145, "lb"),
  34882. name: "Traditional Outfit",
  34883. image: {
  34884. source: "./media/characters/sykes/traditional-outfit.svg",
  34885. extra: 1321 / 1187,
  34886. bottom: 66 / 1387
  34887. }
  34888. },
  34889. adventureOutfit: {
  34890. height: math.unit(6 + 4/12, "feet"),
  34891. weight: math.unit(145, "lb"),
  34892. name: "Adventure Outfit",
  34893. image: {
  34894. source: "./media/characters/sykes/adventure-outfit.svg",
  34895. extra: 1321 / 1187,
  34896. bottom: 66 / 1387
  34897. }
  34898. },
  34899. handLeft: {
  34900. height: math.unit(0.9, "feet"),
  34901. name: "Hand (Left)",
  34902. image: {
  34903. source: "./media/characters/sykes/hand-left.svg"
  34904. }
  34905. },
  34906. handRight: {
  34907. height: math.unit(0.839, "feet"),
  34908. name: "Hand (Right)",
  34909. image: {
  34910. source: "./media/characters/sykes/hand-right.svg"
  34911. }
  34912. },
  34913. leftFoot: {
  34914. height: math.unit(1.2, "feet"),
  34915. name: "Foot (Left)",
  34916. image: {
  34917. source: "./media/characters/sykes/foot-left.svg"
  34918. }
  34919. },
  34920. rightFoot: {
  34921. height: math.unit(1.2, "feet"),
  34922. name: "Foot (Right)",
  34923. image: {
  34924. source: "./media/characters/sykes/foot-right.svg"
  34925. }
  34926. },
  34927. maw: {
  34928. height: math.unit(1.93, "feet"),
  34929. name: "Maw",
  34930. image: {
  34931. source: "./media/characters/sykes/maw.svg"
  34932. }
  34933. },
  34934. teeth: {
  34935. height: math.unit(0.51, "feet"),
  34936. name: "Teeth",
  34937. image: {
  34938. source: "./media/characters/sykes/teeth.svg"
  34939. }
  34940. },
  34941. tongue: {
  34942. height: math.unit(2.13, "feet"),
  34943. name: "Tongue",
  34944. image: {
  34945. source: "./media/characters/sykes/tongue.svg"
  34946. }
  34947. },
  34948. uvula: {
  34949. height: math.unit(0.16, "feet"),
  34950. name: "Uvula",
  34951. image: {
  34952. source: "./media/characters/sykes/uvula.svg"
  34953. }
  34954. },
  34955. collar: {
  34956. height: math.unit(0.287, "feet"),
  34957. name: "Collar",
  34958. image: {
  34959. source: "./media/characters/sykes/collar.svg"
  34960. }
  34961. },
  34962. tail: {
  34963. height: math.unit(3.8, "feet"),
  34964. name: "Tail",
  34965. image: {
  34966. source: "./media/characters/sykes/tail.svg"
  34967. }
  34968. },
  34969. },
  34970. [
  34971. {
  34972. name: "Shrunken",
  34973. height: math.unit(5, "inches")
  34974. },
  34975. {
  34976. name: "Normal",
  34977. height: math.unit(6 + 4 / 12, "feet"),
  34978. default: true
  34979. },
  34980. {
  34981. name: "Big",
  34982. height: math.unit(15, "feet")
  34983. },
  34984. ]
  34985. ))
  34986. characterMakers.push(() => makeCharacter(
  34987. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34988. {
  34989. front: {
  34990. height: math.unit(5 + 8/12, "feet"),
  34991. weight: math.unit(190, "lb"),
  34992. name: "Front",
  34993. image: {
  34994. source: "./media/characters/oven-otter/front.svg",
  34995. extra: 1809/1740,
  34996. bottom: 181/1990
  34997. }
  34998. },
  34999. back: {
  35000. height: math.unit(5 + 8/12, "feet"),
  35001. weight: math.unit(190, "lb"),
  35002. name: "Back",
  35003. image: {
  35004. source: "./media/characters/oven-otter/back.svg",
  35005. extra: 1709/1635,
  35006. bottom: 118/1827
  35007. }
  35008. },
  35009. hand: {
  35010. height: math.unit(1.07, "feet"),
  35011. name: "Hand",
  35012. image: {
  35013. source: "./media/characters/oven-otter/hand.svg"
  35014. }
  35015. },
  35016. beans: {
  35017. height: math.unit(1.74, "feet"),
  35018. name: "Beans",
  35019. image: {
  35020. source: "./media/characters/oven-otter/beans.svg"
  35021. }
  35022. },
  35023. },
  35024. [
  35025. {
  35026. name: "Micro",
  35027. height: math.unit(0.5, "inches")
  35028. },
  35029. {
  35030. name: "Normal",
  35031. height: math.unit(5 + 8/12, "feet"),
  35032. default: true
  35033. },
  35034. {
  35035. name: "Macro",
  35036. height: math.unit(250, "feet")
  35037. },
  35038. {
  35039. name: "Really High",
  35040. height: math.unit(420, "feet")
  35041. },
  35042. ]
  35043. ))
  35044. characterMakers.push(() => makeCharacter(
  35045. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35046. {
  35047. front: {
  35048. height: math.unit(5, "meters"),
  35049. weight: math.unit(292000000000000, "kg"),
  35050. name: "Front",
  35051. image: {
  35052. source: "./media/characters/devourer/front.svg",
  35053. extra: 1800/1733,
  35054. bottom: 211/2011
  35055. }
  35056. },
  35057. maw: {
  35058. height: math.unit(1.1, "meter"),
  35059. name: "Maw",
  35060. image: {
  35061. source: "./media/characters/devourer/maw.svg"
  35062. }
  35063. },
  35064. },
  35065. [
  35066. {
  35067. name: "Small",
  35068. height: math.unit(3, "meters")
  35069. },
  35070. {
  35071. name: "Large",
  35072. height: math.unit(5, "meters"),
  35073. default: true
  35074. },
  35075. ]
  35076. ))
  35077. characterMakers.push(() => makeCharacter(
  35078. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35079. {
  35080. front: {
  35081. height: math.unit(6, "feet"),
  35082. weight: math.unit(400, "lb"),
  35083. name: "Front",
  35084. image: {
  35085. source: "./media/characters/ellarby/front.svg",
  35086. extra: 1909/1763,
  35087. bottom: 80/1989
  35088. }
  35089. },
  35090. back: {
  35091. height: math.unit(6, "feet"),
  35092. weight: math.unit(400, "lb"),
  35093. name: "Back",
  35094. image: {
  35095. source: "./media/characters/ellarby/back.svg",
  35096. extra: 1914/1784,
  35097. bottom: 172/2086
  35098. }
  35099. },
  35100. },
  35101. [
  35102. {
  35103. name: "Mischief",
  35104. height: math.unit(18, "inches")
  35105. },
  35106. {
  35107. name: "Trouble",
  35108. height: math.unit(12, "feet")
  35109. },
  35110. {
  35111. name: "Havoc",
  35112. height: math.unit(200, "feet"),
  35113. default: true
  35114. },
  35115. {
  35116. name: "Pandemonium",
  35117. height: math.unit(1, "mile")
  35118. },
  35119. {
  35120. name: "Catastrophe",
  35121. height: math.unit(100, "miles")
  35122. },
  35123. ]
  35124. ))
  35125. characterMakers.push(() => makeCharacter(
  35126. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35127. {
  35128. front: {
  35129. height: math.unit(4.7, "meters"),
  35130. weight: math.unit(6500, "kg"),
  35131. name: "Front",
  35132. image: {
  35133. source: "./media/characters/vex/front.svg",
  35134. extra: 1288/1140,
  35135. bottom: 100/1388
  35136. }
  35137. },
  35138. },
  35139. [
  35140. {
  35141. name: "Normal",
  35142. height: math.unit(4.7, "meters"),
  35143. default: true
  35144. },
  35145. ]
  35146. ))
  35147. characterMakers.push(() => makeCharacter(
  35148. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35149. {
  35150. normal: {
  35151. height: math.unit(6, "feet"),
  35152. weight: math.unit(350, "lb"),
  35153. name: "Normal",
  35154. image: {
  35155. source: "./media/characters/teshy/normal.svg",
  35156. extra: 1795/1735,
  35157. bottom: 16/1811
  35158. }
  35159. },
  35160. monsterFront: {
  35161. height: math.unit(12, "feet"),
  35162. weight: math.unit(4700, "lb"),
  35163. name: "Monster (Front)",
  35164. image: {
  35165. source: "./media/characters/teshy/monster-front.svg",
  35166. extra: 2042/2034,
  35167. bottom: 128/2170
  35168. }
  35169. },
  35170. monsterSide: {
  35171. height: math.unit(12, "feet"),
  35172. weight: math.unit(4700, "lb"),
  35173. name: "Monster (Side)",
  35174. image: {
  35175. source: "./media/characters/teshy/monster-side.svg",
  35176. extra: 2067/2056,
  35177. bottom: 70/2137
  35178. }
  35179. },
  35180. monsterBack: {
  35181. height: math.unit(12, "feet"),
  35182. weight: math.unit(4700, "lb"),
  35183. name: "Monster (Back)",
  35184. image: {
  35185. source: "./media/characters/teshy/monster-back.svg",
  35186. extra: 1921/1914,
  35187. bottom: 171/2092
  35188. }
  35189. },
  35190. },
  35191. [
  35192. {
  35193. name: "Normal",
  35194. height: math.unit(6, "feet"),
  35195. default: true
  35196. },
  35197. ]
  35198. ))
  35199. characterMakers.push(() => makeCharacter(
  35200. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35201. {
  35202. front: {
  35203. height: math.unit(6, "feet"),
  35204. name: "Front",
  35205. image: {
  35206. source: "./media/characters/ramey/front.svg",
  35207. extra: 790/787,
  35208. bottom: 27/817
  35209. }
  35210. },
  35211. },
  35212. [
  35213. {
  35214. name: "Normal",
  35215. height: math.unit(6, "feet"),
  35216. default: true
  35217. },
  35218. ]
  35219. ))
  35220. characterMakers.push(() => makeCharacter(
  35221. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35222. {
  35223. front: {
  35224. height: math.unit(5 + 5/12, "feet"),
  35225. weight: math.unit(120, "lb"),
  35226. name: "Front",
  35227. image: {
  35228. source: "./media/characters/phirae/front.svg",
  35229. extra: 2491/2436,
  35230. bottom: 38/2529
  35231. }
  35232. },
  35233. },
  35234. [
  35235. {
  35236. name: "Normal",
  35237. height: math.unit(5 + 5/12, "feet"),
  35238. default: true
  35239. },
  35240. ]
  35241. ))
  35242. characterMakers.push(() => makeCharacter(
  35243. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35244. {
  35245. front: {
  35246. height: math.unit(5 + 3/12, "feet"),
  35247. name: "Front",
  35248. image: {
  35249. source: "./media/characters/stagglas/front.svg",
  35250. extra: 962/882,
  35251. bottom: 53/1015
  35252. }
  35253. },
  35254. feral: {
  35255. height: math.unit(335, "cm"),
  35256. name: "Feral",
  35257. image: {
  35258. source: "./media/characters/stagglas/feral.svg",
  35259. extra: 1732/1090,
  35260. bottom: 48/1780
  35261. }
  35262. },
  35263. },
  35264. [
  35265. {
  35266. name: "Normal",
  35267. height: math.unit(5 + 3/12, "feet"),
  35268. default: true
  35269. },
  35270. ]
  35271. ))
  35272. characterMakers.push(() => makeCharacter(
  35273. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35274. {
  35275. front: {
  35276. height: math.unit(5 + 4/12, "feet"),
  35277. weight: math.unit(145, "lb"),
  35278. name: "Front",
  35279. image: {
  35280. source: "./media/characters/starra/front.svg",
  35281. extra: 1790/1691,
  35282. bottom: 91/1881
  35283. }
  35284. },
  35285. },
  35286. [
  35287. {
  35288. name: "Normal",
  35289. height: math.unit(5 + 4/12, "feet"),
  35290. default: true
  35291. },
  35292. ]
  35293. ))
  35294. characterMakers.push(() => makeCharacter(
  35295. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35296. {
  35297. front: {
  35298. height: math.unit(2.2, "meters"),
  35299. name: "Front",
  35300. image: {
  35301. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35302. extra: 1194/1005,
  35303. bottom: 25/1219
  35304. }
  35305. },
  35306. },
  35307. [
  35308. {
  35309. name: "Normal",
  35310. height: math.unit(2.2, "meters"),
  35311. default: true
  35312. },
  35313. ]
  35314. ))
  35315. characterMakers.push(() => makeCharacter(
  35316. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35317. {
  35318. side: {
  35319. height: math.unit(8 + 2/12, "feet"),
  35320. weight: math.unit(1240, "lb"),
  35321. name: "Side",
  35322. image: {
  35323. source: "./media/characters/mika-valentine/side.svg",
  35324. extra: 2670/2501,
  35325. bottom: 250/2920
  35326. }
  35327. },
  35328. },
  35329. [
  35330. {
  35331. name: "Normal",
  35332. height: math.unit(8 + 2/12, "feet"),
  35333. default: true
  35334. },
  35335. ]
  35336. ))
  35337. characterMakers.push(() => makeCharacter(
  35338. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35339. {
  35340. front: {
  35341. height: math.unit(7 + 2/12, "feet"),
  35342. name: "Front",
  35343. image: {
  35344. source: "./media/characters/xoltol/front.svg",
  35345. extra: 2212/2124,
  35346. bottom: 84/2296
  35347. }
  35348. },
  35349. side: {
  35350. height: math.unit(7 + 2/12, "feet"),
  35351. name: "Side",
  35352. image: {
  35353. source: "./media/characters/xoltol/side.svg",
  35354. extra: 2273/2197,
  35355. bottom: 26/2299
  35356. }
  35357. },
  35358. hand: {
  35359. height: math.unit(2.5, "feet"),
  35360. name: "Hand",
  35361. image: {
  35362. source: "./media/characters/xoltol/hand.svg"
  35363. }
  35364. },
  35365. },
  35366. [
  35367. {
  35368. name: "Small-ish",
  35369. height: math.unit(5 + 11/12, "feet")
  35370. },
  35371. {
  35372. name: "Normal",
  35373. height: math.unit(7 + 2/12, "feet")
  35374. },
  35375. {
  35376. name: "\"Macro\"",
  35377. height: math.unit(14 + 9/12, "feet"),
  35378. default: true
  35379. },
  35380. {
  35381. name: "Alternate Height",
  35382. height: math.unit(20, "feet")
  35383. },
  35384. {
  35385. name: "Actually Macro",
  35386. height: math.unit(100, "feet")
  35387. },
  35388. ]
  35389. ))
  35390. characterMakers.push(() => makeCharacter(
  35391. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35392. {
  35393. front: {
  35394. height: math.unit(5 + 2/12, "feet"),
  35395. name: "Front",
  35396. image: {
  35397. source: "./media/characters/kotetsu-redwood/front.svg",
  35398. extra: 1053/942,
  35399. bottom: 60/1113
  35400. }
  35401. },
  35402. },
  35403. [
  35404. {
  35405. name: "Normal",
  35406. height: math.unit(5 + 2/12, "feet"),
  35407. default: true
  35408. },
  35409. ]
  35410. ))
  35411. characterMakers.push(() => makeCharacter(
  35412. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35413. {
  35414. front: {
  35415. height: math.unit(2.4, "meters"),
  35416. weight: math.unit(125, "kg"),
  35417. name: "Front",
  35418. image: {
  35419. source: "./media/characters/lilith/front.svg",
  35420. extra: 1590/1513,
  35421. bottom: 203/1793
  35422. }
  35423. },
  35424. },
  35425. [
  35426. {
  35427. name: "Humanoid",
  35428. height: math.unit(2.4, "meters")
  35429. },
  35430. {
  35431. name: "Normal",
  35432. height: math.unit(6, "meters"),
  35433. default: true
  35434. },
  35435. {
  35436. name: "Largest",
  35437. height: math.unit(55, "meters")
  35438. },
  35439. ]
  35440. ))
  35441. characterMakers.push(() => makeCharacter(
  35442. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35443. {
  35444. front: {
  35445. height: math.unit(8 + 4/12, "feet"),
  35446. weight: math.unit(535, "lb"),
  35447. name: "Front",
  35448. image: {
  35449. source: "./media/characters/beh'kah-bolger/front.svg",
  35450. extra: 1660/1603,
  35451. bottom: 37/1697
  35452. }
  35453. },
  35454. },
  35455. [
  35456. {
  35457. name: "Normal",
  35458. height: math.unit(8 + 4/12, "feet"),
  35459. default: true
  35460. },
  35461. {
  35462. name: "Kaiju",
  35463. height: math.unit(250, "feet")
  35464. },
  35465. {
  35466. name: "Still Growing",
  35467. height: math.unit(10, "miles")
  35468. },
  35469. {
  35470. name: "Continental",
  35471. height: math.unit(5000, "miles")
  35472. },
  35473. {
  35474. name: "Final Form",
  35475. height: math.unit(2500000, "miles")
  35476. },
  35477. ]
  35478. ))
  35479. characterMakers.push(() => makeCharacter(
  35480. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35481. {
  35482. front: {
  35483. height: math.unit(7 + 2/12, "feet"),
  35484. weight: math.unit(230, "kg"),
  35485. name: "Front",
  35486. image: {
  35487. source: "./media/characters/tatyana-milewska/front.svg",
  35488. extra: 1199/1150,
  35489. bottom: 86/1285
  35490. }
  35491. },
  35492. },
  35493. [
  35494. {
  35495. name: "Normal",
  35496. height: math.unit(7 + 2/12, "feet"),
  35497. default: true
  35498. },
  35499. {
  35500. name: "Big",
  35501. height: math.unit(12, "feet")
  35502. },
  35503. {
  35504. name: "Minimacro",
  35505. height: math.unit(20, "feet")
  35506. },
  35507. {
  35508. name: "Macro",
  35509. height: math.unit(120, "feet")
  35510. },
  35511. ]
  35512. ))
  35513. characterMakers.push(() => makeCharacter(
  35514. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35515. {
  35516. front: {
  35517. height: math.unit(7 + 8/12, "feet"),
  35518. weight: math.unit(152, "kg"),
  35519. name: "Front",
  35520. image: {
  35521. source: "./media/characters/helen-arri/front.svg",
  35522. extra: 440/423,
  35523. bottom: 14/454
  35524. }
  35525. },
  35526. back: {
  35527. height: math.unit(7 + 8/12, "feet"),
  35528. weight: math.unit(152, "kg"),
  35529. name: "Back",
  35530. image: {
  35531. source: "./media/characters/helen-arri/back.svg",
  35532. extra: 443/426,
  35533. bottom: 8/451
  35534. }
  35535. },
  35536. },
  35537. [
  35538. {
  35539. name: "Normal",
  35540. height: math.unit(7 + 8/12, "feet"),
  35541. default: true
  35542. },
  35543. {
  35544. name: "Big",
  35545. height: math.unit(14, "feet")
  35546. },
  35547. {
  35548. name: "Minimacro",
  35549. height: math.unit(24, "feet")
  35550. },
  35551. {
  35552. name: "Macro",
  35553. height: math.unit(140, "feet")
  35554. },
  35555. ]
  35556. ))
  35557. characterMakers.push(() => makeCharacter(
  35558. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35559. {
  35560. front: {
  35561. height: math.unit(6, "meters"),
  35562. name: "Front",
  35563. image: {
  35564. source: "./media/characters/ehanu-rehu/front.svg",
  35565. extra: 1800/1800,
  35566. bottom: 59/1859
  35567. }
  35568. },
  35569. },
  35570. [
  35571. {
  35572. name: "Normal",
  35573. height: math.unit(6, "meters"),
  35574. default: true
  35575. },
  35576. ]
  35577. ))
  35578. characterMakers.push(() => makeCharacter(
  35579. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35580. {
  35581. front: {
  35582. height: math.unit(7 + 3/12, "feet"),
  35583. name: "Front",
  35584. image: {
  35585. source: "./media/characters/renholder/front.svg",
  35586. extra: 3096/2960,
  35587. bottom: 250/3346
  35588. }
  35589. },
  35590. },
  35591. [
  35592. {
  35593. name: "Normal Bat",
  35594. height: math.unit(7 + 3/12, "feet"),
  35595. default: true
  35596. },
  35597. {
  35598. name: "Slightly Tall Bat",
  35599. height: math.unit(100, "feet")
  35600. },
  35601. {
  35602. name: "Big Bat",
  35603. height: math.unit(1000, "feet")
  35604. },
  35605. {
  35606. name: "City-Sized Bat",
  35607. height: math.unit(200000, "feet")
  35608. },
  35609. {
  35610. name: "Bigger Bat",
  35611. height: math.unit(10000, "miles")
  35612. },
  35613. {
  35614. name: "Solar Sized Bat",
  35615. height: math.unit(100, "AU")
  35616. },
  35617. {
  35618. name: "Galactic Bat",
  35619. height: math.unit(200000, "lightyears")
  35620. },
  35621. {
  35622. name: "Universally Known Bat",
  35623. height: math.unit(1, "universe")
  35624. },
  35625. ]
  35626. ))
  35627. characterMakers.push(() => makeCharacter(
  35628. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35629. {
  35630. front: {
  35631. height: math.unit(6 + 11/12, "feet"),
  35632. weight: math.unit(250, "lb"),
  35633. name: "Front",
  35634. image: {
  35635. source: "./media/characters/cookiecat/front.svg",
  35636. extra: 893/827,
  35637. bottom: 14/907
  35638. }
  35639. },
  35640. },
  35641. [
  35642. {
  35643. name: "Micro",
  35644. height: math.unit(3, "inches")
  35645. },
  35646. {
  35647. name: "Normal",
  35648. height: math.unit(6 + 11/12, "feet"),
  35649. default: true
  35650. },
  35651. {
  35652. name: "Macro",
  35653. height: math.unit(100, "feet")
  35654. },
  35655. {
  35656. name: "Macro+",
  35657. height: math.unit(404, "feet")
  35658. },
  35659. {
  35660. name: "Megamacro",
  35661. height: math.unit(165, "miles")
  35662. },
  35663. {
  35664. name: "Planetary",
  35665. height: math.unit(4600, "miles")
  35666. },
  35667. ]
  35668. ))
  35669. characterMakers.push(() => makeCharacter(
  35670. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35671. {
  35672. front: {
  35673. height: math.unit(10 + 3/12, "feet"),
  35674. weight: math.unit(1500, "lb"),
  35675. name: "Front",
  35676. image: {
  35677. source: "./media/characters/tux-kusanagi/front.svg",
  35678. extra: 944/840,
  35679. bottom: 39/983
  35680. }
  35681. },
  35682. back: {
  35683. height: math.unit(10 + 3/12, "feet"),
  35684. weight: math.unit(1500, "lb"),
  35685. name: "Back",
  35686. image: {
  35687. source: "./media/characters/tux-kusanagi/back.svg",
  35688. extra: 941/842,
  35689. bottom: 28/969
  35690. }
  35691. },
  35692. rump: {
  35693. height: math.unit(5.25, "feet"),
  35694. name: "Rump",
  35695. image: {
  35696. source: "./media/characters/tux-kusanagi/rump.svg"
  35697. }
  35698. },
  35699. beak: {
  35700. height: math.unit(1.54, "feet"),
  35701. name: "Beak",
  35702. image: {
  35703. source: "./media/characters/tux-kusanagi/beak.svg"
  35704. }
  35705. },
  35706. },
  35707. [
  35708. {
  35709. name: "Normal",
  35710. height: math.unit(10 + 3/12, "feet"),
  35711. default: true
  35712. },
  35713. ]
  35714. ))
  35715. characterMakers.push(() => makeCharacter(
  35716. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35717. {
  35718. front: {
  35719. height: math.unit(58, "feet"),
  35720. weight: math.unit(200, "tons"),
  35721. name: "Front",
  35722. image: {
  35723. source: "./media/characters/uzarmazari/front.svg",
  35724. extra: 1575/1455,
  35725. bottom: 152/1727
  35726. }
  35727. },
  35728. back: {
  35729. height: math.unit(58, "feet"),
  35730. weight: math.unit(200, "tons"),
  35731. name: "Back",
  35732. image: {
  35733. source: "./media/characters/uzarmazari/back.svg",
  35734. extra: 1585/1510,
  35735. bottom: 157/1742
  35736. }
  35737. },
  35738. head: {
  35739. height: math.unit(26, "feet"),
  35740. name: "Head",
  35741. image: {
  35742. source: "./media/characters/uzarmazari/head.svg"
  35743. }
  35744. },
  35745. },
  35746. [
  35747. {
  35748. name: "Normal",
  35749. height: math.unit(58, "feet"),
  35750. default: true
  35751. },
  35752. ]
  35753. ))
  35754. characterMakers.push(() => makeCharacter(
  35755. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35756. {
  35757. side: {
  35758. height: math.unit(15, "feet"),
  35759. name: "Side",
  35760. image: {
  35761. source: "./media/characters/akitu/side.svg",
  35762. extra: 1421/1321,
  35763. bottom: 157/1578
  35764. }
  35765. },
  35766. front: {
  35767. height: math.unit(15, "feet"),
  35768. name: "Front",
  35769. image: {
  35770. source: "./media/characters/akitu/front.svg",
  35771. extra: 1435/1326,
  35772. bottom: 232/1667
  35773. }
  35774. },
  35775. },
  35776. [
  35777. {
  35778. name: "Normal",
  35779. height: math.unit(15, "feet"),
  35780. default: true
  35781. },
  35782. ]
  35783. ))
  35784. characterMakers.push(() => makeCharacter(
  35785. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35786. {
  35787. front: {
  35788. height: math.unit(10 + 8/12, "feet"),
  35789. name: "Front",
  35790. image: {
  35791. source: "./media/characters/azalie-croixland/front.svg",
  35792. extra: 1972/1856,
  35793. bottom: 31/2003
  35794. }
  35795. },
  35796. },
  35797. [
  35798. {
  35799. name: "Original Height",
  35800. height: math.unit(5 + 4/12, "feet")
  35801. },
  35802. {
  35803. name: "Normal Height",
  35804. height: math.unit(10 + 8/12, "feet"),
  35805. default: true
  35806. },
  35807. ]
  35808. ))
  35809. characterMakers.push(() => makeCharacter(
  35810. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35811. {
  35812. side: {
  35813. height: math.unit(7 + 1/12, "feet"),
  35814. weight: math.unit(245, "lb"),
  35815. name: "Side",
  35816. image: {
  35817. source: "./media/characters/kavus-kazian/side.svg",
  35818. extra: 349/342,
  35819. bottom: 15/364
  35820. }
  35821. },
  35822. },
  35823. [
  35824. {
  35825. name: "Normal",
  35826. height: math.unit(7 + 1/12, "feet"),
  35827. default: true
  35828. },
  35829. ]
  35830. ))
  35831. characterMakers.push(() => makeCharacter(
  35832. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35833. {
  35834. normalFront: {
  35835. height: math.unit(5 + 11/12, "feet"),
  35836. name: "Front",
  35837. image: {
  35838. source: "./media/characters/moonlight-rose/normal-front.svg",
  35839. extra: 1980/1825,
  35840. bottom: 18/1998
  35841. },
  35842. form: "normal",
  35843. default: true
  35844. },
  35845. normalBack: {
  35846. height: math.unit(5 + 11/12, "feet"),
  35847. name: "Back",
  35848. image: {
  35849. source: "./media/characters/moonlight-rose/normal-back.svg",
  35850. extra: 2010/1839,
  35851. bottom: 10/2020
  35852. },
  35853. form: "normal"
  35854. },
  35855. demonFront: {
  35856. height: math.unit(1.5, "earths"),
  35857. name: "Front",
  35858. image: {
  35859. source: "./media/characters/moonlight-rose/demon.svg",
  35860. extra: 1400/1294,
  35861. bottom: 45/1445
  35862. },
  35863. form: "demon",
  35864. default: true
  35865. },
  35866. terraFront: {
  35867. height: math.unit(1.5, "earths"),
  35868. name: "Front",
  35869. image: {
  35870. source: "./media/characters/moonlight-rose/terra.svg"
  35871. },
  35872. form: "terra",
  35873. default: true
  35874. },
  35875. jupiterFront: {
  35876. height: math.unit(69911*2, "km"),
  35877. name: "Front",
  35878. image: {
  35879. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35880. extra: 1367/1286,
  35881. bottom: 55/1422
  35882. },
  35883. form: "jupiter",
  35884. default: true
  35885. },
  35886. neptuneFront: {
  35887. height: math.unit(24622*2, "feet"),
  35888. name: "Front",
  35889. image: {
  35890. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35891. extra: 1851/1712,
  35892. bottom: 0/1851
  35893. },
  35894. form: "neptune",
  35895. default: true
  35896. },
  35897. },
  35898. [
  35899. {
  35900. name: "\"Natural\" Height",
  35901. height: math.unit(5 + 11/12, "feet"),
  35902. form: "normal"
  35903. },
  35904. {
  35905. name: "Smallest comfortable size",
  35906. height: math.unit(40, "meters"),
  35907. form: "normal"
  35908. },
  35909. {
  35910. name: "Common size",
  35911. height: math.unit(50, "km"),
  35912. form: "normal",
  35913. default: true
  35914. },
  35915. {
  35916. name: "Normal",
  35917. height: math.unit(1.5, "earths"),
  35918. form: "demon",
  35919. default: true
  35920. },
  35921. {
  35922. name: "Universal",
  35923. height: math.unit(15, "universes"),
  35924. form: "demon"
  35925. },
  35926. {
  35927. name: "Earth",
  35928. height: math.unit(1.5, "earths"),
  35929. form: "terra",
  35930. default: true
  35931. },
  35932. {
  35933. name: "Super Earth",
  35934. height: math.unit(67.5, "earths"),
  35935. form: "terra"
  35936. },
  35937. {
  35938. name: "Doesn't fit in a solar system...",
  35939. height: math.unit(1, "galaxy"),
  35940. form: "terra"
  35941. },
  35942. {
  35943. name: "Saturn",
  35944. height: math.unit(58232*2, "km"),
  35945. form: "jupiter"
  35946. },
  35947. {
  35948. name: "Jupiter",
  35949. height: math.unit(69911*2, "km"),
  35950. form: "jupiter",
  35951. default: true
  35952. },
  35953. {
  35954. name: "HD 100546 b",
  35955. height: math.unit(482938, "km"),
  35956. form: "jupiter"
  35957. },
  35958. {
  35959. name: "Enceladus",
  35960. height: math.unit(513*2, "km"),
  35961. form: "neptune"
  35962. },
  35963. {
  35964. name: "Europe",
  35965. height: math.unit(1560*2, "km"),
  35966. form: "neptune"
  35967. },
  35968. {
  35969. name: "Neptune",
  35970. height: math.unit(24622*2, "km"),
  35971. form: "neptune",
  35972. default: true
  35973. },
  35974. {
  35975. name: "CoRoT-9b",
  35976. height: math.unit(75067*2, "km"),
  35977. form: "neptune"
  35978. },
  35979. ],
  35980. {
  35981. "normal": {
  35982. name: "Normal",
  35983. default: true
  35984. },
  35985. "demon": {
  35986. name: "Demon"
  35987. },
  35988. "terra": {
  35989. name: "Terra"
  35990. },
  35991. "jupiter": {
  35992. name: "Jupiter"
  35993. },
  35994. "neptune": {
  35995. name: "Neptune"
  35996. }
  35997. }
  35998. ))
  35999. characterMakers.push(() => makeCharacter(
  36000. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36001. {
  36002. front: {
  36003. height: math.unit(16, "feet"),
  36004. weight: math.unit(610, "kg"),
  36005. name: "Front",
  36006. image: {
  36007. source: "./media/characters/huckle/front.svg",
  36008. extra: 1731/1625,
  36009. bottom: 33/1764
  36010. }
  36011. },
  36012. back: {
  36013. height: math.unit(16, "feet"),
  36014. weight: math.unit(610, "kg"),
  36015. name: "Back",
  36016. image: {
  36017. source: "./media/characters/huckle/back.svg",
  36018. extra: 1738/1651,
  36019. bottom: 37/1775
  36020. }
  36021. },
  36022. laughing: {
  36023. height: math.unit(3.75, "feet"),
  36024. name: "Laughing",
  36025. image: {
  36026. source: "./media/characters/huckle/laughing.svg"
  36027. }
  36028. },
  36029. angry: {
  36030. height: math.unit(4.15, "feet"),
  36031. name: "Angry",
  36032. image: {
  36033. source: "./media/characters/huckle/angry.svg"
  36034. }
  36035. },
  36036. },
  36037. [
  36038. {
  36039. name: "Normal",
  36040. height: math.unit(16, "feet"),
  36041. default: true
  36042. },
  36043. {
  36044. name: "Mini Macro",
  36045. height: math.unit(463, "feet")
  36046. },
  36047. {
  36048. name: "Macro",
  36049. height: math.unit(1680, "meters")
  36050. },
  36051. {
  36052. name: "Mega Macro",
  36053. height: math.unit(175, "km")
  36054. },
  36055. {
  36056. name: "Terra Macro",
  36057. height: math.unit(32, "gigameters")
  36058. },
  36059. {
  36060. name: "Multiverse+",
  36061. height: math.unit(2.56e23, "yottameters")
  36062. },
  36063. ]
  36064. ))
  36065. characterMakers.push(() => makeCharacter(
  36066. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36067. {
  36068. front: {
  36069. height: math.unit(6 + 9/12, "feet"),
  36070. weight: math.unit(280, "lb"),
  36071. name: "Front",
  36072. image: {
  36073. source: "./media/characters/candy/front.svg",
  36074. extra: 234/217,
  36075. bottom: 11/245
  36076. }
  36077. },
  36078. },
  36079. [
  36080. {
  36081. name: "Really Small",
  36082. height: math.unit(0.1, "nm")
  36083. },
  36084. {
  36085. name: "Micro",
  36086. height: math.unit(2, "inches")
  36087. },
  36088. {
  36089. name: "Normal",
  36090. height: math.unit(6 + 9/12, "feet"),
  36091. default: true
  36092. },
  36093. {
  36094. name: "Small Macro",
  36095. height: math.unit(69, "feet")
  36096. },
  36097. {
  36098. name: "Macro",
  36099. height: math.unit(160, "feet")
  36100. },
  36101. {
  36102. name: "Megamacro",
  36103. height: math.unit(22000, "miles")
  36104. },
  36105. {
  36106. name: "Gigamacro",
  36107. height: math.unit(50000, "miles")
  36108. },
  36109. ]
  36110. ))
  36111. characterMakers.push(() => makeCharacter(
  36112. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36113. {
  36114. front: {
  36115. height: math.unit(4, "feet"),
  36116. weight: math.unit(90, "lb"),
  36117. name: "Front",
  36118. image: {
  36119. source: "./media/characters/joey-mcdonald/front.svg",
  36120. extra: 1059/852,
  36121. bottom: 33/1092
  36122. }
  36123. },
  36124. back: {
  36125. height: math.unit(4, "feet"),
  36126. weight: math.unit(90, "lb"),
  36127. name: "Back",
  36128. image: {
  36129. source: "./media/characters/joey-mcdonald/back.svg",
  36130. extra: 1077/879,
  36131. bottom: 5/1082
  36132. }
  36133. },
  36134. frontKobold: {
  36135. height: math.unit(4, "feet"),
  36136. weight: math.unit(100, "lb"),
  36137. name: "Front-kobold",
  36138. image: {
  36139. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36140. extra: 1480/1367,
  36141. bottom: 0/1480
  36142. }
  36143. },
  36144. backKobold: {
  36145. height: math.unit(4, "feet"),
  36146. weight: math.unit(100, "lb"),
  36147. name: "Back-kobold",
  36148. image: {
  36149. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36150. extra: 1449/1361,
  36151. bottom: 0/1449
  36152. }
  36153. },
  36154. },
  36155. [
  36156. {
  36157. name: "Normal",
  36158. height: math.unit(4, "feet"),
  36159. default: true
  36160. },
  36161. ]
  36162. ))
  36163. characterMakers.push(() => makeCharacter(
  36164. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36165. {
  36166. front: {
  36167. height: math.unit(12 + 6/12, "feet"),
  36168. name: "Front",
  36169. image: {
  36170. source: "./media/characters/kass-lockheed/front.svg",
  36171. extra: 354/343,
  36172. bottom: 9/363
  36173. }
  36174. },
  36175. back: {
  36176. height: math.unit(12 + 6/12, "feet"),
  36177. name: "Back",
  36178. image: {
  36179. source: "./media/characters/kass-lockheed/back.svg",
  36180. extra: 364/352,
  36181. bottom: 3/367
  36182. }
  36183. },
  36184. dick: {
  36185. height: math.unit(3.12, "feet"),
  36186. name: "Dick",
  36187. image: {
  36188. source: "./media/characters/kass-lockheed/dick.svg"
  36189. }
  36190. },
  36191. head: {
  36192. height: math.unit(2.6, "feet"),
  36193. name: "Head",
  36194. image: {
  36195. source: "./media/characters/kass-lockheed/head.svg"
  36196. }
  36197. },
  36198. bleh: {
  36199. height: math.unit(2.85, "feet"),
  36200. name: "Bleh",
  36201. image: {
  36202. source: "./media/characters/kass-lockheed/bleh.svg"
  36203. }
  36204. },
  36205. smug: {
  36206. height: math.unit(2.85, "feet"),
  36207. name: "Smug",
  36208. image: {
  36209. source: "./media/characters/kass-lockheed/smug.svg"
  36210. }
  36211. },
  36212. },
  36213. [
  36214. {
  36215. name: "Normal",
  36216. height: math.unit(12 + 6/12, "feet"),
  36217. default: true
  36218. },
  36219. ]
  36220. ))
  36221. characterMakers.push(() => makeCharacter(
  36222. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36223. {
  36224. front: {
  36225. height: math.unit(6 + 2/12, "feet"),
  36226. name: "Front",
  36227. image: {
  36228. source: "./media/characters/taylor/front.svg",
  36229. extra: 639/495,
  36230. bottom: 12/651
  36231. }
  36232. },
  36233. },
  36234. [
  36235. {
  36236. name: "Normal",
  36237. height: math.unit(6 + 2/12, "feet"),
  36238. default: true
  36239. },
  36240. {
  36241. name: "Big",
  36242. height: math.unit(15, "feet")
  36243. },
  36244. {
  36245. name: "Lorg",
  36246. height: math.unit(80, "feet")
  36247. },
  36248. {
  36249. name: "Too Lorg",
  36250. height: math.unit(120, "feet")
  36251. },
  36252. ]
  36253. ))
  36254. characterMakers.push(() => makeCharacter(
  36255. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36256. {
  36257. front: {
  36258. height: math.unit(15, "feet"),
  36259. name: "Front",
  36260. image: {
  36261. source: "./media/characters/kaizer/front.svg",
  36262. extra: 1612/1436,
  36263. bottom: 43/1655
  36264. }
  36265. },
  36266. },
  36267. [
  36268. {
  36269. name: "Normal",
  36270. height: math.unit(15, "feet"),
  36271. default: true
  36272. },
  36273. ]
  36274. ))
  36275. characterMakers.push(() => makeCharacter(
  36276. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36277. {
  36278. front: {
  36279. height: math.unit(2, "feet"),
  36280. weight: math.unit(30, "lb"),
  36281. name: "Front",
  36282. image: {
  36283. source: "./media/characters/sandy/front.svg",
  36284. extra: 1439/1307,
  36285. bottom: 194/1633
  36286. }
  36287. },
  36288. },
  36289. [
  36290. {
  36291. name: "Normal",
  36292. height: math.unit(2, "feet"),
  36293. default: true
  36294. },
  36295. ]
  36296. ))
  36297. characterMakers.push(() => makeCharacter(
  36298. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36299. {
  36300. front: {
  36301. height: math.unit(3, "feet"),
  36302. name: "Front",
  36303. image: {
  36304. source: "./media/characters/mellvi/front.svg",
  36305. extra: 1831/1630,
  36306. bottom: 58/1889
  36307. }
  36308. },
  36309. },
  36310. [
  36311. {
  36312. name: "Normal",
  36313. height: math.unit(3, "feet"),
  36314. default: true
  36315. },
  36316. ]
  36317. ))
  36318. characterMakers.push(() => makeCharacter(
  36319. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36320. {
  36321. front: {
  36322. height: math.unit(5 + 11/12, "feet"),
  36323. weight: math.unit(200, "lb"),
  36324. name: "Front",
  36325. image: {
  36326. source: "./media/characters/shirou/front.svg",
  36327. extra: 2491/2383,
  36328. bottom: 189/2680
  36329. }
  36330. },
  36331. back: {
  36332. height: math.unit(5 + 11/12, "feet"),
  36333. weight: math.unit(200, "lb"),
  36334. name: "Back",
  36335. image: {
  36336. source: "./media/characters/shirou/back.svg",
  36337. extra: 2554/2450,
  36338. bottom: 76/2630
  36339. }
  36340. },
  36341. },
  36342. [
  36343. {
  36344. name: "Normal",
  36345. height: math.unit(5 + 11/12, "feet"),
  36346. default: true
  36347. },
  36348. ]
  36349. ))
  36350. characterMakers.push(() => makeCharacter(
  36351. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36352. {
  36353. front: {
  36354. height: math.unit(6 + 3/12, "feet"),
  36355. weight: math.unit(177, "lb"),
  36356. name: "Front",
  36357. image: {
  36358. source: "./media/characters/noryu/front.svg",
  36359. extra: 973/885,
  36360. bottom: 10/983
  36361. }
  36362. },
  36363. },
  36364. [
  36365. {
  36366. name: "Normal",
  36367. height: math.unit(6 + 3/12, "feet"),
  36368. default: true
  36369. },
  36370. ]
  36371. ))
  36372. characterMakers.push(() => makeCharacter(
  36373. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36374. {
  36375. front: {
  36376. height: math.unit(5 + 6/12, "feet"),
  36377. weight: math.unit(170, "lb"),
  36378. name: "Front",
  36379. image: {
  36380. source: "./media/characters/mevolas-rubenido/front.svg",
  36381. extra: 2109/1901,
  36382. bottom: 96/2205
  36383. }
  36384. },
  36385. },
  36386. [
  36387. {
  36388. name: "Normal",
  36389. height: math.unit(5 + 6/12, "feet"),
  36390. default: true
  36391. },
  36392. ]
  36393. ))
  36394. characterMakers.push(() => makeCharacter(
  36395. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36396. {
  36397. front: {
  36398. height: math.unit(100, "feet"),
  36399. name: "Front",
  36400. image: {
  36401. source: "./media/characters/dee/front.svg",
  36402. extra: 2153/2036,
  36403. bottom: 59/2212
  36404. }
  36405. },
  36406. back: {
  36407. height: math.unit(100, "feet"),
  36408. name: "Back",
  36409. image: {
  36410. source: "./media/characters/dee/back.svg",
  36411. extra: 2183/2058,
  36412. bottom: 75/2258
  36413. }
  36414. },
  36415. foot: {
  36416. height: math.unit(19.43, "feet"),
  36417. name: "Foot",
  36418. image: {
  36419. source: "./media/characters/dee/foot.svg"
  36420. }
  36421. },
  36422. hoof: {
  36423. height: math.unit(20.6, "feet"),
  36424. name: "Hoof",
  36425. image: {
  36426. source: "./media/characters/dee/hoof.svg"
  36427. }
  36428. },
  36429. },
  36430. [
  36431. {
  36432. name: "Macro",
  36433. height: math.unit(100, "feet"),
  36434. default: true
  36435. },
  36436. ]
  36437. ))
  36438. characterMakers.push(() => makeCharacter(
  36439. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36440. {
  36441. front: {
  36442. height: math.unit(5 + 6/12, "feet"),
  36443. name: "Front",
  36444. image: {
  36445. source: "./media/characters/teh/front.svg",
  36446. extra: 1002/847,
  36447. bottom: 62/1064
  36448. }
  36449. },
  36450. },
  36451. [
  36452. {
  36453. name: "Normal",
  36454. height: math.unit(5 + 6/12, "feet"),
  36455. default: true
  36456. },
  36457. ]
  36458. ))
  36459. characterMakers.push(() => makeCharacter(
  36460. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36461. {
  36462. side: {
  36463. height: math.unit(6 + 1/12, "feet"),
  36464. weight: math.unit(204, "lb"),
  36465. name: "Side",
  36466. image: {
  36467. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36468. extra: 974/775,
  36469. bottom: 169/1143
  36470. }
  36471. },
  36472. sitting: {
  36473. height: math.unit(6 + 2/12, "feet"),
  36474. weight: math.unit(204, "lb"),
  36475. name: "Sitting",
  36476. image: {
  36477. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36478. extra: 1175/964,
  36479. bottom: 378/1553
  36480. }
  36481. },
  36482. },
  36483. [
  36484. {
  36485. name: "Normal",
  36486. height: math.unit(6 + 1/12, "feet"),
  36487. default: true
  36488. },
  36489. ]
  36490. ))
  36491. characterMakers.push(() => makeCharacter(
  36492. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36493. {
  36494. front: {
  36495. height: math.unit(6, "inches"),
  36496. name: "Front",
  36497. image: {
  36498. source: "./media/characters/tululi/front.svg",
  36499. extra: 1997/1876,
  36500. bottom: 20/2017
  36501. }
  36502. },
  36503. },
  36504. [
  36505. {
  36506. name: "Normal",
  36507. height: math.unit(6, "inches"),
  36508. default: true
  36509. },
  36510. ]
  36511. ))
  36512. characterMakers.push(() => makeCharacter(
  36513. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36514. {
  36515. front: {
  36516. height: math.unit(4 + 1/12, "feet"),
  36517. name: "Front",
  36518. image: {
  36519. source: "./media/characters/star/front.svg",
  36520. extra: 1493/1189,
  36521. bottom: 48/1541
  36522. }
  36523. },
  36524. },
  36525. [
  36526. {
  36527. name: "Normal",
  36528. height: math.unit(4 + 1/12, "feet"),
  36529. default: true
  36530. },
  36531. ]
  36532. ))
  36533. characterMakers.push(() => makeCharacter(
  36534. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36535. {
  36536. front: {
  36537. height: math.unit(6 + 3/12, "feet"),
  36538. name: "Front",
  36539. image: {
  36540. source: "./media/characters/comet/front.svg",
  36541. extra: 1681/1462,
  36542. bottom: 26/1707
  36543. }
  36544. },
  36545. },
  36546. [
  36547. {
  36548. name: "Normal",
  36549. height: math.unit(6 + 3/12, "feet"),
  36550. default: true
  36551. },
  36552. ]
  36553. ))
  36554. characterMakers.push(() => makeCharacter(
  36555. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36556. {
  36557. front: {
  36558. height: math.unit(950, "feet"),
  36559. name: "Front",
  36560. image: {
  36561. source: "./media/characters/vortex/front.svg",
  36562. extra: 1497/1434,
  36563. bottom: 56/1553
  36564. }
  36565. },
  36566. maw: {
  36567. height: math.unit(285, "feet"),
  36568. name: "Maw",
  36569. image: {
  36570. source: "./media/characters/vortex/maw.svg"
  36571. }
  36572. },
  36573. },
  36574. [
  36575. {
  36576. name: "Macro",
  36577. height: math.unit(950, "feet"),
  36578. default: true
  36579. },
  36580. ]
  36581. ))
  36582. characterMakers.push(() => makeCharacter(
  36583. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36584. {
  36585. front: {
  36586. height: math.unit(600, "feet"),
  36587. weight: math.unit(0.02, "grams"),
  36588. name: "Front",
  36589. image: {
  36590. source: "./media/characters/doodle/front.svg",
  36591. extra: 1578/1413,
  36592. bottom: 37/1615
  36593. }
  36594. },
  36595. },
  36596. [
  36597. {
  36598. name: "Macro",
  36599. height: math.unit(600, "feet"),
  36600. default: true
  36601. },
  36602. ]
  36603. ))
  36604. characterMakers.push(() => makeCharacter(
  36605. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36606. {
  36607. front: {
  36608. height: math.unit(6 + 6/12, "feet"),
  36609. name: "Front",
  36610. image: {
  36611. source: "./media/characters/jai/front.svg",
  36612. extra: 1645/1534,
  36613. bottom: 115/1760
  36614. }
  36615. },
  36616. },
  36617. [
  36618. {
  36619. name: "Normal",
  36620. height: math.unit(6 + 6/12, "feet"),
  36621. default: true
  36622. },
  36623. ]
  36624. ))
  36625. characterMakers.push(() => makeCharacter(
  36626. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36627. {
  36628. front: {
  36629. height: math.unit(6 + 8/12, "feet"),
  36630. name: "Front",
  36631. image: {
  36632. source: "./media/characters/pixel/front.svg",
  36633. extra: 1900/1735,
  36634. bottom: 63/1963
  36635. }
  36636. },
  36637. },
  36638. [
  36639. {
  36640. name: "Normal",
  36641. height: math.unit(6 + 8/12, "feet"),
  36642. default: true
  36643. },
  36644. ]
  36645. ))
  36646. characterMakers.push(() => makeCharacter(
  36647. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36648. {
  36649. back: {
  36650. height: math.unit(4 + 1/12, "feet"),
  36651. weight: math.unit(75, "lb"),
  36652. name: "Back",
  36653. image: {
  36654. source: "./media/characters/rhett/back.svg",
  36655. extra: 930/878,
  36656. bottom: 25/955
  36657. }
  36658. },
  36659. front: {
  36660. height: math.unit(4 + 1/12, "feet"),
  36661. weight: math.unit(75, "lb"),
  36662. name: "Front",
  36663. image: {
  36664. source: "./media/characters/rhett/front.svg",
  36665. extra: 1682/1586,
  36666. bottom: 92/1774
  36667. }
  36668. },
  36669. },
  36670. [
  36671. {
  36672. name: "Micro",
  36673. height: math.unit(8, "inches")
  36674. },
  36675. {
  36676. name: "Tiny",
  36677. height: math.unit(2, "feet")
  36678. },
  36679. {
  36680. name: "Normal",
  36681. height: math.unit(4 + 1/12, "feet"),
  36682. default: true
  36683. },
  36684. ]
  36685. ))
  36686. characterMakers.push(() => makeCharacter(
  36687. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36688. {
  36689. front: {
  36690. height: math.unit(3 + 3/12, "feet"),
  36691. name: "Front",
  36692. image: {
  36693. source: "./media/characters/penny/front.svg",
  36694. extra: 1406/1311,
  36695. bottom: 26/1432
  36696. }
  36697. },
  36698. },
  36699. [
  36700. {
  36701. name: "Normal",
  36702. height: math.unit(3 + 3/12, "feet"),
  36703. default: true
  36704. },
  36705. ]
  36706. ))
  36707. characterMakers.push(() => makeCharacter(
  36708. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36709. {
  36710. front: {
  36711. height: math.unit(4 + 11/12, "feet"),
  36712. name: "Front",
  36713. image: {
  36714. source: "./media/characters/monty/front.svg",
  36715. extra: 1479/1209,
  36716. bottom: 0/1479
  36717. }
  36718. },
  36719. },
  36720. [
  36721. {
  36722. name: "Normal",
  36723. height: math.unit(4 + 11/12, "feet"),
  36724. default: true
  36725. },
  36726. ]
  36727. ))
  36728. characterMakers.push(() => makeCharacter(
  36729. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36730. {
  36731. front: {
  36732. height: math.unit(8 + 4/12, "feet"),
  36733. name: "Front",
  36734. image: {
  36735. source: "./media/characters/sterling/front.svg",
  36736. extra: 1420/1236,
  36737. bottom: 27/1447
  36738. }
  36739. },
  36740. },
  36741. [
  36742. {
  36743. name: "Normal",
  36744. height: math.unit(8 + 4/12, "feet"),
  36745. default: true
  36746. },
  36747. ]
  36748. ))
  36749. characterMakers.push(() => makeCharacter(
  36750. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36751. {
  36752. front: {
  36753. height: math.unit(15, "feet"),
  36754. name: "Front",
  36755. image: {
  36756. source: "./media/characters/marble/front.svg",
  36757. extra: 973/937,
  36758. bottom: 32/1005
  36759. }
  36760. },
  36761. },
  36762. [
  36763. {
  36764. name: "Normal",
  36765. height: math.unit(15, "feet"),
  36766. default: true
  36767. },
  36768. ]
  36769. ))
  36770. characterMakers.push(() => makeCharacter(
  36771. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36772. {
  36773. front: {
  36774. height: math.unit(3, "inches"),
  36775. name: "Front",
  36776. image: {
  36777. source: "./media/characters/powder/front.svg",
  36778. extra: 1504/1334,
  36779. bottom: 518/2022
  36780. }
  36781. },
  36782. },
  36783. [
  36784. {
  36785. name: "Normal",
  36786. height: math.unit(3, "inches"),
  36787. default: true
  36788. },
  36789. ]
  36790. ))
  36791. characterMakers.push(() => makeCharacter(
  36792. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36793. {
  36794. front: {
  36795. height: math.unit(4 + 5/12, "feet"),
  36796. name: "Front",
  36797. image: {
  36798. source: "./media/characters/joey-raccoon/front.svg",
  36799. extra: 1273/1197,
  36800. bottom: 0/1273
  36801. }
  36802. },
  36803. },
  36804. [
  36805. {
  36806. name: "Normal",
  36807. height: math.unit(4 + 5/12, "feet"),
  36808. default: true
  36809. },
  36810. ]
  36811. ))
  36812. characterMakers.push(() => makeCharacter(
  36813. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36814. {
  36815. front: {
  36816. height: math.unit(8 + 4/12, "feet"),
  36817. name: "Front",
  36818. image: {
  36819. source: "./media/characters/vick/front.svg",
  36820. extra: 2187/2118,
  36821. bottom: 47/2234
  36822. }
  36823. },
  36824. },
  36825. [
  36826. {
  36827. name: "Normal",
  36828. height: math.unit(8 + 4/12, "feet"),
  36829. default: true
  36830. },
  36831. ]
  36832. ))
  36833. characterMakers.push(() => makeCharacter(
  36834. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36835. {
  36836. front: {
  36837. height: math.unit(5 + 5/12, "feet"),
  36838. name: "Front",
  36839. image: {
  36840. source: "./media/characters/mitsy/front.svg",
  36841. extra: 1842/1695,
  36842. bottom: 0/1842
  36843. }
  36844. },
  36845. },
  36846. [
  36847. {
  36848. name: "Normal",
  36849. height: math.unit(5 + 5/12, "feet"),
  36850. default: true
  36851. },
  36852. ]
  36853. ))
  36854. characterMakers.push(() => makeCharacter(
  36855. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36856. {
  36857. front: {
  36858. height: math.unit(6 + 3/12, "feet"),
  36859. name: "Front",
  36860. image: {
  36861. source: "./media/characters/silvy/front.svg",
  36862. extra: 1995/1836,
  36863. bottom: 225/2220
  36864. }
  36865. },
  36866. },
  36867. [
  36868. {
  36869. name: "Normal",
  36870. height: math.unit(6 + 3/12, "feet"),
  36871. default: true
  36872. },
  36873. ]
  36874. ))
  36875. characterMakers.push(() => makeCharacter(
  36876. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36877. {
  36878. front: {
  36879. height: math.unit(3 + 8/12, "feet"),
  36880. name: "Front",
  36881. image: {
  36882. source: "./media/characters/rodney/front.svg",
  36883. extra: 1956/1747,
  36884. bottom: 31/1987
  36885. }
  36886. },
  36887. frontDressed: {
  36888. height: math.unit(2.9, "feet"),
  36889. name: "Front (Dressed)",
  36890. image: {
  36891. source: "./media/characters/rodney/front-dressed.svg",
  36892. extra: 1382/1241,
  36893. bottom: 385/1767
  36894. }
  36895. },
  36896. },
  36897. [
  36898. {
  36899. name: "Normal",
  36900. height: math.unit(3 + 8/12, "feet"),
  36901. default: true
  36902. },
  36903. ]
  36904. ))
  36905. characterMakers.push(() => makeCharacter(
  36906. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36907. {
  36908. front: {
  36909. height: math.unit(5 + 9/12, "feet"),
  36910. weight: math.unit(194, "lbs"),
  36911. name: "Front",
  36912. image: {
  36913. source: "./media/characters/zakail-sudekai/front.svg",
  36914. extra: 2696/2533,
  36915. bottom: 248/2944
  36916. }
  36917. },
  36918. maw: {
  36919. height: math.unit(1.35, "feet"),
  36920. name: "Maw",
  36921. image: {
  36922. source: "./media/characters/zakail-sudekai/maw.svg"
  36923. }
  36924. },
  36925. },
  36926. [
  36927. {
  36928. name: "Normal",
  36929. height: math.unit(5 + 9/12, "feet"),
  36930. default: true
  36931. },
  36932. ]
  36933. ))
  36934. characterMakers.push(() => makeCharacter(
  36935. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36936. {
  36937. front: {
  36938. height: math.unit(8 + 4/12, "feet"),
  36939. weight: math.unit(1200, "lb"),
  36940. name: "Front",
  36941. image: {
  36942. source: "./media/characters/eleanor/front.svg",
  36943. extra: 1226/1192,
  36944. bottom: 52/1278
  36945. }
  36946. },
  36947. back: {
  36948. height: math.unit(8 + 4/12, "feet"),
  36949. weight: math.unit(1200, "lb"),
  36950. name: "Back",
  36951. image: {
  36952. source: "./media/characters/eleanor/back.svg",
  36953. extra: 1242/1184,
  36954. bottom: 60/1302
  36955. }
  36956. },
  36957. head: {
  36958. height: math.unit(2.62, "feet"),
  36959. name: "Head",
  36960. image: {
  36961. source: "./media/characters/eleanor/head.svg"
  36962. }
  36963. },
  36964. },
  36965. [
  36966. {
  36967. name: "Normal",
  36968. height: math.unit(8 + 4/12, "feet"),
  36969. default: true
  36970. },
  36971. ]
  36972. ))
  36973. characterMakers.push(() => makeCharacter(
  36974. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36975. {
  36976. front: {
  36977. height: math.unit(8 + 4/12, "feet"),
  36978. weight: math.unit(750, "lb"),
  36979. name: "Front",
  36980. image: {
  36981. source: "./media/characters/tanya/front.svg",
  36982. extra: 1749/1615,
  36983. bottom: 33/1782
  36984. }
  36985. },
  36986. },
  36987. [
  36988. {
  36989. name: "Normal",
  36990. height: math.unit(8 + 4/12, "feet"),
  36991. default: true
  36992. },
  36993. ]
  36994. ))
  36995. characterMakers.push(() => makeCharacter(
  36996. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36997. {
  36998. front: {
  36999. height: math.unit(5, "feet"),
  37000. weight: math.unit(225, "lb"),
  37001. name: "Front",
  37002. image: {
  37003. source: "./media/characters/cindy/front.svg",
  37004. extra: 1320/1250,
  37005. bottom: 42/1362
  37006. }
  37007. },
  37008. frontDressed: {
  37009. height: math.unit(5, "feet"),
  37010. weight: math.unit(225, "lb"),
  37011. name: "Front (Dressed)",
  37012. image: {
  37013. source: "./media/characters/cindy/front-dressed.svg",
  37014. extra: 1320/1250,
  37015. bottom: 42/1362
  37016. }
  37017. },
  37018. back: {
  37019. height: math.unit(5, "feet"),
  37020. weight: math.unit(225, "lb"),
  37021. name: "Back",
  37022. image: {
  37023. source: "./media/characters/cindy/back.svg",
  37024. extra: 1384/1346,
  37025. bottom: 14/1398
  37026. }
  37027. },
  37028. },
  37029. [
  37030. {
  37031. name: "Normal",
  37032. height: math.unit(5, "feet"),
  37033. default: true
  37034. },
  37035. ]
  37036. ))
  37037. characterMakers.push(() => makeCharacter(
  37038. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37039. {
  37040. front: {
  37041. height: math.unit(6 + 9/12, "feet"),
  37042. weight: math.unit(440, "lb"),
  37043. name: "Front",
  37044. image: {
  37045. source: "./media/characters/wilbur-owen/front.svg",
  37046. extra: 1575/1448,
  37047. bottom: 72/1647
  37048. }
  37049. },
  37050. back: {
  37051. height: math.unit(6 + 9/12, "feet"),
  37052. weight: math.unit(440, "lb"),
  37053. name: "Back",
  37054. image: {
  37055. source: "./media/characters/wilbur-owen/back.svg",
  37056. extra: 1578/1445,
  37057. bottom: 36/1614
  37058. }
  37059. },
  37060. },
  37061. [
  37062. {
  37063. name: "Normal",
  37064. height: math.unit(6 + 9/12, "feet"),
  37065. default: true
  37066. },
  37067. ]
  37068. ))
  37069. characterMakers.push(() => makeCharacter(
  37070. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37071. {
  37072. front: {
  37073. height: math.unit(6 + 5/12, "feet"),
  37074. weight: math.unit(650, "lb"),
  37075. name: "Front",
  37076. image: {
  37077. source: "./media/characters/keegan/front.svg",
  37078. extra: 2387/2198,
  37079. bottom: 33/2420
  37080. }
  37081. },
  37082. side: {
  37083. height: math.unit(6 + 5/12, "feet"),
  37084. weight: math.unit(650, "lb"),
  37085. name: "Side",
  37086. image: {
  37087. source: "./media/characters/keegan/side.svg",
  37088. extra: 2390/2202,
  37089. bottom: 47/2437
  37090. }
  37091. },
  37092. back: {
  37093. height: math.unit(6 + 5/12, "feet"),
  37094. weight: math.unit(650, "lb"),
  37095. name: "Back",
  37096. image: {
  37097. source: "./media/characters/keegan/back.svg",
  37098. extra: 2418/2268,
  37099. bottom: 15/2433
  37100. }
  37101. },
  37102. frontSfw: {
  37103. height: math.unit(6 + 5/12, "feet"),
  37104. weight: math.unit(650, "lb"),
  37105. name: "Front (SFW)",
  37106. image: {
  37107. source: "./media/characters/keegan/front-sfw.svg",
  37108. extra: 2387/2198,
  37109. bottom: 33/2420
  37110. }
  37111. },
  37112. beans: {
  37113. height: math.unit(1.85, "feet"),
  37114. name: "Beans",
  37115. image: {
  37116. source: "./media/characters/keegan/beans.svg"
  37117. }
  37118. },
  37119. },
  37120. [
  37121. {
  37122. name: "Normal",
  37123. height: math.unit(6 + 5/12, "feet"),
  37124. default: true
  37125. },
  37126. ]
  37127. ))
  37128. characterMakers.push(() => makeCharacter(
  37129. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37130. {
  37131. front: {
  37132. height: math.unit(9, "feet"),
  37133. name: "Front",
  37134. image: {
  37135. source: "./media/characters/colton/front.svg",
  37136. extra: 1589/1326,
  37137. bottom: 139/1728
  37138. }
  37139. },
  37140. },
  37141. [
  37142. {
  37143. name: "Normal",
  37144. height: math.unit(9, "feet"),
  37145. default: true
  37146. },
  37147. ]
  37148. ))
  37149. characterMakers.push(() => makeCharacter(
  37150. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37151. {
  37152. front: {
  37153. height: math.unit(2 + 9/12, "feet"),
  37154. name: "Front",
  37155. image: {
  37156. source: "./media/characters/bora/front.svg",
  37157. extra: 1265/1250,
  37158. bottom: 24/1289
  37159. }
  37160. },
  37161. },
  37162. [
  37163. {
  37164. name: "Normal",
  37165. height: math.unit(2 + 9/12, "feet"),
  37166. default: true
  37167. },
  37168. ]
  37169. ))
  37170. characterMakers.push(() => makeCharacter(
  37171. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37172. {
  37173. front: {
  37174. height: math.unit(8, "feet"),
  37175. name: "Front",
  37176. image: {
  37177. source: "./media/characters/myu-myu/front.svg",
  37178. extra: 1949/1857,
  37179. bottom: 90/2039
  37180. }
  37181. },
  37182. },
  37183. [
  37184. {
  37185. name: "Normal",
  37186. height: math.unit(8, "feet"),
  37187. default: true
  37188. },
  37189. {
  37190. name: "Big",
  37191. height: math.unit(15, "feet")
  37192. },
  37193. {
  37194. name: "BIG",
  37195. height: math.unit(25, "feet")
  37196. },
  37197. ]
  37198. ))
  37199. characterMakers.push(() => makeCharacter(
  37200. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37201. {
  37202. side: {
  37203. height: math.unit(7 + 5/12, "feet"),
  37204. weight: math.unit(2800, "lb"),
  37205. name: "Side",
  37206. image: {
  37207. source: "./media/characters/haloren/side.svg",
  37208. extra: 1793/409,
  37209. bottom: 59/1852
  37210. }
  37211. },
  37212. frontPaw: {
  37213. height: math.unit(2.36, "feet"),
  37214. name: "Front paw",
  37215. image: {
  37216. source: "./media/characters/haloren/front-paw.svg"
  37217. }
  37218. },
  37219. hindPaw: {
  37220. height: math.unit(3.18, "feet"),
  37221. name: "Hind paw",
  37222. image: {
  37223. source: "./media/characters/haloren/hind-paw.svg"
  37224. }
  37225. },
  37226. maw: {
  37227. height: math.unit(5.05, "feet"),
  37228. name: "Maw",
  37229. image: {
  37230. source: "./media/characters/haloren/maw.svg"
  37231. }
  37232. },
  37233. dick: {
  37234. height: math.unit(2.90, "feet"),
  37235. name: "Dick",
  37236. image: {
  37237. source: "./media/characters/haloren/dick.svg"
  37238. }
  37239. },
  37240. },
  37241. [
  37242. {
  37243. name: "Normal",
  37244. height: math.unit(7 + 5/12, "feet"),
  37245. default: true
  37246. },
  37247. {
  37248. name: "Enhanced",
  37249. height: math.unit(14 + 3/12, "feet")
  37250. },
  37251. ]
  37252. ))
  37253. characterMakers.push(() => makeCharacter(
  37254. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37255. {
  37256. front: {
  37257. height: math.unit(171, "cm"),
  37258. name: "Front",
  37259. image: {
  37260. source: "./media/characters/kimmy/front.svg",
  37261. extra: 1491/1435,
  37262. bottom: 53/1544
  37263. }
  37264. },
  37265. },
  37266. [
  37267. {
  37268. name: "Small",
  37269. height: math.unit(9, "cm")
  37270. },
  37271. {
  37272. name: "Normal",
  37273. height: math.unit(171, "cm"),
  37274. default: true
  37275. },
  37276. ]
  37277. ))
  37278. characterMakers.push(() => makeCharacter(
  37279. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37280. {
  37281. front: {
  37282. height: math.unit(8, "feet"),
  37283. weight: math.unit(300, "lb"),
  37284. name: "Front",
  37285. image: {
  37286. source: "./media/characters/galeboomer/front.svg",
  37287. extra: 4651/4415,
  37288. bottom: 162/4813
  37289. }
  37290. },
  37291. back: {
  37292. height: math.unit(8, "feet"),
  37293. weight: math.unit(300, "lb"),
  37294. name: "Back",
  37295. image: {
  37296. source: "./media/characters/galeboomer/back.svg",
  37297. extra: 4544/4314,
  37298. bottom: 16/4560
  37299. }
  37300. },
  37301. frontAlt: {
  37302. height: math.unit(8, "feet"),
  37303. weight: math.unit(300, "lb"),
  37304. name: "Front (Alt)",
  37305. image: {
  37306. source: "./media/characters/galeboomer/front-alt.svg",
  37307. extra: 4458/4228,
  37308. bottom: 68/4526
  37309. }
  37310. },
  37311. maw: {
  37312. height: math.unit(1.2, "feet"),
  37313. name: "Maw",
  37314. image: {
  37315. source: "./media/characters/galeboomer/maw.svg"
  37316. }
  37317. },
  37318. },
  37319. [
  37320. {
  37321. name: "Normal",
  37322. height: math.unit(8, "feet"),
  37323. default: true
  37324. },
  37325. ]
  37326. ))
  37327. characterMakers.push(() => makeCharacter(
  37328. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37329. {
  37330. front: {
  37331. height: math.unit(5 + 9/12, "feet"),
  37332. weight: math.unit(120, "lb"),
  37333. name: "Front",
  37334. image: {
  37335. source: "./media/characters/chyr/front.svg",
  37336. extra: 1323/1254,
  37337. bottom: 63/1386
  37338. }
  37339. },
  37340. back: {
  37341. height: math.unit(5 + 9/12, "feet"),
  37342. weight: math.unit(120, "lb"),
  37343. name: "Back",
  37344. image: {
  37345. source: "./media/characters/chyr/back.svg",
  37346. extra: 1323/1252,
  37347. bottom: 48/1371
  37348. }
  37349. },
  37350. },
  37351. [
  37352. {
  37353. name: "Normal",
  37354. height: math.unit(5 + 9/12, "feet"),
  37355. default: true
  37356. },
  37357. ]
  37358. ))
  37359. characterMakers.push(() => makeCharacter(
  37360. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37361. {
  37362. front: {
  37363. height: math.unit(7, "feet"),
  37364. weight: math.unit(310, "lb"),
  37365. name: "Front",
  37366. image: {
  37367. source: "./media/characters/solarus/front.svg",
  37368. extra: 2415/2021,
  37369. bottom: 103/2518
  37370. }
  37371. },
  37372. back: {
  37373. height: math.unit(7, "feet"),
  37374. weight: math.unit(310, "lb"),
  37375. name: "Back",
  37376. image: {
  37377. source: "./media/characters/solarus/back.svg",
  37378. extra: 2463/2089,
  37379. bottom: 79/2542
  37380. }
  37381. },
  37382. },
  37383. [
  37384. {
  37385. name: "Normal",
  37386. height: math.unit(7, "feet"),
  37387. default: true
  37388. },
  37389. ]
  37390. ))
  37391. characterMakers.push(() => makeCharacter(
  37392. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37393. {
  37394. front: {
  37395. height: math.unit(16, "feet"),
  37396. name: "Front",
  37397. image: {
  37398. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37399. extra: 1844/1780,
  37400. bottom: 58/1902
  37401. }
  37402. },
  37403. winterCoat: {
  37404. height: math.unit(16, "feet"),
  37405. name: "Winter Coat",
  37406. image: {
  37407. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37408. extra: 1807/1775,
  37409. bottom: 69/1876
  37410. }
  37411. },
  37412. },
  37413. [
  37414. {
  37415. name: "Normal",
  37416. height: math.unit(16, "feet"),
  37417. default: true
  37418. },
  37419. {
  37420. name: "Chicago Size",
  37421. height: math.unit(560, "feet")
  37422. },
  37423. ]
  37424. ))
  37425. characterMakers.push(() => makeCharacter(
  37426. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37427. {
  37428. front: {
  37429. height: math.unit(11 + 6/12, "feet"),
  37430. weight: math.unit(1366, "lb"),
  37431. name: "Front",
  37432. image: {
  37433. source: "./media/characters/lexor/front.svg",
  37434. extra: 1560/1481,
  37435. bottom: 211/1771
  37436. }
  37437. },
  37438. back: {
  37439. height: math.unit(11 + 6/12, "feet"),
  37440. weight: math.unit(1366, "lb"),
  37441. name: "Back",
  37442. image: {
  37443. source: "./media/characters/lexor/back.svg",
  37444. extra: 1614/1533,
  37445. bottom: 76/1690
  37446. }
  37447. },
  37448. maw: {
  37449. height: math.unit(3, "feet"),
  37450. name: "Maw",
  37451. image: {
  37452. source: "./media/characters/lexor/maw.svg"
  37453. }
  37454. },
  37455. dick: {
  37456. height: math.unit(2.59, "feet"),
  37457. name: "Dick",
  37458. image: {
  37459. source: "./media/characters/lexor/dick.svg"
  37460. }
  37461. },
  37462. },
  37463. [
  37464. {
  37465. name: "Normal",
  37466. height: math.unit(11 + 6/12, "feet"),
  37467. default: true
  37468. },
  37469. ]
  37470. ))
  37471. characterMakers.push(() => makeCharacter(
  37472. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37473. {
  37474. front: {
  37475. height: math.unit(5 + 8/12, "feet"),
  37476. name: "Front",
  37477. image: {
  37478. source: "./media/characters/magnum/front.svg",
  37479. extra: 942/855,
  37480. bottom: 26/968
  37481. }
  37482. },
  37483. },
  37484. [
  37485. {
  37486. name: "Normal",
  37487. height: math.unit(5 + 8/12, "feet"),
  37488. default: true
  37489. },
  37490. ]
  37491. ))
  37492. characterMakers.push(() => makeCharacter(
  37493. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37494. {
  37495. front: {
  37496. height: math.unit(18 + 4/12, "feet"),
  37497. weight: math.unit(1500, "kg"),
  37498. name: "Front",
  37499. image: {
  37500. source: "./media/characters/solas-sharpsman/front.svg",
  37501. extra: 1698/1589,
  37502. bottom: 0/1698
  37503. }
  37504. },
  37505. },
  37506. [
  37507. {
  37508. name: "Normal",
  37509. height: math.unit(18 + 4/12, "feet"),
  37510. default: true
  37511. },
  37512. ]
  37513. ))
  37514. characterMakers.push(() => makeCharacter(
  37515. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37516. {
  37517. front: {
  37518. height: math.unit(5 + 5/12, "feet"),
  37519. weight: math.unit(180, "lb"),
  37520. name: "Front",
  37521. image: {
  37522. source: "./media/characters/october/front.svg",
  37523. extra: 1800/1650,
  37524. bottom: 0/1800
  37525. }
  37526. },
  37527. frontNsfw: {
  37528. height: math.unit(5 + 5/12, "feet"),
  37529. weight: math.unit(180, "lb"),
  37530. name: "Front (NSFW)",
  37531. image: {
  37532. source: "./media/characters/october/front-nsfw.svg",
  37533. extra: 1392/1307,
  37534. bottom: 42/1434
  37535. }
  37536. },
  37537. },
  37538. [
  37539. {
  37540. name: "Normal",
  37541. height: math.unit(5 + 5/12, "feet"),
  37542. default: true
  37543. },
  37544. ]
  37545. ))
  37546. characterMakers.push(() => makeCharacter(
  37547. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37548. {
  37549. front: {
  37550. height: math.unit(8 + 6/12, "feet"),
  37551. name: "Front",
  37552. image: {
  37553. source: "./media/characters/essynkardi/front.svg",
  37554. extra: 1914/1846,
  37555. bottom: 22/1936
  37556. }
  37557. },
  37558. },
  37559. [
  37560. {
  37561. name: "Normal",
  37562. height: math.unit(8 + 6/12, "feet"),
  37563. default: true
  37564. },
  37565. ]
  37566. ))
  37567. characterMakers.push(() => makeCharacter(
  37568. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37569. {
  37570. front: {
  37571. height: math.unit(6 + 6/12, "feet"),
  37572. weight: math.unit(7, "lb"),
  37573. name: "Front",
  37574. image: {
  37575. source: "./media/characters/icky/front.svg",
  37576. extra: 813/782,
  37577. bottom: 66/879
  37578. }
  37579. },
  37580. back: {
  37581. height: math.unit(6 + 6/12, "feet"),
  37582. weight: math.unit(7, "lb"),
  37583. name: "Back",
  37584. image: {
  37585. source: "./media/characters/icky/back.svg",
  37586. extra: 754/735,
  37587. bottom: 56/810
  37588. }
  37589. },
  37590. },
  37591. [
  37592. {
  37593. name: "Normal",
  37594. height: math.unit(6 + 6/12, "feet"),
  37595. default: true
  37596. },
  37597. ]
  37598. ))
  37599. characterMakers.push(() => makeCharacter(
  37600. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37601. {
  37602. front: {
  37603. height: math.unit(15, "feet"),
  37604. name: "Front",
  37605. image: {
  37606. source: "./media/characters/rojas/front.svg",
  37607. extra: 1462/1408,
  37608. bottom: 95/1557
  37609. }
  37610. },
  37611. back: {
  37612. height: math.unit(15, "feet"),
  37613. name: "Back",
  37614. image: {
  37615. source: "./media/characters/rojas/back.svg",
  37616. extra: 1023/954,
  37617. bottom: 28/1051
  37618. }
  37619. },
  37620. },
  37621. [
  37622. {
  37623. name: "Normal",
  37624. height: math.unit(15, "feet"),
  37625. default: true
  37626. },
  37627. ]
  37628. ))
  37629. characterMakers.push(() => makeCharacter(
  37630. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37631. {
  37632. frontHuman: {
  37633. height: math.unit(5 + 7/12, "feet"),
  37634. name: "Front (Human)",
  37635. image: {
  37636. source: "./media/characters/alek-dryagan/front-human.svg",
  37637. extra: 1687/1667,
  37638. bottom: 69/1756
  37639. }
  37640. },
  37641. backHuman: {
  37642. height: math.unit(5 + 7/12, "feet"),
  37643. name: "Back (Human)",
  37644. image: {
  37645. source: "./media/characters/alek-dryagan/back-human.svg",
  37646. extra: 1670/1649,
  37647. bottom: 65/1735
  37648. }
  37649. },
  37650. frontDemi: {
  37651. height: math.unit(65, "feet"),
  37652. name: "Front (Demi)",
  37653. image: {
  37654. source: "./media/characters/alek-dryagan/front-demi.svg",
  37655. extra: 1669/1642,
  37656. bottom: 49/1718
  37657. }
  37658. },
  37659. backDemi: {
  37660. height: math.unit(65, "feet"),
  37661. name: "Back (Demi)",
  37662. image: {
  37663. source: "./media/characters/alek-dryagan/back-demi.svg",
  37664. extra: 1658/1637,
  37665. bottom: 40/1698
  37666. }
  37667. },
  37668. mawHuman: {
  37669. height: math.unit(0.3, "feet"),
  37670. name: "Maw (Human)",
  37671. image: {
  37672. source: "./media/characters/alek-dryagan/maw-human.svg"
  37673. }
  37674. },
  37675. mawDemi: {
  37676. height: math.unit(3.8, "feet"),
  37677. name: "Maw (Demi)",
  37678. image: {
  37679. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37680. }
  37681. },
  37682. },
  37683. [
  37684. {
  37685. name: "Normal",
  37686. height: math.unit(5 + 7/12, "feet"),
  37687. default: true
  37688. },
  37689. ]
  37690. ))
  37691. characterMakers.push(() => makeCharacter(
  37692. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37693. {
  37694. frontHuman: {
  37695. height: math.unit(5 + 2/12, "feet"),
  37696. name: "Front (Human)",
  37697. image: {
  37698. source: "./media/characters/gen/front-human.svg",
  37699. extra: 1627/1538,
  37700. bottom: 71/1698
  37701. }
  37702. },
  37703. backHuman: {
  37704. height: math.unit(5 + 2/12, "feet"),
  37705. name: "Back (Human)",
  37706. image: {
  37707. source: "./media/characters/gen/back-human.svg",
  37708. extra: 1638/1548,
  37709. bottom: 69/1707
  37710. }
  37711. },
  37712. frontDemi: {
  37713. height: math.unit(5 + 2/12, "feet"),
  37714. name: "Front (Demi)",
  37715. image: {
  37716. source: "./media/characters/gen/front-demi.svg",
  37717. extra: 1627/1538,
  37718. bottom: 71/1698
  37719. }
  37720. },
  37721. backDemi: {
  37722. height: math.unit(5 + 2/12, "feet"),
  37723. name: "Back (Demi)",
  37724. image: {
  37725. source: "./media/characters/gen/back-demi.svg",
  37726. extra: 1638/1548,
  37727. bottom: 69/1707
  37728. }
  37729. },
  37730. },
  37731. [
  37732. {
  37733. name: "Normal",
  37734. height: math.unit(5 + 2/12, "feet"),
  37735. default: true
  37736. },
  37737. ]
  37738. ))
  37739. characterMakers.push(() => makeCharacter(
  37740. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37741. {
  37742. frontImp: {
  37743. height: math.unit(1 + 11/12, "feet"),
  37744. name: "Front (Imp)",
  37745. image: {
  37746. source: "./media/characters/max-kobold/front-imp.svg",
  37747. extra: 1238/1134,
  37748. bottom: 81/1319
  37749. }
  37750. },
  37751. backImp: {
  37752. height: math.unit(1 + 11/12, "feet"),
  37753. name: "Back (Imp)",
  37754. image: {
  37755. source: "./media/characters/max-kobold/back-imp.svg",
  37756. extra: 1334/1175,
  37757. bottom: 34/1368
  37758. }
  37759. },
  37760. frontDemi: {
  37761. height: math.unit(5 + 9/12, "feet"),
  37762. name: "Front (Demi)",
  37763. image: {
  37764. source: "./media/characters/max-kobold/front-demi.svg",
  37765. extra: 1715/1685,
  37766. bottom: 54/1769
  37767. }
  37768. },
  37769. backDemi: {
  37770. height: math.unit(5 + 9/12, "feet"),
  37771. name: "Back (Demi)",
  37772. image: {
  37773. source: "./media/characters/max-kobold/back-demi.svg",
  37774. extra: 1752/1729,
  37775. bottom: 41/1793
  37776. }
  37777. },
  37778. handImp: {
  37779. height: math.unit(0.45, "feet"),
  37780. name: "Hand (Imp)",
  37781. image: {
  37782. source: "./media/characters/max-kobold/hand.svg"
  37783. }
  37784. },
  37785. pawImp: {
  37786. height: math.unit(0.46, "feet"),
  37787. name: "Paw (Imp)",
  37788. image: {
  37789. source: "./media/characters/max-kobold/paw.svg"
  37790. }
  37791. },
  37792. handDemi: {
  37793. height: math.unit(0.80, "feet"),
  37794. name: "Hand (Demi)",
  37795. image: {
  37796. source: "./media/characters/max-kobold/hand.svg"
  37797. }
  37798. },
  37799. pawDemi: {
  37800. height: math.unit(1.1, "feet"),
  37801. name: "Paw (Demi)",
  37802. image: {
  37803. source: "./media/characters/max-kobold/paw.svg"
  37804. }
  37805. },
  37806. headImp: {
  37807. height: math.unit(1.33, "feet"),
  37808. name: "Head (Imp)",
  37809. image: {
  37810. source: "./media/characters/max-kobold/head-imp.svg"
  37811. }
  37812. },
  37813. mawImp: {
  37814. height: math.unit(0.75, "feet"),
  37815. name: "Maw (Imp)",
  37816. image: {
  37817. source: "./media/characters/max-kobold/maw-imp.svg"
  37818. }
  37819. },
  37820. mawDemi: {
  37821. height: math.unit(0.42, "feet"),
  37822. name: "Maw (Demi)",
  37823. image: {
  37824. source: "./media/characters/max-kobold/maw-demi.svg"
  37825. }
  37826. },
  37827. },
  37828. [
  37829. {
  37830. name: "Normal",
  37831. height: math.unit(1 + 11/12, "feet"),
  37832. default: true
  37833. },
  37834. ]
  37835. ))
  37836. characterMakers.push(() => makeCharacter(
  37837. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37838. {
  37839. front: {
  37840. height: math.unit(7 + 5/12, "feet"),
  37841. name: "Front",
  37842. image: {
  37843. source: "./media/characters/carbon/front.svg",
  37844. extra: 1754/1689,
  37845. bottom: 65/1819
  37846. }
  37847. },
  37848. back: {
  37849. height: math.unit(7 + 5/12, "feet"),
  37850. name: "Back",
  37851. image: {
  37852. source: "./media/characters/carbon/back.svg",
  37853. extra: 1762/1695,
  37854. bottom: 24/1786
  37855. }
  37856. },
  37857. frontGigantamax: {
  37858. height: math.unit(150, "feet"),
  37859. name: "Front (Gigantamax)",
  37860. image: {
  37861. source: "./media/characters/carbon/front-gigantamax.svg",
  37862. extra: 1826/1669,
  37863. bottom: 59/1885
  37864. }
  37865. },
  37866. backGigantamax: {
  37867. height: math.unit(150, "feet"),
  37868. name: "Back (Gigantamax)",
  37869. image: {
  37870. source: "./media/characters/carbon/back-gigantamax.svg",
  37871. extra: 1796/1653,
  37872. bottom: 53/1849
  37873. }
  37874. },
  37875. maw: {
  37876. height: math.unit(0.48, "feet"),
  37877. name: "Maw",
  37878. image: {
  37879. source: "./media/characters/carbon/maw.svg"
  37880. }
  37881. },
  37882. mawGigantamax: {
  37883. height: math.unit(7.5, "feet"),
  37884. name: "Maw (Gigantamax)",
  37885. image: {
  37886. source: "./media/characters/carbon/maw-gigantamax.svg"
  37887. }
  37888. },
  37889. },
  37890. [
  37891. {
  37892. name: "Normal",
  37893. height: math.unit(7 + 5/12, "feet"),
  37894. default: true
  37895. },
  37896. ]
  37897. ))
  37898. characterMakers.push(() => makeCharacter(
  37899. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37900. {
  37901. front: {
  37902. height: math.unit(6, "feet"),
  37903. name: "Front",
  37904. image: {
  37905. source: "./media/characters/maverick/front.svg",
  37906. extra: 1672/1661,
  37907. bottom: 85/1757
  37908. }
  37909. },
  37910. back: {
  37911. height: math.unit(6, "feet"),
  37912. name: "Back",
  37913. image: {
  37914. source: "./media/characters/maverick/back.svg",
  37915. extra: 1642/1631,
  37916. bottom: 38/1680
  37917. }
  37918. },
  37919. },
  37920. [
  37921. {
  37922. name: "Normal",
  37923. height: math.unit(6, "feet"),
  37924. default: true
  37925. },
  37926. ]
  37927. ))
  37928. characterMakers.push(() => makeCharacter(
  37929. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37930. {
  37931. front: {
  37932. height: math.unit(15, "feet"),
  37933. weight: math.unit(615, "lb"),
  37934. name: "Front",
  37935. image: {
  37936. source: "./media/characters/grockle/front.svg",
  37937. extra: 1535/1427,
  37938. bottom: 56/1591
  37939. }
  37940. },
  37941. },
  37942. [
  37943. {
  37944. name: "Normal",
  37945. height: math.unit(15, "feet"),
  37946. default: true
  37947. },
  37948. {
  37949. name: "Large",
  37950. height: math.unit(150, "feet")
  37951. },
  37952. {
  37953. name: "Macro",
  37954. height: math.unit(1876, "feet")
  37955. },
  37956. {
  37957. name: "Mega Macro",
  37958. height: math.unit(121940, "feet")
  37959. },
  37960. {
  37961. name: "Giga Macro",
  37962. height: math.unit(750, "km")
  37963. },
  37964. {
  37965. name: "Tera Macro",
  37966. height: math.unit(750000, "km")
  37967. },
  37968. {
  37969. name: "Galactic",
  37970. height: math.unit(1.4e5, "km")
  37971. },
  37972. {
  37973. name: "Godlike",
  37974. height: math.unit(9.8e280, "galaxies")
  37975. },
  37976. ]
  37977. ))
  37978. characterMakers.push(() => makeCharacter(
  37979. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37980. {
  37981. front: {
  37982. height: math.unit(11, "meters"),
  37983. weight: math.unit(20, "tonnes"),
  37984. name: "Front",
  37985. image: {
  37986. source: "./media/characters/alistair/front.svg",
  37987. extra: 1265/1009,
  37988. bottom: 93/1358
  37989. }
  37990. },
  37991. },
  37992. [
  37993. {
  37994. name: "Normal",
  37995. height: math.unit(11, "meters"),
  37996. default: true
  37997. },
  37998. ]
  37999. ))
  38000. characterMakers.push(() => makeCharacter(
  38001. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38002. {
  38003. front: {
  38004. height: math.unit(5 + 8/12, "feet"),
  38005. name: "Front",
  38006. image: {
  38007. source: "./media/characters/haruka/front.svg",
  38008. extra: 2012/1952,
  38009. bottom: 0/2012
  38010. }
  38011. },
  38012. },
  38013. [
  38014. {
  38015. name: "Normal",
  38016. height: math.unit(5 + 8/12, "feet"),
  38017. default: true
  38018. },
  38019. ]
  38020. ))
  38021. characterMakers.push(() => makeCharacter(
  38022. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38023. {
  38024. back: {
  38025. height: math.unit(9, "feet"),
  38026. name: "Back",
  38027. image: {
  38028. source: "./media/characters/vivian-sylveon/back.svg",
  38029. extra: 1853/1714,
  38030. bottom: 0/1853
  38031. }
  38032. },
  38033. },
  38034. [
  38035. {
  38036. name: "Normal",
  38037. height: math.unit(9, "feet"),
  38038. default: true
  38039. },
  38040. {
  38041. name: "Macro",
  38042. height: math.unit(500, "feet")
  38043. },
  38044. {
  38045. name: "Megamacro",
  38046. height: math.unit(600, "miles")
  38047. },
  38048. {
  38049. name: "Gigamacro",
  38050. height: math.unit(30000, "miles")
  38051. },
  38052. ]
  38053. ))
  38054. characterMakers.push(() => makeCharacter(
  38055. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38056. {
  38057. anthro: {
  38058. height: math.unit(5 + 10/12, "feet"),
  38059. weight: math.unit(100, "lb"),
  38060. name: "Anthro",
  38061. image: {
  38062. source: "./media/characters/daiki/anthro.svg",
  38063. extra: 1115/1027,
  38064. bottom: 69/1184
  38065. }
  38066. },
  38067. feral: {
  38068. height: math.unit(200, "feet"),
  38069. name: "Feral",
  38070. image: {
  38071. source: "./media/characters/daiki/feral.svg",
  38072. extra: 1256/313,
  38073. bottom: 39/1295
  38074. }
  38075. },
  38076. feralHead: {
  38077. height: math.unit(171, "feet"),
  38078. name: "Feral Head",
  38079. image: {
  38080. source: "./media/characters/daiki/feral-head.svg"
  38081. }
  38082. },
  38083. manaDragon: {
  38084. height: math.unit(170, "meters"),
  38085. name: "Mana-dragon",
  38086. image: {
  38087. source: "./media/characters/daiki/mana-dragon.svg",
  38088. extra: 763/420,
  38089. bottom: 97/860
  38090. }
  38091. },
  38092. },
  38093. [
  38094. {
  38095. name: "Normal",
  38096. height: math.unit(5 + 10/12, "feet"),
  38097. default: true
  38098. },
  38099. ]
  38100. ))
  38101. characterMakers.push(() => makeCharacter(
  38102. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38103. {
  38104. fullyEquippedFront: {
  38105. height: math.unit(3 + 1/12, "feet"),
  38106. weight: math.unit(24, "lb"),
  38107. name: "Fully Equipped (Front)",
  38108. image: {
  38109. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38110. extra: 687/605,
  38111. bottom: 18/705
  38112. }
  38113. },
  38114. fullyEquippedBack: {
  38115. height: math.unit(3 + 1/12, "feet"),
  38116. weight: math.unit(24, "lb"),
  38117. name: "Fully Equipped (Back)",
  38118. image: {
  38119. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38120. extra: 689/590,
  38121. bottom: 18/707
  38122. }
  38123. },
  38124. dailyWear: {
  38125. height: math.unit(3 + 1/12, "feet"),
  38126. weight: math.unit(24, "lb"),
  38127. name: "Daily Wear",
  38128. image: {
  38129. source: "./media/characters/tea-spot/daily-wear.svg",
  38130. extra: 701/620,
  38131. bottom: 21/722
  38132. }
  38133. },
  38134. maidWork: {
  38135. height: math.unit(3 + 1/12, "feet"),
  38136. weight: math.unit(24, "lb"),
  38137. name: "Maid Work",
  38138. image: {
  38139. source: "./media/characters/tea-spot/maid-work.svg",
  38140. extra: 693/609,
  38141. bottom: 15/708
  38142. }
  38143. },
  38144. },
  38145. [
  38146. {
  38147. name: "Normal",
  38148. height: math.unit(3 + 1/12, "feet"),
  38149. default: true
  38150. },
  38151. ]
  38152. ))
  38153. characterMakers.push(() => makeCharacter(
  38154. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38155. {
  38156. front: {
  38157. height: math.unit(175, "cm"),
  38158. weight: math.unit(75, "kg"),
  38159. name: "Front",
  38160. image: {
  38161. source: "./media/characters/chee/front.svg",
  38162. extra: 1796/1740,
  38163. bottom: 40/1836
  38164. }
  38165. },
  38166. },
  38167. [
  38168. {
  38169. name: "Micro-Micro",
  38170. height: math.unit(1, "nm")
  38171. },
  38172. {
  38173. name: "Micro-erst",
  38174. height: math.unit(1, "micrometer")
  38175. },
  38176. {
  38177. name: "Micro-er",
  38178. height: math.unit(1, "cm")
  38179. },
  38180. {
  38181. name: "Normal",
  38182. height: math.unit(175, "cm"),
  38183. default: true
  38184. },
  38185. {
  38186. name: "Macro",
  38187. height: math.unit(100, "m")
  38188. },
  38189. {
  38190. name: "Macro-er",
  38191. height: math.unit(1, "km")
  38192. },
  38193. {
  38194. name: "Macro-erst",
  38195. height: math.unit(10, "km")
  38196. },
  38197. {
  38198. name: "Macro-Macro",
  38199. height: math.unit(100, "km")
  38200. },
  38201. ]
  38202. ))
  38203. characterMakers.push(() => makeCharacter(
  38204. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38205. {
  38206. front: {
  38207. height: math.unit(11 + 9/12, "feet"),
  38208. weight: math.unit(935, "lb"),
  38209. name: "Front",
  38210. image: {
  38211. source: "./media/characters/kingsley/front.svg",
  38212. extra: 1803/1674,
  38213. bottom: 127/1930
  38214. }
  38215. },
  38216. frontNude: {
  38217. height: math.unit(11 + 9/12, "feet"),
  38218. weight: math.unit(935, "lb"),
  38219. name: "Front (Nude)",
  38220. image: {
  38221. source: "./media/characters/kingsley/front-nude.svg",
  38222. extra: 1803/1674,
  38223. bottom: 127/1930
  38224. }
  38225. },
  38226. },
  38227. [
  38228. {
  38229. name: "Normal",
  38230. height: math.unit(11 + 9/12, "feet"),
  38231. default: true
  38232. },
  38233. ]
  38234. ))
  38235. characterMakers.push(() => makeCharacter(
  38236. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38237. {
  38238. side: {
  38239. height: math.unit(9, "feet"),
  38240. name: "Side",
  38241. image: {
  38242. source: "./media/characters/rymel/side.svg",
  38243. extra: 792/469,
  38244. bottom: 121/913
  38245. }
  38246. },
  38247. maw: {
  38248. height: math.unit(2.4, "meters"),
  38249. name: "Maw",
  38250. image: {
  38251. source: "./media/characters/rymel/maw.svg"
  38252. }
  38253. },
  38254. },
  38255. [
  38256. {
  38257. name: "House Drake",
  38258. height: math.unit(2, "feet")
  38259. },
  38260. {
  38261. name: "Reduced",
  38262. height: math.unit(4.5, "feet")
  38263. },
  38264. {
  38265. name: "Normal",
  38266. height: math.unit(9, "feet"),
  38267. default: true
  38268. },
  38269. ]
  38270. ))
  38271. characterMakers.push(() => makeCharacter(
  38272. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38273. {
  38274. front: {
  38275. height: math.unit(1.74, "meters"),
  38276. weight: math.unit(55, "kg"),
  38277. name: "Front",
  38278. image: {
  38279. source: "./media/characters/rubus/front.svg",
  38280. extra: 1894/1742,
  38281. bottom: 44/1938
  38282. }
  38283. },
  38284. },
  38285. [
  38286. {
  38287. name: "Normal",
  38288. height: math.unit(1.74, "meters"),
  38289. default: true
  38290. },
  38291. ]
  38292. ))
  38293. characterMakers.push(() => makeCharacter(
  38294. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38295. {
  38296. front: {
  38297. height: math.unit(5 + 2/12, "feet"),
  38298. weight: math.unit(112, "lb"),
  38299. name: "Front",
  38300. image: {
  38301. source: "./media/characters/cassie-kingston/front.svg",
  38302. extra: 1438/1390,
  38303. bottom: 47/1485
  38304. }
  38305. },
  38306. },
  38307. [
  38308. {
  38309. name: "Normal",
  38310. height: math.unit(5 + 2/12, "feet"),
  38311. default: true
  38312. },
  38313. {
  38314. name: "Macro",
  38315. height: math.unit(128, "feet")
  38316. },
  38317. {
  38318. name: "Megamacro",
  38319. height: math.unit(2.56, "miles")
  38320. },
  38321. ]
  38322. ))
  38323. characterMakers.push(() => makeCharacter(
  38324. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38325. {
  38326. front: {
  38327. height: math.unit(7, "feet"),
  38328. name: "Front",
  38329. image: {
  38330. source: "./media/characters/fox/front.svg",
  38331. extra: 1798/1703,
  38332. bottom: 55/1853
  38333. }
  38334. },
  38335. back: {
  38336. height: math.unit(7, "feet"),
  38337. name: "Back",
  38338. image: {
  38339. source: "./media/characters/fox/back.svg",
  38340. extra: 1748/1649,
  38341. bottom: 32/1780
  38342. }
  38343. },
  38344. head: {
  38345. height: math.unit(1.95, "feet"),
  38346. name: "Head",
  38347. image: {
  38348. source: "./media/characters/fox/head.svg"
  38349. }
  38350. },
  38351. dick: {
  38352. height: math.unit(1.33, "feet"),
  38353. name: "Dick",
  38354. image: {
  38355. source: "./media/characters/fox/dick.svg"
  38356. }
  38357. },
  38358. foot: {
  38359. height: math.unit(1, "feet"),
  38360. name: "Foot",
  38361. image: {
  38362. source: "./media/characters/fox/foot.svg"
  38363. }
  38364. },
  38365. paw: {
  38366. height: math.unit(0.92, "feet"),
  38367. name: "Paw",
  38368. image: {
  38369. source: "./media/characters/fox/paw.svg"
  38370. }
  38371. },
  38372. },
  38373. [
  38374. {
  38375. name: "Small",
  38376. height: math.unit(3, "inches")
  38377. },
  38378. {
  38379. name: "\"Realistic\"",
  38380. height: math.unit(7, "feet")
  38381. },
  38382. {
  38383. name: "Normal",
  38384. height: math.unit(150, "feet"),
  38385. default: true
  38386. },
  38387. {
  38388. name: "BIG",
  38389. height: math.unit(1200, "feet")
  38390. },
  38391. {
  38392. name: "👀",
  38393. height: math.unit(5, "miles")
  38394. },
  38395. {
  38396. name: "👀👀👀",
  38397. height: math.unit(64, "miles")
  38398. },
  38399. ]
  38400. ))
  38401. characterMakers.push(() => makeCharacter(
  38402. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38403. {
  38404. front: {
  38405. height: math.unit(625, "feet"),
  38406. name: "Front",
  38407. image: {
  38408. source: "./media/characters/asonja-rossa/front.svg",
  38409. extra: 1833/1686,
  38410. bottom: 24/1857
  38411. }
  38412. },
  38413. back: {
  38414. height: math.unit(625, "feet"),
  38415. name: "Back",
  38416. image: {
  38417. source: "./media/characters/asonja-rossa/back.svg",
  38418. extra: 1852/1753,
  38419. bottom: 26/1878
  38420. }
  38421. },
  38422. },
  38423. [
  38424. {
  38425. name: "Macro",
  38426. height: math.unit(625, "feet"),
  38427. default: true
  38428. },
  38429. ]
  38430. ))
  38431. characterMakers.push(() => makeCharacter(
  38432. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38433. {
  38434. side: {
  38435. height: math.unit(8, "feet"),
  38436. name: "Side",
  38437. image: {
  38438. source: "./media/characters/rezukii/side.svg",
  38439. extra: 979/542,
  38440. bottom: 87/1066
  38441. }
  38442. },
  38443. sitting: {
  38444. height: math.unit(14.6, "feet"),
  38445. name: "Sitting",
  38446. image: {
  38447. source: "./media/characters/rezukii/sitting.svg",
  38448. extra: 1023/813,
  38449. bottom: 45/1068
  38450. }
  38451. },
  38452. },
  38453. [
  38454. {
  38455. name: "Tiny",
  38456. height: math.unit(2, "feet")
  38457. },
  38458. {
  38459. name: "Smol",
  38460. height: math.unit(4, "feet")
  38461. },
  38462. {
  38463. name: "Normal",
  38464. height: math.unit(8, "feet"),
  38465. default: true
  38466. },
  38467. {
  38468. name: "Big",
  38469. height: math.unit(12, "feet")
  38470. },
  38471. {
  38472. name: "Macro",
  38473. height: math.unit(30, "feet")
  38474. },
  38475. ]
  38476. ))
  38477. characterMakers.push(() => makeCharacter(
  38478. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38479. {
  38480. front: {
  38481. height: math.unit(14, "feet"),
  38482. weight: math.unit(9.5, "tonnes"),
  38483. name: "Front",
  38484. image: {
  38485. source: "./media/characters/dawnheart/front.svg",
  38486. extra: 2792/2675,
  38487. bottom: 64/2856
  38488. }
  38489. },
  38490. },
  38491. [
  38492. {
  38493. name: "Normal",
  38494. height: math.unit(14, "feet"),
  38495. default: true
  38496. },
  38497. ]
  38498. ))
  38499. characterMakers.push(() => makeCharacter(
  38500. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38501. {
  38502. front: {
  38503. height: math.unit(1.7, "m"),
  38504. name: "Front",
  38505. image: {
  38506. source: "./media/characters/gladi/front.svg",
  38507. extra: 1460/1362,
  38508. bottom: 19/1479
  38509. }
  38510. },
  38511. back: {
  38512. height: math.unit(1.7, "m"),
  38513. name: "Back",
  38514. image: {
  38515. source: "./media/characters/gladi/back.svg",
  38516. extra: 1459/1357,
  38517. bottom: 12/1471
  38518. }
  38519. },
  38520. feral: {
  38521. height: math.unit(2.05, "m"),
  38522. name: "Feral",
  38523. image: {
  38524. source: "./media/characters/gladi/feral.svg",
  38525. extra: 821/557,
  38526. bottom: 91/912
  38527. }
  38528. },
  38529. },
  38530. [
  38531. {
  38532. name: "Shortest",
  38533. height: math.unit(70, "cm")
  38534. },
  38535. {
  38536. name: "Normal",
  38537. height: math.unit(1.7, "m")
  38538. },
  38539. {
  38540. name: "Macro",
  38541. height: math.unit(10, "m"),
  38542. default: true
  38543. },
  38544. {
  38545. name: "Tallest",
  38546. height: math.unit(200, "m")
  38547. },
  38548. ]
  38549. ))
  38550. characterMakers.push(() => makeCharacter(
  38551. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38552. {
  38553. front: {
  38554. height: math.unit(5 + 7/12, "feet"),
  38555. weight: math.unit(2, "tons"),
  38556. name: "Front",
  38557. image: {
  38558. source: "./media/characters/erdno/front.svg",
  38559. extra: 1234/1129,
  38560. bottom: 35/1269
  38561. }
  38562. },
  38563. angled: {
  38564. height: math.unit(5 + 7/12, "feet"),
  38565. weight: math.unit(2, "tons"),
  38566. name: "Angled",
  38567. image: {
  38568. source: "./media/characters/erdno/angled.svg",
  38569. extra: 1185/1139,
  38570. bottom: 36/1221
  38571. }
  38572. },
  38573. side: {
  38574. height: math.unit(5 + 7/12, "feet"),
  38575. weight: math.unit(2, "tons"),
  38576. name: "Side",
  38577. image: {
  38578. source: "./media/characters/erdno/side.svg",
  38579. extra: 1191/1144,
  38580. bottom: 40/1231
  38581. }
  38582. },
  38583. back: {
  38584. height: math.unit(5 + 7/12, "feet"),
  38585. weight: math.unit(2, "tons"),
  38586. name: "Back",
  38587. image: {
  38588. source: "./media/characters/erdno/back.svg",
  38589. extra: 1202/1146,
  38590. bottom: 17/1219
  38591. }
  38592. },
  38593. frontNsfw: {
  38594. height: math.unit(5 + 7/12, "feet"),
  38595. weight: math.unit(2, "tons"),
  38596. name: "Front (NSFW)",
  38597. image: {
  38598. source: "./media/characters/erdno/front-nsfw.svg",
  38599. extra: 1234/1129,
  38600. bottom: 35/1269
  38601. }
  38602. },
  38603. angledNsfw: {
  38604. height: math.unit(5 + 7/12, "feet"),
  38605. weight: math.unit(2, "tons"),
  38606. name: "Angled (NSFW)",
  38607. image: {
  38608. source: "./media/characters/erdno/angled-nsfw.svg",
  38609. extra: 1185/1139,
  38610. bottom: 36/1221
  38611. }
  38612. },
  38613. sideNsfw: {
  38614. height: math.unit(5 + 7/12, "feet"),
  38615. weight: math.unit(2, "tons"),
  38616. name: "Side (NSFW)",
  38617. image: {
  38618. source: "./media/characters/erdno/side-nsfw.svg",
  38619. extra: 1191/1144,
  38620. bottom: 40/1231
  38621. }
  38622. },
  38623. backNsfw: {
  38624. height: math.unit(5 + 7/12, "feet"),
  38625. weight: math.unit(2, "tons"),
  38626. name: "Back (NSFW)",
  38627. image: {
  38628. source: "./media/characters/erdno/back-nsfw.svg",
  38629. extra: 1202/1146,
  38630. bottom: 17/1219
  38631. }
  38632. },
  38633. frontHyper: {
  38634. height: math.unit(5 + 7/12, "feet"),
  38635. weight: math.unit(2, "tons"),
  38636. name: "Front (Hyper)",
  38637. image: {
  38638. source: "./media/characters/erdno/front-hyper.svg",
  38639. extra: 1298/1136,
  38640. bottom: 35/1333
  38641. }
  38642. },
  38643. },
  38644. [
  38645. {
  38646. name: "Normal",
  38647. height: math.unit(5 + 7/12, "feet"),
  38648. default: true
  38649. },
  38650. {
  38651. name: "Big",
  38652. height: math.unit(5.7, "meters")
  38653. },
  38654. {
  38655. name: "Macro",
  38656. height: math.unit(5.7, "kilometers")
  38657. },
  38658. {
  38659. name: "Megamacro",
  38660. height: math.unit(5.7, "earths")
  38661. },
  38662. ]
  38663. ))
  38664. characterMakers.push(() => makeCharacter(
  38665. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38666. {
  38667. front: {
  38668. height: math.unit(5 + 10/12, "feet"),
  38669. weight: math.unit(150, "lb"),
  38670. name: "Front",
  38671. image: {
  38672. source: "./media/characters/jamie/front.svg",
  38673. extra: 1908/1768,
  38674. bottom: 19/1927
  38675. }
  38676. },
  38677. },
  38678. [
  38679. {
  38680. name: "Minimum",
  38681. height: math.unit(2, "cm")
  38682. },
  38683. {
  38684. name: "Micro",
  38685. height: math.unit(3, "inches")
  38686. },
  38687. {
  38688. name: "Normal",
  38689. height: math.unit(5 + 10/12, "feet"),
  38690. default: true
  38691. },
  38692. {
  38693. name: "Macro",
  38694. height: math.unit(150, "feet")
  38695. },
  38696. {
  38697. name: "Megamacro",
  38698. height: math.unit(10000, "m")
  38699. },
  38700. ]
  38701. ))
  38702. characterMakers.push(() => makeCharacter(
  38703. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38704. {
  38705. front: {
  38706. height: math.unit(2, "meters"),
  38707. weight: math.unit(100, "kg"),
  38708. name: "Front",
  38709. image: {
  38710. source: "./media/characters/shiron/front.svg",
  38711. extra: 2103/1985,
  38712. bottom: 98/2201
  38713. }
  38714. },
  38715. back: {
  38716. height: math.unit(2, "meters"),
  38717. weight: math.unit(100, "kg"),
  38718. name: "Back",
  38719. image: {
  38720. source: "./media/characters/shiron/back.svg",
  38721. extra: 2110/2015,
  38722. bottom: 89/2199
  38723. }
  38724. },
  38725. hand: {
  38726. height: math.unit(0.96, "feet"),
  38727. name: "Hand",
  38728. image: {
  38729. source: "./media/characters/shiron/hand.svg"
  38730. }
  38731. },
  38732. foot: {
  38733. height: math.unit(1.464, "feet"),
  38734. name: "Foot",
  38735. image: {
  38736. source: "./media/characters/shiron/foot.svg"
  38737. }
  38738. },
  38739. },
  38740. [
  38741. {
  38742. name: "Normal",
  38743. height: math.unit(2, "meters")
  38744. },
  38745. {
  38746. name: "Macro",
  38747. height: math.unit(500, "meters"),
  38748. default: true
  38749. },
  38750. {
  38751. name: "Megamacro",
  38752. height: math.unit(20, "km")
  38753. },
  38754. ]
  38755. ))
  38756. characterMakers.push(() => makeCharacter(
  38757. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38758. {
  38759. front: {
  38760. height: math.unit(6, "feet"),
  38761. name: "Front",
  38762. image: {
  38763. source: "./media/characters/sam/front.svg",
  38764. extra: 849/826,
  38765. bottom: 19/868
  38766. }
  38767. },
  38768. },
  38769. [
  38770. {
  38771. name: "Normal",
  38772. height: math.unit(6, "feet"),
  38773. default: true
  38774. },
  38775. ]
  38776. ))
  38777. characterMakers.push(() => makeCharacter(
  38778. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38779. {
  38780. front: {
  38781. height: math.unit(8 + 4/12, "feet"),
  38782. weight: math.unit(122, "kg"),
  38783. name: "Front",
  38784. image: {
  38785. source: "./media/characters/namori-kurogawa/front.svg",
  38786. extra: 1894/1576,
  38787. bottom: 34/1928
  38788. }
  38789. },
  38790. },
  38791. [
  38792. {
  38793. name: "Normal",
  38794. height: math.unit(8 + 4/12, "feet"),
  38795. default: true
  38796. },
  38797. ]
  38798. ))
  38799. characterMakers.push(() => makeCharacter(
  38800. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38801. {
  38802. front: {
  38803. height: math.unit(9, "feet"),
  38804. weight: math.unit(621, "lb"),
  38805. name: "Front",
  38806. image: {
  38807. source: "./media/characters/unmru/front.svg",
  38808. extra: 1853/1747,
  38809. bottom: 73/1926
  38810. }
  38811. },
  38812. side: {
  38813. height: math.unit(9, "feet"),
  38814. weight: math.unit(621, "lb"),
  38815. name: "Side",
  38816. image: {
  38817. source: "./media/characters/unmru/side.svg",
  38818. extra: 1781/1671,
  38819. bottom: 127/1908
  38820. }
  38821. },
  38822. back: {
  38823. height: math.unit(9, "feet"),
  38824. weight: math.unit(621, "lb"),
  38825. name: "Back",
  38826. image: {
  38827. source: "./media/characters/unmru/back.svg",
  38828. extra: 1894/1765,
  38829. bottom: 75/1969
  38830. }
  38831. },
  38832. dick: {
  38833. height: math.unit(3, "feet"),
  38834. weight: math.unit(35, "lb"),
  38835. name: "Dick",
  38836. image: {
  38837. source: "./media/characters/unmru/dick.svg"
  38838. }
  38839. },
  38840. },
  38841. [
  38842. {
  38843. name: "Normal",
  38844. height: math.unit(9, "feet")
  38845. },
  38846. {
  38847. name: "Natural",
  38848. height: math.unit(27, "feet"),
  38849. default: true
  38850. },
  38851. {
  38852. name: "Giant",
  38853. height: math.unit(90, "feet")
  38854. },
  38855. {
  38856. name: "Kaiju",
  38857. height: math.unit(270, "feet")
  38858. },
  38859. {
  38860. name: "Macro",
  38861. height: math.unit(900, "feet")
  38862. },
  38863. {
  38864. name: "Macro+",
  38865. height: math.unit(2700, "feet")
  38866. },
  38867. {
  38868. name: "Megamacro",
  38869. height: math.unit(9000, "feet")
  38870. },
  38871. {
  38872. name: "City-Crushing",
  38873. height: math.unit(27000, "feet")
  38874. },
  38875. {
  38876. name: "Mountain-Mashing",
  38877. height: math.unit(90000, "feet")
  38878. },
  38879. {
  38880. name: "Earth-Eclipsing",
  38881. height: math.unit(2.7e8, "feet")
  38882. },
  38883. {
  38884. name: "Sol-Swallowing",
  38885. height: math.unit(9e10, "feet")
  38886. },
  38887. {
  38888. name: "Majoris-Munching",
  38889. height: math.unit(2.7e13, "feet")
  38890. },
  38891. ]
  38892. ))
  38893. characterMakers.push(() => makeCharacter(
  38894. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38895. {
  38896. front: {
  38897. height: math.unit(1, "inch"),
  38898. name: "Front",
  38899. image: {
  38900. source: "./media/characters/squeaks-mouse/front.svg",
  38901. extra: 352/308,
  38902. bottom: 25/377
  38903. }
  38904. },
  38905. },
  38906. [
  38907. {
  38908. name: "Micro",
  38909. height: math.unit(1, "inch"),
  38910. default: true
  38911. },
  38912. ]
  38913. ))
  38914. characterMakers.push(() => makeCharacter(
  38915. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38916. {
  38917. side: {
  38918. height: math.unit(35, "feet"),
  38919. name: "Side",
  38920. image: {
  38921. source: "./media/characters/sayko/side.svg",
  38922. extra: 1697/1021,
  38923. bottom: 82/1779
  38924. }
  38925. },
  38926. head: {
  38927. height: math.unit(16, "feet"),
  38928. name: "Head",
  38929. image: {
  38930. source: "./media/characters/sayko/head.svg"
  38931. }
  38932. },
  38933. forepaw: {
  38934. height: math.unit(7.85, "feet"),
  38935. name: "Forepaw",
  38936. image: {
  38937. source: "./media/characters/sayko/forepaw.svg"
  38938. }
  38939. },
  38940. hindpaw: {
  38941. height: math.unit(8.8, "feet"),
  38942. name: "Hindpaw",
  38943. image: {
  38944. source: "./media/characters/sayko/hindpaw.svg"
  38945. }
  38946. },
  38947. },
  38948. [
  38949. {
  38950. name: "Normal",
  38951. height: math.unit(35, "feet"),
  38952. default: true
  38953. },
  38954. {
  38955. name: "Colossus",
  38956. height: math.unit(100, "meters")
  38957. },
  38958. {
  38959. name: "\"Small\" Deity",
  38960. height: math.unit(1, "km")
  38961. },
  38962. {
  38963. name: "\"Large\" Deity",
  38964. height: math.unit(15, "km")
  38965. },
  38966. ]
  38967. ))
  38968. characterMakers.push(() => makeCharacter(
  38969. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38970. {
  38971. front: {
  38972. height: math.unit(6, "feet"),
  38973. weight: math.unit(250, "lb"),
  38974. name: "Front",
  38975. image: {
  38976. source: "./media/characters/mukiro/front.svg",
  38977. extra: 1368/1310,
  38978. bottom: 34/1402
  38979. }
  38980. },
  38981. },
  38982. [
  38983. {
  38984. name: "Normal",
  38985. height: math.unit(6, "feet"),
  38986. default: true
  38987. },
  38988. ]
  38989. ))
  38990. characterMakers.push(() => makeCharacter(
  38991. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38992. {
  38993. front: {
  38994. height: math.unit(12 + 4/12, "feet"),
  38995. name: "Front",
  38996. image: {
  38997. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38998. extra: 1346/1311,
  38999. bottom: 65/1411
  39000. }
  39001. },
  39002. },
  39003. [
  39004. {
  39005. name: "Base",
  39006. height: math.unit(12 + 4/12, "feet"),
  39007. default: true
  39008. },
  39009. {
  39010. name: "Macro",
  39011. height: math.unit(150, "feet")
  39012. },
  39013. {
  39014. name: "Mega",
  39015. height: math.unit(2, "miles")
  39016. },
  39017. {
  39018. name: "Demi God",
  39019. height: math.unit(4, "AU")
  39020. },
  39021. {
  39022. name: "God Size",
  39023. height: math.unit(1, "universe")
  39024. },
  39025. ]
  39026. ))
  39027. characterMakers.push(() => makeCharacter(
  39028. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39029. {
  39030. front: {
  39031. height: math.unit(3 + 3/12, "feet"),
  39032. weight: math.unit(88, "lb"),
  39033. name: "Front",
  39034. image: {
  39035. source: "./media/characters/trey/front.svg",
  39036. extra: 1815/1509,
  39037. bottom: 60/1875
  39038. }
  39039. },
  39040. },
  39041. [
  39042. {
  39043. name: "Normal",
  39044. height: math.unit(3 + 3/12, "feet"),
  39045. default: true
  39046. },
  39047. ]
  39048. ))
  39049. characterMakers.push(() => makeCharacter(
  39050. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39051. {
  39052. front: {
  39053. height: math.unit(4, "meters"),
  39054. name: "Front",
  39055. image: {
  39056. source: "./media/characters/adelonda/front.svg",
  39057. extra: 1077/982,
  39058. bottom: 39/1116
  39059. }
  39060. },
  39061. back: {
  39062. height: math.unit(4, "meters"),
  39063. name: "Back",
  39064. image: {
  39065. source: "./media/characters/adelonda/back.svg",
  39066. extra: 1105/1003,
  39067. bottom: 25/1130
  39068. }
  39069. },
  39070. feral: {
  39071. height: math.unit(40/1.5, "meters"),
  39072. name: "Feral",
  39073. image: {
  39074. source: "./media/characters/adelonda/feral.svg",
  39075. extra: 597/271,
  39076. bottom: 387/984
  39077. }
  39078. },
  39079. },
  39080. [
  39081. {
  39082. name: "Normal",
  39083. height: math.unit(4, "meters"),
  39084. default: true
  39085. },
  39086. ]
  39087. ))
  39088. characterMakers.push(() => makeCharacter(
  39089. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39090. {
  39091. front: {
  39092. height: math.unit(8 + 4/12, "feet"),
  39093. weight: math.unit(670, "lb"),
  39094. name: "Front",
  39095. image: {
  39096. source: "./media/characters/acadiel/front.svg",
  39097. extra: 1901/1595,
  39098. bottom: 142/2043
  39099. }
  39100. },
  39101. },
  39102. [
  39103. {
  39104. name: "Normal",
  39105. height: math.unit(8 + 4/12, "feet"),
  39106. default: true
  39107. },
  39108. {
  39109. name: "Macro",
  39110. height: math.unit(200, "feet")
  39111. },
  39112. ]
  39113. ))
  39114. characterMakers.push(() => makeCharacter(
  39115. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39116. {
  39117. front: {
  39118. height: math.unit(6 + 2/12, "feet"),
  39119. weight: math.unit(185, "lb"),
  39120. name: "Front",
  39121. image: {
  39122. source: "./media/characters/kayne-ein/front.svg",
  39123. extra: 1780/1560,
  39124. bottom: 81/1861
  39125. }
  39126. },
  39127. },
  39128. [
  39129. {
  39130. name: "Normal",
  39131. height: math.unit(6 + 2/12, "feet"),
  39132. default: true
  39133. },
  39134. {
  39135. name: "Transformation Stage",
  39136. height: math.unit(15, "feet")
  39137. },
  39138. {
  39139. name: "Macro",
  39140. height: math.unit(150, "feet")
  39141. },
  39142. {
  39143. name: "Earth's Shadow",
  39144. height: math.unit(6200, "miles")
  39145. },
  39146. {
  39147. name: "Universal Demon",
  39148. height: math.unit(28e9, "parsecs")
  39149. },
  39150. {
  39151. name: "Multiverse God",
  39152. height: math.unit(3, "multiverses")
  39153. },
  39154. ]
  39155. ))
  39156. characterMakers.push(() => makeCharacter(
  39157. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39158. {
  39159. front: {
  39160. height: math.unit(5 + 5/12, "feet"),
  39161. name: "Front",
  39162. image: {
  39163. source: "./media/characters/fawn/front.svg",
  39164. extra: 1873/1731,
  39165. bottom: 95/1968
  39166. }
  39167. },
  39168. back: {
  39169. height: math.unit(5 + 5/12, "feet"),
  39170. name: "Back",
  39171. image: {
  39172. source: "./media/characters/fawn/back.svg",
  39173. extra: 1813/1700,
  39174. bottom: 14/1827
  39175. }
  39176. },
  39177. hoof: {
  39178. height: math.unit(1.45, "feet"),
  39179. name: "Hoof",
  39180. image: {
  39181. source: "./media/characters/fawn/hoof.svg"
  39182. }
  39183. },
  39184. },
  39185. [
  39186. {
  39187. name: "Normal",
  39188. height: math.unit(5 + 5/12, "feet"),
  39189. default: true
  39190. },
  39191. ]
  39192. ))
  39193. characterMakers.push(() => makeCharacter(
  39194. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39195. {
  39196. front: {
  39197. height: math.unit(2 + 5/12, "feet"),
  39198. name: "Front",
  39199. image: {
  39200. source: "./media/characters/orion/front.svg",
  39201. extra: 1366/1304,
  39202. bottom: 43/1409
  39203. }
  39204. },
  39205. paw: {
  39206. height: math.unit(0.52, "feet"),
  39207. name: "Paw",
  39208. image: {
  39209. source: "./media/characters/orion/paw.svg"
  39210. }
  39211. },
  39212. },
  39213. [
  39214. {
  39215. name: "Normal",
  39216. height: math.unit(2 + 5/12, "feet"),
  39217. default: true
  39218. },
  39219. ]
  39220. ))
  39221. characterMakers.push(() => makeCharacter(
  39222. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39223. {
  39224. front: {
  39225. height: math.unit(5 + 10/12, "feet"),
  39226. name: "Front",
  39227. image: {
  39228. source: "./media/characters/vera/front.svg",
  39229. extra: 1680/1575,
  39230. bottom: 49/1729
  39231. }
  39232. },
  39233. back: {
  39234. height: math.unit(5 + 10/12, "feet"),
  39235. name: "Back",
  39236. image: {
  39237. source: "./media/characters/vera/back.svg",
  39238. extra: 1700/1588,
  39239. bottom: 18/1718
  39240. }
  39241. },
  39242. arcanine: {
  39243. height: math.unit(6 + 8/12, "feet"),
  39244. name: "Arcanine",
  39245. image: {
  39246. source: "./media/characters/vera/arcanine.svg",
  39247. extra: 1590/1511,
  39248. bottom: 71/1661
  39249. }
  39250. },
  39251. maw: {
  39252. height: math.unit(0.82, "feet"),
  39253. name: "Maw",
  39254. image: {
  39255. source: "./media/characters/vera/maw.svg"
  39256. }
  39257. },
  39258. mawArcanine: {
  39259. height: math.unit(0.97, "feet"),
  39260. name: "Maw (Arcanine)",
  39261. image: {
  39262. source: "./media/characters/vera/maw-arcanine.svg"
  39263. }
  39264. },
  39265. paw: {
  39266. height: math.unit(0.75, "feet"),
  39267. name: "Paw",
  39268. image: {
  39269. source: "./media/characters/vera/paw.svg"
  39270. }
  39271. },
  39272. pawprint: {
  39273. height: math.unit(0.52, "feet"),
  39274. name: "Pawprint",
  39275. image: {
  39276. source: "./media/characters/vera/pawprint.svg"
  39277. }
  39278. },
  39279. },
  39280. [
  39281. {
  39282. name: "Normal",
  39283. height: math.unit(5 + 10/12, "feet"),
  39284. default: true
  39285. },
  39286. {
  39287. name: "Macro",
  39288. height: math.unit(75, "feet")
  39289. },
  39290. ]
  39291. ))
  39292. characterMakers.push(() => makeCharacter(
  39293. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39294. {
  39295. front: {
  39296. height: math.unit(4, "feet"),
  39297. weight: math.unit(40, "lb"),
  39298. name: "Front",
  39299. image: {
  39300. source: "./media/characters/orvan-rabbit/front.svg",
  39301. extra: 1896/1642,
  39302. bottom: 29/1925
  39303. }
  39304. },
  39305. },
  39306. [
  39307. {
  39308. name: "Normal",
  39309. height: math.unit(4, "feet"),
  39310. default: true
  39311. },
  39312. ]
  39313. ))
  39314. characterMakers.push(() => makeCharacter(
  39315. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39316. {
  39317. front: {
  39318. height: math.unit(6, "feet"),
  39319. weight: math.unit(168, "lb"),
  39320. name: "Front",
  39321. image: {
  39322. source: "./media/characters/lisa/front.svg",
  39323. extra: 2065/1867,
  39324. bottom: 46/2111
  39325. }
  39326. },
  39327. back: {
  39328. height: math.unit(6, "feet"),
  39329. weight: math.unit(168, "lb"),
  39330. name: "Back",
  39331. image: {
  39332. source: "./media/characters/lisa/back.svg",
  39333. extra: 1982/1838,
  39334. bottom: 29/2011
  39335. }
  39336. },
  39337. maw: {
  39338. height: math.unit(0.81, "feet"),
  39339. name: "Maw",
  39340. image: {
  39341. source: "./media/characters/lisa/maw.svg"
  39342. }
  39343. },
  39344. paw: {
  39345. height: math.unit(0.9, "feet"),
  39346. name: "Paw",
  39347. image: {
  39348. source: "./media/characters/lisa/paw.svg"
  39349. }
  39350. },
  39351. caribousune: {
  39352. height: math.unit(7 + 2/12, "feet"),
  39353. weight: math.unit(268, "lb"),
  39354. name: "Caribousune",
  39355. image: {
  39356. source: "./media/characters/lisa/caribousune.svg",
  39357. extra: 1843/1633,
  39358. bottom: 29/1872
  39359. }
  39360. },
  39361. frontCaribousune: {
  39362. height: math.unit(7 + 2/12, "feet"),
  39363. weight: math.unit(268, "lb"),
  39364. name: "Front (Caribousune)",
  39365. image: {
  39366. source: "./media/characters/lisa/front-caribousune.svg",
  39367. extra: 1818/1638,
  39368. bottom: 52/1870
  39369. }
  39370. },
  39371. sideCaribousune: {
  39372. height: math.unit(7 + 2/12, "feet"),
  39373. weight: math.unit(268, "lb"),
  39374. name: "Side (Caribousune)",
  39375. image: {
  39376. source: "./media/characters/lisa/side-caribousune.svg",
  39377. extra: 1851/1635,
  39378. bottom: 16/1867
  39379. }
  39380. },
  39381. backCaribousune: {
  39382. height: math.unit(7 + 2/12, "feet"),
  39383. weight: math.unit(268, "lb"),
  39384. name: "Back (Caribousune)",
  39385. image: {
  39386. source: "./media/characters/lisa/back-caribousune.svg",
  39387. extra: 1801/1604,
  39388. bottom: 44/1845
  39389. }
  39390. },
  39391. caribou: {
  39392. height: math.unit(7 + 2/12, "feet"),
  39393. weight: math.unit(268, "lb"),
  39394. name: "Caribou",
  39395. image: {
  39396. source: "./media/characters/lisa/caribou.svg",
  39397. extra: 1843/1633,
  39398. bottom: 29/1872
  39399. }
  39400. },
  39401. frontCaribou: {
  39402. height: math.unit(7 + 2/12, "feet"),
  39403. weight: math.unit(268, "lb"),
  39404. name: "Front (Caribou)",
  39405. image: {
  39406. source: "./media/characters/lisa/front-caribou.svg",
  39407. extra: 1818/1638,
  39408. bottom: 52/1870
  39409. }
  39410. },
  39411. sideCaribou: {
  39412. height: math.unit(7 + 2/12, "feet"),
  39413. weight: math.unit(268, "lb"),
  39414. name: "Side (Caribou)",
  39415. image: {
  39416. source: "./media/characters/lisa/side-caribou.svg",
  39417. extra: 1851/1635,
  39418. bottom: 16/1867
  39419. }
  39420. },
  39421. backCaribou: {
  39422. height: math.unit(7 + 2/12, "feet"),
  39423. weight: math.unit(268, "lb"),
  39424. name: "Back (Caribou)",
  39425. image: {
  39426. source: "./media/characters/lisa/back-caribou.svg",
  39427. extra: 1801/1604,
  39428. bottom: 44/1845
  39429. }
  39430. },
  39431. mawCaribou: {
  39432. height: math.unit(1.45, "feet"),
  39433. name: "Maw (Caribou)",
  39434. image: {
  39435. source: "./media/characters/lisa/maw-caribou.svg"
  39436. }
  39437. },
  39438. mawCaribousune: {
  39439. height: math.unit(1.45, "feet"),
  39440. name: "Maw (Caribousune)",
  39441. image: {
  39442. source: "./media/characters/lisa/maw-caribousune.svg"
  39443. }
  39444. },
  39445. pawCaribousune: {
  39446. height: math.unit(1.61, "feet"),
  39447. name: "Paw (Caribou)",
  39448. image: {
  39449. source: "./media/characters/lisa/paw-caribousune.svg"
  39450. }
  39451. },
  39452. },
  39453. [
  39454. {
  39455. name: "Normal",
  39456. height: math.unit(6, "feet")
  39457. },
  39458. {
  39459. name: "God Size",
  39460. height: math.unit(72, "feet"),
  39461. default: true
  39462. },
  39463. {
  39464. name: "Towering",
  39465. height: math.unit(288, "feet")
  39466. },
  39467. {
  39468. name: "City Size",
  39469. height: math.unit(48384, "feet")
  39470. },
  39471. {
  39472. name: "Continental",
  39473. height: math.unit(4200, "miles")
  39474. },
  39475. {
  39476. name: "Planet Eater",
  39477. height: math.unit(42, "earths")
  39478. },
  39479. {
  39480. name: "Star Swallower",
  39481. height: math.unit(42, "solarradii")
  39482. },
  39483. {
  39484. name: "System Swallower",
  39485. height: math.unit(84000, "AU")
  39486. },
  39487. {
  39488. name: "Galaxy Gobbler",
  39489. height: math.unit(42, "galaxies")
  39490. },
  39491. {
  39492. name: "Universe Devourer",
  39493. height: math.unit(42, "universes")
  39494. },
  39495. {
  39496. name: "Multiverse Muncher",
  39497. height: math.unit(42, "multiverses")
  39498. },
  39499. ]
  39500. ))
  39501. characterMakers.push(() => makeCharacter(
  39502. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39503. {
  39504. front: {
  39505. height: math.unit(36, "feet"),
  39506. name: "Front",
  39507. image: {
  39508. source: "./media/characters/shadow-rat/front.svg",
  39509. extra: 1845/1758,
  39510. bottom: 83/1928
  39511. }
  39512. },
  39513. },
  39514. [
  39515. {
  39516. name: "Macro",
  39517. height: math.unit(36, "feet"),
  39518. default: true
  39519. },
  39520. ]
  39521. ))
  39522. characterMakers.push(() => makeCharacter(
  39523. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39524. {
  39525. side: {
  39526. height: math.unit(8, "feet"),
  39527. weight: math.unit(2630, "lb"),
  39528. name: "Side",
  39529. image: {
  39530. source: "./media/characters/torallia/side.svg",
  39531. extra: 2164/2021,
  39532. bottom: 371/2535
  39533. }
  39534. },
  39535. },
  39536. [
  39537. {
  39538. name: "Mortal Interaction",
  39539. height: math.unit(8, "feet")
  39540. },
  39541. {
  39542. name: "Natural",
  39543. height: math.unit(24, "feet"),
  39544. default: true
  39545. },
  39546. {
  39547. name: "Giant",
  39548. height: math.unit(80, "feet")
  39549. },
  39550. {
  39551. name: "Kaiju",
  39552. height: math.unit(240, "feet")
  39553. },
  39554. {
  39555. name: "Macro",
  39556. height: math.unit(800, "feet")
  39557. },
  39558. {
  39559. name: "Macro+",
  39560. height: math.unit(2400, "feet")
  39561. },
  39562. {
  39563. name: "Macro++",
  39564. height: math.unit(8000, "feet")
  39565. },
  39566. {
  39567. name: "City-Crushing",
  39568. height: math.unit(24000, "feet")
  39569. },
  39570. {
  39571. name: "Mountain-Mashing",
  39572. height: math.unit(80000, "feet")
  39573. },
  39574. {
  39575. name: "District Demolisher",
  39576. height: math.unit(240000, "feet")
  39577. },
  39578. {
  39579. name: "Tri-County Terror",
  39580. height: math.unit(800000, "feet")
  39581. },
  39582. {
  39583. name: "State Smasher",
  39584. height: math.unit(2.4e6, "feet")
  39585. },
  39586. {
  39587. name: "Nation Nemesis",
  39588. height: math.unit(8e6, "feet")
  39589. },
  39590. {
  39591. name: "Continent Cracker",
  39592. height: math.unit(2.4e7, "feet")
  39593. },
  39594. {
  39595. name: "Planet-Pillaging",
  39596. height: math.unit(8e7, "feet")
  39597. },
  39598. {
  39599. name: "Earth-Eclipsing",
  39600. height: math.unit(2.4e8, "feet")
  39601. },
  39602. {
  39603. name: "Jovian-Jostling",
  39604. height: math.unit(8e8, "feet")
  39605. },
  39606. {
  39607. name: "Gas Giant Gulper",
  39608. height: math.unit(2.4e9, "feet")
  39609. },
  39610. {
  39611. name: "Astral Annihilator",
  39612. height: math.unit(8e9, "feet")
  39613. },
  39614. {
  39615. name: "Celestial Conqueror",
  39616. height: math.unit(2.4e10, "feet")
  39617. },
  39618. {
  39619. name: "Sol-Swallowing",
  39620. height: math.unit(8e10, "feet")
  39621. },
  39622. {
  39623. name: "Hunter of the Heavens",
  39624. height: math.unit(2.4e13, "feet")
  39625. },
  39626. ]
  39627. ))
  39628. characterMakers.push(() => makeCharacter(
  39629. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39630. {
  39631. front: {
  39632. height: math.unit(6 + 8/12, "feet"),
  39633. name: "Front",
  39634. image: {
  39635. source: "./media/characters/rebecca-pawlson/front.svg",
  39636. extra: 1737/1596,
  39637. bottom: 107/1844
  39638. }
  39639. },
  39640. back: {
  39641. height: math.unit(6 + 8/12, "feet"),
  39642. name: "Back",
  39643. image: {
  39644. source: "./media/characters/rebecca-pawlson/back.svg",
  39645. extra: 1702/1523,
  39646. bottom: 86/1788
  39647. }
  39648. },
  39649. },
  39650. [
  39651. {
  39652. name: "Normal",
  39653. height: math.unit(6 + 8/12, "feet")
  39654. },
  39655. {
  39656. name: "Mini Macro",
  39657. height: math.unit(10, "feet"),
  39658. default: true
  39659. },
  39660. {
  39661. name: "Macro",
  39662. height: math.unit(100, "feet")
  39663. },
  39664. {
  39665. name: "Mega Macro",
  39666. height: math.unit(2500, "feet")
  39667. },
  39668. {
  39669. name: "Giga Macro",
  39670. height: math.unit(50, "miles")
  39671. },
  39672. ]
  39673. ))
  39674. characterMakers.push(() => makeCharacter(
  39675. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39676. {
  39677. front: {
  39678. height: math.unit(7 + 6/12, "feet"),
  39679. weight: math.unit(600, "lb"),
  39680. name: "Front",
  39681. image: {
  39682. source: "./media/characters/moxie-nova/front.svg",
  39683. extra: 1734/1652,
  39684. bottom: 41/1775
  39685. }
  39686. },
  39687. },
  39688. [
  39689. {
  39690. name: "Normal",
  39691. height: math.unit(7 + 6/12, "feet"),
  39692. default: true
  39693. },
  39694. ]
  39695. ))
  39696. characterMakers.push(() => makeCharacter(
  39697. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39698. {
  39699. goat: {
  39700. height: math.unit(4, "feet"),
  39701. weight: math.unit(180, "lb"),
  39702. name: "Goat",
  39703. image: {
  39704. source: "./media/characters/tiffany/goat.svg",
  39705. extra: 1845/1595,
  39706. bottom: 106/1951
  39707. }
  39708. },
  39709. front: {
  39710. height: math.unit(5, "feet"),
  39711. weight: math.unit(150, "lb"),
  39712. name: "Foxcoon",
  39713. image: {
  39714. source: "./media/characters/tiffany/foxcoon.svg",
  39715. extra: 1941/1845,
  39716. bottom: 58/1999
  39717. }
  39718. },
  39719. },
  39720. [
  39721. {
  39722. name: "Normal",
  39723. height: math.unit(5, "feet"),
  39724. default: true
  39725. },
  39726. ]
  39727. ))
  39728. characterMakers.push(() => makeCharacter(
  39729. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39730. {
  39731. front: {
  39732. height: math.unit(8, "feet"),
  39733. weight: math.unit(300, "lb"),
  39734. name: "Front",
  39735. image: {
  39736. source: "./media/characters/raxinath/front.svg",
  39737. extra: 1407/1309,
  39738. bottom: 39/1446
  39739. }
  39740. },
  39741. back: {
  39742. height: math.unit(8, "feet"),
  39743. weight: math.unit(300, "lb"),
  39744. name: "Back",
  39745. image: {
  39746. source: "./media/characters/raxinath/back.svg",
  39747. extra: 1405/1315,
  39748. bottom: 9/1414
  39749. }
  39750. },
  39751. },
  39752. [
  39753. {
  39754. name: "Speck",
  39755. height: math.unit(0.5, "nm")
  39756. },
  39757. {
  39758. name: "Micro",
  39759. height: math.unit(3, "inches")
  39760. },
  39761. {
  39762. name: "Kobold",
  39763. height: math.unit(3, "feet")
  39764. },
  39765. {
  39766. name: "Normal",
  39767. height: math.unit(8, "feet"),
  39768. default: true
  39769. },
  39770. {
  39771. name: "Giant",
  39772. height: math.unit(50, "feet")
  39773. },
  39774. {
  39775. name: "Macro",
  39776. height: math.unit(1000, "feet")
  39777. },
  39778. {
  39779. name: "Megamacro",
  39780. height: math.unit(1, "mile")
  39781. },
  39782. ]
  39783. ))
  39784. characterMakers.push(() => makeCharacter(
  39785. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39786. {
  39787. front: {
  39788. height: math.unit(10, "feet"),
  39789. weight: math.unit(1442, "lb"),
  39790. name: "Front",
  39791. image: {
  39792. source: "./media/characters/mal-dragon/front.svg",
  39793. extra: 1515/1444,
  39794. bottom: 113/1628
  39795. }
  39796. },
  39797. back: {
  39798. height: math.unit(10, "feet"),
  39799. weight: math.unit(1442, "lb"),
  39800. name: "Back",
  39801. image: {
  39802. source: "./media/characters/mal-dragon/back.svg",
  39803. extra: 1527/1434,
  39804. bottom: 25/1552
  39805. }
  39806. },
  39807. },
  39808. [
  39809. {
  39810. name: "Mortal Interaction",
  39811. height: math.unit(10, "feet"),
  39812. default: true
  39813. },
  39814. {
  39815. name: "Large",
  39816. height: math.unit(30, "feet")
  39817. },
  39818. {
  39819. name: "Kaiju",
  39820. height: math.unit(300, "feet")
  39821. },
  39822. {
  39823. name: "Megamacro",
  39824. height: math.unit(10000, "feet")
  39825. },
  39826. {
  39827. name: "Continent Cracker",
  39828. height: math.unit(30000000, "feet")
  39829. },
  39830. {
  39831. name: "Sol-Swallowing",
  39832. height: math.unit(1e11, "feet")
  39833. },
  39834. {
  39835. name: "Light Universal",
  39836. height: math.unit(5, "universes")
  39837. },
  39838. {
  39839. name: "Universe Atoms",
  39840. height: math.unit(1.829e9, "universes")
  39841. },
  39842. {
  39843. name: "Light Multiversal",
  39844. height: math.unit(5, "multiverses")
  39845. },
  39846. {
  39847. name: "Multiverse Atoms",
  39848. height: math.unit(1.829e9, "multiverses")
  39849. },
  39850. {
  39851. name: "Fabric of Time",
  39852. height: math.unit(1e262, "multiverses")
  39853. },
  39854. ]
  39855. ))
  39856. characterMakers.push(() => makeCharacter(
  39857. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39858. {
  39859. front: {
  39860. height: math.unit(9, "feet"),
  39861. weight: math.unit(1050, "lb"),
  39862. name: "Front",
  39863. image: {
  39864. source: "./media/characters/tabitha/front.svg",
  39865. extra: 2083/1994,
  39866. bottom: 68/2151
  39867. }
  39868. },
  39869. },
  39870. [
  39871. {
  39872. name: "Baseline",
  39873. height: math.unit(9, "feet"),
  39874. default: true
  39875. },
  39876. {
  39877. name: "Giant",
  39878. height: math.unit(90, "feet")
  39879. },
  39880. {
  39881. name: "Macro",
  39882. height: math.unit(900, "feet")
  39883. },
  39884. {
  39885. name: "Megamacro",
  39886. height: math.unit(9000, "feet")
  39887. },
  39888. {
  39889. name: "City-Crushing",
  39890. height: math.unit(27000, "feet")
  39891. },
  39892. {
  39893. name: "Mountain-Mashing",
  39894. height: math.unit(90000, "feet")
  39895. },
  39896. {
  39897. name: "Nation Nemesis",
  39898. height: math.unit(9e6, "feet")
  39899. },
  39900. {
  39901. name: "Continent Cracker",
  39902. height: math.unit(27e6, "feet")
  39903. },
  39904. {
  39905. name: "Earth-Eclipsing",
  39906. height: math.unit(2.7e8, "feet")
  39907. },
  39908. {
  39909. name: "Gas Giant Gulper",
  39910. height: math.unit(2.7e9, "feet")
  39911. },
  39912. {
  39913. name: "Sol-Swallowing",
  39914. height: math.unit(9e10, "feet")
  39915. },
  39916. {
  39917. name: "Galaxy Gulper",
  39918. height: math.unit(9, "galaxies")
  39919. },
  39920. {
  39921. name: "Cosmos Churner",
  39922. height: math.unit(9, "universes")
  39923. },
  39924. ]
  39925. ))
  39926. characterMakers.push(() => makeCharacter(
  39927. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39928. {
  39929. front: {
  39930. height: math.unit(160, "cm"),
  39931. weight: math.unit(55, "kg"),
  39932. name: "Front",
  39933. image: {
  39934. source: "./media/characters/tow/front.svg",
  39935. extra: 1751/1722,
  39936. bottom: 74/1825
  39937. }
  39938. },
  39939. },
  39940. [
  39941. {
  39942. name: "Norm",
  39943. height: math.unit(160, "cm")
  39944. },
  39945. {
  39946. name: "Casual",
  39947. height: math.unit(3200, "m"),
  39948. default: true
  39949. },
  39950. {
  39951. name: "Show-Off",
  39952. height: math.unit(160, "km")
  39953. },
  39954. ]
  39955. ))
  39956. characterMakers.push(() => makeCharacter(
  39957. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39958. {
  39959. front: {
  39960. height: math.unit(7 + 11/12, "feet"),
  39961. weight: math.unit(342.8, "lb"),
  39962. name: "Front",
  39963. image: {
  39964. source: "./media/characters/vivian-orca-dragon/front.svg",
  39965. extra: 1890/1865,
  39966. bottom: 28/1918
  39967. }
  39968. },
  39969. },
  39970. [
  39971. {
  39972. name: "Micro",
  39973. height: math.unit(5, "inches")
  39974. },
  39975. {
  39976. name: "Normal",
  39977. height: math.unit(7 + 11/12, "feet"),
  39978. default: true
  39979. },
  39980. {
  39981. name: "Macro",
  39982. height: math.unit(395 + 7/12, "feet")
  39983. },
  39984. ]
  39985. ))
  39986. characterMakers.push(() => makeCharacter(
  39987. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39988. {
  39989. side: {
  39990. height: math.unit(10, "feet"),
  39991. weight: math.unit(1442, "lb"),
  39992. name: "Side",
  39993. image: {
  39994. source: "./media/characters/lotherakon/side.svg",
  39995. extra: 1604/1497,
  39996. bottom: 89/1693
  39997. }
  39998. },
  39999. },
  40000. [
  40001. {
  40002. name: "Mortal Interaction",
  40003. height: math.unit(10, "feet")
  40004. },
  40005. {
  40006. name: "Large",
  40007. height: math.unit(30, "feet"),
  40008. default: true
  40009. },
  40010. {
  40011. name: "Giant",
  40012. height: math.unit(100, "feet")
  40013. },
  40014. {
  40015. name: "Kaiju",
  40016. height: math.unit(300, "feet")
  40017. },
  40018. {
  40019. name: "Macro",
  40020. height: math.unit(1000, "feet")
  40021. },
  40022. {
  40023. name: "Macro+",
  40024. height: math.unit(3000, "feet")
  40025. },
  40026. {
  40027. name: "Megamacro",
  40028. height: math.unit(10000, "feet")
  40029. },
  40030. {
  40031. name: "City-Crushing",
  40032. height: math.unit(30000, "feet")
  40033. },
  40034. {
  40035. name: "Continent Cracker",
  40036. height: math.unit(30e6, "feet")
  40037. },
  40038. {
  40039. name: "Earth Eclipsing",
  40040. height: math.unit(3e8, "feet")
  40041. },
  40042. {
  40043. name: "Gas Giant Gulper",
  40044. height: math.unit(3e9, "feet")
  40045. },
  40046. {
  40047. name: "Sol-Swallowing",
  40048. height: math.unit(1e11, "feet")
  40049. },
  40050. {
  40051. name: "System Swallower",
  40052. height: math.unit(3e14, "feet")
  40053. },
  40054. {
  40055. name: "Galaxy Gulper",
  40056. height: math.unit(10, "galaxies")
  40057. },
  40058. {
  40059. name: "Light Universal",
  40060. height: math.unit(5, "universes")
  40061. },
  40062. {
  40063. name: "Universe Palm",
  40064. height: math.unit(20, "universes")
  40065. },
  40066. {
  40067. name: "Light Multiversal",
  40068. height: math.unit(5, "multiverses")
  40069. },
  40070. {
  40071. name: "Multiverse Palm",
  40072. height: math.unit(20, "multiverses")
  40073. },
  40074. {
  40075. name: "Inferno Incarnate",
  40076. height: math.unit(1e7, "multiverses")
  40077. },
  40078. ]
  40079. ))
  40080. characterMakers.push(() => makeCharacter(
  40081. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40082. {
  40083. front: {
  40084. height: math.unit(8, "feet"),
  40085. weight: math.unit(1200, "lb"),
  40086. name: "Front",
  40087. image: {
  40088. source: "./media/characters/malithee/front.svg",
  40089. extra: 1675/1640,
  40090. bottom: 162/1837
  40091. }
  40092. },
  40093. },
  40094. [
  40095. {
  40096. name: "Mortal Interaction",
  40097. height: math.unit(8, "feet"),
  40098. default: true
  40099. },
  40100. {
  40101. name: "Large",
  40102. height: math.unit(24, "feet")
  40103. },
  40104. {
  40105. name: "Kaiju",
  40106. height: math.unit(240, "feet")
  40107. },
  40108. {
  40109. name: "Megamacro",
  40110. height: math.unit(8000, "feet")
  40111. },
  40112. {
  40113. name: "Continent Cracker",
  40114. height: math.unit(24e6, "feet")
  40115. },
  40116. {
  40117. name: "Earth-Eclipsing",
  40118. height: math.unit(2.4e8, "feet")
  40119. },
  40120. {
  40121. name: "Sol-Swallowing",
  40122. height: math.unit(8e10, "feet")
  40123. },
  40124. {
  40125. name: "Galaxy Gulper",
  40126. height: math.unit(8, "galaxies")
  40127. },
  40128. {
  40129. name: "Light Universal",
  40130. height: math.unit(4, "universes")
  40131. },
  40132. {
  40133. name: "Universe Atoms",
  40134. height: math.unit(1.829e9, "universes")
  40135. },
  40136. {
  40137. name: "Light Multiversal",
  40138. height: math.unit(4, "multiverses")
  40139. },
  40140. {
  40141. name: "Multiverse Atoms",
  40142. height: math.unit(1.829e9, "multiverses")
  40143. },
  40144. {
  40145. name: "Nigh-Omnipresence",
  40146. height: math.unit(8e261, "multiverses")
  40147. },
  40148. ]
  40149. ))
  40150. characterMakers.push(() => makeCharacter(
  40151. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40152. {
  40153. front: {
  40154. height: math.unit(10, "feet"),
  40155. weight: math.unit(1500, "lb"),
  40156. name: "Front",
  40157. image: {
  40158. source: "./media/characters/miles-thestia/front.svg",
  40159. extra: 1812/1727,
  40160. bottom: 86/1898
  40161. }
  40162. },
  40163. back: {
  40164. height: math.unit(10, "feet"),
  40165. weight: math.unit(1500, "lb"),
  40166. name: "Back",
  40167. image: {
  40168. source: "./media/characters/miles-thestia/back.svg",
  40169. extra: 1799/1690,
  40170. bottom: 47/1846
  40171. }
  40172. },
  40173. frontNsfw: {
  40174. height: math.unit(10, "feet"),
  40175. weight: math.unit(1500, "lb"),
  40176. name: "Front (NSFW)",
  40177. image: {
  40178. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40179. extra: 1812/1727,
  40180. bottom: 86/1898
  40181. }
  40182. },
  40183. },
  40184. [
  40185. {
  40186. name: "Mini-Macro",
  40187. height: math.unit(10, "feet"),
  40188. default: true
  40189. },
  40190. ]
  40191. ))
  40192. characterMakers.push(() => makeCharacter(
  40193. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40194. {
  40195. front: {
  40196. height: math.unit(25, "feet"),
  40197. name: "Front",
  40198. image: {
  40199. source: "./media/characters/titan-s-wulf/front.svg",
  40200. extra: 1560/1484,
  40201. bottom: 76/1636
  40202. }
  40203. },
  40204. },
  40205. [
  40206. {
  40207. name: "Smallest",
  40208. height: math.unit(25, "feet"),
  40209. default: true
  40210. },
  40211. {
  40212. name: "Normal",
  40213. height: math.unit(200, "feet")
  40214. },
  40215. {
  40216. name: "Macro",
  40217. height: math.unit(200000, "feet")
  40218. },
  40219. {
  40220. name: "Multiversal Original",
  40221. height: math.unit(10000, "multiverses")
  40222. },
  40223. ]
  40224. ))
  40225. characterMakers.push(() => makeCharacter(
  40226. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40227. {
  40228. front: {
  40229. height: math.unit(8, "feet"),
  40230. weight: math.unit(553, "lb"),
  40231. name: "Front",
  40232. image: {
  40233. source: "./media/characters/tawendeh/front.svg",
  40234. extra: 2365/2268,
  40235. bottom: 83/2448
  40236. }
  40237. },
  40238. frontClothed: {
  40239. height: math.unit(8, "feet"),
  40240. weight: math.unit(553, "lb"),
  40241. name: "Front (Clothed)",
  40242. image: {
  40243. source: "./media/characters/tawendeh/front-clothed.svg",
  40244. extra: 2365/2268,
  40245. bottom: 83/2448
  40246. }
  40247. },
  40248. back: {
  40249. height: math.unit(8, "feet"),
  40250. weight: math.unit(553, "lb"),
  40251. name: "Back",
  40252. image: {
  40253. source: "./media/characters/tawendeh/back.svg",
  40254. extra: 2397/2294,
  40255. bottom: 42/2439
  40256. }
  40257. },
  40258. },
  40259. [
  40260. {
  40261. name: "Mortal Interaction",
  40262. height: math.unit(8, "feet"),
  40263. default: true
  40264. },
  40265. {
  40266. name: "Giant",
  40267. height: math.unit(80, "feet")
  40268. },
  40269. {
  40270. name: "Macro",
  40271. height: math.unit(800, "feet")
  40272. },
  40273. {
  40274. name: "Megamacro",
  40275. height: math.unit(8000, "feet")
  40276. },
  40277. {
  40278. name: "City-Crushing",
  40279. height: math.unit(24000, "feet")
  40280. },
  40281. {
  40282. name: "Mountain-Mashing",
  40283. height: math.unit(80000, "feet")
  40284. },
  40285. {
  40286. name: "Nation Nemesis",
  40287. height: math.unit(8e6, "feet")
  40288. },
  40289. {
  40290. name: "Continent Cracker",
  40291. height: math.unit(24e6, "feet")
  40292. },
  40293. {
  40294. name: "Earth-Eclipsing",
  40295. height: math.unit(2.4e8, "feet")
  40296. },
  40297. {
  40298. name: "Gas Giant Gulper",
  40299. height: math.unit(2.4e9, "feet")
  40300. },
  40301. {
  40302. name: "Sol-Swallowing",
  40303. height: math.unit(8e10, "feet")
  40304. },
  40305. {
  40306. name: "Galaxy Gulper",
  40307. height: math.unit(8, "galaxies")
  40308. },
  40309. {
  40310. name: "Cosmos Churner",
  40311. height: math.unit(8, "universes")
  40312. },
  40313. {
  40314. name: "Omnipotent Otter",
  40315. height: math.unit(80, "universes")
  40316. },
  40317. ]
  40318. ))
  40319. characterMakers.push(() => makeCharacter(
  40320. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40321. {
  40322. front: {
  40323. height: math.unit(2.6, "meters"),
  40324. weight: math.unit(900, "kg"),
  40325. name: "Front",
  40326. image: {
  40327. source: "./media/characters/neesha/front.svg",
  40328. extra: 1803/1653,
  40329. bottom: 128/1931
  40330. }
  40331. },
  40332. },
  40333. [
  40334. {
  40335. name: "Normal",
  40336. height: math.unit(2.6, "meters"),
  40337. default: true
  40338. },
  40339. {
  40340. name: "Macro",
  40341. height: math.unit(50, "meters")
  40342. },
  40343. ]
  40344. ))
  40345. characterMakers.push(() => makeCharacter(
  40346. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40347. {
  40348. front: {
  40349. height: math.unit(5, "feet"),
  40350. weight: math.unit(185, "lb"),
  40351. name: "Front",
  40352. image: {
  40353. source: "./media/characters/kyera/front.svg",
  40354. extra: 1875/1790,
  40355. bottom: 96/1971
  40356. }
  40357. },
  40358. },
  40359. [
  40360. {
  40361. name: "Normal",
  40362. height: math.unit(5, "feet"),
  40363. default: true
  40364. },
  40365. ]
  40366. ))
  40367. characterMakers.push(() => makeCharacter(
  40368. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40369. {
  40370. front: {
  40371. height: math.unit(7 + 6/12, "feet"),
  40372. weight: math.unit(540, "lb"),
  40373. name: "Front",
  40374. image: {
  40375. source: "./media/characters/yuko/front.svg",
  40376. extra: 1282/1222,
  40377. bottom: 101/1383
  40378. }
  40379. },
  40380. frontClothed: {
  40381. height: math.unit(7 + 6/12, "feet"),
  40382. weight: math.unit(540, "lb"),
  40383. name: "Front (Clothed)",
  40384. image: {
  40385. source: "./media/characters/yuko/front-clothed.svg",
  40386. extra: 1282/1222,
  40387. bottom: 101/1383
  40388. }
  40389. },
  40390. },
  40391. [
  40392. {
  40393. name: "Normal",
  40394. height: math.unit(7 + 6/12, "feet"),
  40395. default: true
  40396. },
  40397. {
  40398. name: "Macro",
  40399. height: math.unit(26 + 9/12, "feet")
  40400. },
  40401. {
  40402. name: "Megamacro",
  40403. height: math.unit(300, "feet")
  40404. },
  40405. {
  40406. name: "Gigamacro",
  40407. height: math.unit(5000, "feet")
  40408. },
  40409. {
  40410. name: "Planetary",
  40411. height: math.unit(10000, "miles")
  40412. },
  40413. ]
  40414. ))
  40415. characterMakers.push(() => makeCharacter(
  40416. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40417. {
  40418. front: {
  40419. height: math.unit(8 + 2/12, "feet"),
  40420. weight: math.unit(600, "lb"),
  40421. name: "Front",
  40422. image: {
  40423. source: "./media/characters/deam-nitrel/front.svg",
  40424. extra: 1308/1234,
  40425. bottom: 125/1433
  40426. }
  40427. },
  40428. },
  40429. [
  40430. {
  40431. name: "Normal",
  40432. height: math.unit(8 + 2/12, "feet"),
  40433. default: true
  40434. },
  40435. ]
  40436. ))
  40437. characterMakers.push(() => makeCharacter(
  40438. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40439. {
  40440. front: {
  40441. height: math.unit(6.1, "feet"),
  40442. weight: math.unit(180, "lb"),
  40443. name: "Front",
  40444. image: {
  40445. source: "./media/characters/skyress/front.svg",
  40446. extra: 1045/915,
  40447. bottom: 28/1073
  40448. }
  40449. },
  40450. maw: {
  40451. height: math.unit(1, "feet"),
  40452. name: "Maw",
  40453. image: {
  40454. source: "./media/characters/skyress/maw.svg"
  40455. }
  40456. },
  40457. },
  40458. [
  40459. {
  40460. name: "Normal",
  40461. height: math.unit(6.1, "feet"),
  40462. default: true
  40463. },
  40464. {
  40465. name: "Macro",
  40466. height: math.unit(200, "feet")
  40467. },
  40468. ]
  40469. ))
  40470. characterMakers.push(() => makeCharacter(
  40471. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40472. {
  40473. front: {
  40474. height: math.unit(4 + 2/12, "feet"),
  40475. weight: math.unit(40, "kg"),
  40476. name: "Front",
  40477. image: {
  40478. source: "./media/characters/amethyst-jones/front.svg",
  40479. extra: 1220/1150,
  40480. bottom: 101/1321
  40481. }
  40482. },
  40483. },
  40484. [
  40485. {
  40486. name: "Normal",
  40487. height: math.unit(4 + 2/12, "feet"),
  40488. default: true
  40489. },
  40490. ]
  40491. ))
  40492. characterMakers.push(() => makeCharacter(
  40493. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40494. {
  40495. front: {
  40496. height: math.unit(1.7, "m"),
  40497. weight: math.unit(135, "lb"),
  40498. name: "Front",
  40499. image: {
  40500. source: "./media/characters/jade/front.svg",
  40501. extra: 1818/1767,
  40502. bottom: 32/1850
  40503. }
  40504. },
  40505. back: {
  40506. height: math.unit(1.7, "m"),
  40507. weight: math.unit(135, "lb"),
  40508. name: "Back",
  40509. image: {
  40510. source: "./media/characters/jade/back.svg",
  40511. extra: 1869/1809,
  40512. bottom: 35/1904
  40513. }
  40514. },
  40515. hand: {
  40516. height: math.unit(0.24, "m"),
  40517. name: "Hand",
  40518. image: {
  40519. source: "./media/characters/jade/hand.svg"
  40520. }
  40521. },
  40522. foot: {
  40523. height: math.unit(0.263, "m"),
  40524. name: "Foot",
  40525. image: {
  40526. source: "./media/characters/jade/foot.svg"
  40527. }
  40528. },
  40529. dick: {
  40530. height: math.unit(0.47, "m"),
  40531. name: "Dick",
  40532. image: {
  40533. source: "./media/characters/jade/dick.svg"
  40534. }
  40535. },
  40536. },
  40537. [
  40538. {
  40539. name: "Micro",
  40540. height: math.unit(22, "cm")
  40541. },
  40542. {
  40543. name: "Normal",
  40544. height: math.unit(1.7, "m"),
  40545. default: true
  40546. },
  40547. {
  40548. name: "Macro",
  40549. height: math.unit(152, "m")
  40550. },
  40551. ]
  40552. ))
  40553. characterMakers.push(() => makeCharacter(
  40554. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40555. {
  40556. front: {
  40557. height: math.unit(100, "miles"),
  40558. weight: math.unit(20000, "tons"),
  40559. name: "Front",
  40560. image: {
  40561. source: "./media/characters/cookie/front.svg",
  40562. extra: 1125/1070,
  40563. bottom: 30/1155
  40564. }
  40565. },
  40566. },
  40567. [
  40568. {
  40569. name: "Big",
  40570. height: math.unit(50, "feet")
  40571. },
  40572. {
  40573. name: "Macro",
  40574. height: math.unit(100, "miles"),
  40575. default: true
  40576. },
  40577. {
  40578. name: "Megamacro",
  40579. height: math.unit(90000, "miles")
  40580. },
  40581. ]
  40582. ))
  40583. characterMakers.push(() => makeCharacter(
  40584. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40585. {
  40586. front: {
  40587. height: math.unit(6, "feet"),
  40588. weight: math.unit(145, "lb"),
  40589. name: "Front",
  40590. image: {
  40591. source: "./media/characters/farzian/front.svg",
  40592. extra: 1902/1693,
  40593. bottom: 108/2010
  40594. }
  40595. },
  40596. },
  40597. [
  40598. {
  40599. name: "Macro",
  40600. height: math.unit(500, "feet"),
  40601. default: true
  40602. },
  40603. ]
  40604. ))
  40605. characterMakers.push(() => makeCharacter(
  40606. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40607. {
  40608. front: {
  40609. height: math.unit(3 + 6/12, "feet"),
  40610. weight: math.unit(50, "lb"),
  40611. name: "Front",
  40612. image: {
  40613. source: "./media/characters/kimberly-tilson/front.svg",
  40614. extra: 1400/1322,
  40615. bottom: 36/1436
  40616. }
  40617. },
  40618. back: {
  40619. height: math.unit(3 + 6/12, "feet"),
  40620. weight: math.unit(50, "lb"),
  40621. name: "Back",
  40622. image: {
  40623. source: "./media/characters/kimberly-tilson/back.svg",
  40624. extra: 1370/1307,
  40625. bottom: 20/1390
  40626. }
  40627. },
  40628. },
  40629. [
  40630. {
  40631. name: "Normal",
  40632. height: math.unit(3 + 6/12, "feet"),
  40633. default: true
  40634. },
  40635. ]
  40636. ))
  40637. characterMakers.push(() => makeCharacter(
  40638. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40639. {
  40640. front: {
  40641. height: math.unit(1148, "feet"),
  40642. weight: math.unit(34057, "lb"),
  40643. name: "Front",
  40644. image: {
  40645. source: "./media/characters/harthos/front.svg",
  40646. extra: 1391/1339,
  40647. bottom: 13/1404
  40648. }
  40649. },
  40650. },
  40651. [
  40652. {
  40653. name: "Macro",
  40654. height: math.unit(1148, "feet"),
  40655. default: true
  40656. },
  40657. ]
  40658. ))
  40659. characterMakers.push(() => makeCharacter(
  40660. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40661. {
  40662. front: {
  40663. height: math.unit(15, "feet"),
  40664. name: "Front",
  40665. image: {
  40666. source: "./media/characters/hypatia/front.svg",
  40667. extra: 1653/1591,
  40668. bottom: 79/1732
  40669. }
  40670. },
  40671. },
  40672. [
  40673. {
  40674. name: "Normal",
  40675. height: math.unit(15, "feet")
  40676. },
  40677. {
  40678. name: "Small",
  40679. height: math.unit(300, "feet")
  40680. },
  40681. {
  40682. name: "Macro",
  40683. height: math.unit(2500, "feet"),
  40684. default: true
  40685. },
  40686. {
  40687. name: "Mega Macro",
  40688. height: math.unit(1500, "miles")
  40689. },
  40690. {
  40691. name: "Giga Macro",
  40692. height: math.unit(1.5e6, "miles")
  40693. },
  40694. ]
  40695. ))
  40696. characterMakers.push(() => makeCharacter(
  40697. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40698. {
  40699. front: {
  40700. height: math.unit(6, "feet"),
  40701. weight: math.unit(200, "lb"),
  40702. name: "Front",
  40703. image: {
  40704. source: "./media/characters/wulver/front.svg",
  40705. extra: 1724/1632,
  40706. bottom: 130/1854
  40707. }
  40708. },
  40709. frontNsfw: {
  40710. height: math.unit(6, "feet"),
  40711. weight: math.unit(200, "lb"),
  40712. name: "Front (NSFW)",
  40713. image: {
  40714. source: "./media/characters/wulver/front-nsfw.svg",
  40715. extra: 1724/1632,
  40716. bottom: 130/1854
  40717. }
  40718. },
  40719. },
  40720. [
  40721. {
  40722. name: "Human-Sized",
  40723. height: math.unit(6, "feet")
  40724. },
  40725. {
  40726. name: "Normal",
  40727. height: math.unit(4, "meters"),
  40728. default: true
  40729. },
  40730. {
  40731. name: "Large",
  40732. height: math.unit(6, "m")
  40733. },
  40734. ]
  40735. ))
  40736. characterMakers.push(() => makeCharacter(
  40737. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40738. {
  40739. front: {
  40740. height: math.unit(7, "feet"),
  40741. name: "Front",
  40742. image: {
  40743. source: "./media/characters/maru/front.svg",
  40744. extra: 1595/1570,
  40745. bottom: 0/1595
  40746. }
  40747. },
  40748. },
  40749. [
  40750. {
  40751. name: "Normal",
  40752. height: math.unit(7, "feet"),
  40753. default: true
  40754. },
  40755. {
  40756. name: "Macro",
  40757. height: math.unit(700, "feet")
  40758. },
  40759. {
  40760. name: "Mega Macro",
  40761. height: math.unit(25, "miles")
  40762. },
  40763. ]
  40764. ))
  40765. characterMakers.push(() => makeCharacter(
  40766. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40767. {
  40768. front: {
  40769. height: math.unit(6, "feet"),
  40770. weight: math.unit(170, "lb"),
  40771. name: "Front",
  40772. image: {
  40773. source: "./media/characters/xenon/front.svg",
  40774. extra: 1376/1305,
  40775. bottom: 56/1432
  40776. }
  40777. },
  40778. back: {
  40779. height: math.unit(6, "feet"),
  40780. weight: math.unit(170, "lb"),
  40781. name: "Back",
  40782. image: {
  40783. source: "./media/characters/xenon/back.svg",
  40784. extra: 1328/1259,
  40785. bottom: 95/1423
  40786. }
  40787. },
  40788. maw: {
  40789. height: math.unit(0.52, "feet"),
  40790. name: "Maw",
  40791. image: {
  40792. source: "./media/characters/xenon/maw.svg"
  40793. }
  40794. },
  40795. hand: {
  40796. height: math.unit(0.82, "feet"),
  40797. name: "Hand",
  40798. image: {
  40799. source: "./media/characters/xenon/hand.svg"
  40800. }
  40801. },
  40802. foot: {
  40803. height: math.unit(1.13, "feet"),
  40804. name: "Foot",
  40805. image: {
  40806. source: "./media/characters/xenon/foot.svg"
  40807. }
  40808. },
  40809. },
  40810. [
  40811. {
  40812. name: "Micro",
  40813. height: math.unit(0.8, "inches")
  40814. },
  40815. {
  40816. name: "Normal",
  40817. height: math.unit(6, "feet")
  40818. },
  40819. {
  40820. name: "Macro",
  40821. height: math.unit(50, "feet"),
  40822. default: true
  40823. },
  40824. {
  40825. name: "Macro+",
  40826. height: math.unit(250, "feet")
  40827. },
  40828. {
  40829. name: "Megamacro",
  40830. height: math.unit(1500, "feet")
  40831. },
  40832. ]
  40833. ))
  40834. characterMakers.push(() => makeCharacter(
  40835. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40836. {
  40837. front: {
  40838. height: math.unit(7 + 5/12, "feet"),
  40839. name: "Front",
  40840. image: {
  40841. source: "./media/characters/zane/front.svg",
  40842. extra: 1260/1203,
  40843. bottom: 94/1354
  40844. }
  40845. },
  40846. back: {
  40847. height: math.unit(5.05, "feet"),
  40848. name: "Back",
  40849. image: {
  40850. source: "./media/characters/zane/back.svg",
  40851. extra: 893/829,
  40852. bottom: 30/923
  40853. }
  40854. },
  40855. werewolf: {
  40856. height: math.unit(11, "feet"),
  40857. name: "Werewolf",
  40858. image: {
  40859. source: "./media/characters/zane/werewolf.svg",
  40860. extra: 1383/1323,
  40861. bottom: 89/1472
  40862. }
  40863. },
  40864. foot: {
  40865. height: math.unit(1.46, "feet"),
  40866. name: "Foot",
  40867. image: {
  40868. source: "./media/characters/zane/foot.svg"
  40869. }
  40870. },
  40871. footFront: {
  40872. height: math.unit(0.784, "feet"),
  40873. name: "Foot (Front)",
  40874. image: {
  40875. source: "./media/characters/zane/foot-front.svg"
  40876. }
  40877. },
  40878. dick: {
  40879. height: math.unit(1.95, "feet"),
  40880. name: "Dick",
  40881. image: {
  40882. source: "./media/characters/zane/dick.svg"
  40883. }
  40884. },
  40885. dickWerewolf: {
  40886. height: math.unit(3.77, "feet"),
  40887. name: "Dick (Werewolf)",
  40888. image: {
  40889. source: "./media/characters/zane/dick.svg"
  40890. }
  40891. },
  40892. },
  40893. [
  40894. {
  40895. name: "Normal",
  40896. height: math.unit(7 + 5/12, "feet"),
  40897. default: true
  40898. },
  40899. ]
  40900. ))
  40901. characterMakers.push(() => makeCharacter(
  40902. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40903. {
  40904. front: {
  40905. height: math.unit(6 + 2/12, "feet"),
  40906. weight: math.unit(284, "lb"),
  40907. name: "Front",
  40908. image: {
  40909. source: "./media/characters/benni-desparque/front.svg",
  40910. extra: 1353/1126,
  40911. bottom: 69/1422
  40912. }
  40913. },
  40914. },
  40915. [
  40916. {
  40917. name: "Civilian",
  40918. height: math.unit(6 + 2/12, "feet")
  40919. },
  40920. {
  40921. name: "Normal",
  40922. height: math.unit(98, "feet"),
  40923. default: true
  40924. },
  40925. {
  40926. name: "Kaiju Fighter",
  40927. height: math.unit(268, "feet")
  40928. },
  40929. ]
  40930. ))
  40931. characterMakers.push(() => makeCharacter(
  40932. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40933. {
  40934. front: {
  40935. height: math.unit(5, "feet"),
  40936. weight: math.unit(105, "lb"),
  40937. name: "Front",
  40938. image: {
  40939. source: "./media/characters/maxine/front.svg",
  40940. extra: 1386/1250,
  40941. bottom: 71/1457
  40942. }
  40943. },
  40944. },
  40945. [
  40946. {
  40947. name: "Normal",
  40948. height: math.unit(5, "feet"),
  40949. default: true
  40950. },
  40951. ]
  40952. ))
  40953. characterMakers.push(() => makeCharacter(
  40954. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40955. {
  40956. front: {
  40957. height: math.unit(11 + 7/12, "feet"),
  40958. weight: math.unit(9576, "lb"),
  40959. name: "Front",
  40960. image: {
  40961. source: "./media/characters/scaly/front.svg",
  40962. extra: 888/867,
  40963. bottom: 36/924
  40964. }
  40965. },
  40966. },
  40967. [
  40968. {
  40969. name: "Normal",
  40970. height: math.unit(11 + 7/12, "feet"),
  40971. default: true
  40972. },
  40973. ]
  40974. ))
  40975. characterMakers.push(() => makeCharacter(
  40976. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40977. {
  40978. front: {
  40979. height: math.unit(6 + 3/12, "feet"),
  40980. name: "Front",
  40981. image: {
  40982. source: "./media/characters/saelria/front.svg",
  40983. extra: 1243/1138,
  40984. bottom: 46/1289
  40985. }
  40986. },
  40987. },
  40988. [
  40989. {
  40990. name: "Micro",
  40991. height: math.unit(6, "inches"),
  40992. },
  40993. {
  40994. name: "Normal",
  40995. height: math.unit(6 + 3/12, "feet"),
  40996. default: true
  40997. },
  40998. {
  40999. name: "Macro",
  41000. height: math.unit(25, "feet")
  41001. },
  41002. ]
  41003. ))
  41004. characterMakers.push(() => makeCharacter(
  41005. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41006. {
  41007. front: {
  41008. height: math.unit(80, "meters"),
  41009. weight: math.unit(7000, "tonnes"),
  41010. name: "Front",
  41011. image: {
  41012. source: "./media/characters/tef/front.svg",
  41013. extra: 2036/1991,
  41014. bottom: 54/2090
  41015. }
  41016. },
  41017. back: {
  41018. height: math.unit(80, "meters"),
  41019. weight: math.unit(7000, "tonnes"),
  41020. name: "Back",
  41021. image: {
  41022. source: "./media/characters/tef/back.svg",
  41023. extra: 2036/1991,
  41024. bottom: 54/2090
  41025. }
  41026. },
  41027. },
  41028. [
  41029. {
  41030. name: "Macro",
  41031. height: math.unit(80, "meters"),
  41032. default: true
  41033. },
  41034. ]
  41035. ))
  41036. characterMakers.push(() => makeCharacter(
  41037. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41038. {
  41039. front: {
  41040. height: math.unit(13, "feet"),
  41041. weight: math.unit(6, "tons"),
  41042. name: "Front",
  41043. image: {
  41044. source: "./media/characters/rover/front.svg",
  41045. extra: 1233/1156,
  41046. bottom: 50/1283
  41047. }
  41048. },
  41049. back: {
  41050. height: math.unit(13, "feet"),
  41051. weight: math.unit(6, "tons"),
  41052. name: "Back",
  41053. image: {
  41054. source: "./media/characters/rover/back.svg",
  41055. extra: 1327/1258,
  41056. bottom: 39/1366
  41057. }
  41058. },
  41059. },
  41060. [
  41061. {
  41062. name: "Normal",
  41063. height: math.unit(13, "feet"),
  41064. default: true
  41065. },
  41066. {
  41067. name: "Macro",
  41068. height: math.unit(1300, "feet")
  41069. },
  41070. {
  41071. name: "Megamacro",
  41072. height: math.unit(1300, "miles")
  41073. },
  41074. {
  41075. name: "Gigamacro",
  41076. height: math.unit(1300000, "miles")
  41077. },
  41078. ]
  41079. ))
  41080. characterMakers.push(() => makeCharacter(
  41081. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41082. {
  41083. front: {
  41084. height: math.unit(6, "feet"),
  41085. weight: math.unit(150, "lb"),
  41086. name: "Front",
  41087. image: {
  41088. source: "./media/characters/ariz/front.svg",
  41089. extra: 1401/1346,
  41090. bottom: 5/1406
  41091. }
  41092. },
  41093. },
  41094. [
  41095. {
  41096. name: "Normal",
  41097. height: math.unit(10, "feet"),
  41098. default: true
  41099. },
  41100. ]
  41101. ))
  41102. characterMakers.push(() => makeCharacter(
  41103. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41104. {
  41105. front: {
  41106. height: math.unit(6, "feet"),
  41107. weight: math.unit(140, "lb"),
  41108. name: "Front",
  41109. image: {
  41110. source: "./media/characters/sigrun/front.svg",
  41111. extra: 1418/1359,
  41112. bottom: 27/1445
  41113. }
  41114. },
  41115. },
  41116. [
  41117. {
  41118. name: "Macro",
  41119. height: math.unit(35, "feet"),
  41120. default: true
  41121. },
  41122. ]
  41123. ))
  41124. characterMakers.push(() => makeCharacter(
  41125. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41126. {
  41127. front: {
  41128. height: math.unit(6, "feet"),
  41129. weight: math.unit(150, "lb"),
  41130. name: "Front",
  41131. image: {
  41132. source: "./media/characters/numin/front.svg",
  41133. extra: 1433/1388,
  41134. bottom: 12/1445
  41135. }
  41136. },
  41137. },
  41138. [
  41139. {
  41140. name: "Macro",
  41141. height: math.unit(21.5, "km"),
  41142. default: true
  41143. },
  41144. ]
  41145. ))
  41146. characterMakers.push(() => makeCharacter(
  41147. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41148. {
  41149. front: {
  41150. height: math.unit(6, "feet"),
  41151. weight: math.unit(463, "lb"),
  41152. name: "Front",
  41153. image: {
  41154. source: "./media/characters/melwa/front.svg",
  41155. extra: 1307/1248,
  41156. bottom: 93/1400
  41157. }
  41158. },
  41159. },
  41160. [
  41161. {
  41162. name: "Macro",
  41163. height: math.unit(50, "meters"),
  41164. default: true
  41165. },
  41166. ]
  41167. ))
  41168. characterMakers.push(() => makeCharacter(
  41169. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41170. {
  41171. front: {
  41172. height: math.unit(325, "feet"),
  41173. name: "Front",
  41174. image: {
  41175. source: "./media/characters/zorkaiju/front.svg",
  41176. extra: 1955/1814,
  41177. bottom: 40/1995
  41178. }
  41179. },
  41180. frontExtended: {
  41181. height: math.unit(325, "feet"),
  41182. name: "Front (Extended)",
  41183. image: {
  41184. source: "./media/characters/zorkaiju/front-extended.svg",
  41185. extra: 1955/1814,
  41186. bottom: 40/1995
  41187. }
  41188. },
  41189. side: {
  41190. height: math.unit(325, "feet"),
  41191. name: "Side",
  41192. image: {
  41193. source: "./media/characters/zorkaiju/side.svg",
  41194. extra: 1495/1396,
  41195. bottom: 17/1512
  41196. }
  41197. },
  41198. sideExtended: {
  41199. height: math.unit(325, "feet"),
  41200. name: "Side (Extended)",
  41201. image: {
  41202. source: "./media/characters/zorkaiju/side-extended.svg",
  41203. extra: 1495/1396,
  41204. bottom: 17/1512
  41205. }
  41206. },
  41207. back: {
  41208. height: math.unit(325, "feet"),
  41209. name: "Back",
  41210. image: {
  41211. source: "./media/characters/zorkaiju/back.svg",
  41212. extra: 1959/1821,
  41213. bottom: 31/1990
  41214. }
  41215. },
  41216. backExtended: {
  41217. height: math.unit(325, "feet"),
  41218. name: "Back (Extended)",
  41219. image: {
  41220. source: "./media/characters/zorkaiju/back-extended.svg",
  41221. extra: 1959/1821,
  41222. bottom: 31/1990
  41223. }
  41224. },
  41225. hand: {
  41226. height: math.unit(58.4, "feet"),
  41227. name: "Hand",
  41228. image: {
  41229. source: "./media/characters/zorkaiju/hand.svg"
  41230. }
  41231. },
  41232. handExtended: {
  41233. height: math.unit(61.4, "feet"),
  41234. name: "Hand (Extended)",
  41235. image: {
  41236. source: "./media/characters/zorkaiju/hand-extended.svg"
  41237. }
  41238. },
  41239. foot: {
  41240. height: math.unit(95, "feet"),
  41241. name: "Foot",
  41242. image: {
  41243. source: "./media/characters/zorkaiju/foot.svg"
  41244. }
  41245. },
  41246. leftArm: {
  41247. height: math.unit(59, "feet"),
  41248. name: "Left Arm",
  41249. image: {
  41250. source: "./media/characters/zorkaiju/left-arm.svg"
  41251. }
  41252. },
  41253. rightArm: {
  41254. height: math.unit(59, "feet"),
  41255. name: "Right Arm",
  41256. image: {
  41257. source: "./media/characters/zorkaiju/right-arm.svg"
  41258. }
  41259. },
  41260. tail: {
  41261. height: math.unit(104, "feet"),
  41262. name: "Tail",
  41263. image: {
  41264. source: "./media/characters/zorkaiju/tail.svg"
  41265. }
  41266. },
  41267. tailExtended: {
  41268. height: math.unit(104, "feet"),
  41269. name: "Tail (Extended)",
  41270. image: {
  41271. source: "./media/characters/zorkaiju/tail-extended.svg"
  41272. }
  41273. },
  41274. tailBottom: {
  41275. height: math.unit(104, "feet"),
  41276. name: "Tail Bottom",
  41277. image: {
  41278. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41279. }
  41280. },
  41281. crystal: {
  41282. height: math.unit(27.54, "feet"),
  41283. name: "Crystal",
  41284. image: {
  41285. source: "./media/characters/zorkaiju/crystal.svg"
  41286. }
  41287. },
  41288. },
  41289. [
  41290. {
  41291. name: "Kaiju",
  41292. height: math.unit(325, "feet"),
  41293. default: true
  41294. },
  41295. ]
  41296. ))
  41297. characterMakers.push(() => makeCharacter(
  41298. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41299. {
  41300. front: {
  41301. height: math.unit(6 + 1/12, "feet"),
  41302. weight: math.unit(115, "lb"),
  41303. name: "Front",
  41304. image: {
  41305. source: "./media/characters/bailey-belfry/front.svg",
  41306. extra: 1240/1121,
  41307. bottom: 101/1341
  41308. }
  41309. },
  41310. },
  41311. [
  41312. {
  41313. name: "Normal",
  41314. height: math.unit(6 + 1/12, "feet"),
  41315. default: true
  41316. },
  41317. ]
  41318. ))
  41319. characterMakers.push(() => makeCharacter(
  41320. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41321. {
  41322. side: {
  41323. height: math.unit(4, "meters"),
  41324. weight: math.unit(250, "kg"),
  41325. name: "Side",
  41326. image: {
  41327. source: "./media/characters/blacky/side.svg",
  41328. extra: 1027/919,
  41329. bottom: 43/1070
  41330. }
  41331. },
  41332. maw: {
  41333. height: math.unit(1, "meters"),
  41334. name: "Maw",
  41335. image: {
  41336. source: "./media/characters/blacky/maw.svg"
  41337. }
  41338. },
  41339. paw: {
  41340. height: math.unit(1, "meters"),
  41341. name: "Paw",
  41342. image: {
  41343. source: "./media/characters/blacky/paw.svg"
  41344. }
  41345. },
  41346. },
  41347. [
  41348. {
  41349. name: "Normal",
  41350. height: math.unit(4, "meters"),
  41351. default: true
  41352. },
  41353. ]
  41354. ))
  41355. characterMakers.push(() => makeCharacter(
  41356. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41357. {
  41358. front: {
  41359. height: math.unit(170, "cm"),
  41360. weight: math.unit(66, "kg"),
  41361. name: "Front",
  41362. image: {
  41363. source: "./media/characters/thux-ei/front.svg",
  41364. extra: 1109/1011,
  41365. bottom: 8/1117
  41366. }
  41367. },
  41368. },
  41369. [
  41370. {
  41371. name: "Normal",
  41372. height: math.unit(170, "cm"),
  41373. default: true
  41374. },
  41375. ]
  41376. ))
  41377. characterMakers.push(() => makeCharacter(
  41378. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41379. {
  41380. front: {
  41381. height: math.unit(5, "feet"),
  41382. weight: math.unit(120, "lb"),
  41383. name: "Front",
  41384. image: {
  41385. source: "./media/characters/roxanne-voltaire/front.svg",
  41386. extra: 1901/1779,
  41387. bottom: 53/1954
  41388. }
  41389. },
  41390. },
  41391. [
  41392. {
  41393. name: "Normal",
  41394. height: math.unit(5, "feet"),
  41395. default: true
  41396. },
  41397. {
  41398. name: "Giant",
  41399. height: math.unit(50, "feet")
  41400. },
  41401. {
  41402. name: "Titan",
  41403. height: math.unit(500, "feet")
  41404. },
  41405. {
  41406. name: "Macro",
  41407. height: math.unit(5000, "feet")
  41408. },
  41409. {
  41410. name: "Megamacro",
  41411. height: math.unit(50000, "feet")
  41412. },
  41413. {
  41414. name: "Gigamacro",
  41415. height: math.unit(500000, "feet")
  41416. },
  41417. {
  41418. name: "Teramacro",
  41419. height: math.unit(5e6, "feet")
  41420. },
  41421. ]
  41422. ))
  41423. characterMakers.push(() => makeCharacter(
  41424. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41425. {
  41426. front: {
  41427. height: math.unit(6 + 2/12, "feet"),
  41428. name: "Front",
  41429. image: {
  41430. source: "./media/characters/squeaks/front.svg",
  41431. extra: 1823/1768,
  41432. bottom: 138/1961
  41433. }
  41434. },
  41435. },
  41436. [
  41437. {
  41438. name: "Micro",
  41439. height: math.unit(0.5, "inches")
  41440. },
  41441. {
  41442. name: "Normal",
  41443. height: math.unit(6 + 2/12, "feet"),
  41444. default: true
  41445. },
  41446. {
  41447. name: "Macro",
  41448. height: math.unit(600, "feet")
  41449. },
  41450. ]
  41451. ))
  41452. characterMakers.push(() => makeCharacter(
  41453. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41454. {
  41455. front: {
  41456. height: math.unit(1.72, "meters"),
  41457. name: "Front",
  41458. image: {
  41459. source: "./media/characters/archinger/front.svg",
  41460. extra: 1861/1675,
  41461. bottom: 125/1986
  41462. }
  41463. },
  41464. back: {
  41465. height: math.unit(1.72, "meters"),
  41466. name: "Back",
  41467. image: {
  41468. source: "./media/characters/archinger/back.svg",
  41469. extra: 1844/1701,
  41470. bottom: 104/1948
  41471. }
  41472. },
  41473. cock: {
  41474. height: math.unit(0.59, "feet"),
  41475. name: "Cock",
  41476. image: {
  41477. source: "./media/characters/archinger/cock.svg"
  41478. }
  41479. },
  41480. },
  41481. [
  41482. {
  41483. name: "Normal",
  41484. height: math.unit(1.72, "meters"),
  41485. default: true
  41486. },
  41487. {
  41488. name: "Macro",
  41489. height: math.unit(84, "meters")
  41490. },
  41491. {
  41492. name: "Macro+",
  41493. height: math.unit(112, "meters")
  41494. },
  41495. {
  41496. name: "Macro++",
  41497. height: math.unit(960, "meters")
  41498. },
  41499. {
  41500. name: "Macro+++",
  41501. height: math.unit(4, "km")
  41502. },
  41503. {
  41504. name: "Macro++++",
  41505. height: math.unit(48, "km")
  41506. },
  41507. {
  41508. name: "Macro+++++",
  41509. height: math.unit(4500, "km")
  41510. },
  41511. ]
  41512. ))
  41513. characterMakers.push(() => makeCharacter(
  41514. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41515. {
  41516. front: {
  41517. height: math.unit(5 + 5/12, "feet"),
  41518. name: "Front",
  41519. image: {
  41520. source: "./media/characters/alsnapz/front.svg",
  41521. extra: 1157/1065,
  41522. bottom: 42/1199
  41523. }
  41524. },
  41525. },
  41526. [
  41527. {
  41528. name: "Normal",
  41529. height: math.unit(5 + 5/12, "feet"),
  41530. default: true
  41531. },
  41532. ]
  41533. ))
  41534. characterMakers.push(() => makeCharacter(
  41535. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41536. {
  41537. side: {
  41538. height: math.unit(3.2, "earths"),
  41539. name: "Side",
  41540. image: {
  41541. source: "./media/characters/mag/side.svg",
  41542. extra: 1331/1008,
  41543. bottom: 52/1383
  41544. }
  41545. },
  41546. wing: {
  41547. height: math.unit(1.94, "earths"),
  41548. name: "Wing",
  41549. image: {
  41550. source: "./media/characters/mag/wing.svg"
  41551. }
  41552. },
  41553. dick: {
  41554. height: math.unit(1.8, "earths"),
  41555. name: "Dick",
  41556. image: {
  41557. source: "./media/characters/mag/dick.svg"
  41558. }
  41559. },
  41560. ass: {
  41561. height: math.unit(1.33, "earths"),
  41562. name: "Ass",
  41563. image: {
  41564. source: "./media/characters/mag/ass.svg"
  41565. }
  41566. },
  41567. head: {
  41568. height: math.unit(1.1, "earths"),
  41569. name: "Head",
  41570. image: {
  41571. source: "./media/characters/mag/head.svg"
  41572. }
  41573. },
  41574. maw: {
  41575. height: math.unit(1.62, "earths"),
  41576. name: "Maw",
  41577. image: {
  41578. source: "./media/characters/mag/maw.svg"
  41579. }
  41580. },
  41581. },
  41582. [
  41583. {
  41584. name: "Small",
  41585. height: math.unit(162, "feet")
  41586. },
  41587. {
  41588. name: "Normal",
  41589. height: math.unit(3.2, "earths"),
  41590. default: true
  41591. },
  41592. ]
  41593. ))
  41594. characterMakers.push(() => makeCharacter(
  41595. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41596. {
  41597. front: {
  41598. height: math.unit(512, "feet"),
  41599. weight: math.unit(63509, "tonnes"),
  41600. name: "Front",
  41601. image: {
  41602. source: "./media/characters/vorrel-harroc/front.svg",
  41603. extra: 1075/1063,
  41604. bottom: 62/1137
  41605. }
  41606. },
  41607. },
  41608. [
  41609. {
  41610. name: "Normal",
  41611. height: math.unit(10, "feet")
  41612. },
  41613. {
  41614. name: "Macro",
  41615. height: math.unit(512, "feet"),
  41616. default: true
  41617. },
  41618. {
  41619. name: "Megamacro",
  41620. height: math.unit(256, "miles")
  41621. },
  41622. {
  41623. name: "Gigamacro",
  41624. height: math.unit(4096, "miles")
  41625. },
  41626. ]
  41627. ))
  41628. characterMakers.push(() => makeCharacter(
  41629. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41630. {
  41631. side: {
  41632. height: math.unit(50, "feet"),
  41633. name: "Side",
  41634. image: {
  41635. source: "./media/characters/froimar/side.svg",
  41636. extra: 855/638,
  41637. bottom: 99/954
  41638. }
  41639. },
  41640. },
  41641. [
  41642. {
  41643. name: "Macro",
  41644. height: math.unit(50, "feet"),
  41645. default: true
  41646. },
  41647. ]
  41648. ))
  41649. characterMakers.push(() => makeCharacter(
  41650. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41651. {
  41652. front: {
  41653. height: math.unit(210, "miles"),
  41654. name: "Front",
  41655. image: {
  41656. source: "./media/characters/timothy/front.svg",
  41657. extra: 1007/943,
  41658. bottom: 62/1069
  41659. }
  41660. },
  41661. frontSkirt: {
  41662. height: math.unit(210, "miles"),
  41663. name: "Front (Skirt)",
  41664. image: {
  41665. source: "./media/characters/timothy/front-skirt.svg",
  41666. extra: 1007/943,
  41667. bottom: 62/1069
  41668. }
  41669. },
  41670. frontCoat: {
  41671. height: math.unit(210, "miles"),
  41672. name: "Front (Coat)",
  41673. image: {
  41674. source: "./media/characters/timothy/front-coat.svg",
  41675. extra: 1007/943,
  41676. bottom: 62/1069
  41677. }
  41678. },
  41679. },
  41680. [
  41681. {
  41682. name: "Macro",
  41683. height: math.unit(210, "miles"),
  41684. default: true
  41685. },
  41686. {
  41687. name: "Megamacro",
  41688. height: math.unit(210000, "miles")
  41689. },
  41690. ]
  41691. ))
  41692. characterMakers.push(() => makeCharacter(
  41693. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41694. {
  41695. front: {
  41696. height: math.unit(188, "feet"),
  41697. name: "Front",
  41698. image: {
  41699. source: "./media/characters/pyotr/front.svg",
  41700. extra: 1912/1826,
  41701. bottom: 18/1930
  41702. }
  41703. },
  41704. },
  41705. [
  41706. {
  41707. name: "Macro",
  41708. height: math.unit(188, "feet"),
  41709. default: true
  41710. },
  41711. {
  41712. name: "Megamacro",
  41713. height: math.unit(8, "miles")
  41714. },
  41715. ]
  41716. ))
  41717. characterMakers.push(() => makeCharacter(
  41718. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41719. {
  41720. side: {
  41721. height: math.unit(10, "feet"),
  41722. weight: math.unit(4500, "lb"),
  41723. name: "Side",
  41724. image: {
  41725. source: "./media/characters/ackart/side.svg",
  41726. extra: 1776/1668,
  41727. bottom: 116/1892
  41728. }
  41729. },
  41730. },
  41731. [
  41732. {
  41733. name: "Normal",
  41734. height: math.unit(10, "feet"),
  41735. default: true
  41736. },
  41737. ]
  41738. ))
  41739. characterMakers.push(() => makeCharacter(
  41740. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41741. {
  41742. side: {
  41743. height: math.unit(21, "feet"),
  41744. name: "Side",
  41745. image: {
  41746. source: "./media/characters/nolow/side.svg",
  41747. extra: 1484/1434,
  41748. bottom: 85/1569
  41749. }
  41750. },
  41751. sideErect: {
  41752. height: math.unit(21, "feet"),
  41753. name: "Side-erect",
  41754. image: {
  41755. source: "./media/characters/nolow/side-erect.svg",
  41756. extra: 1484/1434,
  41757. bottom: 85/1569
  41758. }
  41759. },
  41760. },
  41761. [
  41762. {
  41763. name: "Regular",
  41764. height: math.unit(12, "feet")
  41765. },
  41766. {
  41767. name: "Big Chee",
  41768. height: math.unit(21, "feet"),
  41769. default: true
  41770. },
  41771. ]
  41772. ))
  41773. characterMakers.push(() => makeCharacter(
  41774. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41775. {
  41776. front: {
  41777. height: math.unit(7, "feet"),
  41778. weight: math.unit(250, "lb"),
  41779. name: "Front",
  41780. image: {
  41781. source: "./media/characters/nines/front.svg",
  41782. extra: 1741/1607,
  41783. bottom: 41/1782
  41784. }
  41785. },
  41786. side: {
  41787. height: math.unit(7, "feet"),
  41788. weight: math.unit(250, "lb"),
  41789. name: "Side",
  41790. image: {
  41791. source: "./media/characters/nines/side.svg",
  41792. extra: 1854/1735,
  41793. bottom: 93/1947
  41794. }
  41795. },
  41796. back: {
  41797. height: math.unit(7, "feet"),
  41798. weight: math.unit(250, "lb"),
  41799. name: "Back",
  41800. image: {
  41801. source: "./media/characters/nines/back.svg",
  41802. extra: 1748/1615,
  41803. bottom: 20/1768
  41804. }
  41805. },
  41806. },
  41807. [
  41808. {
  41809. name: "Megamacro",
  41810. height: math.unit(99, "km"),
  41811. default: true
  41812. },
  41813. ]
  41814. ))
  41815. characterMakers.push(() => makeCharacter(
  41816. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41817. {
  41818. front: {
  41819. height: math.unit(5 + 10/12, "feet"),
  41820. weight: math.unit(210, "lb"),
  41821. name: "Front",
  41822. image: {
  41823. source: "./media/characters/zenith/front.svg",
  41824. extra: 1531/1452,
  41825. bottom: 198/1729
  41826. }
  41827. },
  41828. back: {
  41829. height: math.unit(5 + 10/12, "feet"),
  41830. weight: math.unit(210, "lb"),
  41831. name: "Back",
  41832. image: {
  41833. source: "./media/characters/zenith/back.svg",
  41834. extra: 1571/1487,
  41835. bottom: 75/1646
  41836. }
  41837. },
  41838. },
  41839. [
  41840. {
  41841. name: "Normal",
  41842. height: math.unit(5 + 10/12, "feet"),
  41843. default: true
  41844. }
  41845. ]
  41846. ))
  41847. characterMakers.push(() => makeCharacter(
  41848. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41849. {
  41850. front: {
  41851. height: math.unit(4, "feet"),
  41852. weight: math.unit(60, "lb"),
  41853. name: "Front",
  41854. image: {
  41855. source: "./media/characters/jasper/front.svg",
  41856. extra: 1450/1379,
  41857. bottom: 19/1469
  41858. }
  41859. },
  41860. },
  41861. [
  41862. {
  41863. name: "Normal",
  41864. height: math.unit(4, "feet"),
  41865. default: true
  41866. },
  41867. ]
  41868. ))
  41869. characterMakers.push(() => makeCharacter(
  41870. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41871. {
  41872. front: {
  41873. height: math.unit(6 + 5/12, "feet"),
  41874. weight: math.unit(290, "lb"),
  41875. name: "Front",
  41876. image: {
  41877. source: "./media/characters/tiberius-thyben/front.svg",
  41878. extra: 757/739,
  41879. bottom: 39/796
  41880. }
  41881. },
  41882. },
  41883. [
  41884. {
  41885. name: "Micro",
  41886. height: math.unit(1.5, "inches")
  41887. },
  41888. {
  41889. name: "Normal",
  41890. height: math.unit(6 + 5/12, "feet"),
  41891. default: true
  41892. },
  41893. {
  41894. name: "Macro",
  41895. height: math.unit(300, "feet")
  41896. },
  41897. ]
  41898. ))
  41899. characterMakers.push(() => makeCharacter(
  41900. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41901. {
  41902. front: {
  41903. height: math.unit(5 + 6/12, "feet"),
  41904. weight: math.unit(60, "kg"),
  41905. name: "Front",
  41906. image: {
  41907. source: "./media/characters/sabre/front.svg",
  41908. extra: 738/671,
  41909. bottom: 27/765
  41910. }
  41911. },
  41912. },
  41913. [
  41914. {
  41915. name: "Teeny",
  41916. height: math.unit(2, "inches")
  41917. },
  41918. {
  41919. name: "Smol",
  41920. height: math.unit(8, "inches")
  41921. },
  41922. {
  41923. name: "Normal",
  41924. height: math.unit(5 + 6/12, "feet"),
  41925. default: true
  41926. },
  41927. {
  41928. name: "Mini-Macro",
  41929. height: math.unit(15, "feet")
  41930. },
  41931. {
  41932. name: "Macro",
  41933. height: math.unit(50, "feet")
  41934. },
  41935. ]
  41936. ))
  41937. characterMakers.push(() => makeCharacter(
  41938. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41939. {
  41940. front: {
  41941. height: math.unit(6 + 4/12, "feet"),
  41942. weight: math.unit(170, "lb"),
  41943. name: "Front",
  41944. image: {
  41945. source: "./media/characters/charlie/front.svg",
  41946. extra: 1348/1228,
  41947. bottom: 15/1363
  41948. }
  41949. },
  41950. },
  41951. [
  41952. {
  41953. name: "Macro",
  41954. height: math.unit(1700, "meters"),
  41955. default: true
  41956. },
  41957. {
  41958. name: "MegaMacro",
  41959. height: math.unit(20400, "meters")
  41960. },
  41961. ]
  41962. ))
  41963. characterMakers.push(() => makeCharacter(
  41964. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41965. {
  41966. front: {
  41967. height: math.unit(6 + 3/12, "feet"),
  41968. weight: math.unit(185, "lb"),
  41969. name: "Front",
  41970. image: {
  41971. source: "./media/characters/susan-grant/front.svg",
  41972. extra: 1351/1327,
  41973. bottom: 26/1377
  41974. }
  41975. },
  41976. },
  41977. [
  41978. {
  41979. name: "Normal",
  41980. height: math.unit(6 + 3/12, "feet"),
  41981. default: true
  41982. },
  41983. {
  41984. name: "Macro",
  41985. height: math.unit(225, "feet")
  41986. },
  41987. {
  41988. name: "Macro+",
  41989. height: math.unit(900, "feet")
  41990. },
  41991. {
  41992. name: "MegaMacro",
  41993. height: math.unit(14400, "feet")
  41994. },
  41995. ]
  41996. ))
  41997. characterMakers.push(() => makeCharacter(
  41998. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41999. {
  42000. front: {
  42001. height: math.unit(5 + 4/12, "feet"),
  42002. weight: math.unit(110, "lb"),
  42003. name: "Front",
  42004. image: {
  42005. source: "./media/characters/axel-isanov/front.svg",
  42006. extra: 1096/1065,
  42007. bottom: 13/1109
  42008. }
  42009. },
  42010. },
  42011. [
  42012. {
  42013. name: "Normal",
  42014. height: math.unit(5 + 4/12, "feet"),
  42015. default: true
  42016. },
  42017. ]
  42018. ))
  42019. characterMakers.push(() => makeCharacter(
  42020. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42021. {
  42022. front: {
  42023. height: math.unit(9, "feet"),
  42024. weight: math.unit(467, "lb"),
  42025. name: "Front",
  42026. image: {
  42027. source: "./media/characters/necahual/front.svg",
  42028. extra: 920/873,
  42029. bottom: 26/946
  42030. }
  42031. },
  42032. back: {
  42033. height: math.unit(9, "feet"),
  42034. weight: math.unit(467, "lb"),
  42035. name: "Back",
  42036. image: {
  42037. source: "./media/characters/necahual/back.svg",
  42038. extra: 930/884,
  42039. bottom: 16/946
  42040. }
  42041. },
  42042. frontUnderwear: {
  42043. height: math.unit(9, "feet"),
  42044. weight: math.unit(467, "lb"),
  42045. name: "Front (Underwear)",
  42046. image: {
  42047. source: "./media/characters/necahual/front-underwear.svg",
  42048. extra: 920/873,
  42049. bottom: 26/946
  42050. }
  42051. },
  42052. frontDressed: {
  42053. height: math.unit(9, "feet"),
  42054. weight: math.unit(467, "lb"),
  42055. name: "Front (Dressed)",
  42056. image: {
  42057. source: "./media/characters/necahual/front-dressed.svg",
  42058. extra: 920/873,
  42059. bottom: 26/946
  42060. }
  42061. },
  42062. },
  42063. [
  42064. {
  42065. name: "Comprsesed",
  42066. height: math.unit(9, "feet")
  42067. },
  42068. {
  42069. name: "Natural",
  42070. height: math.unit(15, "feet"),
  42071. default: true
  42072. },
  42073. {
  42074. name: "Boosted",
  42075. height: math.unit(50, "feet")
  42076. },
  42077. {
  42078. name: "Boosted+",
  42079. height: math.unit(150, "feet")
  42080. },
  42081. {
  42082. name: "Max",
  42083. height: math.unit(500, "feet")
  42084. },
  42085. ]
  42086. ))
  42087. characterMakers.push(() => makeCharacter(
  42088. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42089. {
  42090. front: {
  42091. height: math.unit(22 + 1/12, "feet"),
  42092. weight: math.unit(3200, "lb"),
  42093. name: "Front",
  42094. image: {
  42095. source: "./media/characters/theo-acacia/front.svg",
  42096. extra: 1796/1741,
  42097. bottom: 83/1879
  42098. }
  42099. },
  42100. frontUnderwear: {
  42101. height: math.unit(22 + 1/12, "feet"),
  42102. weight: math.unit(3200, "lb"),
  42103. name: "Front (Underwear)",
  42104. image: {
  42105. source: "./media/characters/theo-acacia/front-underwear.svg",
  42106. extra: 1796/1741,
  42107. bottom: 83/1879
  42108. }
  42109. },
  42110. frontNude: {
  42111. height: math.unit(22 + 1/12, "feet"),
  42112. weight: math.unit(3200, "lb"),
  42113. name: "Front (Nude)",
  42114. image: {
  42115. source: "./media/characters/theo-acacia/front-nude.svg",
  42116. extra: 1796/1741,
  42117. bottom: 83/1879
  42118. }
  42119. },
  42120. },
  42121. [
  42122. {
  42123. name: "Normal",
  42124. height: math.unit(22 + 1/12, "feet"),
  42125. default: true
  42126. },
  42127. ]
  42128. ))
  42129. characterMakers.push(() => makeCharacter(
  42130. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42131. {
  42132. front: {
  42133. height: math.unit(20, "feet"),
  42134. name: "Front",
  42135. image: {
  42136. source: "./media/characters/astra/front.svg",
  42137. extra: 1850/1714,
  42138. bottom: 106/1956
  42139. }
  42140. },
  42141. frontUndressed: {
  42142. height: math.unit(20, "feet"),
  42143. name: "Front (Undressed)",
  42144. image: {
  42145. source: "./media/characters/astra/front-undressed.svg",
  42146. extra: 1926/1749,
  42147. bottom: 0/1926
  42148. }
  42149. },
  42150. hand: {
  42151. height: math.unit(1.53, "feet"),
  42152. name: "Hand",
  42153. image: {
  42154. source: "./media/characters/astra/hand.svg"
  42155. }
  42156. },
  42157. paw: {
  42158. height: math.unit(1.53, "feet"),
  42159. name: "Paw",
  42160. image: {
  42161. source: "./media/characters/astra/paw.svg"
  42162. }
  42163. },
  42164. },
  42165. [
  42166. {
  42167. name: "Smallest",
  42168. height: math.unit(20, "feet")
  42169. },
  42170. {
  42171. name: "Normal",
  42172. height: math.unit(1e9, "miles"),
  42173. default: true
  42174. },
  42175. {
  42176. name: "Larger",
  42177. height: math.unit(5, "multiverses")
  42178. },
  42179. {
  42180. name: "Largest",
  42181. height: math.unit(1e9, "multiverses")
  42182. },
  42183. ]
  42184. ))
  42185. characterMakers.push(() => makeCharacter(
  42186. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42187. {
  42188. front: {
  42189. height: math.unit(8, "feet"),
  42190. name: "Front",
  42191. image: {
  42192. source: "./media/characters/breanna/front.svg",
  42193. extra: 1912/1632,
  42194. bottom: 33/1945
  42195. }
  42196. },
  42197. },
  42198. [
  42199. {
  42200. name: "Smallest",
  42201. height: math.unit(8, "feet")
  42202. },
  42203. {
  42204. name: "Normal",
  42205. height: math.unit(1, "mile"),
  42206. default: true
  42207. },
  42208. {
  42209. name: "Maximum",
  42210. height: math.unit(1500000000000, "lightyears")
  42211. },
  42212. ]
  42213. ))
  42214. characterMakers.push(() => makeCharacter(
  42215. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42216. {
  42217. front: {
  42218. height: math.unit(5 + 11/12, "feet"),
  42219. weight: math.unit(155, "lb"),
  42220. name: "Front",
  42221. image: {
  42222. source: "./media/characters/cai/front.svg",
  42223. extra: 1823/1702,
  42224. bottom: 32/1855
  42225. }
  42226. },
  42227. back: {
  42228. height: math.unit(5 + 11/12, "feet"),
  42229. weight: math.unit(155, "lb"),
  42230. name: "Back",
  42231. image: {
  42232. source: "./media/characters/cai/back.svg",
  42233. extra: 1809/1708,
  42234. bottom: 31/1840
  42235. }
  42236. },
  42237. },
  42238. [
  42239. {
  42240. name: "Normal",
  42241. height: math.unit(5 + 11/12, "feet"),
  42242. default: true
  42243. },
  42244. {
  42245. name: "Big",
  42246. height: math.unit(15, "feet")
  42247. },
  42248. {
  42249. name: "Macro",
  42250. height: math.unit(200, "feet")
  42251. },
  42252. ]
  42253. ))
  42254. characterMakers.push(() => makeCharacter(
  42255. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42256. {
  42257. front: {
  42258. height: math.unit(5 + 6/12, "feet"),
  42259. weight: math.unit(160, "lb"),
  42260. name: "Front",
  42261. image: {
  42262. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42263. extra: 1227/1174,
  42264. bottom: 37/1264
  42265. }
  42266. },
  42267. },
  42268. [
  42269. {
  42270. name: "Macro",
  42271. height: math.unit(444, "meters"),
  42272. default: true
  42273. },
  42274. ]
  42275. ))
  42276. characterMakers.push(() => makeCharacter(
  42277. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42278. {
  42279. front: {
  42280. height: math.unit(18 + 7/12, "feet"),
  42281. name: "Front",
  42282. image: {
  42283. source: "./media/characters/rex/front.svg",
  42284. extra: 1941/1807,
  42285. bottom: 66/2007
  42286. }
  42287. },
  42288. back: {
  42289. height: math.unit(18 + 7/12, "feet"),
  42290. name: "Back",
  42291. image: {
  42292. source: "./media/characters/rex/back.svg",
  42293. extra: 1937/1822,
  42294. bottom: 42/1979
  42295. }
  42296. },
  42297. boot: {
  42298. height: math.unit(3.45, "feet"),
  42299. name: "Boot",
  42300. image: {
  42301. source: "./media/characters/rex/boot.svg"
  42302. }
  42303. },
  42304. paw: {
  42305. height: math.unit(4.17, "feet"),
  42306. name: "Paw",
  42307. image: {
  42308. source: "./media/characters/rex/paw.svg"
  42309. }
  42310. },
  42311. head: {
  42312. height: math.unit(6.728, "feet"),
  42313. name: "Head",
  42314. image: {
  42315. source: "./media/characters/rex/head.svg"
  42316. }
  42317. },
  42318. },
  42319. [
  42320. {
  42321. name: "Nano",
  42322. height: math.unit(18 + 7/12, "feet")
  42323. },
  42324. {
  42325. name: "Micro",
  42326. height: math.unit(1.5, "megameters")
  42327. },
  42328. {
  42329. name: "Normal",
  42330. height: math.unit(440, "megameters"),
  42331. default: true
  42332. },
  42333. {
  42334. name: "Macro",
  42335. height: math.unit(2.5, "gigameters")
  42336. },
  42337. {
  42338. name: "Gigamacro",
  42339. height: math.unit(2, "galaxies")
  42340. },
  42341. ]
  42342. ))
  42343. characterMakers.push(() => makeCharacter(
  42344. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42345. {
  42346. side: {
  42347. height: math.unit(32, "feet"),
  42348. weight: math.unit(250000, "lb"),
  42349. name: "Side",
  42350. image: {
  42351. source: "./media/characters/silverwing/side.svg",
  42352. extra: 1100/1019,
  42353. bottom: 204/1304
  42354. }
  42355. },
  42356. },
  42357. [
  42358. {
  42359. name: "Normal",
  42360. height: math.unit(32, "feet"),
  42361. default: true
  42362. },
  42363. ]
  42364. ))
  42365. characterMakers.push(() => makeCharacter(
  42366. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42367. {
  42368. front: {
  42369. height: math.unit(6 + 6/12, "feet"),
  42370. weight: math.unit(350, "lb"),
  42371. name: "Front",
  42372. image: {
  42373. source: "./media/characters/tristan-hawthorne/front.svg",
  42374. extra: 1159/1124,
  42375. bottom: 37/1196
  42376. },
  42377. form: "labrador",
  42378. default: true
  42379. },
  42380. skunkFront: {
  42381. height: math.unit(4 + 6/12, "feet"),
  42382. weight: math.unit(120, "lb"),
  42383. name: "Front",
  42384. image: {
  42385. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42386. extra: 1609/1551,
  42387. bottom: 169/1778
  42388. },
  42389. form: "skunk",
  42390. default: true
  42391. },
  42392. },
  42393. [
  42394. {
  42395. name: "Normal",
  42396. height: math.unit(6 + 6/12, "feet"),
  42397. form: "labrador",
  42398. default: true
  42399. },
  42400. {
  42401. name: "Normal",
  42402. height: math.unit(4 + 6/12, "feet"),
  42403. form: "skunk",
  42404. default: true
  42405. },
  42406. ],
  42407. {
  42408. "labrador": {
  42409. name: "Labrador",
  42410. default: true
  42411. },
  42412. "skunk": {
  42413. name: "Skunk"
  42414. }
  42415. }
  42416. ))
  42417. characterMakers.push(() => makeCharacter(
  42418. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42419. {
  42420. front: {
  42421. height: math.unit(5 + 11/12, "feet"),
  42422. weight: math.unit(190, "lb"),
  42423. name: "Front",
  42424. image: {
  42425. source: "./media/characters/mizu/front.svg",
  42426. extra: 1988/1788,
  42427. bottom: 14/2002
  42428. }
  42429. },
  42430. },
  42431. [
  42432. {
  42433. name: "Normal",
  42434. height: math.unit(5 + 11/12, "feet"),
  42435. default: true
  42436. },
  42437. ]
  42438. ))
  42439. characterMakers.push(() => makeCharacter(
  42440. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42441. {
  42442. front: {
  42443. height: math.unit(1.7, "feet"),
  42444. weight: math.unit(50, "lb"),
  42445. name: "Front",
  42446. image: {
  42447. source: "./media/characters/dechroma/front.svg",
  42448. extra: 1095/859,
  42449. bottom: 64/1159
  42450. }
  42451. },
  42452. },
  42453. [
  42454. {
  42455. name: "Normal",
  42456. height: math.unit(1.7, "feet"),
  42457. default: true
  42458. },
  42459. ]
  42460. ))
  42461. characterMakers.push(() => makeCharacter(
  42462. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42463. {
  42464. side: {
  42465. height: math.unit(30, "feet"),
  42466. name: "Side",
  42467. image: {
  42468. source: "./media/characters/veluren-thanazel/side.svg",
  42469. extra: 1611/633,
  42470. bottom: 118/1729
  42471. }
  42472. },
  42473. front: {
  42474. height: math.unit(30, "feet"),
  42475. name: "Front",
  42476. image: {
  42477. source: "./media/characters/veluren-thanazel/front.svg",
  42478. extra: 1486/636,
  42479. bottom: 238/1724
  42480. }
  42481. },
  42482. head: {
  42483. height: math.unit(21.4, "feet"),
  42484. name: "Head",
  42485. image: {
  42486. source: "./media/characters/veluren-thanazel/head.svg"
  42487. }
  42488. },
  42489. genitals: {
  42490. height: math.unit(19.4, "feet"),
  42491. name: "Genitals",
  42492. image: {
  42493. source: "./media/characters/veluren-thanazel/genitals.svg"
  42494. }
  42495. },
  42496. },
  42497. [
  42498. {
  42499. name: "Social",
  42500. height: math.unit(6, "feet")
  42501. },
  42502. {
  42503. name: "Play",
  42504. height: math.unit(12, "feet")
  42505. },
  42506. {
  42507. name: "True",
  42508. height: math.unit(30, "feet"),
  42509. default: true
  42510. },
  42511. ]
  42512. ))
  42513. characterMakers.push(() => makeCharacter(
  42514. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42515. {
  42516. front: {
  42517. height: math.unit(7 + 6/12, "feet"),
  42518. weight: math.unit(500, "kg"),
  42519. name: "Front",
  42520. image: {
  42521. source: "./media/characters/arcturas/front.svg",
  42522. extra: 1700/1500,
  42523. bottom: 145/1845
  42524. }
  42525. },
  42526. },
  42527. [
  42528. {
  42529. name: "Normal",
  42530. height: math.unit(7 + 6/12, "feet"),
  42531. default: true
  42532. },
  42533. ]
  42534. ))
  42535. characterMakers.push(() => makeCharacter(
  42536. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42537. {
  42538. side: {
  42539. height: math.unit(6, "feet"),
  42540. weight: math.unit(2, "tons"),
  42541. name: "Side",
  42542. image: {
  42543. source: "./media/characters/vitaen/side.svg",
  42544. extra: 1157/617,
  42545. bottom: 122/1279
  42546. }
  42547. },
  42548. },
  42549. [
  42550. {
  42551. name: "Normal",
  42552. height: math.unit(6, "feet"),
  42553. default: true
  42554. },
  42555. ]
  42556. ))
  42557. characterMakers.push(() => makeCharacter(
  42558. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42559. {
  42560. front: {
  42561. height: math.unit(19, "feet"),
  42562. name: "Front",
  42563. image: {
  42564. source: "./media/characters/fia-dreamweaver/front.svg",
  42565. extra: 1630/1504,
  42566. bottom: 25/1655
  42567. }
  42568. },
  42569. },
  42570. [
  42571. {
  42572. name: "Normal",
  42573. height: math.unit(19, "feet"),
  42574. default: true
  42575. },
  42576. ]
  42577. ))
  42578. characterMakers.push(() => makeCharacter(
  42579. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42580. {
  42581. front: {
  42582. height: math.unit(5 + 4/12, "feet"),
  42583. name: "Front",
  42584. image: {
  42585. source: "./media/characters/artan/front.svg",
  42586. extra: 1618/1535,
  42587. bottom: 46/1664
  42588. }
  42589. },
  42590. back: {
  42591. height: math.unit(5 + 4/12, "feet"),
  42592. name: "Back",
  42593. image: {
  42594. source: "./media/characters/artan/back.svg",
  42595. extra: 1618/1543,
  42596. bottom: 31/1649
  42597. }
  42598. },
  42599. },
  42600. [
  42601. {
  42602. name: "Normal",
  42603. height: math.unit(5 + 4/12, "feet"),
  42604. default: true
  42605. },
  42606. ]
  42607. ))
  42608. characterMakers.push(() => makeCharacter(
  42609. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42610. {
  42611. side: {
  42612. height: math.unit(182, "cm"),
  42613. weight: math.unit(1000, "lb"),
  42614. name: "Side",
  42615. image: {
  42616. source: "./media/characters/silver-dragon/side.svg",
  42617. extra: 710/287,
  42618. bottom: 88/798
  42619. }
  42620. },
  42621. },
  42622. [
  42623. {
  42624. name: "Normal",
  42625. height: math.unit(182, "cm"),
  42626. default: true
  42627. },
  42628. ]
  42629. ))
  42630. characterMakers.push(() => makeCharacter(
  42631. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42632. {
  42633. side: {
  42634. height: math.unit(6 + 6/12, "feet"),
  42635. weight: math.unit(1.5, "tons"),
  42636. name: "Side",
  42637. image: {
  42638. source: "./media/characters/zephyr/side.svg",
  42639. extra: 1433/586,
  42640. bottom: 109/1542
  42641. }
  42642. },
  42643. },
  42644. [
  42645. {
  42646. name: "Normal",
  42647. height: math.unit(6 + 6/12, "feet"),
  42648. default: true
  42649. },
  42650. ]
  42651. ))
  42652. characterMakers.push(() => makeCharacter(
  42653. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42654. {
  42655. side: {
  42656. height: math.unit(1, "feet"),
  42657. name: "Side",
  42658. image: {
  42659. source: "./media/characters/vixye/side.svg",
  42660. extra: 632/541,
  42661. bottom: 0/632
  42662. }
  42663. },
  42664. },
  42665. [
  42666. {
  42667. name: "Normal",
  42668. height: math.unit(1, "feet"),
  42669. default: true
  42670. },
  42671. {
  42672. name: "True",
  42673. height: math.unit(1e15, "multiverses")
  42674. },
  42675. ]
  42676. ))
  42677. characterMakers.push(() => makeCharacter(
  42678. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42679. {
  42680. front: {
  42681. height: math.unit(8 + 2/12, "feet"),
  42682. weight: math.unit(650, "lb"),
  42683. name: "Front",
  42684. image: {
  42685. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42686. extra: 1174/1137,
  42687. bottom: 82/1256
  42688. }
  42689. },
  42690. back: {
  42691. height: math.unit(8 + 2/12, "feet"),
  42692. weight: math.unit(650, "lb"),
  42693. name: "Back",
  42694. image: {
  42695. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42696. extra: 1204/1157,
  42697. bottom: 46/1250
  42698. }
  42699. },
  42700. },
  42701. [
  42702. {
  42703. name: "Wildform",
  42704. height: math.unit(8 + 2/12, "feet"),
  42705. default: true
  42706. },
  42707. ]
  42708. ))
  42709. characterMakers.push(() => makeCharacter(
  42710. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42711. {
  42712. front: {
  42713. height: math.unit(18, "feet"),
  42714. name: "Front",
  42715. image: {
  42716. source: "./media/characters/cyphin/front.svg",
  42717. extra: 970/886,
  42718. bottom: 42/1012
  42719. }
  42720. },
  42721. back: {
  42722. height: math.unit(18, "feet"),
  42723. name: "Back",
  42724. image: {
  42725. source: "./media/characters/cyphin/back.svg",
  42726. extra: 1009/894,
  42727. bottom: 24/1033
  42728. }
  42729. },
  42730. head: {
  42731. height: math.unit(5.05, "feet"),
  42732. name: "Head",
  42733. image: {
  42734. source: "./media/characters/cyphin/head.svg"
  42735. }
  42736. },
  42737. tailbud: {
  42738. height: math.unit(5, "feet"),
  42739. name: "Tailbud",
  42740. image: {
  42741. source: "./media/characters/cyphin/tailbud.svg"
  42742. }
  42743. },
  42744. },
  42745. [
  42746. ]
  42747. ))
  42748. characterMakers.push(() => makeCharacter(
  42749. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42750. {
  42751. side: {
  42752. height: math.unit(10, "feet"),
  42753. weight: math.unit(6, "tons"),
  42754. name: "Side",
  42755. image: {
  42756. source: "./media/characters/raijin/side.svg",
  42757. extra: 1529/613,
  42758. bottom: 337/1866
  42759. }
  42760. },
  42761. },
  42762. [
  42763. {
  42764. name: "Normal",
  42765. height: math.unit(10, "feet"),
  42766. default: true
  42767. },
  42768. ]
  42769. ))
  42770. characterMakers.push(() => makeCharacter(
  42771. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42772. {
  42773. side: {
  42774. height: math.unit(9, "feet"),
  42775. name: "Side",
  42776. image: {
  42777. source: "./media/characters/nilghais/side.svg",
  42778. extra: 1047/744,
  42779. bottom: 91/1138
  42780. }
  42781. },
  42782. head: {
  42783. height: math.unit(3.14, "feet"),
  42784. name: "Head",
  42785. image: {
  42786. source: "./media/characters/nilghais/head.svg"
  42787. }
  42788. },
  42789. mouth: {
  42790. height: math.unit(4.6, "feet"),
  42791. name: "Mouth",
  42792. image: {
  42793. source: "./media/characters/nilghais/mouth.svg"
  42794. }
  42795. },
  42796. wings: {
  42797. height: math.unit(24, "feet"),
  42798. name: "Wings",
  42799. image: {
  42800. source: "./media/characters/nilghais/wings.svg"
  42801. }
  42802. },
  42803. ass: {
  42804. height: math.unit(6.12, "feet"),
  42805. name: "Ass",
  42806. image: {
  42807. source: "./media/characters/nilghais/ass.svg"
  42808. }
  42809. },
  42810. },
  42811. [
  42812. {
  42813. name: "Normal",
  42814. height: math.unit(9, "feet"),
  42815. default: true
  42816. },
  42817. ]
  42818. ))
  42819. characterMakers.push(() => makeCharacter(
  42820. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42821. {
  42822. regular: {
  42823. height: math.unit(16 + 2/12, "feet"),
  42824. weight: math.unit(2300, "lb"),
  42825. name: "Regular",
  42826. image: {
  42827. source: "./media/characters/zolgar/regular.svg",
  42828. extra: 1246/1004,
  42829. bottom: 124/1370
  42830. }
  42831. },
  42832. boxers: {
  42833. height: math.unit(16 + 2/12, "feet"),
  42834. weight: math.unit(2300, "lb"),
  42835. name: "Boxers",
  42836. image: {
  42837. source: "./media/characters/zolgar/boxers.svg",
  42838. extra: 1246/1004,
  42839. bottom: 124/1370
  42840. }
  42841. },
  42842. armored: {
  42843. height: math.unit(16 + 2/12, "feet"),
  42844. weight: math.unit(2300, "lb"),
  42845. name: "Armored",
  42846. image: {
  42847. source: "./media/characters/zolgar/armored.svg",
  42848. extra: 1246/1004,
  42849. bottom: 124/1370
  42850. }
  42851. },
  42852. goth: {
  42853. height: math.unit(16 + 2/12, "feet"),
  42854. weight: math.unit(2300, "lb"),
  42855. name: "Goth",
  42856. image: {
  42857. source: "./media/characters/zolgar/goth.svg",
  42858. extra: 1246/1004,
  42859. bottom: 124/1370
  42860. }
  42861. },
  42862. },
  42863. [
  42864. {
  42865. name: "Shrunken Down",
  42866. height: math.unit(9 + 2/12, "feet")
  42867. },
  42868. {
  42869. name: "Normal",
  42870. height: math.unit(16 + 2/12, "feet"),
  42871. default: true
  42872. },
  42873. ]
  42874. ))
  42875. characterMakers.push(() => makeCharacter(
  42876. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42877. {
  42878. front: {
  42879. height: math.unit(6, "feet"),
  42880. weight: math.unit(168, "lb"),
  42881. name: "Front",
  42882. image: {
  42883. source: "./media/characters/luca/front.svg",
  42884. extra: 841/667,
  42885. bottom: 102/943
  42886. }
  42887. },
  42888. },
  42889. [
  42890. {
  42891. name: "Normal",
  42892. height: math.unit(6, "feet"),
  42893. default: true
  42894. },
  42895. ]
  42896. ))
  42897. characterMakers.push(() => makeCharacter(
  42898. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42899. {
  42900. side: {
  42901. height: math.unit(7 + 3/12, "feet"),
  42902. weight: math.unit(312, "lb"),
  42903. name: "Side",
  42904. image: {
  42905. source: "./media/characters/zezo/side.svg",
  42906. extra: 1192/1067,
  42907. bottom: 63/1255
  42908. }
  42909. },
  42910. },
  42911. [
  42912. {
  42913. name: "Normal",
  42914. height: math.unit(7 + 3/12, "feet"),
  42915. default: true
  42916. },
  42917. ]
  42918. ))
  42919. characterMakers.push(() => makeCharacter(
  42920. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42921. {
  42922. front: {
  42923. height: math.unit(5 + 5/12, "feet"),
  42924. weight: math.unit(170, "lb"),
  42925. name: "Front",
  42926. image: {
  42927. source: "./media/characters/mayso/front.svg",
  42928. extra: 1215/1108,
  42929. bottom: 16/1231
  42930. }
  42931. },
  42932. },
  42933. [
  42934. {
  42935. name: "Normal",
  42936. height: math.unit(5 + 5/12, "feet"),
  42937. default: true
  42938. },
  42939. ]
  42940. ))
  42941. characterMakers.push(() => makeCharacter(
  42942. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42943. {
  42944. front: {
  42945. height: math.unit(4 + 3/12, "feet"),
  42946. weight: math.unit(80, "lb"),
  42947. name: "Front",
  42948. image: {
  42949. source: "./media/characters/hess/front.svg",
  42950. extra: 1200/1123,
  42951. bottom: 16/1216
  42952. }
  42953. },
  42954. },
  42955. [
  42956. {
  42957. name: "Normal",
  42958. height: math.unit(4 + 3/12, "feet"),
  42959. default: true
  42960. },
  42961. ]
  42962. ))
  42963. characterMakers.push(() => makeCharacter(
  42964. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42965. {
  42966. front: {
  42967. height: math.unit(1.9, "meters"),
  42968. name: "Front",
  42969. image: {
  42970. source: "./media/characters/ashgar/front.svg",
  42971. extra: 1177/1146,
  42972. bottom: 99/1276
  42973. }
  42974. },
  42975. back: {
  42976. height: math.unit(1.9, "meters"),
  42977. name: "Back",
  42978. image: {
  42979. source: "./media/characters/ashgar/back.svg",
  42980. extra: 1201/1183,
  42981. bottom: 53/1254
  42982. }
  42983. },
  42984. feral: {
  42985. height: math.unit(1.4, "meters"),
  42986. name: "Feral",
  42987. image: {
  42988. source: "./media/characters/ashgar/feral.svg",
  42989. extra: 370/345,
  42990. bottom: 45/415
  42991. }
  42992. },
  42993. },
  42994. [
  42995. {
  42996. name: "Normal",
  42997. height: math.unit(1.9, "meters"),
  42998. default: true
  42999. },
  43000. ]
  43001. ))
  43002. characterMakers.push(() => makeCharacter(
  43003. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43004. {
  43005. regular: {
  43006. height: math.unit(6, "feet"),
  43007. weight: math.unit(220, "lb"),
  43008. name: "Regular",
  43009. image: {
  43010. source: "./media/characters/phillip/regular.svg",
  43011. extra: 1373/1277,
  43012. bottom: 75/1448
  43013. }
  43014. },
  43015. dressed: {
  43016. height: math.unit(6, "feet"),
  43017. weight: math.unit(220, "lb"),
  43018. name: "Dressed",
  43019. image: {
  43020. source: "./media/characters/phillip/dressed.svg",
  43021. extra: 1373/1277,
  43022. bottom: 75/1448
  43023. }
  43024. },
  43025. paw: {
  43026. height: math.unit(1.44, "feet"),
  43027. name: "Paw",
  43028. image: {
  43029. source: "./media/characters/phillip/paw.svg"
  43030. }
  43031. },
  43032. },
  43033. [
  43034. {
  43035. name: "Normal",
  43036. height: math.unit(6, "feet"),
  43037. default: true
  43038. },
  43039. ]
  43040. ))
  43041. characterMakers.push(() => makeCharacter(
  43042. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43043. {
  43044. side: {
  43045. height: math.unit(42, "feet"),
  43046. name: "Side",
  43047. image: {
  43048. source: "./media/characters/uvula/side.svg",
  43049. extra: 683/586,
  43050. bottom: 60/743
  43051. }
  43052. },
  43053. front: {
  43054. height: math.unit(42, "feet"),
  43055. name: "Front",
  43056. image: {
  43057. source: "./media/characters/uvula/front.svg",
  43058. extra: 705/613,
  43059. bottom: 54/759
  43060. }
  43061. },
  43062. maw: {
  43063. height: math.unit(23.5, "feet"),
  43064. name: "Maw",
  43065. image: {
  43066. source: "./media/characters/uvula/maw.svg"
  43067. }
  43068. },
  43069. },
  43070. [
  43071. {
  43072. name: "Original Size",
  43073. height: math.unit(14, "inches")
  43074. },
  43075. {
  43076. name: "Human Size",
  43077. height: math.unit(6, "feet")
  43078. },
  43079. {
  43080. name: "Big",
  43081. height: math.unit(42, "feet"),
  43082. default: true
  43083. },
  43084. {
  43085. name: "Bigger",
  43086. height: math.unit(100, "feet")
  43087. },
  43088. ]
  43089. ))
  43090. characterMakers.push(() => makeCharacter(
  43091. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43092. {
  43093. front: {
  43094. height: math.unit(5 + 11/12, "feet"),
  43095. name: "Front",
  43096. image: {
  43097. source: "./media/characters/lannah/front.svg",
  43098. extra: 1208/1113,
  43099. bottom: 97/1305
  43100. }
  43101. },
  43102. },
  43103. [
  43104. {
  43105. name: "Normal",
  43106. height: math.unit(5 + 11/12, "feet"),
  43107. default: true
  43108. },
  43109. ]
  43110. ))
  43111. characterMakers.push(() => makeCharacter(
  43112. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43113. {
  43114. front: {
  43115. height: math.unit(6 + 3/12, "feet"),
  43116. weight: math.unit(3.5, "tons"),
  43117. name: "Front",
  43118. image: {
  43119. source: "./media/characters/emberflame/front.svg",
  43120. extra: 1198/672,
  43121. bottom: 82/1280
  43122. }
  43123. },
  43124. side: {
  43125. height: math.unit(6 + 3/12, "feet"),
  43126. weight: math.unit(3.5, "tons"),
  43127. name: "Side",
  43128. image: {
  43129. source: "./media/characters/emberflame/side.svg",
  43130. extra: 938/527,
  43131. bottom: 56/994
  43132. }
  43133. },
  43134. },
  43135. [
  43136. {
  43137. name: "Normal",
  43138. height: math.unit(6 + 3/12, "feet"),
  43139. default: true
  43140. },
  43141. ]
  43142. ))
  43143. characterMakers.push(() => makeCharacter(
  43144. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43145. {
  43146. side: {
  43147. height: math.unit(17.5, "feet"),
  43148. weight: math.unit(35, "tons"),
  43149. name: "Side",
  43150. image: {
  43151. source: "./media/characters/sophie-ambrose/side.svg",
  43152. extra: 1573/1242,
  43153. bottom: 71/1644
  43154. }
  43155. },
  43156. maw: {
  43157. height: math.unit(7.4, "feet"),
  43158. name: "Maw",
  43159. image: {
  43160. source: "./media/characters/sophie-ambrose/maw.svg"
  43161. }
  43162. },
  43163. },
  43164. [
  43165. {
  43166. name: "Normal",
  43167. height: math.unit(17.5, "feet"),
  43168. default: true
  43169. },
  43170. ]
  43171. ))
  43172. characterMakers.push(() => makeCharacter(
  43173. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43174. {
  43175. front: {
  43176. height: math.unit(280, "feet"),
  43177. weight: math.unit(550, "tons"),
  43178. name: "Front",
  43179. image: {
  43180. source: "./media/characters/king-mugi/front.svg",
  43181. extra: 1102/947,
  43182. bottom: 104/1206
  43183. }
  43184. },
  43185. },
  43186. [
  43187. {
  43188. name: "King Mugi",
  43189. height: math.unit(280, "feet"),
  43190. default: true
  43191. },
  43192. ]
  43193. ))
  43194. characterMakers.push(() => makeCharacter(
  43195. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43196. {
  43197. front: {
  43198. height: math.unit(64, "meters"),
  43199. name: "Front",
  43200. image: {
  43201. source: "./media/characters/nova-fox/front.svg",
  43202. extra: 1310/1246,
  43203. bottom: 65/1375
  43204. }
  43205. },
  43206. },
  43207. [
  43208. {
  43209. name: "Macro",
  43210. height: math.unit(64, "meters"),
  43211. default: true
  43212. },
  43213. ]
  43214. ))
  43215. characterMakers.push(() => makeCharacter(
  43216. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43217. {
  43218. front: {
  43219. height: math.unit(6 + 3/12, "feet"),
  43220. weight: math.unit(170, "lb"),
  43221. name: "Front",
  43222. image: {
  43223. source: "./media/characters/sam-bat/front.svg",
  43224. extra: 1601/1411,
  43225. bottom: 125/1726
  43226. }
  43227. },
  43228. back: {
  43229. height: math.unit(6 + 3/12, "feet"),
  43230. weight: math.unit(170, "lb"),
  43231. name: "Back",
  43232. image: {
  43233. source: "./media/characters/sam-bat/back.svg",
  43234. extra: 1577/1405,
  43235. bottom: 58/1635
  43236. }
  43237. },
  43238. },
  43239. [
  43240. {
  43241. name: "Normal",
  43242. height: math.unit(6 + 3/12, "feet"),
  43243. default: true
  43244. },
  43245. ]
  43246. ))
  43247. characterMakers.push(() => makeCharacter(
  43248. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43249. {
  43250. front: {
  43251. height: math.unit(59, "feet"),
  43252. weight: math.unit(40000, "lb"),
  43253. name: "Front",
  43254. image: {
  43255. source: "./media/characters/inari/front.svg",
  43256. extra: 1884/1350,
  43257. bottom: 95/1979
  43258. }
  43259. },
  43260. },
  43261. [
  43262. {
  43263. name: "Gigantamax",
  43264. height: math.unit(59, "feet"),
  43265. default: true
  43266. },
  43267. ]
  43268. ))
  43269. characterMakers.push(() => makeCharacter(
  43270. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43271. {
  43272. front: {
  43273. height: math.unit(5 + 8/12, "feet"),
  43274. name: "Front",
  43275. image: {
  43276. source: "./media/characters/elizabeth/front.svg",
  43277. extra: 1395/1298,
  43278. bottom: 54/1449
  43279. }
  43280. },
  43281. mouth: {
  43282. height: math.unit(1.97, "feet"),
  43283. name: "Mouth",
  43284. image: {
  43285. source: "./media/characters/elizabeth/mouth.svg"
  43286. }
  43287. },
  43288. foot: {
  43289. height: math.unit(1.17, "feet"),
  43290. name: "Foot",
  43291. image: {
  43292. source: "./media/characters/elizabeth/foot.svg"
  43293. }
  43294. },
  43295. },
  43296. [
  43297. {
  43298. name: "Normal",
  43299. height: math.unit(5 + 8/12, "feet"),
  43300. default: true
  43301. },
  43302. {
  43303. name: "Minimacro",
  43304. height: math.unit(18, "feet")
  43305. },
  43306. {
  43307. name: "Macro",
  43308. height: math.unit(180, "feet")
  43309. },
  43310. ]
  43311. ))
  43312. characterMakers.push(() => makeCharacter(
  43313. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43314. {
  43315. front: {
  43316. height: math.unit(5 + 2/12, "feet"),
  43317. name: "Front",
  43318. image: {
  43319. source: "./media/characters/october-gossamer/front.svg",
  43320. extra: 505/454,
  43321. bottom: 7/512
  43322. }
  43323. },
  43324. back: {
  43325. height: math.unit(5 + 2/12, "feet"),
  43326. name: "Back",
  43327. image: {
  43328. source: "./media/characters/october-gossamer/back.svg",
  43329. extra: 501/454,
  43330. bottom: 11/512
  43331. }
  43332. },
  43333. },
  43334. [
  43335. {
  43336. name: "Normal",
  43337. height: math.unit(5 + 2/12, "feet"),
  43338. default: true
  43339. },
  43340. ]
  43341. ))
  43342. characterMakers.push(() => makeCharacter(
  43343. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43344. {
  43345. front: {
  43346. height: math.unit(5, "feet"),
  43347. name: "Front",
  43348. image: {
  43349. source: "./media/characters/epiglottis/front.svg",
  43350. extra: 923/849,
  43351. bottom: 17/940
  43352. }
  43353. },
  43354. },
  43355. [
  43356. {
  43357. name: "Original Size",
  43358. height: math.unit(10, "inches")
  43359. },
  43360. {
  43361. name: "Human Size",
  43362. height: math.unit(5, "feet"),
  43363. default: true
  43364. },
  43365. {
  43366. name: "Big",
  43367. height: math.unit(25, "feet")
  43368. },
  43369. {
  43370. name: "Bigger",
  43371. height: math.unit(50, "feet")
  43372. },
  43373. {
  43374. name: "oh lawd",
  43375. height: math.unit(75, "feet")
  43376. },
  43377. ]
  43378. ))
  43379. characterMakers.push(() => makeCharacter(
  43380. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43381. {
  43382. front: {
  43383. height: math.unit(2 + 4/12, "feet"),
  43384. weight: math.unit(60, "lb"),
  43385. name: "Front",
  43386. image: {
  43387. source: "./media/characters/lerm/front.svg",
  43388. extra: 796/790,
  43389. bottom: 79/875
  43390. }
  43391. },
  43392. },
  43393. [
  43394. {
  43395. name: "Normal",
  43396. height: math.unit(2 + 4/12, "feet"),
  43397. default: true
  43398. },
  43399. ]
  43400. ))
  43401. characterMakers.push(() => makeCharacter(
  43402. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43403. {
  43404. front: {
  43405. height: math.unit(5.5, "feet"),
  43406. weight: math.unit(130, "lb"),
  43407. name: "Front",
  43408. image: {
  43409. source: "./media/characters/xena-nebadon/front.svg",
  43410. extra: 1828/1730,
  43411. bottom: 79/1907
  43412. }
  43413. },
  43414. },
  43415. [
  43416. {
  43417. name: "Tiny Puppy",
  43418. height: math.unit(3, "inches")
  43419. },
  43420. {
  43421. name: "Normal",
  43422. height: math.unit(5.5, "feet"),
  43423. default: true
  43424. },
  43425. {
  43426. name: "Lotta Lady",
  43427. height: math.unit(12, "feet")
  43428. },
  43429. {
  43430. name: "Pretty Big",
  43431. height: math.unit(100, "feet")
  43432. },
  43433. {
  43434. name: "Big",
  43435. height: math.unit(500, "feet")
  43436. },
  43437. {
  43438. name: "Skyscraper Toys",
  43439. height: math.unit(2500, "feet")
  43440. },
  43441. {
  43442. name: "Plane Catcher",
  43443. height: math.unit(8, "miles")
  43444. },
  43445. {
  43446. name: "Planet Toys",
  43447. height: math.unit(15, "earths")
  43448. },
  43449. {
  43450. name: "Stardust",
  43451. height: math.unit(0.25, "galaxies")
  43452. },
  43453. {
  43454. name: "Snacks",
  43455. height: math.unit(70, "universes")
  43456. },
  43457. ]
  43458. ))
  43459. characterMakers.push(() => makeCharacter(
  43460. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43461. {
  43462. front: {
  43463. height: math.unit(1.6, "meters"),
  43464. weight: math.unit(60, "kg"),
  43465. name: "Front",
  43466. image: {
  43467. source: "./media/characters/bounty/front.svg",
  43468. extra: 1426/1308,
  43469. bottom: 15/1441
  43470. }
  43471. },
  43472. back: {
  43473. height: math.unit(1.6, "meters"),
  43474. weight: math.unit(60, "kg"),
  43475. name: "Back",
  43476. image: {
  43477. source: "./media/characters/bounty/back.svg",
  43478. extra: 1417/1307,
  43479. bottom: 8/1425
  43480. }
  43481. },
  43482. },
  43483. [
  43484. {
  43485. name: "Normal",
  43486. height: math.unit(1.6, "meters"),
  43487. default: true
  43488. },
  43489. {
  43490. name: "Macro",
  43491. height: math.unit(300, "meters")
  43492. },
  43493. ]
  43494. ))
  43495. characterMakers.push(() => makeCharacter(
  43496. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43497. {
  43498. front: {
  43499. height: math.unit(2 + 8/12, "feet"),
  43500. weight: math.unit(15, "lb"),
  43501. name: "Front",
  43502. image: {
  43503. source: "./media/characters/mochi/front.svg",
  43504. extra: 1022/852,
  43505. bottom: 435/1457
  43506. }
  43507. },
  43508. back: {
  43509. height: math.unit(2 + 8/12, "feet"),
  43510. weight: math.unit(15, "lb"),
  43511. name: "Back",
  43512. image: {
  43513. source: "./media/characters/mochi/back.svg",
  43514. extra: 1335/1119,
  43515. bottom: 39/1374
  43516. }
  43517. },
  43518. bird: {
  43519. height: math.unit(2 + 8/12, "feet"),
  43520. weight: math.unit(15, "lb"),
  43521. name: "Bird",
  43522. image: {
  43523. source: "./media/characters/mochi/bird.svg",
  43524. extra: 1251/1113,
  43525. bottom: 178/1429
  43526. }
  43527. },
  43528. kaiju: {
  43529. height: math.unit(154, "feet"),
  43530. weight: math.unit(1e7, "lb"),
  43531. name: "Kaiju",
  43532. image: {
  43533. source: "./media/characters/mochi/kaiju.svg",
  43534. extra: 460/324,
  43535. bottom: 40/500
  43536. }
  43537. },
  43538. head: {
  43539. height: math.unit(1.21, "feet"),
  43540. name: "Head",
  43541. image: {
  43542. source: "./media/characters/mochi/head.svg"
  43543. }
  43544. },
  43545. alternateTail: {
  43546. height: math.unit(2 + 8/12, "feet"),
  43547. weight: math.unit(45, "lb"),
  43548. name: "Alternate Tail",
  43549. image: {
  43550. source: "./media/characters/mochi/alternate-tail.svg",
  43551. extra: 139/76,
  43552. bottom: 45/184
  43553. }
  43554. },
  43555. },
  43556. [
  43557. {
  43558. name: "Micro",
  43559. height: math.unit(2, "inches")
  43560. },
  43561. {
  43562. name: "Normal",
  43563. height: math.unit(2 + 8/12, "feet"),
  43564. default: true
  43565. },
  43566. {
  43567. name: "Macro",
  43568. height: math.unit(106, "feet")
  43569. },
  43570. ]
  43571. ))
  43572. characterMakers.push(() => makeCharacter(
  43573. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43574. {
  43575. front: {
  43576. height: math.unit(5.67, "feet"),
  43577. weight: math.unit(135, "lb"),
  43578. name: "Front",
  43579. image: {
  43580. source: "./media/characters/sarel/front.svg",
  43581. extra: 865/788,
  43582. bottom: 97/962
  43583. }
  43584. },
  43585. back: {
  43586. height: math.unit(5.67, "feet"),
  43587. weight: math.unit(135, "lb"),
  43588. name: "Back",
  43589. image: {
  43590. source: "./media/characters/sarel/back.svg",
  43591. extra: 857/777,
  43592. bottom: 32/889
  43593. }
  43594. },
  43595. chozoan: {
  43596. height: math.unit(5.67, "feet"),
  43597. weight: math.unit(135, "lb"),
  43598. name: "Chozoan",
  43599. image: {
  43600. source: "./media/characters/sarel/chozoan.svg",
  43601. extra: 865/788,
  43602. bottom: 97/962
  43603. }
  43604. },
  43605. current: {
  43606. height: math.unit(5.67, "feet"),
  43607. weight: math.unit(135, "lb"),
  43608. name: "Current",
  43609. image: {
  43610. source: "./media/characters/sarel/current.svg",
  43611. extra: 865/788,
  43612. bottom: 97/962
  43613. }
  43614. },
  43615. head: {
  43616. height: math.unit(1.77, "feet"),
  43617. name: "Head",
  43618. image: {
  43619. source: "./media/characters/sarel/head.svg"
  43620. }
  43621. },
  43622. claws: {
  43623. height: math.unit(1.8, "feet"),
  43624. name: "Claws",
  43625. image: {
  43626. source: "./media/characters/sarel/claws.svg"
  43627. }
  43628. },
  43629. clawsAlt: {
  43630. height: math.unit(1.8, "feet"),
  43631. name: "Claws-alt",
  43632. image: {
  43633. source: "./media/characters/sarel/claws-alt.svg"
  43634. }
  43635. },
  43636. },
  43637. [
  43638. {
  43639. name: "Normal",
  43640. height: math.unit(5.67, "feet"),
  43641. default: true
  43642. },
  43643. ]
  43644. ))
  43645. characterMakers.push(() => makeCharacter(
  43646. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43647. {
  43648. front: {
  43649. height: math.unit(5500, "feet"),
  43650. name: "Front",
  43651. image: {
  43652. source: "./media/characters/alyonia/front.svg",
  43653. extra: 1200/1135,
  43654. bottom: 29/1229
  43655. }
  43656. },
  43657. back: {
  43658. height: math.unit(5500, "feet"),
  43659. name: "Back",
  43660. image: {
  43661. source: "./media/characters/alyonia/back.svg",
  43662. extra: 1205/1138,
  43663. bottom: 10/1215
  43664. }
  43665. },
  43666. },
  43667. [
  43668. {
  43669. name: "Small",
  43670. height: math.unit(10, "feet")
  43671. },
  43672. {
  43673. name: "Macro",
  43674. height: math.unit(500, "feet")
  43675. },
  43676. {
  43677. name: "Mega Macro",
  43678. height: math.unit(5500, "feet"),
  43679. default: true
  43680. },
  43681. {
  43682. name: "Mega Macro+",
  43683. height: math.unit(500000, "feet")
  43684. },
  43685. {
  43686. name: "Giga Macro",
  43687. height: math.unit(3000, "miles")
  43688. },
  43689. {
  43690. name: "Tera Macro",
  43691. height: math.unit(2.8e6, "miles")
  43692. },
  43693. {
  43694. name: "Galactic",
  43695. height: math.unit(120000, "lightyears")
  43696. },
  43697. ]
  43698. ))
  43699. characterMakers.push(() => makeCharacter(
  43700. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43701. {
  43702. werewolf: {
  43703. height: math.unit(8, "feet"),
  43704. weight: math.unit(425, "lb"),
  43705. name: "Werewolf",
  43706. image: {
  43707. source: "./media/characters/autumn/werewolf.svg",
  43708. extra: 2154/2031,
  43709. bottom: 160/2314
  43710. }
  43711. },
  43712. human: {
  43713. height: math.unit(5 + 8/12, "feet"),
  43714. weight: math.unit(150, "lb"),
  43715. name: "Human",
  43716. image: {
  43717. source: "./media/characters/autumn/human.svg",
  43718. extra: 1200/1149,
  43719. bottom: 30/1230
  43720. }
  43721. },
  43722. },
  43723. [
  43724. {
  43725. name: "Normal",
  43726. height: math.unit(8, "feet"),
  43727. default: true
  43728. },
  43729. ]
  43730. ))
  43731. characterMakers.push(() => makeCharacter(
  43732. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43733. {
  43734. front: {
  43735. height: math.unit(8 + 5/12, "feet"),
  43736. weight: math.unit(825, "lb"),
  43737. name: "Front",
  43738. image: {
  43739. source: "./media/characters/cobalt-charizard/front.svg",
  43740. extra: 1268/1155,
  43741. bottom: 122/1390
  43742. }
  43743. },
  43744. side: {
  43745. height: math.unit(8 + 5/12, "feet"),
  43746. weight: math.unit(825, "lb"),
  43747. name: "Side",
  43748. image: {
  43749. source: "./media/characters/cobalt-charizard/side.svg",
  43750. extra: 1348/1257,
  43751. bottom: 58/1406
  43752. }
  43753. },
  43754. gMax: {
  43755. height: math.unit(134 + 11/12, "feet"),
  43756. name: "G-Max",
  43757. image: {
  43758. source: "./media/characters/cobalt-charizard/g-max.svg",
  43759. extra: 1835/1541,
  43760. bottom: 151/1986
  43761. }
  43762. },
  43763. },
  43764. [
  43765. {
  43766. name: "Normal",
  43767. height: math.unit(8 + 5/12, "feet"),
  43768. default: true
  43769. },
  43770. ]
  43771. ))
  43772. characterMakers.push(() => makeCharacter(
  43773. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43774. {
  43775. front: {
  43776. height: math.unit(6 + 3/12, "feet"),
  43777. weight: math.unit(210, "lb"),
  43778. name: "Front",
  43779. image: {
  43780. source: "./media/characters/stella/front.svg",
  43781. extra: 3549/3335,
  43782. bottom: 51/3600
  43783. }
  43784. },
  43785. },
  43786. [
  43787. {
  43788. name: "Normal",
  43789. height: math.unit(6 + 3/12, "feet"),
  43790. default: true
  43791. },
  43792. ]
  43793. ))
  43794. characterMakers.push(() => makeCharacter(
  43795. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43796. {
  43797. front: {
  43798. height: math.unit(5, "feet"),
  43799. weight: math.unit(90, "lb"),
  43800. name: "Front",
  43801. image: {
  43802. source: "./media/characters/riley-bishop/front.svg",
  43803. extra: 1450/1428,
  43804. bottom: 152/1602
  43805. }
  43806. },
  43807. },
  43808. [
  43809. {
  43810. name: "Normal",
  43811. height: math.unit(5, "feet"),
  43812. default: true
  43813. },
  43814. ]
  43815. ))
  43816. characterMakers.push(() => makeCharacter(
  43817. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43818. {
  43819. side: {
  43820. height: math.unit(8 + 2/12, "feet"),
  43821. weight: math.unit(500, "kg"),
  43822. name: "Side",
  43823. image: {
  43824. source: "./media/characters/theo-arcanine/side.svg",
  43825. extra: 1342/1074,
  43826. bottom: 111/1453
  43827. }
  43828. },
  43829. },
  43830. [
  43831. {
  43832. name: "Normal",
  43833. height: math.unit(8 + 2/12, "feet"),
  43834. default: true
  43835. },
  43836. ]
  43837. ))
  43838. characterMakers.push(() => makeCharacter(
  43839. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43840. {
  43841. front: {
  43842. height: math.unit(4, "feet"),
  43843. name: "Front",
  43844. image: {
  43845. source: "./media/characters/kali/front.svg",
  43846. extra: 1921/1357,
  43847. bottom: 70/1991
  43848. }
  43849. },
  43850. },
  43851. [
  43852. {
  43853. name: "Normal",
  43854. height: math.unit(4, "feet"),
  43855. default: true
  43856. },
  43857. {
  43858. name: "Macro",
  43859. height: math.unit(32, "meters")
  43860. },
  43861. {
  43862. name: "Macro+",
  43863. height: math.unit(150, "meters")
  43864. },
  43865. {
  43866. name: "Megamacro",
  43867. height: math.unit(7500, "meters")
  43868. },
  43869. {
  43870. name: "Megamacro+",
  43871. height: math.unit(80, "kilometers")
  43872. },
  43873. ]
  43874. ))
  43875. characterMakers.push(() => makeCharacter(
  43876. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43877. {
  43878. side: {
  43879. height: math.unit(5 + 11/12, "feet"),
  43880. weight: math.unit(236, "lb"),
  43881. name: "Side",
  43882. image: {
  43883. source: "./media/characters/gapp/side.svg",
  43884. extra: 775/340,
  43885. bottom: 58/833
  43886. }
  43887. },
  43888. mouth: {
  43889. height: math.unit(2.98, "feet"),
  43890. name: "Mouth",
  43891. image: {
  43892. source: "./media/characters/gapp/mouth.svg"
  43893. }
  43894. },
  43895. },
  43896. [
  43897. {
  43898. name: "Normal",
  43899. height: math.unit(5 + 1/12, "feet"),
  43900. default: true
  43901. },
  43902. ]
  43903. ))
  43904. characterMakers.push(() => makeCharacter(
  43905. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43906. {
  43907. front: {
  43908. height: math.unit(6, "feet"),
  43909. name: "Front",
  43910. image: {
  43911. source: "./media/characters/persephone/front.svg",
  43912. extra: 1895/1717,
  43913. bottom: 96/1991
  43914. }
  43915. },
  43916. back: {
  43917. height: math.unit(6, "feet"),
  43918. name: "Back",
  43919. image: {
  43920. source: "./media/characters/persephone/back.svg",
  43921. extra: 1868/1679,
  43922. bottom: 26/1894
  43923. }
  43924. },
  43925. casual: {
  43926. height: math.unit(6, "feet"),
  43927. name: "Casual",
  43928. image: {
  43929. source: "./media/characters/persephone/casual.svg",
  43930. extra: 1713/1541,
  43931. bottom: 76/1789
  43932. }
  43933. },
  43934. },
  43935. [
  43936. {
  43937. name: "Human Size",
  43938. height: math.unit(6, "feet")
  43939. },
  43940. {
  43941. name: "Big Steppy",
  43942. height: math.unit(600, "meters"),
  43943. default: true
  43944. },
  43945. {
  43946. name: "Galaxy Brain",
  43947. height: math.unit(1, "zettameter")
  43948. },
  43949. ]
  43950. ))
  43951. characterMakers.push(() => makeCharacter(
  43952. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43953. {
  43954. front: {
  43955. height: math.unit(1.85, "meters"),
  43956. name: "Front",
  43957. image: {
  43958. source: "./media/characters/riley-foxthing/front.svg",
  43959. extra: 1495/1354,
  43960. bottom: 122/1617
  43961. }
  43962. },
  43963. frontAlt: {
  43964. height: math.unit(1.85, "meters"),
  43965. name: "Front (Alt)",
  43966. image: {
  43967. source: "./media/characters/riley-foxthing/front-alt.svg",
  43968. extra: 1572/1389,
  43969. bottom: 116/1688
  43970. }
  43971. },
  43972. },
  43973. [
  43974. {
  43975. name: "Normal Sized",
  43976. height: math.unit(1.85, "meters"),
  43977. default: true
  43978. },
  43979. {
  43980. name: "Quite Sizable",
  43981. height: math.unit(5, "meters")
  43982. },
  43983. {
  43984. name: "Rather Large",
  43985. height: math.unit(20, "meters")
  43986. },
  43987. {
  43988. name: "Macro",
  43989. height: math.unit(450, "meters")
  43990. },
  43991. {
  43992. name: "Giga",
  43993. height: math.unit(5, "km")
  43994. },
  43995. ]
  43996. ))
  43997. characterMakers.push(() => makeCharacter(
  43998. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43999. {
  44000. front: {
  44001. height: math.unit(6, "feet"),
  44002. weight: math.unit(200, "lb"),
  44003. name: "Front",
  44004. image: {
  44005. source: "./media/characters/blizzard/front.svg",
  44006. extra: 1136/990,
  44007. bottom: 136/1272
  44008. }
  44009. },
  44010. back: {
  44011. height: math.unit(6, "feet"),
  44012. weight: math.unit(200, "lb"),
  44013. name: "Back",
  44014. image: {
  44015. source: "./media/characters/blizzard/back.svg",
  44016. extra: 1175/1034,
  44017. bottom: 97/1272
  44018. }
  44019. },
  44020. sitting: {
  44021. height: math.unit(3.725, "feet"),
  44022. weight: math.unit(200, "lb"),
  44023. name: "Sitting",
  44024. image: {
  44025. source: "./media/characters/blizzard/sitting.svg",
  44026. extra: 581/485,
  44027. bottom: 90/671
  44028. }
  44029. },
  44030. frontWizard: {
  44031. height: math.unit(7.9, "feet"),
  44032. weight: math.unit(200, "lb"),
  44033. name: "Front (Wizard)",
  44034. image: {
  44035. source: "./media/characters/blizzard/front-wizard.svg"
  44036. }
  44037. },
  44038. backWizard: {
  44039. height: math.unit(7.9, "feet"),
  44040. weight: math.unit(200, "lb"),
  44041. name: "Back (Wizard)",
  44042. image: {
  44043. source: "./media/characters/blizzard/back-wizard.svg"
  44044. }
  44045. },
  44046. frontNsfw: {
  44047. height: math.unit(6, "feet"),
  44048. weight: math.unit(200, "lb"),
  44049. name: "Front (NSFW)",
  44050. image: {
  44051. source: "./media/characters/blizzard/front-nsfw.svg",
  44052. extra: 1136/990,
  44053. bottom: 136/1272
  44054. }
  44055. },
  44056. backNsfw: {
  44057. height: math.unit(6, "feet"),
  44058. weight: math.unit(200, "lb"),
  44059. name: "Back (NSFW)",
  44060. image: {
  44061. source: "./media/characters/blizzard/back-nsfw.svg",
  44062. extra: 1175/1034,
  44063. bottom: 97/1272
  44064. }
  44065. },
  44066. sittingNsfw: {
  44067. height: math.unit(3.725, "feet"),
  44068. weight: math.unit(200, "lb"),
  44069. name: "Sitting (NSFW)",
  44070. image: {
  44071. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44072. extra: 581/485,
  44073. bottom: 90/671
  44074. }
  44075. },
  44076. wizardFrontNsfw: {
  44077. height: math.unit(7.9, "feet"),
  44078. weight: math.unit(200, "lb"),
  44079. name: "Wizard (Front, NSFW)",
  44080. image: {
  44081. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44082. }
  44083. },
  44084. },
  44085. [
  44086. {
  44087. name: "Normal",
  44088. height: math.unit(6, "feet"),
  44089. default: true
  44090. },
  44091. ]
  44092. ))
  44093. characterMakers.push(() => makeCharacter(
  44094. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44095. {
  44096. front: {
  44097. height: math.unit(5 + 2/12, "feet"),
  44098. name: "Front",
  44099. image: {
  44100. source: "./media/characters/lumi/front.svg",
  44101. extra: 1328/1268,
  44102. bottom: 103/1431
  44103. }
  44104. },
  44105. back: {
  44106. height: math.unit(5 + 2/12, "feet"),
  44107. name: "Back",
  44108. image: {
  44109. source: "./media/characters/lumi/back.svg",
  44110. extra: 1381/1327,
  44111. bottom: 43/1424
  44112. }
  44113. },
  44114. },
  44115. [
  44116. {
  44117. name: "Normal",
  44118. height: math.unit(5 + 2/12, "feet"),
  44119. default: true
  44120. },
  44121. ]
  44122. ))
  44123. characterMakers.push(() => makeCharacter(
  44124. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44125. {
  44126. front: {
  44127. height: math.unit(5 + 9/12, "feet"),
  44128. name: "Front",
  44129. image: {
  44130. source: "./media/characters/aliya-cotton/front.svg",
  44131. extra: 577/564,
  44132. bottom: 29/606
  44133. }
  44134. },
  44135. },
  44136. [
  44137. {
  44138. name: "Normal",
  44139. height: math.unit(5 + 9/12, "feet"),
  44140. default: true
  44141. },
  44142. ]
  44143. ))
  44144. characterMakers.push(() => makeCharacter(
  44145. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44146. {
  44147. front: {
  44148. height: math.unit(2.7, "meters"),
  44149. weight: math.unit(25000, "lb"),
  44150. name: "Front",
  44151. image: {
  44152. source: "./media/characters/noah-luxray/front.svg",
  44153. extra: 1644/825,
  44154. bottom: 339/1983
  44155. }
  44156. },
  44157. side: {
  44158. height: math.unit(2.97, "meters"),
  44159. weight: math.unit(25000, "lb"),
  44160. name: "Side",
  44161. image: {
  44162. source: "./media/characters/noah-luxray/side.svg",
  44163. extra: 1319/650,
  44164. bottom: 163/1482
  44165. }
  44166. },
  44167. dick: {
  44168. height: math.unit(7.4, "feet"),
  44169. weight: math.unit(2500, "lb"),
  44170. name: "Dick",
  44171. image: {
  44172. source: "./media/characters/noah-luxray/dick.svg"
  44173. }
  44174. },
  44175. dickAlt: {
  44176. height: math.unit(10.83, "feet"),
  44177. weight: math.unit(2500, "lb"),
  44178. name: "Dick-alt",
  44179. image: {
  44180. source: "./media/characters/noah-luxray/dick-alt.svg"
  44181. }
  44182. },
  44183. },
  44184. [
  44185. {
  44186. name: "BIG",
  44187. height: math.unit(2.7, "meters"),
  44188. default: true
  44189. },
  44190. ]
  44191. ))
  44192. characterMakers.push(() => makeCharacter(
  44193. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44194. {
  44195. standing: {
  44196. height: math.unit(183, "cm"),
  44197. weight: math.unit(68, "kg"),
  44198. name: "Standing",
  44199. image: {
  44200. source: "./media/characters/arion/standing.svg",
  44201. extra: 1869/1807,
  44202. bottom: 93/1962
  44203. }
  44204. },
  44205. reclining: {
  44206. height: math.unit(70.5, "cm"),
  44207. weight: math.unit(68, "lb"),
  44208. name: "Reclining",
  44209. image: {
  44210. source: "./media/characters/arion/reclining.svg",
  44211. extra: 937/870,
  44212. bottom: 63/1000
  44213. }
  44214. },
  44215. },
  44216. [
  44217. {
  44218. name: "Colossus Size, Low",
  44219. height: math.unit(33, "meters"),
  44220. default: true
  44221. },
  44222. {
  44223. name: "Colossus Size, Mid",
  44224. height: math.unit(52, "meters")
  44225. },
  44226. {
  44227. name: "Colossus Size, High",
  44228. height: math.unit(60, "meters")
  44229. },
  44230. {
  44231. name: "Titan Size, Low",
  44232. height: math.unit(91, "meters"),
  44233. },
  44234. {
  44235. name: "Titan Size, Mid",
  44236. height: math.unit(122, "meters")
  44237. },
  44238. {
  44239. name: "Titan Size, High",
  44240. height: math.unit(162, "meters")
  44241. },
  44242. ]
  44243. ))
  44244. characterMakers.push(() => makeCharacter(
  44245. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44246. {
  44247. front: {
  44248. height: math.unit(53, "meters"),
  44249. name: "Front",
  44250. image: {
  44251. source: "./media/characters/stellar-marbey/front.svg",
  44252. extra: 1913/1805,
  44253. bottom: 92/2005
  44254. }
  44255. },
  44256. back: {
  44257. height: math.unit(53, "meters"),
  44258. name: "Back",
  44259. image: {
  44260. source: "./media/characters/stellar-marbey/back.svg",
  44261. extra: 1960/1851,
  44262. bottom: 28/1988
  44263. }
  44264. },
  44265. mouth: {
  44266. height: math.unit(3.5, "meters"),
  44267. name: "Mouth",
  44268. image: {
  44269. source: "./media/characters/stellar-marbey/mouth.svg"
  44270. }
  44271. },
  44272. },
  44273. [
  44274. {
  44275. name: "Macro",
  44276. height: math.unit(53, "meters"),
  44277. default: true
  44278. },
  44279. ]
  44280. ))
  44281. characterMakers.push(() => makeCharacter(
  44282. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44283. {
  44284. front: {
  44285. height: math.unit(8 + 1/12, "feet"),
  44286. weight: math.unit(233, "lb"),
  44287. name: "Front",
  44288. image: {
  44289. source: "./media/characters/matsu/front.svg",
  44290. extra: 832/772,
  44291. bottom: 40/872
  44292. }
  44293. },
  44294. back: {
  44295. height: math.unit(8 + 1/12, "feet"),
  44296. weight: math.unit(233, "lb"),
  44297. name: "Back",
  44298. image: {
  44299. source: "./media/characters/matsu/back.svg",
  44300. extra: 839/780,
  44301. bottom: 47/886
  44302. }
  44303. },
  44304. },
  44305. [
  44306. {
  44307. name: "Normal",
  44308. height: math.unit(8 + 1/12, "feet"),
  44309. default: true
  44310. },
  44311. ]
  44312. ))
  44313. characterMakers.push(() => makeCharacter(
  44314. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44315. {
  44316. front: {
  44317. height: math.unit(4, "feet"),
  44318. weight: math.unit(148, "lb"),
  44319. name: "Front",
  44320. image: {
  44321. source: "./media/characters/thiz/front.svg",
  44322. extra: 1913/1748,
  44323. bottom: 62/1975
  44324. }
  44325. },
  44326. },
  44327. [
  44328. {
  44329. name: "Normal",
  44330. height: math.unit(4, "feet"),
  44331. default: true
  44332. },
  44333. ]
  44334. ))
  44335. characterMakers.push(() => makeCharacter(
  44336. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44337. {
  44338. front: {
  44339. height: math.unit(7 + 6/12, "feet"),
  44340. weight: math.unit(267, "lb"),
  44341. name: "Front",
  44342. image: {
  44343. source: "./media/characters/marcel/front.svg",
  44344. extra: 1221/1096,
  44345. bottom: 76/1297
  44346. }
  44347. },
  44348. },
  44349. [
  44350. {
  44351. name: "Normal",
  44352. height: math.unit(7 + 6/12, "feet"),
  44353. default: true
  44354. },
  44355. ]
  44356. ))
  44357. characterMakers.push(() => makeCharacter(
  44358. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44359. {
  44360. side: {
  44361. height: math.unit(42, "meters"),
  44362. name: "Side",
  44363. image: {
  44364. source: "./media/characters/flake/side.svg",
  44365. extra: 1525/1306,
  44366. bottom: 209/1734
  44367. }
  44368. },
  44369. },
  44370. [
  44371. {
  44372. name: "Normal",
  44373. height: math.unit(42, "meters"),
  44374. default: true
  44375. },
  44376. ]
  44377. ))
  44378. characterMakers.push(() => makeCharacter(
  44379. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44380. {
  44381. dressed: {
  44382. height: math.unit(6 + 4/12, "feet"),
  44383. weight: math.unit(520, "lb"),
  44384. name: "Dressed",
  44385. image: {
  44386. source: "./media/characters/someonne/dressed.svg",
  44387. extra: 1020/1010,
  44388. bottom: 178/1198
  44389. }
  44390. },
  44391. undressed: {
  44392. height: math.unit(6 + 4/12, "feet"),
  44393. weight: math.unit(520, "lb"),
  44394. name: "Undressed",
  44395. image: {
  44396. source: "./media/characters/someonne/undressed.svg",
  44397. extra: 1019/1014,
  44398. bottom: 169/1188
  44399. }
  44400. },
  44401. },
  44402. [
  44403. {
  44404. name: "Normal",
  44405. height: math.unit(6 + 4/12, "feet"),
  44406. default: true
  44407. },
  44408. ]
  44409. ))
  44410. characterMakers.push(() => makeCharacter(
  44411. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44412. {
  44413. front: {
  44414. height: math.unit(3, "feet"),
  44415. weight: math.unit(30, "lb"),
  44416. name: "Front",
  44417. image: {
  44418. source: "./media/characters/till/front.svg",
  44419. extra: 892/823,
  44420. bottom: 55/947
  44421. }
  44422. },
  44423. },
  44424. [
  44425. {
  44426. name: "Normal",
  44427. height: math.unit(3, "feet"),
  44428. default: true
  44429. },
  44430. ]
  44431. ))
  44432. characterMakers.push(() => makeCharacter(
  44433. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44434. {
  44435. front: {
  44436. height: math.unit(9 + 8/12, "feet"),
  44437. weight: math.unit(800, "lb"),
  44438. name: "Front",
  44439. image: {
  44440. source: "./media/characters/sydney-heki/front.svg",
  44441. extra: 1360/1300,
  44442. bottom: 22/1382
  44443. }
  44444. },
  44445. back: {
  44446. height: math.unit(9 + 8/12, "feet"),
  44447. weight: math.unit(800, "lb"),
  44448. name: "Back",
  44449. image: {
  44450. source: "./media/characters/sydney-heki/back.svg",
  44451. extra: 1356/1293,
  44452. bottom: 12/1368
  44453. }
  44454. },
  44455. frontDressed: {
  44456. height: math.unit(9 + 8/12, "feet"),
  44457. weight: math.unit(800, "lb"),
  44458. name: "Front-dressed",
  44459. image: {
  44460. source: "./media/characters/sydney-heki/front-dressed.svg",
  44461. extra: 1360/1300,
  44462. bottom: 22/1382
  44463. }
  44464. },
  44465. },
  44466. [
  44467. {
  44468. name: "Normal",
  44469. height: math.unit(9 + 8/12, "feet"),
  44470. default: true
  44471. },
  44472. {
  44473. name: "Macro",
  44474. height: math.unit(500, "feet")
  44475. },
  44476. {
  44477. name: "Megamacro",
  44478. height: math.unit(3.6, "miles")
  44479. },
  44480. ]
  44481. ))
  44482. characterMakers.push(() => makeCharacter(
  44483. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44484. {
  44485. front: {
  44486. height: math.unit(200, "cm"),
  44487. weight: math.unit(250, "lb"),
  44488. name: "Front",
  44489. image: {
  44490. source: "./media/characters/fowler-karlsson/front.svg",
  44491. extra: 897/845,
  44492. bottom: 123/1020
  44493. }
  44494. },
  44495. back: {
  44496. height: math.unit(200, "cm"),
  44497. weight: math.unit(250, "lb"),
  44498. name: "Back",
  44499. image: {
  44500. source: "./media/characters/fowler-karlsson/back.svg",
  44501. extra: 999/944,
  44502. bottom: 26/1025
  44503. }
  44504. },
  44505. dick: {
  44506. height: math.unit(1.92, "feet"),
  44507. weight: math.unit(150, "lb"),
  44508. name: "Dick",
  44509. image: {
  44510. source: "./media/characters/fowler-karlsson/dick.svg"
  44511. }
  44512. },
  44513. },
  44514. [
  44515. {
  44516. name: "Normal",
  44517. height: math.unit(200, "cm"),
  44518. default: true
  44519. },
  44520. {
  44521. name: "Smaller Macro",
  44522. height: math.unit(90, "m")
  44523. },
  44524. {
  44525. name: "Macro",
  44526. height: math.unit(150, "m")
  44527. },
  44528. {
  44529. name: "Bigger Macro",
  44530. height: math.unit(300, "m")
  44531. },
  44532. ]
  44533. ))
  44534. characterMakers.push(() => makeCharacter(
  44535. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44536. {
  44537. side: {
  44538. height: math.unit(8 + 2/12, "feet"),
  44539. weight: math.unit(1, "tonne"),
  44540. name: "Side",
  44541. image: {
  44542. source: "./media/characters/rylide/side.svg",
  44543. extra: 1318/1034,
  44544. bottom: 106/1424
  44545. }
  44546. },
  44547. sitting: {
  44548. height: math.unit(303, "cm"),
  44549. weight: math.unit(1, "tonne"),
  44550. name: "Sitting",
  44551. image: {
  44552. source: "./media/characters/rylide/sitting.svg",
  44553. extra: 1303/1103,
  44554. bottom: 36/1339
  44555. }
  44556. },
  44557. },
  44558. [
  44559. {
  44560. name: "Normal",
  44561. height: math.unit(8 + 2/12, "feet"),
  44562. default: true
  44563. },
  44564. ]
  44565. ))
  44566. characterMakers.push(() => makeCharacter(
  44567. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44568. {
  44569. front: {
  44570. height: math.unit(5 + 10/12, "feet"),
  44571. weight: math.unit(160, "lb"),
  44572. name: "Front",
  44573. image: {
  44574. source: "./media/characters/pudask/front.svg",
  44575. extra: 1616/1590,
  44576. bottom: 161/1777
  44577. }
  44578. },
  44579. },
  44580. [
  44581. {
  44582. name: "Ferret Height",
  44583. height: math.unit(2 + 5/12, "feet")
  44584. },
  44585. {
  44586. name: "Canon Height",
  44587. height: math.unit(5 + 10/12, "feet"),
  44588. default: true
  44589. },
  44590. ]
  44591. ))
  44592. characterMakers.push(() => makeCharacter(
  44593. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44594. {
  44595. front: {
  44596. height: math.unit(3 + 6/12, "feet"),
  44597. weight: math.unit(60, "lb"),
  44598. name: "Front",
  44599. image: {
  44600. source: "./media/characters/ramita/front.svg",
  44601. extra: 1402/1232,
  44602. bottom: 62/1464
  44603. }
  44604. },
  44605. dressed: {
  44606. height: math.unit(3 + 6/12, "feet"),
  44607. weight: math.unit(60, "lb"),
  44608. name: "Dressed",
  44609. image: {
  44610. source: "./media/characters/ramita/dressed.svg",
  44611. extra: 1534/1249,
  44612. bottom: 50/1584
  44613. }
  44614. },
  44615. },
  44616. [
  44617. {
  44618. name: "Normal",
  44619. height: math.unit(3 + 6/12, "feet"),
  44620. default: true
  44621. },
  44622. ]
  44623. ))
  44624. characterMakers.push(() => makeCharacter(
  44625. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44626. {
  44627. front: {
  44628. height: math.unit(8, "feet"),
  44629. name: "Front",
  44630. image: {
  44631. source: "./media/characters/ark/front.svg",
  44632. extra: 772/693,
  44633. bottom: 45/817
  44634. }
  44635. },
  44636. },
  44637. [
  44638. {
  44639. name: "Normal",
  44640. height: math.unit(8, "feet"),
  44641. default: true
  44642. },
  44643. ]
  44644. ))
  44645. characterMakers.push(() => makeCharacter(
  44646. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44647. {
  44648. front: {
  44649. height: math.unit(6, "feet"),
  44650. weight: math.unit(250, "lb"),
  44651. volume: math.unit(5/8, "gallons"),
  44652. name: "Front",
  44653. image: {
  44654. source: "./media/characters/ludwig-horn/front.svg",
  44655. extra: 1782/1635,
  44656. bottom: 96/1878
  44657. }
  44658. },
  44659. back: {
  44660. height: math.unit(6, "feet"),
  44661. weight: math.unit(250, "lb"),
  44662. volume: math.unit(5/8, "gallons"),
  44663. name: "Back",
  44664. image: {
  44665. source: "./media/characters/ludwig-horn/back.svg",
  44666. extra: 1874/1729,
  44667. bottom: 27/1901
  44668. }
  44669. },
  44670. dick: {
  44671. height: math.unit(1.05, "feet"),
  44672. weight: math.unit(15, "lb"),
  44673. volume: math.unit(5/8, "gallons"),
  44674. name: "Dick",
  44675. image: {
  44676. source: "./media/characters/ludwig-horn/dick.svg"
  44677. }
  44678. },
  44679. },
  44680. [
  44681. {
  44682. name: "Small",
  44683. height: math.unit(6, "feet")
  44684. },
  44685. {
  44686. name: "Typical",
  44687. height: math.unit(12, "feet"),
  44688. default: true
  44689. },
  44690. {
  44691. name: "Building",
  44692. height: math.unit(80, "feet")
  44693. },
  44694. {
  44695. name: "Town",
  44696. height: math.unit(800, "feet")
  44697. },
  44698. {
  44699. name: "Kingdom",
  44700. height: math.unit(80000, "feet")
  44701. },
  44702. {
  44703. name: "Planet",
  44704. height: math.unit(8000000, "feet")
  44705. },
  44706. {
  44707. name: "Universe",
  44708. height: math.unit(8000000000, "feet")
  44709. },
  44710. {
  44711. name: "Transcended",
  44712. height: math.unit(8e27, "feet")
  44713. },
  44714. ]
  44715. ))
  44716. characterMakers.push(() => makeCharacter(
  44717. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44718. {
  44719. front: {
  44720. height: math.unit(5, "feet"),
  44721. weight: math.unit(50, "kg"),
  44722. name: "Front",
  44723. image: {
  44724. source: "./media/characters/biot-avery/front.svg",
  44725. extra: 1295/1232,
  44726. bottom: 86/1381
  44727. }
  44728. },
  44729. },
  44730. [
  44731. {
  44732. name: "Normal",
  44733. height: math.unit(5, "feet"),
  44734. default: true
  44735. },
  44736. ]
  44737. ))
  44738. characterMakers.push(() => makeCharacter(
  44739. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44740. {
  44741. front: {
  44742. height: math.unit(6, "feet"),
  44743. name: "Front",
  44744. image: {
  44745. source: "./media/characters/kitsune-kiro/front.svg",
  44746. extra: 1270/1158,
  44747. bottom: 42/1312
  44748. }
  44749. },
  44750. frontAlt: {
  44751. height: math.unit(6, "feet"),
  44752. name: "Front-alt",
  44753. image: {
  44754. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44755. extra: 1130/1081,
  44756. bottom: 36/1166
  44757. }
  44758. },
  44759. },
  44760. [
  44761. {
  44762. name: "Smol",
  44763. height: math.unit(3, "feet")
  44764. },
  44765. {
  44766. name: "Normal",
  44767. height: math.unit(6, "feet"),
  44768. default: true
  44769. },
  44770. ]
  44771. ))
  44772. characterMakers.push(() => makeCharacter(
  44773. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44774. {
  44775. front: {
  44776. height: math.unit(6, "feet"),
  44777. weight: math.unit(125, "lb"),
  44778. name: "Front",
  44779. image: {
  44780. source: "./media/characters/jack-thatcher/front.svg",
  44781. extra: 1474/1370,
  44782. bottom: 26/1500
  44783. }
  44784. },
  44785. back: {
  44786. height: math.unit(6, "feet"),
  44787. weight: math.unit(125, "lb"),
  44788. name: "Back",
  44789. image: {
  44790. source: "./media/characters/jack-thatcher/back.svg",
  44791. extra: 1489/1384,
  44792. bottom: 18/1507
  44793. }
  44794. },
  44795. },
  44796. [
  44797. {
  44798. name: "Normal",
  44799. height: math.unit(6, "feet"),
  44800. default: true
  44801. },
  44802. {
  44803. name: "Macro",
  44804. height: math.unit(75, "feet")
  44805. },
  44806. {
  44807. name: "Macro-er",
  44808. height: math.unit(250, "feet")
  44809. },
  44810. ]
  44811. ))
  44812. characterMakers.push(() => makeCharacter(
  44813. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44814. {
  44815. front: {
  44816. height: math.unit(7, "feet"),
  44817. weight: math.unit(110, "kg"),
  44818. name: "Front",
  44819. image: {
  44820. source: "./media/characters/max-hyper/front.svg",
  44821. extra: 1969/1881,
  44822. bottom: 49/2018
  44823. }
  44824. },
  44825. },
  44826. [
  44827. {
  44828. name: "Normal",
  44829. height: math.unit(7, "feet"),
  44830. default: true
  44831. },
  44832. ]
  44833. ))
  44834. characterMakers.push(() => makeCharacter(
  44835. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44836. {
  44837. front: {
  44838. height: math.unit(5 + 5/12, "feet"),
  44839. weight: math.unit(160, "lb"),
  44840. name: "Front",
  44841. image: {
  44842. source: "./media/characters/spook/front.svg",
  44843. extra: 794/791,
  44844. bottom: 54/848
  44845. }
  44846. },
  44847. back: {
  44848. height: math.unit(5 + 5/12, "feet"),
  44849. weight: math.unit(160, "lb"),
  44850. name: "Back",
  44851. image: {
  44852. source: "./media/characters/spook/back.svg",
  44853. extra: 812/798,
  44854. bottom: 32/844
  44855. }
  44856. },
  44857. },
  44858. [
  44859. {
  44860. name: "Normal",
  44861. height: math.unit(5 + 5/12, "feet"),
  44862. default: true
  44863. },
  44864. ]
  44865. ))
  44866. characterMakers.push(() => makeCharacter(
  44867. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44868. {
  44869. front: {
  44870. height: math.unit(18, "feet"),
  44871. name: "Front",
  44872. image: {
  44873. source: "./media/characters/xeaduulix/front.svg",
  44874. extra: 1380/1166,
  44875. bottom: 110/1490
  44876. }
  44877. },
  44878. back: {
  44879. height: math.unit(18, "feet"),
  44880. name: "Back",
  44881. image: {
  44882. source: "./media/characters/xeaduulix/back.svg",
  44883. extra: 1592/1170,
  44884. bottom: 128/1720
  44885. }
  44886. },
  44887. frontNsfw: {
  44888. height: math.unit(18, "feet"),
  44889. name: "Front (NSFW)",
  44890. image: {
  44891. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44892. extra: 1380/1166,
  44893. bottom: 110/1490
  44894. }
  44895. },
  44896. backNsfw: {
  44897. height: math.unit(18, "feet"),
  44898. name: "Back (NSFW)",
  44899. image: {
  44900. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44901. extra: 1592/1170,
  44902. bottom: 128/1720
  44903. }
  44904. },
  44905. },
  44906. [
  44907. {
  44908. name: "Normal",
  44909. height: math.unit(18, "feet"),
  44910. default: true
  44911. },
  44912. ]
  44913. ))
  44914. characterMakers.push(() => makeCharacter(
  44915. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44916. {
  44917. spreadWings: {
  44918. height: math.unit(20, "feet"),
  44919. name: "Spread Wings",
  44920. image: {
  44921. source: "./media/characters/fledge/spread-wings.svg",
  44922. extra: 693/635,
  44923. bottom: 26/719
  44924. }
  44925. },
  44926. front: {
  44927. height: math.unit(20, "feet"),
  44928. name: "Front",
  44929. image: {
  44930. source: "./media/characters/fledge/front.svg",
  44931. extra: 684/637,
  44932. bottom: 18/702
  44933. }
  44934. },
  44935. frontAlt: {
  44936. height: math.unit(20, "feet"),
  44937. name: "Front (Alt)",
  44938. image: {
  44939. source: "./media/characters/fledge/front-alt.svg",
  44940. extra: 708/664,
  44941. bottom: 13/721
  44942. }
  44943. },
  44944. back: {
  44945. height: math.unit(20, "feet"),
  44946. name: "Back",
  44947. image: {
  44948. source: "./media/characters/fledge/back.svg",
  44949. extra: 718/634,
  44950. bottom: 22/740
  44951. }
  44952. },
  44953. head: {
  44954. height: math.unit(5.55, "feet"),
  44955. name: "Head",
  44956. image: {
  44957. source: "./media/characters/fledge/head.svg"
  44958. }
  44959. },
  44960. headAlt: {
  44961. height: math.unit(5.1, "feet"),
  44962. name: "Head (Alt)",
  44963. image: {
  44964. source: "./media/characters/fledge/head-alt.svg"
  44965. }
  44966. },
  44967. },
  44968. [
  44969. {
  44970. name: "Small",
  44971. height: math.unit(6 + 2/12, "feet")
  44972. },
  44973. {
  44974. name: "Big",
  44975. height: math.unit(20, "feet"),
  44976. default: true
  44977. },
  44978. {
  44979. name: "Giant",
  44980. height: math.unit(100, "feet")
  44981. },
  44982. {
  44983. name: "Macro",
  44984. height: math.unit(200, "feet")
  44985. },
  44986. ]
  44987. ))
  44988. characterMakers.push(() => makeCharacter(
  44989. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44990. {
  44991. front: {
  44992. height: math.unit(1, "meter"),
  44993. name: "Front",
  44994. image: {
  44995. source: "./media/characters/atlas-morenai/front.svg",
  44996. extra: 1275/1043,
  44997. bottom: 19/1294
  44998. }
  44999. },
  45000. back: {
  45001. height: math.unit(1, "meter"),
  45002. name: "Back",
  45003. image: {
  45004. source: "./media/characters/atlas-morenai/back.svg",
  45005. extra: 1141/1001,
  45006. bottom: 25/1166
  45007. }
  45008. },
  45009. },
  45010. [
  45011. {
  45012. name: "Normal",
  45013. height: math.unit(1, "meter"),
  45014. default: true
  45015. },
  45016. {
  45017. name: "Magic-Infused",
  45018. height: math.unit(5, "meters")
  45019. },
  45020. ]
  45021. ))
  45022. characterMakers.push(() => makeCharacter(
  45023. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45024. {
  45025. front: {
  45026. height: math.unit(5, "meters"),
  45027. name: "Front",
  45028. image: {
  45029. source: "./media/characters/cintia/front.svg",
  45030. extra: 1312/1228,
  45031. bottom: 38/1350
  45032. }
  45033. },
  45034. back: {
  45035. height: math.unit(5, "meters"),
  45036. name: "Back",
  45037. image: {
  45038. source: "./media/characters/cintia/back.svg",
  45039. extra: 1260/1166,
  45040. bottom: 98/1358
  45041. }
  45042. },
  45043. frontDick: {
  45044. height: math.unit(5, "meters"),
  45045. name: "Front (Dick)",
  45046. image: {
  45047. source: "./media/characters/cintia/front-dick.svg",
  45048. extra: 1312/1228,
  45049. bottom: 38/1350
  45050. }
  45051. },
  45052. backDick: {
  45053. height: math.unit(5, "meters"),
  45054. name: "Back (Dick)",
  45055. image: {
  45056. source: "./media/characters/cintia/back-dick.svg",
  45057. extra: 1260/1166,
  45058. bottom: 98/1358
  45059. }
  45060. },
  45061. bust: {
  45062. height: math.unit(1.97, "meters"),
  45063. name: "Bust",
  45064. image: {
  45065. source: "./media/characters/cintia/bust.svg",
  45066. extra: 617/565,
  45067. bottom: 0/617
  45068. }
  45069. },
  45070. },
  45071. [
  45072. {
  45073. name: "Normal",
  45074. height: math.unit(5, "meters"),
  45075. default: true
  45076. },
  45077. ]
  45078. ))
  45079. characterMakers.push(() => makeCharacter(
  45080. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45081. {
  45082. side: {
  45083. height: math.unit(100, "feet"),
  45084. name: "Side",
  45085. image: {
  45086. source: "./media/characters/denora/side.svg",
  45087. extra: 875/803,
  45088. bottom: 9/884
  45089. }
  45090. },
  45091. },
  45092. [
  45093. {
  45094. name: "Standard",
  45095. height: math.unit(100, "feet"),
  45096. default: true
  45097. },
  45098. {
  45099. name: "Grand",
  45100. height: math.unit(1000, "feet")
  45101. },
  45102. {
  45103. name: "Conquering",
  45104. height: math.unit(10000, "feet")
  45105. },
  45106. ]
  45107. ))
  45108. characterMakers.push(() => makeCharacter(
  45109. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45110. {
  45111. dressed: {
  45112. height: math.unit(8 + 5/12, "feet"),
  45113. weight: math.unit(700, "lb"),
  45114. name: "Dressed",
  45115. image: {
  45116. source: "./media/characters/kiva/dressed.svg",
  45117. extra: 1102/1055,
  45118. bottom: 60/1162
  45119. }
  45120. },
  45121. nude: {
  45122. height: math.unit(8 + 5/12, "feet"),
  45123. weight: math.unit(700, "lb"),
  45124. name: "Nude",
  45125. image: {
  45126. source: "./media/characters/kiva/nude.svg",
  45127. extra: 1102/1055,
  45128. bottom: 60/1162
  45129. }
  45130. },
  45131. },
  45132. [
  45133. {
  45134. name: "Base Height",
  45135. height: math.unit(8 + 5/12, "feet"),
  45136. default: true
  45137. },
  45138. {
  45139. name: "Macro",
  45140. height: math.unit(100, "feet")
  45141. },
  45142. {
  45143. name: "Max",
  45144. height: math.unit(3280, "feet")
  45145. },
  45146. ]
  45147. ))
  45148. characterMakers.push(() => makeCharacter(
  45149. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45150. {
  45151. front: {
  45152. height: math.unit(6 + 8/12, "feet"),
  45153. weight: math.unit(250, "lb"),
  45154. name: "Front",
  45155. image: {
  45156. source: "./media/characters/ztragon/front.svg",
  45157. extra: 1825/1684,
  45158. bottom: 98/1923
  45159. }
  45160. },
  45161. },
  45162. [
  45163. {
  45164. name: "Normal",
  45165. height: math.unit(6 + 8/12, "feet"),
  45166. default: true
  45167. },
  45168. {
  45169. name: "Macro",
  45170. height: math.unit(80, "feet")
  45171. },
  45172. ]
  45173. ))
  45174. characterMakers.push(() => makeCharacter(
  45175. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45176. {
  45177. front: {
  45178. height: math.unit(10.4, "feet"),
  45179. weight: math.unit(2, "tons"),
  45180. name: "Front",
  45181. image: {
  45182. source: "./media/characters/yesenia/front.svg",
  45183. extra: 1479/1474,
  45184. bottom: 233/1712
  45185. }
  45186. },
  45187. },
  45188. [
  45189. {
  45190. name: "Normal",
  45191. height: math.unit(10.4, "feet"),
  45192. default: true
  45193. },
  45194. ]
  45195. ))
  45196. characterMakers.push(() => makeCharacter(
  45197. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45198. {
  45199. normal: {
  45200. height: math.unit(6 + 1/12, "feet"),
  45201. weight: math.unit(180, "lb"),
  45202. name: "Normal",
  45203. image: {
  45204. source: "./media/characters/leanne-lycheborne/normal.svg",
  45205. extra: 1748/1660,
  45206. bottom: 98/1846
  45207. }
  45208. },
  45209. were: {
  45210. height: math.unit(12, "feet"),
  45211. weight: math.unit(1600, "lb"),
  45212. name: "Were",
  45213. image: {
  45214. source: "./media/characters/leanne-lycheborne/were.svg",
  45215. extra: 1485/1432,
  45216. bottom: 66/1551
  45217. }
  45218. },
  45219. },
  45220. [
  45221. {
  45222. name: "Normal",
  45223. height: math.unit(6 + 1/12, "feet"),
  45224. default: true
  45225. },
  45226. ]
  45227. ))
  45228. characterMakers.push(() => makeCharacter(
  45229. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45230. {
  45231. side: {
  45232. height: math.unit(13, "feet"),
  45233. name: "Side",
  45234. image: {
  45235. source: "./media/characters/kira-tyler/side.svg",
  45236. extra: 693/393,
  45237. bottom: 58/751
  45238. }
  45239. },
  45240. },
  45241. [
  45242. {
  45243. name: "Normal",
  45244. height: math.unit(13, "feet"),
  45245. default: true
  45246. },
  45247. ]
  45248. ))
  45249. characterMakers.push(() => makeCharacter(
  45250. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45251. {
  45252. front: {
  45253. height: math.unit(10.3, "feet"),
  45254. weight: math.unit(150, "lb"),
  45255. name: "Front",
  45256. image: {
  45257. source: "./media/characters/blaze/front.svg",
  45258. extra: 1378/1286,
  45259. bottom: 172/1550
  45260. }
  45261. },
  45262. },
  45263. [
  45264. {
  45265. name: "Normal",
  45266. height: math.unit(10.3, "feet"),
  45267. default: true
  45268. },
  45269. ]
  45270. ))
  45271. characterMakers.push(() => makeCharacter(
  45272. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45273. {
  45274. side: {
  45275. height: math.unit(2, "meters"),
  45276. weight: math.unit(400, "kg"),
  45277. name: "Side",
  45278. image: {
  45279. source: "./media/characters/anu/side.svg",
  45280. extra: 506/394,
  45281. bottom: 18/524
  45282. }
  45283. },
  45284. },
  45285. [
  45286. {
  45287. name: "Humanoid",
  45288. height: math.unit(2, "meters")
  45289. },
  45290. {
  45291. name: "Normal",
  45292. height: math.unit(5, "meters"),
  45293. default: true
  45294. },
  45295. ]
  45296. ))
  45297. characterMakers.push(() => makeCharacter(
  45298. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45299. {
  45300. front: {
  45301. height: math.unit(5 + 5/12, "feet"),
  45302. weight: math.unit(170, "lb"),
  45303. name: "Front",
  45304. image: {
  45305. source: "./media/characters/synx-the-lynx/front.svg",
  45306. extra: 1893/1745,
  45307. bottom: 17/1910
  45308. }
  45309. },
  45310. side: {
  45311. height: math.unit(5 + 5/12, "feet"),
  45312. weight: math.unit(170, "lb"),
  45313. name: "Side",
  45314. image: {
  45315. source: "./media/characters/synx-the-lynx/side.svg",
  45316. extra: 1884/1740,
  45317. bottom: 39/1923
  45318. }
  45319. },
  45320. back: {
  45321. height: math.unit(5 + 5/12, "feet"),
  45322. weight: math.unit(170, "lb"),
  45323. name: "Back",
  45324. image: {
  45325. source: "./media/characters/synx-the-lynx/back.svg",
  45326. extra: 1903/1755,
  45327. bottom: 14/1917
  45328. }
  45329. },
  45330. },
  45331. [
  45332. {
  45333. name: "Normal",
  45334. height: math.unit(5 + 5/12, "feet"),
  45335. default: true
  45336. },
  45337. ]
  45338. ))
  45339. characterMakers.push(() => makeCharacter(
  45340. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45341. {
  45342. back: {
  45343. height: math.unit(15, "feet"),
  45344. name: "Back",
  45345. image: {
  45346. source: "./media/characters/nadezda-fex/back.svg",
  45347. extra: 1695/1481,
  45348. bottom: 25/1720
  45349. }
  45350. },
  45351. },
  45352. [
  45353. {
  45354. name: "Normal",
  45355. height: math.unit(15, "feet"),
  45356. default: true
  45357. },
  45358. {
  45359. name: "Macro",
  45360. height: math.unit(2.5, "miles")
  45361. },
  45362. {
  45363. name: "Goddess",
  45364. height: math.unit(2, "multiverses")
  45365. },
  45366. ]
  45367. ))
  45368. characterMakers.push(() => makeCharacter(
  45369. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45370. {
  45371. front: {
  45372. height: math.unit(216, "cm"),
  45373. name: "Front",
  45374. image: {
  45375. source: "./media/characters/lev/front.svg",
  45376. extra: 1728/1670,
  45377. bottom: 82/1810
  45378. }
  45379. },
  45380. back: {
  45381. height: math.unit(216, "cm"),
  45382. name: "Back",
  45383. image: {
  45384. source: "./media/characters/lev/back.svg",
  45385. extra: 1738/1675,
  45386. bottom: 24/1762
  45387. }
  45388. },
  45389. dressed: {
  45390. height: math.unit(216, "cm"),
  45391. name: "Dressed",
  45392. image: {
  45393. source: "./media/characters/lev/dressed.svg",
  45394. extra: 1397/1351,
  45395. bottom: 73/1470
  45396. }
  45397. },
  45398. head: {
  45399. height: math.unit(0.51, "meter"),
  45400. name: "Head",
  45401. image: {
  45402. source: "./media/characters/lev/head.svg"
  45403. }
  45404. },
  45405. },
  45406. [
  45407. {
  45408. name: "Normal",
  45409. height: math.unit(216, "cm"),
  45410. default: true
  45411. },
  45412. {
  45413. name: "Relatively Macro",
  45414. height: math.unit(80, "meters")
  45415. },
  45416. {
  45417. name: "Megamacro",
  45418. height: math.unit(21600, "meters")
  45419. },
  45420. {
  45421. name: "Megamacro+",
  45422. height: math.unit(64800, "meters")
  45423. },
  45424. ]
  45425. ))
  45426. characterMakers.push(() => makeCharacter(
  45427. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45428. {
  45429. front: {
  45430. height: math.unit(2, "meters"),
  45431. weight: math.unit(80, "kg"),
  45432. name: "Front",
  45433. image: {
  45434. source: "./media/characters/moka/front.svg",
  45435. extra: 1337/1255,
  45436. bottom: 58/1395
  45437. }
  45438. },
  45439. },
  45440. [
  45441. {
  45442. name: "Micro",
  45443. height: math.unit(15, "cm")
  45444. },
  45445. {
  45446. name: "Normal",
  45447. height: math.unit(2, "meters"),
  45448. default: true
  45449. },
  45450. {
  45451. name: "Macro",
  45452. height: math.unit(20, "meters"),
  45453. },
  45454. ]
  45455. ))
  45456. characterMakers.push(() => makeCharacter(
  45457. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45458. {
  45459. front: {
  45460. height: math.unit(9, "feet"),
  45461. weight: math.unit(240, "lb"),
  45462. name: "Front",
  45463. image: {
  45464. source: "./media/characters/kuzco/front.svg",
  45465. extra: 1593/1487,
  45466. bottom: 32/1625
  45467. }
  45468. },
  45469. side: {
  45470. height: math.unit(9, "feet"),
  45471. weight: math.unit(240, "lb"),
  45472. name: "Side",
  45473. image: {
  45474. source: "./media/characters/kuzco/side.svg",
  45475. extra: 1575/1485,
  45476. bottom: 30/1605
  45477. }
  45478. },
  45479. back: {
  45480. height: math.unit(9, "feet"),
  45481. weight: math.unit(240, "lb"),
  45482. name: "Back",
  45483. image: {
  45484. source: "./media/characters/kuzco/back.svg",
  45485. extra: 1603/1514,
  45486. bottom: 14/1617
  45487. }
  45488. },
  45489. },
  45490. [
  45491. {
  45492. name: "Normal",
  45493. height: math.unit(9, "feet"),
  45494. default: true
  45495. },
  45496. ]
  45497. ))
  45498. characterMakers.push(() => makeCharacter(
  45499. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45500. {
  45501. side: {
  45502. height: math.unit(2, "meters"),
  45503. weight: math.unit(300, "kg"),
  45504. name: "Side",
  45505. image: {
  45506. source: "./media/characters/ceruleus/side.svg",
  45507. extra: 1068/974,
  45508. bottom: 126/1194
  45509. }
  45510. },
  45511. },
  45512. [
  45513. {
  45514. name: "Normal",
  45515. height: math.unit(16, "meters"),
  45516. default: true
  45517. },
  45518. ]
  45519. ))
  45520. characterMakers.push(() => makeCharacter(
  45521. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45522. {
  45523. front: {
  45524. height: math.unit(9, "feet"),
  45525. weight: math.unit(500, "kg"),
  45526. name: "Front",
  45527. image: {
  45528. source: "./media/characters/acouya/front.svg",
  45529. extra: 1660/1473,
  45530. bottom: 28/1688
  45531. }
  45532. },
  45533. },
  45534. [
  45535. {
  45536. name: "Normal",
  45537. height: math.unit(9, "feet"),
  45538. default: true
  45539. },
  45540. ]
  45541. ))
  45542. characterMakers.push(() => makeCharacter(
  45543. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45544. {
  45545. front: {
  45546. height: math.unit(5 + 6/12, "feet"),
  45547. weight: math.unit(195, "lb"),
  45548. name: "Front",
  45549. image: {
  45550. source: "./media/characters/vant/front.svg",
  45551. extra: 1396/1320,
  45552. bottom: 20/1416
  45553. }
  45554. },
  45555. back: {
  45556. height: math.unit(5 + 6/12, "feet"),
  45557. weight: math.unit(195, "lb"),
  45558. name: "Back",
  45559. image: {
  45560. source: "./media/characters/vant/back.svg",
  45561. extra: 1396/1320,
  45562. bottom: 20/1416
  45563. }
  45564. },
  45565. maw: {
  45566. height: math.unit(0.75, "feet"),
  45567. name: "Maw",
  45568. image: {
  45569. source: "./media/characters/vant/maw.svg"
  45570. }
  45571. },
  45572. paw: {
  45573. height: math.unit(1.07, "feet"),
  45574. name: "Paw",
  45575. image: {
  45576. source: "./media/characters/vant/paw.svg"
  45577. }
  45578. },
  45579. },
  45580. [
  45581. {
  45582. name: "Micro",
  45583. height: math.unit(0.25, "inches")
  45584. },
  45585. {
  45586. name: "Normal",
  45587. height: math.unit(5 + 6/12, "feet"),
  45588. default: true
  45589. },
  45590. {
  45591. name: "Macro",
  45592. height: math.unit(75, "feet")
  45593. },
  45594. ]
  45595. ))
  45596. characterMakers.push(() => makeCharacter(
  45597. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45598. {
  45599. front: {
  45600. height: math.unit(30, "meters"),
  45601. weight: math.unit(363, "tons"),
  45602. name: "Front",
  45603. image: {
  45604. source: "./media/characters/ahra/front.svg",
  45605. extra: 1914/1814,
  45606. bottom: 46/1960
  45607. }
  45608. },
  45609. },
  45610. [
  45611. {
  45612. name: "Macro",
  45613. height: math.unit(30, "meters"),
  45614. default: true
  45615. },
  45616. ]
  45617. ))
  45618. characterMakers.push(() => makeCharacter(
  45619. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45620. {
  45621. undressed: {
  45622. height: math.unit(2, "m"),
  45623. weight: math.unit(250, "kg"),
  45624. name: "Undressed",
  45625. image: {
  45626. source: "./media/characters/coriander/undressed.svg",
  45627. extra: 1757/1606,
  45628. bottom: 107/1864
  45629. }
  45630. },
  45631. dressed: {
  45632. height: math.unit(2, "m"),
  45633. weight: math.unit(250, "kg"),
  45634. name: "Dressed",
  45635. image: {
  45636. source: "./media/characters/coriander/dressed.svg",
  45637. extra: 1757/1606,
  45638. bottom: 107/1864
  45639. }
  45640. },
  45641. },
  45642. [
  45643. {
  45644. name: "Normal",
  45645. height: math.unit(4, "meters"),
  45646. default: true
  45647. },
  45648. {
  45649. name: "XL",
  45650. height: math.unit(6, "meters")
  45651. },
  45652. {
  45653. name: "XXL",
  45654. height: math.unit(8, "meters")
  45655. },
  45656. ]
  45657. ))
  45658. characterMakers.push(() => makeCharacter(
  45659. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45660. {
  45661. front: {
  45662. height: math.unit(6, "feet"),
  45663. name: "Front",
  45664. image: {
  45665. source: "./media/characters/syrinx/front.svg",
  45666. extra: 1557/1259,
  45667. bottom: 171/1728
  45668. }
  45669. },
  45670. },
  45671. [
  45672. {
  45673. name: "Normal",
  45674. height: math.unit(6 + 3/12, "feet"),
  45675. default: true
  45676. },
  45677. ]
  45678. ))
  45679. characterMakers.push(() => makeCharacter(
  45680. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45681. {
  45682. front: {
  45683. height: math.unit(11 + 6/12, "feet"),
  45684. weight: math.unit(1.5, "tons"),
  45685. name: "Front",
  45686. image: {
  45687. source: "./media/characters/bor/front.svg",
  45688. extra: 1189/1109,
  45689. bottom: 170/1359
  45690. }
  45691. },
  45692. },
  45693. [
  45694. {
  45695. name: "Normal",
  45696. height: math.unit(11 + 6/12, "feet"),
  45697. default: true
  45698. },
  45699. {
  45700. name: "Macro",
  45701. height: math.unit(32 + 9/12, "feet")
  45702. },
  45703. ]
  45704. ))
  45705. characterMakers.push(() => makeCharacter(
  45706. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45707. {
  45708. anthro: {
  45709. height: math.unit(9, "feet"),
  45710. weight: math.unit(2076, "lb"),
  45711. name: "Anthro",
  45712. image: {
  45713. source: "./media/characters/abacus/anthro.svg",
  45714. extra: 1540/1494,
  45715. bottom: 233/1773
  45716. }
  45717. },
  45718. pigeon: {
  45719. height: math.unit(1, "feet"),
  45720. name: "Pigeon",
  45721. image: {
  45722. source: "./media/characters/abacus/pigeon.svg",
  45723. extra: 528/525,
  45724. bottom: 46/574
  45725. }
  45726. },
  45727. },
  45728. [
  45729. {
  45730. name: "Normal",
  45731. height: math.unit(9, "feet"),
  45732. default: true
  45733. },
  45734. ]
  45735. ))
  45736. characterMakers.push(() => makeCharacter(
  45737. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45738. {
  45739. side: {
  45740. height: math.unit(6, "feet"),
  45741. name: "Side",
  45742. image: {
  45743. source: "./media/characters/delkhan/side.svg",
  45744. extra: 1884/1786,
  45745. bottom: 308/2192
  45746. }
  45747. },
  45748. head: {
  45749. height: math.unit(3.38, "feet"),
  45750. name: "Head",
  45751. image: {
  45752. source: "./media/characters/delkhan/head.svg"
  45753. }
  45754. },
  45755. },
  45756. [
  45757. {
  45758. name: "Normal",
  45759. height: math.unit(72, "feet"),
  45760. default: true
  45761. },
  45762. {
  45763. name: "Giant",
  45764. height: math.unit(172, "feet")
  45765. },
  45766. ]
  45767. ))
  45768. characterMakers.push(() => makeCharacter(
  45769. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45770. {
  45771. standing: {
  45772. height: math.unit(6, "feet"),
  45773. name: "Standing",
  45774. image: {
  45775. source: "./media/characters/euchidat/standing.svg",
  45776. extra: 1612/1553,
  45777. bottom: 116/1728
  45778. }
  45779. },
  45780. leaning: {
  45781. height: math.unit(6, "feet"),
  45782. name: "Leaning",
  45783. image: {
  45784. source: "./media/characters/euchidat/leaning.svg",
  45785. extra: 1719/1674,
  45786. bottom: 27/1746
  45787. }
  45788. },
  45789. },
  45790. [
  45791. {
  45792. name: "Normal",
  45793. height: math.unit(175, "feet"),
  45794. default: true
  45795. },
  45796. {
  45797. name: "Megamacro",
  45798. height: math.unit(190, "miles")
  45799. },
  45800. {
  45801. name: "Gigamacro",
  45802. height: math.unit(190000, "miles")
  45803. },
  45804. ]
  45805. ))
  45806. characterMakers.push(() => makeCharacter(
  45807. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45808. {
  45809. front: {
  45810. height: math.unit(6, "feet"),
  45811. weight: math.unit(150, "lb"),
  45812. name: "Front",
  45813. image: {
  45814. source: "./media/characters/rebecca-stack/front.svg",
  45815. extra: 1256/1201,
  45816. bottom: 18/1274
  45817. }
  45818. },
  45819. },
  45820. [
  45821. {
  45822. name: "Normal",
  45823. height: math.unit(5 + 8/12, "feet"),
  45824. default: true
  45825. },
  45826. {
  45827. name: "Demolitionist",
  45828. height: math.unit(200, "feet")
  45829. },
  45830. {
  45831. name: "Out of Control",
  45832. height: math.unit(2, "miles")
  45833. },
  45834. {
  45835. name: "Giga",
  45836. height: math.unit(7200, "miles")
  45837. },
  45838. ]
  45839. ))
  45840. characterMakers.push(() => makeCharacter(
  45841. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45842. {
  45843. front: {
  45844. height: math.unit(6, "feet"),
  45845. weight: math.unit(150, "lb"),
  45846. name: "Front",
  45847. image: {
  45848. source: "./media/characters/jenny-cartwright/front.svg",
  45849. extra: 1384/1376,
  45850. bottom: 58/1442
  45851. }
  45852. },
  45853. },
  45854. [
  45855. {
  45856. name: "Normal",
  45857. height: math.unit(6 + 7/12, "feet"),
  45858. default: true
  45859. },
  45860. {
  45861. name: "Librarian",
  45862. height: math.unit(55, "feet")
  45863. },
  45864. {
  45865. name: "Sightseer",
  45866. height: math.unit(50, "miles")
  45867. },
  45868. {
  45869. name: "Giga",
  45870. height: math.unit(30000, "miles")
  45871. },
  45872. ]
  45873. ))
  45874. characterMakers.push(() => makeCharacter(
  45875. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45876. {
  45877. nude: {
  45878. height: math.unit(8, "feet"),
  45879. weight: math.unit(225, "lb"),
  45880. name: "Nude",
  45881. image: {
  45882. source: "./media/characters/marvy/nude.svg",
  45883. extra: 1900/1683,
  45884. bottom: 89/1989
  45885. }
  45886. },
  45887. dressed: {
  45888. height: math.unit(8, "feet"),
  45889. weight: math.unit(225, "lb"),
  45890. name: "Dressed",
  45891. image: {
  45892. source: "./media/characters/marvy/dressed.svg",
  45893. extra: 1900/1683,
  45894. bottom: 89/1989
  45895. }
  45896. },
  45897. head: {
  45898. height: math.unit(2.85, "feet"),
  45899. name: "Head",
  45900. image: {
  45901. source: "./media/characters/marvy/head.svg"
  45902. }
  45903. },
  45904. },
  45905. [
  45906. {
  45907. name: "Normal",
  45908. height: math.unit(8, "feet"),
  45909. default: true
  45910. },
  45911. ]
  45912. ))
  45913. characterMakers.push(() => makeCharacter(
  45914. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45915. {
  45916. front: {
  45917. height: math.unit(8, "feet"),
  45918. weight: math.unit(250, "lb"),
  45919. name: "Front",
  45920. image: {
  45921. source: "./media/characters/leah/front.svg",
  45922. extra: 1257/1149,
  45923. bottom: 109/1366
  45924. }
  45925. },
  45926. },
  45927. [
  45928. {
  45929. name: "Normal",
  45930. height: math.unit(8, "feet"),
  45931. default: true
  45932. },
  45933. {
  45934. name: "Minimacro",
  45935. height: math.unit(40, "feet")
  45936. },
  45937. {
  45938. name: "Macro",
  45939. height: math.unit(124, "feet")
  45940. },
  45941. {
  45942. name: "Megamacro",
  45943. height: math.unit(850, "feet")
  45944. },
  45945. ]
  45946. ))
  45947. characterMakers.push(() => makeCharacter(
  45948. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45949. {
  45950. side: {
  45951. height: math.unit(13 + 6/12, "feet"),
  45952. weight: math.unit(3200, "lb"),
  45953. name: "Side",
  45954. image: {
  45955. source: "./media/characters/alvir/side.svg",
  45956. extra: 896/589,
  45957. bottom: 26/922
  45958. }
  45959. },
  45960. },
  45961. [
  45962. {
  45963. name: "Normal",
  45964. height: math.unit(13 + 6/12, "feet"),
  45965. default: true
  45966. },
  45967. ]
  45968. ))
  45969. characterMakers.push(() => makeCharacter(
  45970. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45971. {
  45972. front: {
  45973. height: math.unit(5 + 4/12, "feet"),
  45974. weight: math.unit(236, "lb"),
  45975. name: "Front",
  45976. image: {
  45977. source: "./media/characters/zaina-khalil/front.svg",
  45978. extra: 1533/1485,
  45979. bottom: 94/1627
  45980. }
  45981. },
  45982. side: {
  45983. height: math.unit(5 + 4/12, "feet"),
  45984. weight: math.unit(236, "lb"),
  45985. name: "Side",
  45986. image: {
  45987. source: "./media/characters/zaina-khalil/side.svg",
  45988. extra: 1537/1498,
  45989. bottom: 66/1603
  45990. }
  45991. },
  45992. back: {
  45993. height: math.unit(5 + 4/12, "feet"),
  45994. weight: math.unit(236, "lb"),
  45995. name: "Back",
  45996. image: {
  45997. source: "./media/characters/zaina-khalil/back.svg",
  45998. extra: 1546/1494,
  45999. bottom: 89/1635
  46000. }
  46001. },
  46002. },
  46003. [
  46004. {
  46005. name: "Normal",
  46006. height: math.unit(5 + 4/12, "feet"),
  46007. default: true
  46008. },
  46009. ]
  46010. ))
  46011. characterMakers.push(() => makeCharacter(
  46012. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46013. {
  46014. side: {
  46015. height: math.unit(12, "feet"),
  46016. weight: math.unit(4000, "lb"),
  46017. name: "Side",
  46018. image: {
  46019. source: "./media/characters/terry/side.svg",
  46020. extra: 1518/1439,
  46021. bottom: 149/1667
  46022. }
  46023. },
  46024. },
  46025. [
  46026. {
  46027. name: "Normal",
  46028. height: math.unit(12, "feet"),
  46029. default: true
  46030. },
  46031. ]
  46032. ))
  46033. characterMakers.push(() => makeCharacter(
  46034. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46035. {
  46036. front: {
  46037. height: math.unit(12, "feet"),
  46038. weight: math.unit(1500, "lb"),
  46039. name: "Front",
  46040. image: {
  46041. source: "./media/characters/kahea/front.svg",
  46042. extra: 1722/1617,
  46043. bottom: 179/1901
  46044. }
  46045. },
  46046. },
  46047. [
  46048. {
  46049. name: "Normal",
  46050. height: math.unit(12, "feet"),
  46051. default: true
  46052. },
  46053. ]
  46054. ))
  46055. characterMakers.push(() => makeCharacter(
  46056. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46057. {
  46058. demonFront: {
  46059. height: math.unit(36, "feet"),
  46060. name: "Front",
  46061. image: {
  46062. source: "./media/characters/alex-xuria/demon-front.svg",
  46063. extra: 1705/1673,
  46064. bottom: 198/1903
  46065. },
  46066. form: "demon",
  46067. default: true
  46068. },
  46069. demonBack: {
  46070. height: math.unit(36, "feet"),
  46071. name: "Back",
  46072. image: {
  46073. source: "./media/characters/alex-xuria/demon-back.svg",
  46074. extra: 1725/1693,
  46075. bottom: 70/1795
  46076. },
  46077. form: "demon"
  46078. },
  46079. demonHead: {
  46080. height: math.unit(2.14, "meters"),
  46081. name: "Head",
  46082. image: {
  46083. source: "./media/characters/alex-xuria/demon-head.svg"
  46084. },
  46085. form: "demon"
  46086. },
  46087. demonHand: {
  46088. height: math.unit(1.61, "meters"),
  46089. name: "Hand",
  46090. image: {
  46091. source: "./media/characters/alex-xuria/demon-hand.svg"
  46092. },
  46093. form: "demon"
  46094. },
  46095. demonPaw: {
  46096. height: math.unit(1.35, "meters"),
  46097. name: "Paw",
  46098. image: {
  46099. source: "./media/characters/alex-xuria/demon-paw.svg"
  46100. },
  46101. form: "demon"
  46102. },
  46103. demonFoot: {
  46104. height: math.unit(2.2, "meters"),
  46105. name: "Foot",
  46106. image: {
  46107. source: "./media/characters/alex-xuria/demon-foot.svg"
  46108. },
  46109. form: "demon"
  46110. },
  46111. demonCock: {
  46112. height: math.unit(1.74, "meters"),
  46113. name: "Cock",
  46114. image: {
  46115. source: "./media/characters/alex-xuria/demon-cock.svg"
  46116. },
  46117. form: "demon"
  46118. },
  46119. demonTailClosed: {
  46120. height: math.unit(1.47, "meters"),
  46121. name: "Tail (Closed)",
  46122. image: {
  46123. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46124. },
  46125. form: "demon"
  46126. },
  46127. demonTailOpen: {
  46128. height: math.unit(2.85, "meters"),
  46129. name: "Tail (Open)",
  46130. image: {
  46131. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46132. },
  46133. form: "demon"
  46134. },
  46135. incubusFront: {
  46136. height: math.unit(12, "feet"),
  46137. name: "Front",
  46138. image: {
  46139. source: "./media/characters/alex-xuria/incubus-front.svg",
  46140. extra: 1754/1677,
  46141. bottom: 125/1879
  46142. },
  46143. form: "incubus",
  46144. default: true
  46145. },
  46146. incubusBack: {
  46147. height: math.unit(12, "feet"),
  46148. name: "Back",
  46149. image: {
  46150. source: "./media/characters/alex-xuria/incubus-back.svg",
  46151. extra: 1702/1647,
  46152. bottom: 30/1732
  46153. },
  46154. form: "incubus"
  46155. },
  46156. incubusHead: {
  46157. height: math.unit(3.45, "feet"),
  46158. name: "Head",
  46159. image: {
  46160. source: "./media/characters/alex-xuria/incubus-head.svg"
  46161. },
  46162. form: "incubus"
  46163. },
  46164. rabbitFront: {
  46165. height: math.unit(6, "feet"),
  46166. name: "Front",
  46167. image: {
  46168. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46169. extra: 1369/1349,
  46170. bottom: 45/1414
  46171. },
  46172. form: "rabbit",
  46173. default: true
  46174. },
  46175. rabbitSide: {
  46176. height: math.unit(6, "feet"),
  46177. name: "Side",
  46178. image: {
  46179. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46180. extra: 1370/1356,
  46181. bottom: 37/1407
  46182. },
  46183. form: "rabbit"
  46184. },
  46185. rabbitBack: {
  46186. height: math.unit(6, "feet"),
  46187. name: "Back",
  46188. image: {
  46189. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46190. extra: 1375/1358,
  46191. bottom: 43/1418
  46192. },
  46193. form: "rabbit"
  46194. },
  46195. },
  46196. [
  46197. {
  46198. name: "Normal",
  46199. height: math.unit(6, "feet"),
  46200. default: true,
  46201. form: "rabbit"
  46202. },
  46203. {
  46204. name: "Incubus",
  46205. height: math.unit(12, "feet"),
  46206. default: true,
  46207. form: "incubus"
  46208. },
  46209. {
  46210. name: "Demon",
  46211. height: math.unit(36, "feet"),
  46212. default: true,
  46213. form: "demon"
  46214. }
  46215. ],
  46216. {
  46217. "demon": {
  46218. name: "Demon",
  46219. default: true
  46220. },
  46221. "incubus": {
  46222. name: "Incubus",
  46223. },
  46224. "rabbit": {
  46225. name: "Rabbit"
  46226. }
  46227. }
  46228. ))
  46229. characterMakers.push(() => makeCharacter(
  46230. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46231. {
  46232. front: {
  46233. height: math.unit(7 + 5/12, "feet"),
  46234. weight: math.unit(510, "lb"),
  46235. name: "Front",
  46236. image: {
  46237. source: "./media/characters/syrup/front.svg",
  46238. extra: 932/916,
  46239. bottom: 26/958
  46240. }
  46241. },
  46242. },
  46243. [
  46244. {
  46245. name: "Normal",
  46246. height: math.unit(7 + 5/12, "feet"),
  46247. default: true
  46248. },
  46249. {
  46250. name: "Big",
  46251. height: math.unit(50, "feet")
  46252. },
  46253. {
  46254. name: "Macro",
  46255. height: math.unit(300, "feet")
  46256. },
  46257. {
  46258. name: "Megamacro",
  46259. height: math.unit(1, "mile")
  46260. },
  46261. ]
  46262. ))
  46263. characterMakers.push(() => makeCharacter(
  46264. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46265. {
  46266. front: {
  46267. height: math.unit(6 + 9/12, "feet"),
  46268. name: "Front",
  46269. image: {
  46270. source: "./media/characters/zeimne/front.svg",
  46271. extra: 1969/1806,
  46272. bottom: 53/2022
  46273. }
  46274. },
  46275. },
  46276. [
  46277. {
  46278. name: "Normal",
  46279. height: math.unit(6 + 9/12, "feet"),
  46280. default: true
  46281. },
  46282. {
  46283. name: "Giant",
  46284. height: math.unit(550, "feet")
  46285. },
  46286. {
  46287. name: "Mega",
  46288. height: math.unit(3, "miles")
  46289. },
  46290. {
  46291. name: "Giga",
  46292. height: math.unit(250, "miles")
  46293. },
  46294. {
  46295. name: "Tera",
  46296. height: math.unit(1, "AU")
  46297. },
  46298. ]
  46299. ))
  46300. characterMakers.push(() => makeCharacter(
  46301. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46302. {
  46303. front: {
  46304. height: math.unit(5 + 2/12, "feet"),
  46305. name: "Front",
  46306. image: {
  46307. source: "./media/characters/grar/front.svg",
  46308. extra: 1331/1119,
  46309. bottom: 60/1391
  46310. }
  46311. },
  46312. back: {
  46313. height: math.unit(5 + 2/12, "feet"),
  46314. name: "Back",
  46315. image: {
  46316. source: "./media/characters/grar/back.svg",
  46317. extra: 1385/1169,
  46318. bottom: 23/1408
  46319. }
  46320. },
  46321. },
  46322. [
  46323. {
  46324. name: "Normal",
  46325. height: math.unit(5 + 2/12, "feet"),
  46326. default: true
  46327. },
  46328. ]
  46329. ))
  46330. characterMakers.push(() => makeCharacter(
  46331. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46332. {
  46333. front: {
  46334. height: math.unit(13 + 7/12, "feet"),
  46335. weight: math.unit(2200, "lb"),
  46336. name: "Front",
  46337. image: {
  46338. source: "./media/characters/endraya/front.svg",
  46339. extra: 1289/1215,
  46340. bottom: 50/1339
  46341. }
  46342. },
  46343. nude: {
  46344. height: math.unit(13 + 7/12, "feet"),
  46345. weight: math.unit(2200, "lb"),
  46346. name: "Nude",
  46347. image: {
  46348. source: "./media/characters/endraya/nude.svg",
  46349. extra: 1247/1171,
  46350. bottom: 40/1287
  46351. }
  46352. },
  46353. head: {
  46354. height: math.unit(2.6, "feet"),
  46355. name: "Head",
  46356. image: {
  46357. source: "./media/characters/endraya/head.svg"
  46358. }
  46359. },
  46360. slit: {
  46361. height: math.unit(3.4, "feet"),
  46362. name: "Slit",
  46363. image: {
  46364. source: "./media/characters/endraya/slit.svg"
  46365. }
  46366. },
  46367. },
  46368. [
  46369. {
  46370. name: "Normal",
  46371. height: math.unit(13 + 7/12, "feet"),
  46372. default: true
  46373. },
  46374. {
  46375. name: "Macro",
  46376. height: math.unit(200, "feet")
  46377. },
  46378. ]
  46379. ))
  46380. characterMakers.push(() => makeCharacter(
  46381. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46382. {
  46383. front: {
  46384. height: math.unit(1.81, "meters"),
  46385. weight: math.unit(69, "kg"),
  46386. name: "Front",
  46387. image: {
  46388. source: "./media/characters/rodryana/front.svg",
  46389. extra: 2002/1921,
  46390. bottom: 53/2055
  46391. }
  46392. },
  46393. back: {
  46394. height: math.unit(1.81, "meters"),
  46395. weight: math.unit(69, "kg"),
  46396. name: "Back",
  46397. image: {
  46398. source: "./media/characters/rodryana/back.svg",
  46399. extra: 1993/1926,
  46400. bottom: 48/2041
  46401. }
  46402. },
  46403. maw: {
  46404. height: math.unit(0.19769417475, "meters"),
  46405. name: "Maw",
  46406. image: {
  46407. source: "./media/characters/rodryana/maw.svg"
  46408. }
  46409. },
  46410. slit: {
  46411. height: math.unit(0.31631067961, "meters"),
  46412. name: "Slit",
  46413. image: {
  46414. source: "./media/characters/rodryana/slit.svg"
  46415. }
  46416. },
  46417. },
  46418. [
  46419. {
  46420. name: "Normal",
  46421. height: math.unit(1.81, "meters")
  46422. },
  46423. {
  46424. name: "Mini Macro",
  46425. height: math.unit(181, "meters")
  46426. },
  46427. {
  46428. name: "Macro",
  46429. height: math.unit(452, "meters"),
  46430. default: true
  46431. },
  46432. {
  46433. name: "Mega Macro",
  46434. height: math.unit(1.375, "km")
  46435. },
  46436. {
  46437. name: "Giga Macro",
  46438. height: math.unit(13.575, "km")
  46439. },
  46440. ]
  46441. ))
  46442. characterMakers.push(() => makeCharacter(
  46443. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46444. {
  46445. front: {
  46446. height: math.unit(6, "feet"),
  46447. weight: math.unit(1000, "lb"),
  46448. name: "Front",
  46449. image: {
  46450. source: "./media/characters/asaya/front.svg",
  46451. extra: 1460/1200,
  46452. bottom: 71/1531
  46453. }
  46454. },
  46455. },
  46456. [
  46457. {
  46458. name: "Normal",
  46459. height: math.unit(8, "km"),
  46460. default: true
  46461. },
  46462. ]
  46463. ))
  46464. characterMakers.push(() => makeCharacter(
  46465. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46466. {
  46467. front: {
  46468. height: math.unit(3.5, "meters"),
  46469. name: "Front",
  46470. image: {
  46471. source: "./media/characters/sarzu-and-israz/front.svg",
  46472. extra: 1570/1558,
  46473. bottom: 150/1720
  46474. },
  46475. },
  46476. back: {
  46477. height: math.unit(3.5, "meters"),
  46478. name: "Back",
  46479. image: {
  46480. source: "./media/characters/sarzu-and-israz/back.svg",
  46481. extra: 1523/1509,
  46482. bottom: 132/1655
  46483. },
  46484. },
  46485. frontFemale: {
  46486. height: math.unit(3.5, "meters"),
  46487. name: "Front (Female)",
  46488. image: {
  46489. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46490. extra: 1570/1558,
  46491. bottom: 150/1720
  46492. },
  46493. },
  46494. frontHerm: {
  46495. height: math.unit(3.5, "meters"),
  46496. name: "Front (Herm)",
  46497. image: {
  46498. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46499. extra: 1570/1558,
  46500. bottom: 150/1720
  46501. },
  46502. },
  46503. },
  46504. [
  46505. {
  46506. name: "Normal",
  46507. height: math.unit(3.5, "meters"),
  46508. default: true,
  46509. },
  46510. {
  46511. name: "Macro",
  46512. height: math.unit(65.5, "meters"),
  46513. },
  46514. ],
  46515. ))
  46516. characterMakers.push(() => makeCharacter(
  46517. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46518. {
  46519. front: {
  46520. height: math.unit(6, "feet"),
  46521. weight: math.unit(250, "lb"),
  46522. name: "Front",
  46523. image: {
  46524. source: "./media/characters/zenimma/front.svg",
  46525. extra: 1346/1320,
  46526. bottom: 58/1404
  46527. }
  46528. },
  46529. back: {
  46530. height: math.unit(6, "feet"),
  46531. weight: math.unit(250, "lb"),
  46532. name: "Back",
  46533. image: {
  46534. source: "./media/characters/zenimma/back.svg",
  46535. extra: 1324/1308,
  46536. bottom: 44/1368
  46537. }
  46538. },
  46539. dick: {
  46540. height: math.unit(1.44, "feet"),
  46541. name: "Dick",
  46542. image: {
  46543. source: "./media/characters/zenimma/dick.svg"
  46544. }
  46545. },
  46546. },
  46547. [
  46548. {
  46549. name: "Canon Height",
  46550. height: math.unit(66, "miles"),
  46551. default: true
  46552. },
  46553. ]
  46554. ))
  46555. characterMakers.push(() => makeCharacter(
  46556. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46557. {
  46558. nude: {
  46559. height: math.unit(6, "feet"),
  46560. weight: math.unit(150, "lb"),
  46561. name: "Nude",
  46562. image: {
  46563. source: "./media/characters/shavon/nude.svg",
  46564. extra: 1242/1096,
  46565. bottom: 98/1340
  46566. }
  46567. },
  46568. dressed: {
  46569. height: math.unit(6, "feet"),
  46570. weight: math.unit(150, "lb"),
  46571. name: "Dressed",
  46572. image: {
  46573. source: "./media/characters/shavon/dressed.svg",
  46574. extra: 1242/1096,
  46575. bottom: 98/1340
  46576. }
  46577. },
  46578. },
  46579. [
  46580. {
  46581. name: "Macro",
  46582. height: math.unit(255, "feet"),
  46583. default: true
  46584. },
  46585. ]
  46586. ))
  46587. characterMakers.push(() => makeCharacter(
  46588. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46589. {
  46590. front: {
  46591. height: math.unit(6, "feet"),
  46592. name: "Front",
  46593. image: {
  46594. source: "./media/characters/steph/front.svg",
  46595. extra: 1430/1330,
  46596. bottom: 54/1484
  46597. }
  46598. },
  46599. },
  46600. [
  46601. {
  46602. name: "Normal",
  46603. height: math.unit(6, "feet"),
  46604. default: true
  46605. },
  46606. ]
  46607. ))
  46608. characterMakers.push(() => makeCharacter(
  46609. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46610. {
  46611. front: {
  46612. height: math.unit(9, "feet"),
  46613. weight: math.unit(400, "lb"),
  46614. name: "Front",
  46615. image: {
  46616. source: "./media/characters/kil'aman/front.svg",
  46617. extra: 1210/1159,
  46618. bottom: 109/1319
  46619. }
  46620. },
  46621. head: {
  46622. height: math.unit(2.14, "feet"),
  46623. name: "Head",
  46624. image: {
  46625. source: "./media/characters/kil'aman/head.svg"
  46626. }
  46627. },
  46628. maw: {
  46629. height: math.unit(1.21, "feet"),
  46630. name: "Maw",
  46631. image: {
  46632. source: "./media/characters/kil'aman/maw.svg"
  46633. }
  46634. },
  46635. foot: {
  46636. height: math.unit(1.7, "feet"),
  46637. name: "Foot",
  46638. image: {
  46639. source: "./media/characters/kil'aman/foot.svg"
  46640. }
  46641. },
  46642. dick: {
  46643. height: math.unit(2.1, "feet"),
  46644. name: "Dick",
  46645. image: {
  46646. source: "./media/characters/kil'aman/dick.svg"
  46647. }
  46648. },
  46649. },
  46650. [
  46651. {
  46652. name: "Normal",
  46653. height: math.unit(9, "feet")
  46654. },
  46655. {
  46656. name: "Canon Height",
  46657. height: math.unit(10, "miles"),
  46658. default: true
  46659. },
  46660. {
  46661. name: "Maximum",
  46662. height: math.unit(6e9, "miles")
  46663. },
  46664. ]
  46665. ))
  46666. characterMakers.push(() => makeCharacter(
  46667. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46668. {
  46669. front: {
  46670. height: math.unit(90, "feet"),
  46671. weight: math.unit(675000, "lb"),
  46672. name: "Front",
  46673. image: {
  46674. source: "./media/characters/qadan/front.svg",
  46675. extra: 1012/1004,
  46676. bottom: 78/1090
  46677. }
  46678. },
  46679. back: {
  46680. height: math.unit(90, "feet"),
  46681. weight: math.unit(675000, "lb"),
  46682. name: "Back",
  46683. image: {
  46684. source: "./media/characters/qadan/back.svg",
  46685. extra: 1042/1031,
  46686. bottom: 55/1097
  46687. }
  46688. },
  46689. armored: {
  46690. height: math.unit(90, "feet"),
  46691. weight: math.unit(675000, "lb"),
  46692. name: "Armored",
  46693. image: {
  46694. source: "./media/characters/qadan/armored.svg",
  46695. extra: 1047/1037,
  46696. bottom: 48/1095
  46697. }
  46698. },
  46699. },
  46700. [
  46701. {
  46702. name: "Normal",
  46703. height: math.unit(90, "feet"),
  46704. default: true
  46705. },
  46706. ]
  46707. ))
  46708. characterMakers.push(() => makeCharacter(
  46709. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46710. {
  46711. front: {
  46712. height: math.unit(6, "feet"),
  46713. weight: math.unit(225, "lb"),
  46714. name: "Front",
  46715. image: {
  46716. source: "./media/characters/brooke/front.svg",
  46717. extra: 1050/1010,
  46718. bottom: 66/1116
  46719. }
  46720. },
  46721. back: {
  46722. height: math.unit(6, "feet"),
  46723. weight: math.unit(225, "lb"),
  46724. name: "Back",
  46725. image: {
  46726. source: "./media/characters/brooke/back.svg",
  46727. extra: 1053/1013,
  46728. bottom: 41/1094
  46729. }
  46730. },
  46731. dressed: {
  46732. height: math.unit(6, "feet"),
  46733. weight: math.unit(225, "lb"),
  46734. name: "Dressed",
  46735. image: {
  46736. source: "./media/characters/brooke/dressed.svg",
  46737. extra: 1050/1010,
  46738. bottom: 66/1116
  46739. }
  46740. },
  46741. },
  46742. [
  46743. {
  46744. name: "Canon Height",
  46745. height: math.unit(500, "miles"),
  46746. default: true
  46747. },
  46748. ]
  46749. ))
  46750. characterMakers.push(() => makeCharacter(
  46751. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46752. {
  46753. front: {
  46754. height: math.unit(6 + 2/12, "feet"),
  46755. weight: math.unit(210, "lb"),
  46756. name: "Front",
  46757. image: {
  46758. source: "./media/characters/wubs/front.svg",
  46759. extra: 1345/1325,
  46760. bottom: 70/1415
  46761. }
  46762. },
  46763. back: {
  46764. height: math.unit(6 + 2/12, "feet"),
  46765. weight: math.unit(210, "lb"),
  46766. name: "Back",
  46767. image: {
  46768. source: "./media/characters/wubs/back.svg",
  46769. extra: 1296/1275,
  46770. bottom: 58/1354
  46771. }
  46772. },
  46773. },
  46774. [
  46775. {
  46776. name: "Normal",
  46777. height: math.unit(6 + 2/12, "feet"),
  46778. default: true
  46779. },
  46780. {
  46781. name: "Macro",
  46782. height: math.unit(1000, "feet")
  46783. },
  46784. {
  46785. name: "Megamacro",
  46786. height: math.unit(1, "mile")
  46787. },
  46788. ]
  46789. ))
  46790. characterMakers.push(() => makeCharacter(
  46791. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46792. {
  46793. front: {
  46794. height: math.unit(4, "feet"),
  46795. weight: math.unit(120, "lb"),
  46796. name: "Front",
  46797. image: {
  46798. source: "./media/characters/blue/front.svg",
  46799. extra: 1636/1525,
  46800. bottom: 43/1679
  46801. }
  46802. },
  46803. back: {
  46804. height: math.unit(4, "feet"),
  46805. weight: math.unit(120, "lb"),
  46806. name: "Back",
  46807. image: {
  46808. source: "./media/characters/blue/back.svg",
  46809. extra: 1660/1560,
  46810. bottom: 57/1717
  46811. }
  46812. },
  46813. paws: {
  46814. height: math.unit(0.826, "feet"),
  46815. name: "Paws",
  46816. image: {
  46817. source: "./media/characters/blue/paws.svg"
  46818. }
  46819. },
  46820. },
  46821. [
  46822. {
  46823. name: "Micro",
  46824. height: math.unit(3, "inches")
  46825. },
  46826. {
  46827. name: "Normal",
  46828. height: math.unit(4, "feet"),
  46829. default: true
  46830. },
  46831. {
  46832. name: "Femenine Form",
  46833. height: math.unit(14, "feet")
  46834. },
  46835. {
  46836. name: "Werebat Form",
  46837. height: math.unit(18, "feet")
  46838. },
  46839. ]
  46840. ))
  46841. characterMakers.push(() => makeCharacter(
  46842. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46843. {
  46844. female: {
  46845. height: math.unit(7 + 4/12, "feet"),
  46846. weight: math.unit(243, "lb"),
  46847. name: "Female",
  46848. image: {
  46849. source: "./media/characters/kaya/female.svg",
  46850. extra: 975/898,
  46851. bottom: 34/1009
  46852. }
  46853. },
  46854. herm: {
  46855. height: math.unit(7 + 4/12, "feet"),
  46856. weight: math.unit(243, "lb"),
  46857. name: "Herm",
  46858. image: {
  46859. source: "./media/characters/kaya/herm.svg",
  46860. extra: 975/898,
  46861. bottom: 34/1009
  46862. }
  46863. },
  46864. },
  46865. [
  46866. {
  46867. name: "Normal",
  46868. height: math.unit(7 + 4/12, "feet"),
  46869. default: true
  46870. },
  46871. ]
  46872. ))
  46873. characterMakers.push(() => makeCharacter(
  46874. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46875. {
  46876. female: {
  46877. height: math.unit(9 + 4/12, "feet"),
  46878. weight: math.unit(398, "lb"),
  46879. name: "Female",
  46880. image: {
  46881. source: "./media/characters/kassandra/female.svg",
  46882. extra: 908/839,
  46883. bottom: 61/969
  46884. }
  46885. },
  46886. intersex: {
  46887. height: math.unit(9 + 4/12, "feet"),
  46888. weight: math.unit(398, "lb"),
  46889. name: "Intersex",
  46890. image: {
  46891. source: "./media/characters/kassandra/intersex.svg",
  46892. extra: 908/839,
  46893. bottom: 61/969
  46894. }
  46895. },
  46896. },
  46897. [
  46898. {
  46899. name: "Normal",
  46900. height: math.unit(9 + 4/12, "feet"),
  46901. default: true
  46902. },
  46903. ]
  46904. ))
  46905. characterMakers.push(() => makeCharacter(
  46906. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46907. {
  46908. front: {
  46909. height: math.unit(3, "meters"),
  46910. name: "Front",
  46911. image: {
  46912. source: "./media/characters/amy/front.svg",
  46913. extra: 1380/1343,
  46914. bottom: 70/1450
  46915. }
  46916. },
  46917. back: {
  46918. height: math.unit(3, "meters"),
  46919. name: "Back",
  46920. image: {
  46921. source: "./media/characters/amy/back.svg",
  46922. extra: 1380/1347,
  46923. bottom: 66/1446
  46924. }
  46925. },
  46926. },
  46927. [
  46928. {
  46929. name: "Normal",
  46930. height: math.unit(3, "meters"),
  46931. default: true
  46932. },
  46933. ]
  46934. ))
  46935. characterMakers.push(() => makeCharacter(
  46936. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46937. {
  46938. side: {
  46939. height: math.unit(47, "cm"),
  46940. weight: math.unit(10.8, "kg"),
  46941. name: "Side",
  46942. image: {
  46943. source: "./media/characters/alphaschakal/side.svg",
  46944. extra: 1058/568,
  46945. bottom: 62/1120
  46946. }
  46947. },
  46948. back: {
  46949. height: math.unit(78, "cm"),
  46950. weight: math.unit(10.8, "kg"),
  46951. name: "Back",
  46952. image: {
  46953. source: "./media/characters/alphaschakal/back.svg",
  46954. extra: 1102/942,
  46955. bottom: 185/1287
  46956. }
  46957. },
  46958. head: {
  46959. height: math.unit(28, "cm"),
  46960. name: "Head",
  46961. image: {
  46962. source: "./media/characters/alphaschakal/head.svg",
  46963. extra: 696/508,
  46964. bottom: 0/696
  46965. }
  46966. },
  46967. paw: {
  46968. height: math.unit(16, "cm"),
  46969. name: "Paw",
  46970. image: {
  46971. source: "./media/characters/alphaschakal/paw.svg"
  46972. }
  46973. },
  46974. },
  46975. [
  46976. {
  46977. name: "Normal",
  46978. height: math.unit(47, "cm"),
  46979. default: true
  46980. },
  46981. {
  46982. name: "Macro",
  46983. height: math.unit(340, "cm")
  46984. },
  46985. ]
  46986. ))
  46987. characterMakers.push(() => makeCharacter(
  46988. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46989. {
  46990. front: {
  46991. height: math.unit(36, "earths"),
  46992. name: "Front",
  46993. image: {
  46994. source: "./media/characters/ecobyss/front.svg",
  46995. extra: 1282/1215,
  46996. bottom: 11/1293
  46997. }
  46998. },
  46999. back: {
  47000. height: math.unit(36, "earths"),
  47001. name: "Back",
  47002. image: {
  47003. source: "./media/characters/ecobyss/back.svg",
  47004. extra: 1291/1222,
  47005. bottom: 8/1299
  47006. }
  47007. },
  47008. },
  47009. [
  47010. {
  47011. name: "Normal",
  47012. height: math.unit(36, "earths"),
  47013. default: true
  47014. },
  47015. ]
  47016. ))
  47017. characterMakers.push(() => makeCharacter(
  47018. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47019. {
  47020. front: {
  47021. height: math.unit(12, "feet"),
  47022. name: "Front",
  47023. image: {
  47024. source: "./media/characters/vasuk/front.svg",
  47025. extra: 1326/1207,
  47026. bottom: 64/1390
  47027. }
  47028. },
  47029. },
  47030. [
  47031. {
  47032. name: "Normal",
  47033. height: math.unit(12, "feet"),
  47034. default: true
  47035. },
  47036. ]
  47037. ))
  47038. characterMakers.push(() => makeCharacter(
  47039. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47040. {
  47041. side: {
  47042. height: math.unit(100, "feet"),
  47043. name: "Side",
  47044. image: {
  47045. source: "./media/characters/linneaus/side.svg",
  47046. extra: 987/807,
  47047. bottom: 47/1034
  47048. }
  47049. },
  47050. },
  47051. [
  47052. {
  47053. name: "Macro",
  47054. height: math.unit(100, "feet"),
  47055. default: true
  47056. },
  47057. ]
  47058. ))
  47059. characterMakers.push(() => makeCharacter(
  47060. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47061. {
  47062. front: {
  47063. height: math.unit(8, "feet"),
  47064. weight: math.unit(1200, "lb"),
  47065. name: "Front",
  47066. image: {
  47067. source: "./media/characters/nyterious-daligdig/front.svg",
  47068. extra: 1284/1094,
  47069. bottom: 84/1368
  47070. }
  47071. },
  47072. back: {
  47073. height: math.unit(8, "feet"),
  47074. weight: math.unit(1200, "lb"),
  47075. name: "Back",
  47076. image: {
  47077. source: "./media/characters/nyterious-daligdig/back.svg",
  47078. extra: 1301/1121,
  47079. bottom: 129/1430
  47080. }
  47081. },
  47082. mouth: {
  47083. height: math.unit(1.464, "feet"),
  47084. name: "Mouth",
  47085. image: {
  47086. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47087. }
  47088. },
  47089. },
  47090. [
  47091. {
  47092. name: "Small",
  47093. height: math.unit(8, "feet"),
  47094. default: true
  47095. },
  47096. {
  47097. name: "Normal",
  47098. height: math.unit(15, "feet")
  47099. },
  47100. {
  47101. name: "Macro",
  47102. height: math.unit(90, "feet")
  47103. },
  47104. ]
  47105. ))
  47106. characterMakers.push(() => makeCharacter(
  47107. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47108. {
  47109. front: {
  47110. height: math.unit(7 + 4/12, "feet"),
  47111. weight: math.unit(252, "lb"),
  47112. name: "Front",
  47113. image: {
  47114. source: "./media/characters/bandel/front.svg",
  47115. extra: 1946/1775,
  47116. bottom: 26/1972
  47117. }
  47118. },
  47119. back: {
  47120. height: math.unit(7 + 4/12, "feet"),
  47121. weight: math.unit(252, "lb"),
  47122. name: "Back",
  47123. image: {
  47124. source: "./media/characters/bandel/back.svg",
  47125. extra: 1940/1770,
  47126. bottom: 25/1965
  47127. }
  47128. },
  47129. maw: {
  47130. height: math.unit(2.15, "feet"),
  47131. name: "Maw",
  47132. image: {
  47133. source: "./media/characters/bandel/maw.svg"
  47134. }
  47135. },
  47136. stomach: {
  47137. height: math.unit(1.95, "feet"),
  47138. name: "Stomach",
  47139. image: {
  47140. source: "./media/characters/bandel/stomach.svg"
  47141. }
  47142. },
  47143. },
  47144. [
  47145. {
  47146. name: "Normal",
  47147. height: math.unit(7 + 4/12, "feet"),
  47148. default: true
  47149. },
  47150. ]
  47151. ))
  47152. characterMakers.push(() => makeCharacter(
  47153. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47154. {
  47155. front: {
  47156. height: math.unit(10 + 5/12, "feet"),
  47157. weight: math.unit(773.5, "kg"),
  47158. name: "Front",
  47159. image: {
  47160. source: "./media/characters/zed/front.svg",
  47161. extra: 987/941,
  47162. bottom: 52/1039
  47163. }
  47164. },
  47165. },
  47166. [
  47167. {
  47168. name: "Short",
  47169. height: math.unit(5 + 4/12, "feet")
  47170. },
  47171. {
  47172. name: "Average",
  47173. height: math.unit(10 + 5/12, "feet"),
  47174. default: true
  47175. },
  47176. {
  47177. name: "Mini-Macro",
  47178. height: math.unit(24 + 9/12, "feet")
  47179. },
  47180. {
  47181. name: "Macro",
  47182. height: math.unit(249, "feet")
  47183. },
  47184. {
  47185. name: "Mega-Macro",
  47186. height: math.unit(12490, "feet")
  47187. },
  47188. {
  47189. name: "Giga-Macro",
  47190. height: math.unit(24.9, "miles")
  47191. },
  47192. {
  47193. name: "Tera-Macro",
  47194. height: math.unit(24900, "miles")
  47195. },
  47196. {
  47197. name: "Cosmic Scale",
  47198. height: math.unit(38.9, "lightyears")
  47199. },
  47200. {
  47201. name: "Universal Scale",
  47202. height: math.unit(138e12, "lightyears")
  47203. },
  47204. ]
  47205. ))
  47206. characterMakers.push(() => makeCharacter(
  47207. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47208. {
  47209. front: {
  47210. height: math.unit(1561, "inches"),
  47211. name: "Front",
  47212. image: {
  47213. source: "./media/characters/ivan/front.svg",
  47214. extra: 1126/1071,
  47215. bottom: 26/1152
  47216. }
  47217. },
  47218. back: {
  47219. height: math.unit(1561, "inches"),
  47220. name: "Back",
  47221. image: {
  47222. source: "./media/characters/ivan/back.svg",
  47223. extra: 1134/1079,
  47224. bottom: 30/1164
  47225. }
  47226. },
  47227. },
  47228. [
  47229. {
  47230. name: "Normal",
  47231. height: math.unit(1561, "inches"),
  47232. default: true
  47233. },
  47234. ]
  47235. ))
  47236. characterMakers.push(() => makeCharacter(
  47237. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47238. {
  47239. front: {
  47240. height: math.unit(5 + 7/12, "feet"),
  47241. weight: math.unit(150, "lb"),
  47242. name: "Front",
  47243. image: {
  47244. source: "./media/characters/robin-arctic-hare/front.svg",
  47245. extra: 1148/974,
  47246. bottom: 20/1168
  47247. }
  47248. },
  47249. },
  47250. [
  47251. {
  47252. name: "Normal",
  47253. height: math.unit(5 + 7/12, "feet"),
  47254. default: true
  47255. },
  47256. ]
  47257. ))
  47258. characterMakers.push(() => makeCharacter(
  47259. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47260. {
  47261. side: {
  47262. height: math.unit(5, "feet"),
  47263. name: "Side",
  47264. image: {
  47265. source: "./media/characters/birch/side.svg",
  47266. extra: 985/796,
  47267. bottom: 111/1096
  47268. }
  47269. },
  47270. },
  47271. [
  47272. {
  47273. name: "Normal",
  47274. height: math.unit(5, "feet"),
  47275. default: true
  47276. },
  47277. ]
  47278. ))
  47279. characterMakers.push(() => makeCharacter(
  47280. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47281. {
  47282. front: {
  47283. height: math.unit(4, "feet"),
  47284. name: "Front",
  47285. image: {
  47286. source: "./media/characters/rasp/front.svg",
  47287. extra: 561/478,
  47288. bottom: 74/635
  47289. }
  47290. },
  47291. },
  47292. [
  47293. {
  47294. name: "Normal",
  47295. height: math.unit(4, "feet"),
  47296. default: true
  47297. },
  47298. ]
  47299. ))
  47300. characterMakers.push(() => makeCharacter(
  47301. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47302. {
  47303. front: {
  47304. height: math.unit(4 + 6/12, "feet"),
  47305. name: "Front",
  47306. image: {
  47307. source: "./media/characters/agatha/front.svg",
  47308. extra: 947/933,
  47309. bottom: 42/989
  47310. }
  47311. },
  47312. back: {
  47313. height: math.unit(4 + 6/12, "feet"),
  47314. name: "Back",
  47315. image: {
  47316. source: "./media/characters/agatha/back.svg",
  47317. extra: 935/922,
  47318. bottom: 48/983
  47319. }
  47320. },
  47321. },
  47322. [
  47323. {
  47324. name: "Normal",
  47325. height: math.unit(4 + 6 /12, "feet"),
  47326. default: true
  47327. },
  47328. {
  47329. name: "Max Size",
  47330. height: math.unit(500, "feet")
  47331. },
  47332. ]
  47333. ))
  47334. characterMakers.push(() => makeCharacter(
  47335. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47336. {
  47337. side: {
  47338. height: math.unit(30, "feet"),
  47339. name: "Side",
  47340. image: {
  47341. source: "./media/characters/roggy/side.svg",
  47342. extra: 909/643,
  47343. bottom: 63/972
  47344. }
  47345. },
  47346. lounging: {
  47347. height: math.unit(20, "feet"),
  47348. name: "Lounging",
  47349. image: {
  47350. source: "./media/characters/roggy/lounging.svg",
  47351. extra: 643/479,
  47352. bottom: 145/788
  47353. }
  47354. },
  47355. handpaw: {
  47356. height: math.unit(13.1, "feet"),
  47357. name: "Handpaw",
  47358. image: {
  47359. source: "./media/characters/roggy/handpaw.svg"
  47360. }
  47361. },
  47362. footpaw: {
  47363. height: math.unit(15.8, "feet"),
  47364. name: "Footpaw",
  47365. image: {
  47366. source: "./media/characters/roggy/footpaw.svg"
  47367. }
  47368. },
  47369. },
  47370. [
  47371. {
  47372. name: "Menacing",
  47373. height: math.unit(30, "feet"),
  47374. default: true
  47375. },
  47376. ]
  47377. ))
  47378. characterMakers.push(() => makeCharacter(
  47379. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47380. {
  47381. front: {
  47382. height: math.unit(5 + 7/12, "feet"),
  47383. weight: math.unit(135, "lb"),
  47384. name: "Front",
  47385. image: {
  47386. source: "./media/characters/naomi/front.svg",
  47387. extra: 1209/1154,
  47388. bottom: 129/1338
  47389. }
  47390. },
  47391. back: {
  47392. height: math.unit(5 + 7/12, "feet"),
  47393. weight: math.unit(135, "lb"),
  47394. name: "Back",
  47395. image: {
  47396. source: "./media/characters/naomi/back.svg",
  47397. extra: 1252/1190,
  47398. bottom: 23/1275
  47399. }
  47400. },
  47401. },
  47402. [
  47403. {
  47404. name: "Normal",
  47405. height: math.unit(5 + 7 /12, "feet"),
  47406. default: true
  47407. },
  47408. ]
  47409. ))
  47410. characterMakers.push(() => makeCharacter(
  47411. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47412. {
  47413. side: {
  47414. height: math.unit(35, "meters"),
  47415. name: "Side",
  47416. image: {
  47417. source: "./media/characters/kimpi/side.svg",
  47418. extra: 419/382,
  47419. bottom: 63/482
  47420. }
  47421. },
  47422. hand: {
  47423. height: math.unit(8.96, "meters"),
  47424. name: "Hand",
  47425. image: {
  47426. source: "./media/characters/kimpi/hand.svg"
  47427. }
  47428. },
  47429. },
  47430. [
  47431. {
  47432. name: "Normal",
  47433. height: math.unit(35, "meters"),
  47434. default: true
  47435. },
  47436. ]
  47437. ))
  47438. characterMakers.push(() => makeCharacter(
  47439. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47440. {
  47441. front: {
  47442. height: math.unit(4 + 4/12, "feet"),
  47443. name: "Front",
  47444. image: {
  47445. source: "./media/characters/pepper-purrloin/front.svg",
  47446. extra: 1141/1024,
  47447. bottom: 21/1162
  47448. }
  47449. },
  47450. },
  47451. [
  47452. {
  47453. name: "Normal",
  47454. height: math.unit(4 + 4/12, "feet"),
  47455. default: true
  47456. },
  47457. ]
  47458. ))
  47459. characterMakers.push(() => makeCharacter(
  47460. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47461. {
  47462. front: {
  47463. height: math.unit(6 + 2/12, "feet"),
  47464. name: "Front",
  47465. image: {
  47466. source: "./media/characters/raphael/front.svg",
  47467. extra: 1101/962,
  47468. bottom: 59/1160
  47469. }
  47470. },
  47471. },
  47472. [
  47473. {
  47474. name: "Normal",
  47475. height: math.unit(6 + 2/12, "feet"),
  47476. default: true
  47477. },
  47478. ]
  47479. ))
  47480. characterMakers.push(() => makeCharacter(
  47481. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47482. {
  47483. front: {
  47484. height: math.unit(6, "feet"),
  47485. weight: math.unit(150, "lb"),
  47486. name: "Front",
  47487. image: {
  47488. source: "./media/characters/victor-williams/front.svg",
  47489. extra: 1894/1825,
  47490. bottom: 67/1961
  47491. }
  47492. },
  47493. },
  47494. [
  47495. {
  47496. name: "Normal",
  47497. height: math.unit(6, "feet"),
  47498. default: true
  47499. },
  47500. ]
  47501. ))
  47502. characterMakers.push(() => makeCharacter(
  47503. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47504. {
  47505. front: {
  47506. height: math.unit(5 + 8/12, "feet"),
  47507. weight: math.unit(150, "lb"),
  47508. name: "Front",
  47509. image: {
  47510. source: "./media/characters/rachel/front.svg",
  47511. extra: 1902/1787,
  47512. bottom: 46/1948
  47513. }
  47514. },
  47515. },
  47516. [
  47517. {
  47518. name: "Base Height",
  47519. height: math.unit(5 + 8/12, "feet"),
  47520. default: true
  47521. },
  47522. {
  47523. name: "Macro",
  47524. height: math.unit(200, "feet")
  47525. },
  47526. {
  47527. name: "Mega Macro",
  47528. height: math.unit(1, "mile")
  47529. },
  47530. {
  47531. name: "Giga Macro",
  47532. height: math.unit(1500, "miles")
  47533. },
  47534. {
  47535. name: "Tera Macro",
  47536. height: math.unit(8000, "miles")
  47537. },
  47538. {
  47539. name: "Tera Macro+",
  47540. height: math.unit(2e5, "miles")
  47541. },
  47542. ]
  47543. ))
  47544. characterMakers.push(() => makeCharacter(
  47545. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47546. {
  47547. front: {
  47548. height: math.unit(6.5, "feet"),
  47549. name: "Front",
  47550. image: {
  47551. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47552. extra: 860/819,
  47553. bottom: 307/1167
  47554. }
  47555. },
  47556. back: {
  47557. height: math.unit(6.5, "feet"),
  47558. name: "Back",
  47559. image: {
  47560. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47561. extra: 880/837,
  47562. bottom: 395/1275
  47563. }
  47564. },
  47565. sleeping: {
  47566. height: math.unit(2.79, "feet"),
  47567. name: "Sleeping",
  47568. image: {
  47569. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47570. extra: 465/383,
  47571. bottom: 263/728
  47572. }
  47573. },
  47574. maw: {
  47575. height: math.unit(2.52, "feet"),
  47576. name: "Maw",
  47577. image: {
  47578. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47579. }
  47580. },
  47581. },
  47582. [
  47583. {
  47584. name: "Normal",
  47585. height: math.unit(6.5, "feet"),
  47586. default: true
  47587. },
  47588. ]
  47589. ))
  47590. characterMakers.push(() => makeCharacter(
  47591. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47592. {
  47593. front: {
  47594. height: math.unit(5, "feet"),
  47595. name: "Front",
  47596. image: {
  47597. source: "./media/characters/nova-nerium/front.svg",
  47598. extra: 1548/1392,
  47599. bottom: 374/1922
  47600. }
  47601. },
  47602. back: {
  47603. height: math.unit(5, "feet"),
  47604. name: "Back",
  47605. image: {
  47606. source: "./media/characters/nova-nerium/back.svg",
  47607. extra: 1658/1468,
  47608. bottom: 257/1915
  47609. }
  47610. },
  47611. },
  47612. [
  47613. {
  47614. name: "Normal",
  47615. height: math.unit(5, "feet"),
  47616. default: true
  47617. },
  47618. ]
  47619. ))
  47620. characterMakers.push(() => makeCharacter(
  47621. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47622. {
  47623. front: {
  47624. height: math.unit(5 + 4/12, "feet"),
  47625. name: "Front",
  47626. image: {
  47627. source: "./media/characters/ashe-pyriph/front.svg",
  47628. extra: 1935/1747,
  47629. bottom: 60/1995
  47630. }
  47631. },
  47632. },
  47633. [
  47634. {
  47635. name: "Normal",
  47636. height: math.unit(5 + 4/12, "feet"),
  47637. default: true
  47638. },
  47639. ]
  47640. ))
  47641. characterMakers.push(() => makeCharacter(
  47642. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47643. {
  47644. front: {
  47645. height: math.unit(8.7, "feet"),
  47646. name: "Front",
  47647. image: {
  47648. source: "./media/characters/flicker-wisp/front.svg",
  47649. extra: 1835/1613,
  47650. bottom: 449/2284
  47651. }
  47652. },
  47653. side: {
  47654. height: math.unit(8.7, "feet"),
  47655. name: "Side",
  47656. image: {
  47657. source: "./media/characters/flicker-wisp/side.svg",
  47658. extra: 1841/1642,
  47659. bottom: 336/2177
  47660. },
  47661. default: true
  47662. },
  47663. maw: {
  47664. height: math.unit(3.35, "feet"),
  47665. name: "Maw",
  47666. image: {
  47667. source: "./media/characters/flicker-wisp/maw.svg",
  47668. extra: 2338/1506,
  47669. bottom: 0/2338
  47670. }
  47671. },
  47672. ovipositor: {
  47673. height: math.unit(4.95, "feet"),
  47674. name: "Ovipositor",
  47675. image: {
  47676. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47677. }
  47678. },
  47679. egg: {
  47680. height: math.unit(0.385, "feet"),
  47681. weight: math.unit(2, "lb"),
  47682. name: "Egg",
  47683. image: {
  47684. source: "./media/characters/flicker-wisp/egg.svg"
  47685. }
  47686. },
  47687. },
  47688. [
  47689. {
  47690. name: "Normal",
  47691. height: math.unit(8.7, "feet"),
  47692. default: true
  47693. },
  47694. ]
  47695. ))
  47696. characterMakers.push(() => makeCharacter(
  47697. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47698. {
  47699. side: {
  47700. height: math.unit(11, "feet"),
  47701. name: "Side",
  47702. image: {
  47703. source: "./media/characters/faefnul/side.svg",
  47704. extra: 1100/1007,
  47705. bottom: 0/1100
  47706. }
  47707. },
  47708. },
  47709. [
  47710. {
  47711. name: "Normal",
  47712. height: math.unit(11, "feet"),
  47713. default: true
  47714. },
  47715. ]
  47716. ))
  47717. characterMakers.push(() => makeCharacter(
  47718. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47719. {
  47720. front: {
  47721. height: math.unit(6 + 2/12, "feet"),
  47722. name: "Front",
  47723. image: {
  47724. source: "./media/characters/shady/front.svg",
  47725. extra: 502/461,
  47726. bottom: 9/511
  47727. }
  47728. },
  47729. kneeling: {
  47730. height: math.unit(4.6, "feet"),
  47731. name: "Kneeling",
  47732. image: {
  47733. source: "./media/characters/shady/kneeling.svg",
  47734. extra: 1328/1219,
  47735. bottom: 117/1445
  47736. }
  47737. },
  47738. maw: {
  47739. height: math.unit(2, "feet"),
  47740. name: "Maw",
  47741. image: {
  47742. source: "./media/characters/shady/maw.svg"
  47743. }
  47744. },
  47745. },
  47746. [
  47747. {
  47748. name: "Nano",
  47749. height: math.unit(1, "mm")
  47750. },
  47751. {
  47752. name: "Micro",
  47753. height: math.unit(12, "mm")
  47754. },
  47755. {
  47756. name: "Tiny",
  47757. height: math.unit(3, "inches")
  47758. },
  47759. {
  47760. name: "Normal",
  47761. height: math.unit(6 + 2/12, "feet"),
  47762. default: true
  47763. },
  47764. {
  47765. name: "Big",
  47766. height: math.unit(15, "feet")
  47767. },
  47768. {
  47769. name: "Macro",
  47770. height: math.unit(150, "feet")
  47771. },
  47772. {
  47773. name: "Titanic",
  47774. height: math.unit(500, "feet")
  47775. },
  47776. ]
  47777. ))
  47778. characterMakers.push(() => makeCharacter(
  47779. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47780. {
  47781. front: {
  47782. height: math.unit(12, "feet"),
  47783. name: "Front",
  47784. image: {
  47785. source: "./media/characters/fenrir/front.svg",
  47786. extra: 968/875,
  47787. bottom: 22/990
  47788. }
  47789. },
  47790. },
  47791. [
  47792. {
  47793. name: "Big",
  47794. height: math.unit(12, "feet"),
  47795. default: true
  47796. },
  47797. ]
  47798. ))
  47799. characterMakers.push(() => makeCharacter(
  47800. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47801. {
  47802. front: {
  47803. height: math.unit(5 + 4/12, "feet"),
  47804. name: "Front",
  47805. image: {
  47806. source: "./media/characters/makar/front.svg",
  47807. extra: 1181/1112,
  47808. bottom: 78/1259
  47809. }
  47810. },
  47811. },
  47812. [
  47813. {
  47814. name: "Normal",
  47815. height: math.unit(5 + 4/12, "feet"),
  47816. default: true
  47817. },
  47818. ]
  47819. ))
  47820. characterMakers.push(() => makeCharacter(
  47821. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47822. {
  47823. front: {
  47824. height: math.unit(5 + 7/12, "feet"),
  47825. name: "Front",
  47826. image: {
  47827. source: "./media/characters/callow/front.svg",
  47828. extra: 1482/1304,
  47829. bottom: 23/1505
  47830. }
  47831. },
  47832. back: {
  47833. height: math.unit(5 + 7/12, "feet"),
  47834. name: "Back",
  47835. image: {
  47836. source: "./media/characters/callow/back.svg",
  47837. extra: 1484/1296,
  47838. bottom: 25/1509
  47839. }
  47840. },
  47841. },
  47842. [
  47843. {
  47844. name: "Micro",
  47845. height: math.unit(3, "inches"),
  47846. default: true
  47847. },
  47848. {
  47849. name: "Normal",
  47850. height: math.unit(5 + 7/12, "feet")
  47851. },
  47852. ]
  47853. ))
  47854. characterMakers.push(() => makeCharacter(
  47855. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47856. {
  47857. front: {
  47858. height: math.unit(6 + 2/12, "feet"),
  47859. name: "Front",
  47860. image: {
  47861. source: "./media/characters/natel/front.svg",
  47862. extra: 1833/1692,
  47863. bottom: 166/1999
  47864. }
  47865. },
  47866. },
  47867. [
  47868. {
  47869. name: "Normal",
  47870. height: math.unit(6 + 2/12, "feet"),
  47871. default: true
  47872. },
  47873. ]
  47874. ))
  47875. characterMakers.push(() => makeCharacter(
  47876. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47877. {
  47878. front: {
  47879. height: math.unit(1.75, "meters"),
  47880. name: "Front",
  47881. image: {
  47882. source: "./media/characters/misu/front.svg",
  47883. extra: 1690/1558,
  47884. bottom: 234/1924
  47885. }
  47886. },
  47887. back: {
  47888. height: math.unit(1.75, "meters"),
  47889. name: "Back",
  47890. image: {
  47891. source: "./media/characters/misu/back.svg",
  47892. extra: 1762/1618,
  47893. bottom: 146/1908
  47894. }
  47895. },
  47896. frontNude: {
  47897. height: math.unit(1.75, "meters"),
  47898. name: "Front (Nude)",
  47899. image: {
  47900. source: "./media/characters/misu/front-nude.svg",
  47901. extra: 1690/1558,
  47902. bottom: 234/1924
  47903. }
  47904. },
  47905. backNude: {
  47906. height: math.unit(1.75, "meters"),
  47907. name: "Back (Nude)",
  47908. image: {
  47909. source: "./media/characters/misu/back-nude.svg",
  47910. extra: 1762/1618,
  47911. bottom: 146/1908
  47912. }
  47913. },
  47914. frontErect: {
  47915. height: math.unit(1.75, "meters"),
  47916. name: "Front (Erect)",
  47917. image: {
  47918. source: "./media/characters/misu/front-erect.svg",
  47919. extra: 1690/1558,
  47920. bottom: 234/1924
  47921. }
  47922. },
  47923. maw: {
  47924. height: math.unit(0.47, "meters"),
  47925. name: "Maw",
  47926. image: {
  47927. source: "./media/characters/misu/maw.svg"
  47928. }
  47929. },
  47930. head: {
  47931. height: math.unit(0.35, "meters"),
  47932. name: "Head",
  47933. image: {
  47934. source: "./media/characters/misu/head.svg"
  47935. }
  47936. },
  47937. rear: {
  47938. height: math.unit(0.47, "meters"),
  47939. name: "Rear",
  47940. image: {
  47941. source: "./media/characters/misu/rear.svg"
  47942. }
  47943. },
  47944. },
  47945. [
  47946. {
  47947. name: "Normal",
  47948. height: math.unit(1.75, "meters")
  47949. },
  47950. {
  47951. name: "Not good for the people",
  47952. height: math.unit(42, "meters")
  47953. },
  47954. {
  47955. name: "Not good for the neighborhood",
  47956. height: math.unit(135, "meters")
  47957. },
  47958. {
  47959. name: "Bit bigger problem",
  47960. height: math.unit(380, "meters"),
  47961. default: true
  47962. },
  47963. {
  47964. name: "Not good for the city",
  47965. height: math.unit(1.5, "km")
  47966. },
  47967. {
  47968. name: "Not good for the county",
  47969. height: math.unit(5.5, "km")
  47970. },
  47971. {
  47972. name: "Not good for the state",
  47973. height: math.unit(25, "km")
  47974. },
  47975. {
  47976. name: "Not good for the country",
  47977. height: math.unit(125, "km")
  47978. },
  47979. {
  47980. name: "Not good for the continent",
  47981. height: math.unit(2100, "km")
  47982. },
  47983. {
  47984. name: "Not good for the planet",
  47985. height: math.unit(35000, "km")
  47986. },
  47987. {
  47988. name: "Just no",
  47989. height: math.unit(8.5e18, "km")
  47990. },
  47991. ]
  47992. ))
  47993. characterMakers.push(() => makeCharacter(
  47994. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  47995. {
  47996. front: {
  47997. height: math.unit(6.5, "feet"),
  47998. name: "Front",
  47999. image: {
  48000. source: "./media/characters/poppy/front.svg",
  48001. extra: 1878/1812,
  48002. bottom: 43/1921
  48003. }
  48004. },
  48005. feet: {
  48006. height: math.unit(1.06, "feet"),
  48007. name: "Feet",
  48008. image: {
  48009. source: "./media/characters/poppy/feet.svg",
  48010. extra: 1083/1083,
  48011. bottom: 87/1170
  48012. }
  48013. },
  48014. },
  48015. [
  48016. {
  48017. name: "Human",
  48018. height: math.unit(6.5, "feet")
  48019. },
  48020. {
  48021. name: "Default",
  48022. height: math.unit(300, "feet"),
  48023. default: true
  48024. },
  48025. {
  48026. name: "Huge",
  48027. height: math.unit(850, "feet")
  48028. },
  48029. {
  48030. name: "Mega",
  48031. height: math.unit(8000, "feet")
  48032. },
  48033. {
  48034. name: "Giga",
  48035. height: math.unit(300, "miles")
  48036. },
  48037. ]
  48038. ))
  48039. characterMakers.push(() => makeCharacter(
  48040. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48041. {
  48042. bipedal: {
  48043. height: math.unit(7, "feet"),
  48044. name: "Bipedal",
  48045. image: {
  48046. source: "./media/characters/zener/bipedal.svg",
  48047. extra: 874/805,
  48048. bottom: 109/983
  48049. }
  48050. },
  48051. quadrupedal: {
  48052. height: math.unit(4.64, "feet"),
  48053. name: "Quadrupedal",
  48054. image: {
  48055. source: "./media/characters/zener/quadrupedal.svg",
  48056. extra: 638/507,
  48057. bottom: 190/828
  48058. }
  48059. },
  48060. cock: {
  48061. height: math.unit(18, "inches"),
  48062. name: "Cock",
  48063. image: {
  48064. source: "./media/characters/zener/cock.svg"
  48065. }
  48066. },
  48067. },
  48068. [
  48069. {
  48070. name: "Normal",
  48071. height: math.unit(7, "feet"),
  48072. default: true
  48073. },
  48074. ]
  48075. ))
  48076. characterMakers.push(() => makeCharacter(
  48077. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48078. {
  48079. nude: {
  48080. height: math.unit(5 + 6/12, "feet"),
  48081. name: "Nude",
  48082. image: {
  48083. source: "./media/characters/charlie-dog/nude.svg",
  48084. extra: 768/734,
  48085. bottom: 26/794
  48086. }
  48087. },
  48088. dressed: {
  48089. height: math.unit(5 + 6/12, "feet"),
  48090. name: "Dressed",
  48091. image: {
  48092. source: "./media/characters/charlie-dog/dressed.svg",
  48093. extra: 768/734,
  48094. bottom: 26/794
  48095. }
  48096. },
  48097. },
  48098. [
  48099. {
  48100. name: "Normal",
  48101. height: math.unit(5 + 6/12, "feet"),
  48102. default: true
  48103. },
  48104. ]
  48105. ))
  48106. characterMakers.push(() => makeCharacter(
  48107. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48108. {
  48109. front: {
  48110. height: math.unit(6 + 4/12, "feet"),
  48111. name: "Front",
  48112. image: {
  48113. source: "./media/characters/ir'istrasz/front.svg",
  48114. extra: 1014/977,
  48115. bottom: 65/1079
  48116. }
  48117. },
  48118. back: {
  48119. height: math.unit(6 + 4/12, "feet"),
  48120. name: "Back",
  48121. image: {
  48122. source: "./media/characters/ir'istrasz/back.svg",
  48123. extra: 1024/992,
  48124. bottom: 34/1058
  48125. }
  48126. },
  48127. },
  48128. [
  48129. {
  48130. name: "Normal",
  48131. height: math.unit(6 + 4/12, "feet"),
  48132. default: true
  48133. },
  48134. ]
  48135. ))
  48136. characterMakers.push(() => makeCharacter(
  48137. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48138. {
  48139. front: {
  48140. height: math.unit(5 + 8/12, "feet"),
  48141. name: "Front",
  48142. image: {
  48143. source: "./media/characters/dee-ditto/front.svg",
  48144. extra: 1874/1785,
  48145. bottom: 68/1942
  48146. }
  48147. },
  48148. back: {
  48149. height: math.unit(5 + 8/12, "feet"),
  48150. name: "Back",
  48151. image: {
  48152. source: "./media/characters/dee-ditto/back.svg",
  48153. extra: 1870/1783,
  48154. bottom: 77/1947
  48155. }
  48156. },
  48157. },
  48158. [
  48159. {
  48160. name: "Normal",
  48161. height: math.unit(5 + 8/12, "feet"),
  48162. default: true
  48163. },
  48164. ]
  48165. ))
  48166. characterMakers.push(() => makeCharacter(
  48167. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48168. {
  48169. front: {
  48170. height: math.unit(7 + 6/12, "feet"),
  48171. name: "Front",
  48172. image: {
  48173. source: "./media/characters/fey/front.svg",
  48174. extra: 995/979,
  48175. bottom: 30/1025
  48176. }
  48177. },
  48178. back: {
  48179. height: math.unit(7 + 6/12, "feet"),
  48180. name: "Back",
  48181. image: {
  48182. source: "./media/characters/fey/back.svg",
  48183. extra: 1079/1008,
  48184. bottom: 5/1084
  48185. }
  48186. },
  48187. dressed: {
  48188. height: math.unit(7 + 6/12, "feet"),
  48189. name: "Dressed",
  48190. image: {
  48191. source: "./media/characters/fey/dressed.svg",
  48192. extra: 995/979,
  48193. bottom: 30/1025
  48194. }
  48195. },
  48196. },
  48197. [
  48198. {
  48199. name: "Normal",
  48200. height: math.unit(7 + 6/12, "feet"),
  48201. default: true
  48202. },
  48203. ]
  48204. ))
  48205. characterMakers.push(() => makeCharacter(
  48206. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48207. {
  48208. standing: {
  48209. height: math.unit(17, "feet"),
  48210. name: "Standing",
  48211. image: {
  48212. source: "./media/characters/aster/standing.svg",
  48213. extra: 1798/1598,
  48214. bottom: 117/1915
  48215. }
  48216. },
  48217. },
  48218. [
  48219. {
  48220. name: "Normal",
  48221. height: math.unit(17, "feet"),
  48222. default: true
  48223. },
  48224. {
  48225. name: "Homewrecker",
  48226. height: math.unit(95, "feet")
  48227. },
  48228. {
  48229. name: "Planet Devourer",
  48230. height: math.unit(1008000, "miles")
  48231. },
  48232. ]
  48233. ))
  48234. characterMakers.push(() => makeCharacter(
  48235. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48236. {
  48237. front: {
  48238. height: math.unit(6 + 5/12, "feet"),
  48239. weight: math.unit(265, "lb"),
  48240. name: "Front",
  48241. image: {
  48242. source: "./media/characters/devon-childs/front.svg",
  48243. extra: 1795/1721,
  48244. bottom: 41/1836
  48245. }
  48246. },
  48247. side: {
  48248. height: math.unit(6 + 5/12, "feet"),
  48249. weight: math.unit(265, "lb"),
  48250. name: "Side",
  48251. image: {
  48252. source: "./media/characters/devon-childs/side.svg",
  48253. extra: 1812/1738,
  48254. bottom: 30/1842
  48255. }
  48256. },
  48257. back: {
  48258. height: math.unit(6 + 5/12, "feet"),
  48259. weight: math.unit(265, "lb"),
  48260. name: "Back",
  48261. image: {
  48262. source: "./media/characters/devon-childs/back.svg",
  48263. extra: 1808/1735,
  48264. bottom: 23/1831
  48265. }
  48266. },
  48267. hand: {
  48268. height: math.unit(1.464, "feet"),
  48269. name: "Hand",
  48270. image: {
  48271. source: "./media/characters/devon-childs/hand.svg"
  48272. }
  48273. },
  48274. foot: {
  48275. height: math.unit(1.6, "feet"),
  48276. name: "Foot",
  48277. image: {
  48278. source: "./media/characters/devon-childs/foot.svg"
  48279. }
  48280. },
  48281. },
  48282. [
  48283. {
  48284. name: "Micro",
  48285. height: math.unit(7, "cm")
  48286. },
  48287. {
  48288. name: "Normal",
  48289. height: math.unit(6 + 5/12, "feet"),
  48290. default: true
  48291. },
  48292. {
  48293. name: "Macro",
  48294. height: math.unit(154, "feet")
  48295. },
  48296. ]
  48297. ))
  48298. characterMakers.push(() => makeCharacter(
  48299. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48300. {
  48301. front: {
  48302. height: math.unit(6, "feet"),
  48303. weight: math.unit(180, "lb"),
  48304. name: "Front",
  48305. image: {
  48306. source: "./media/characters/lydemox-vir/front.svg",
  48307. extra: 1632/1435,
  48308. bottom: 58/1690
  48309. }
  48310. },
  48311. frontSFW: {
  48312. height: math.unit(6, "feet"),
  48313. weight: math.unit(180, "lb"),
  48314. name: "Front (SFW)",
  48315. image: {
  48316. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48317. extra: 1632/1435,
  48318. bottom: 58/1690
  48319. }
  48320. },
  48321. back: {
  48322. height: math.unit(6, "feet"),
  48323. weight: math.unit(180, "lb"),
  48324. name: "Back",
  48325. image: {
  48326. source: "./media/characters/lydemox-vir/back.svg",
  48327. extra: 1593/1408,
  48328. bottom: 31/1624
  48329. }
  48330. },
  48331. paw: {
  48332. height: math.unit(1.85, "feet"),
  48333. name: "Paw",
  48334. image: {
  48335. source: "./media/characters/lydemox-vir/paw.svg"
  48336. }
  48337. },
  48338. dick: {
  48339. height: math.unit(1.8, "feet"),
  48340. name: "Dick",
  48341. image: {
  48342. source: "./media/characters/lydemox-vir/dick.svg"
  48343. }
  48344. },
  48345. },
  48346. [
  48347. {
  48348. name: "Macro",
  48349. height: math.unit(100, "feet"),
  48350. default: true
  48351. },
  48352. {
  48353. name: "Teramacro",
  48354. height: math.unit(1, "earth")
  48355. },
  48356. {
  48357. name: "Planetary",
  48358. height: math.unit(20, "earths")
  48359. },
  48360. ]
  48361. ))
  48362. characterMakers.push(() => makeCharacter(
  48363. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48364. {
  48365. front: {
  48366. height: math.unit(15 + 8/12, "feet"),
  48367. weight: math.unit(1237, "kg"),
  48368. name: "Front",
  48369. image: {
  48370. source: "./media/characters/mia/front.svg",
  48371. extra: 1573/1446,
  48372. bottom: 58/1631
  48373. }
  48374. },
  48375. },
  48376. [
  48377. {
  48378. name: "Small",
  48379. height: math.unit(9 + 5/12, "feet")
  48380. },
  48381. {
  48382. name: "Normal",
  48383. height: math.unit(15 + 8/12, "feet"),
  48384. default: true
  48385. },
  48386. ]
  48387. ))
  48388. characterMakers.push(() => makeCharacter(
  48389. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48390. {
  48391. front: {
  48392. height: math.unit(10 + 6/12, "feet"),
  48393. weight: math.unit(1.3, "tons"),
  48394. name: "Front",
  48395. image: {
  48396. source: "./media/characters/mr-graves/front.svg",
  48397. extra: 1779/1695,
  48398. bottom: 198/1977
  48399. }
  48400. },
  48401. },
  48402. [
  48403. {
  48404. name: "Normal",
  48405. height: math.unit(10 + 6 /12, "feet"),
  48406. default: true
  48407. },
  48408. ]
  48409. ))
  48410. characterMakers.push(() => makeCharacter(
  48411. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48412. {
  48413. dressedFront: {
  48414. height: math.unit(5 + 8/12, "feet"),
  48415. weight: math.unit(125, "lb"),
  48416. name: "Dressed (Front)",
  48417. image: {
  48418. source: "./media/characters/jess/dressed-front.svg",
  48419. extra: 1176/1152,
  48420. bottom: 42/1218
  48421. }
  48422. },
  48423. dressedSide: {
  48424. height: math.unit(5 + 8/12, "feet"),
  48425. weight: math.unit(125, "lb"),
  48426. name: "Dressed (Side)",
  48427. image: {
  48428. source: "./media/characters/jess/dressed-side.svg",
  48429. extra: 1204/1190,
  48430. bottom: 6/1210
  48431. }
  48432. },
  48433. nudeFront: {
  48434. height: math.unit(5 + 8/12, "feet"),
  48435. weight: math.unit(125, "lb"),
  48436. name: "Nude (Front)",
  48437. image: {
  48438. source: "./media/characters/jess/nude-front.svg",
  48439. extra: 1176/1152,
  48440. bottom: 42/1218
  48441. }
  48442. },
  48443. nudeSide: {
  48444. height: math.unit(5 + 8/12, "feet"),
  48445. weight: math.unit(125, "lb"),
  48446. name: "Nude (Side)",
  48447. image: {
  48448. source: "./media/characters/jess/nude-side.svg",
  48449. extra: 1204/1190,
  48450. bottom: 6/1210
  48451. }
  48452. },
  48453. organsFront: {
  48454. height: math.unit(2.83799342105, "feet"),
  48455. name: "Organs (Front)",
  48456. image: {
  48457. source: "./media/characters/jess/organs-front.svg"
  48458. }
  48459. },
  48460. organsSide: {
  48461. height: math.unit(2.64225290474, "feet"),
  48462. name: "Organs (Side)",
  48463. image: {
  48464. source: "./media/characters/jess/organs-side.svg"
  48465. }
  48466. },
  48467. digestiveTractFront: {
  48468. height: math.unit(2.8106580871, "feet"),
  48469. name: "Digestive Tract (Front)",
  48470. image: {
  48471. source: "./media/characters/jess/digestive-tract-front.svg"
  48472. }
  48473. },
  48474. digestiveTractSide: {
  48475. height: math.unit(2.54365045014, "feet"),
  48476. name: "Digestive Tract (Side)",
  48477. image: {
  48478. source: "./media/characters/jess/digestive-tract-side.svg"
  48479. }
  48480. },
  48481. respiratorySystemFront: {
  48482. height: math.unit(1.11196233456, "feet"),
  48483. name: "Respiratory System (Front)",
  48484. image: {
  48485. source: "./media/characters/jess/respiratory-system-front.svg"
  48486. }
  48487. },
  48488. respiratorySystemSide: {
  48489. height: math.unit(0.89327966297, "feet"),
  48490. name: "Respiratory System (Side)",
  48491. image: {
  48492. source: "./media/characters/jess/respiratory-system-side.svg"
  48493. }
  48494. },
  48495. urinaryTractFront: {
  48496. height: math.unit(1.16126356186, "feet"),
  48497. name: "Urinary Tract (Front)",
  48498. image: {
  48499. source: "./media/characters/jess/urinary-tract-front.svg"
  48500. }
  48501. },
  48502. urinaryTractSide: {
  48503. height: math.unit(1.20910039627, "feet"),
  48504. name: "Urinary Tract (Side)",
  48505. image: {
  48506. source: "./media/characters/jess/urinary-tract-side.svg"
  48507. }
  48508. },
  48509. reproductiveOrgansFront: {
  48510. height: math.unit(0.48422591566, "feet"),
  48511. name: "Reproductive Organs (Front)",
  48512. image: {
  48513. source: "./media/characters/jess/reproductive-organs-front.svg"
  48514. }
  48515. },
  48516. reproductiveOrgansSide: {
  48517. height: math.unit(0.61553314481, "feet"),
  48518. name: "Reproductive Organs (Side)",
  48519. image: {
  48520. source: "./media/characters/jess/reproductive-organs-side.svg"
  48521. }
  48522. },
  48523. breastsFront: {
  48524. height: math.unit(0.47690395121, "feet"),
  48525. name: "Breasts (Front)",
  48526. image: {
  48527. source: "./media/characters/jess/breasts-front.svg"
  48528. }
  48529. },
  48530. breastsSide: {
  48531. height: math.unit(0.30556998307, "feet"),
  48532. name: "Breasts (Side)",
  48533. image: {
  48534. source: "./media/characters/jess/breasts-side.svg"
  48535. }
  48536. },
  48537. heartFront: {
  48538. height: math.unit(0.53011022622, "feet"),
  48539. name: "Heart (Front)",
  48540. image: {
  48541. source: "./media/characters/jess/heart-front.svg"
  48542. }
  48543. },
  48544. heartSide: {
  48545. height: math.unit(0.51790695213, "feet"),
  48546. name: "Heart (Side)",
  48547. image: {
  48548. source: "./media/characters/jess/heart-side.svg"
  48549. }
  48550. },
  48551. earsAndNoseFront: {
  48552. height: math.unit(0.29385483995, "feet"),
  48553. name: "Ears and Nose (Front)",
  48554. image: {
  48555. source: "./media/characters/jess/ears-and-nose-front.svg"
  48556. }
  48557. },
  48558. earsAndNoseSide: {
  48559. height: math.unit(0.18109658741, "feet"),
  48560. name: "Ears and Nose (Side)",
  48561. image: {
  48562. source: "./media/characters/jess/ears-and-nose-side.svg"
  48563. }
  48564. },
  48565. },
  48566. [
  48567. {
  48568. name: "Normal",
  48569. height: math.unit(5 + 8/12, "feet"),
  48570. default: true
  48571. },
  48572. ]
  48573. ))
  48574. characterMakers.push(() => makeCharacter(
  48575. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48576. {
  48577. front: {
  48578. height: math.unit(6, "feet"),
  48579. weight: math.unit(6.64467e-7, "grams"),
  48580. name: "Front",
  48581. image: {
  48582. source: "./media/characters/wimpering/front.svg",
  48583. extra: 597/587,
  48584. bottom: 34/631
  48585. }
  48586. },
  48587. },
  48588. [
  48589. {
  48590. name: "Micro",
  48591. height: math.unit(0.4, "mm"),
  48592. default: true
  48593. },
  48594. ]
  48595. ))
  48596. characterMakers.push(() => makeCharacter(
  48597. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48598. {
  48599. front: {
  48600. height: math.unit(5 + 2/12, "feet"),
  48601. weight: math.unit(110, "lb"),
  48602. name: "Front",
  48603. image: {
  48604. source: "./media/characters/keltre/front.svg",
  48605. extra: 1099/1057,
  48606. bottom: 22/1121
  48607. }
  48608. },
  48609. back: {
  48610. height: math.unit(5 + 2/12, "feet"),
  48611. weight: math.unit(110, "lb"),
  48612. name: "Back",
  48613. image: {
  48614. source: "./media/characters/keltre/back.svg",
  48615. extra: 1095/1053,
  48616. bottom: 17/1112
  48617. }
  48618. },
  48619. dressed: {
  48620. height: math.unit(5 + 2/12, "feet"),
  48621. weight: math.unit(110, "lb"),
  48622. name: "Dressed",
  48623. image: {
  48624. source: "./media/characters/keltre/dressed.svg",
  48625. extra: 1099/1057,
  48626. bottom: 22/1121
  48627. }
  48628. },
  48629. winter: {
  48630. height: math.unit(5 + 2/12, "feet"),
  48631. weight: math.unit(110, "lb"),
  48632. name: "Winter",
  48633. image: {
  48634. source: "./media/characters/keltre/winter.svg",
  48635. extra: 1099/1057,
  48636. bottom: 22/1121
  48637. }
  48638. },
  48639. head: {
  48640. height: math.unit(1.61 * 0.86, "feet"),
  48641. name: "Head",
  48642. image: {
  48643. source: "./media/characters/keltre/head.svg",
  48644. extra: 534/421,
  48645. bottom: 0/534
  48646. }
  48647. },
  48648. hand: {
  48649. height: math.unit(1.3 * 0.86, "feet"),
  48650. name: "Hand",
  48651. image: {
  48652. source: "./media/characters/keltre/hand.svg"
  48653. }
  48654. },
  48655. foot: {
  48656. height: math.unit(1.8 * 0.86, "feet"),
  48657. name: "Foot",
  48658. image: {
  48659. source: "./media/characters/keltre/foot.svg"
  48660. }
  48661. },
  48662. },
  48663. [
  48664. {
  48665. name: "Fine",
  48666. height: math.unit(1, "inch")
  48667. },
  48668. {
  48669. name: "Dimnutive",
  48670. height: math.unit(4, "inches")
  48671. },
  48672. {
  48673. name: "Tiny",
  48674. height: math.unit(1, "foot")
  48675. },
  48676. {
  48677. name: "Small",
  48678. height: math.unit(3, "feet")
  48679. },
  48680. {
  48681. name: "Normal",
  48682. height: math.unit(5 + 2/12, "feet"),
  48683. default: true
  48684. },
  48685. ]
  48686. ))
  48687. characterMakers.push(() => makeCharacter(
  48688. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48689. {
  48690. front: {
  48691. height: math.unit(6 + 2/12, "feet"),
  48692. name: "Front",
  48693. image: {
  48694. source: "./media/characters/nox/front.svg",
  48695. extra: 1917/1830,
  48696. bottom: 74/1991
  48697. }
  48698. },
  48699. back: {
  48700. height: math.unit(6 + 2/12, "feet"),
  48701. name: "Back",
  48702. image: {
  48703. source: "./media/characters/nox/back.svg",
  48704. extra: 1896/1815,
  48705. bottom: 21/1917
  48706. }
  48707. },
  48708. head: {
  48709. height: math.unit(1.1, "feet"),
  48710. name: "Head",
  48711. image: {
  48712. source: "./media/characters/nox/head.svg",
  48713. extra: 874/704,
  48714. bottom: 0/874
  48715. }
  48716. },
  48717. tattoo: {
  48718. height: math.unit(0.729, "feet"),
  48719. name: "Tattoo",
  48720. image: {
  48721. source: "./media/characters/nox/tattoo.svg"
  48722. }
  48723. },
  48724. },
  48725. [
  48726. {
  48727. name: "Normal",
  48728. height: math.unit(6 + 2/12, "feet")
  48729. },
  48730. {
  48731. name: "Gigamacro",
  48732. height: math.unit(2, "earths"),
  48733. default: true
  48734. },
  48735. {
  48736. name: "Cosmic",
  48737. height: math.unit(867, "yottameters")
  48738. },
  48739. ]
  48740. ))
  48741. characterMakers.push(() => makeCharacter(
  48742. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48743. {
  48744. front: {
  48745. height: math.unit(6, "feet"),
  48746. weight: math.unit(150, "lb"),
  48747. name: "Front",
  48748. image: {
  48749. source: "./media/characters/caspian/front.svg",
  48750. extra: 1443/1359,
  48751. bottom: 0/1443
  48752. }
  48753. },
  48754. back: {
  48755. height: math.unit(6, "feet"),
  48756. weight: math.unit(150, "lb"),
  48757. name: "Back",
  48758. image: {
  48759. source: "./media/characters/caspian/back.svg",
  48760. extra: 1379/1309,
  48761. bottom: 0/1379
  48762. }
  48763. },
  48764. head: {
  48765. height: math.unit(0.9, "feet"),
  48766. name: "Head",
  48767. image: {
  48768. source: "./media/characters/caspian/head.svg",
  48769. extra: 692/492,
  48770. bottom: 0/692
  48771. }
  48772. },
  48773. headAlt: {
  48774. height: math.unit(0.95, "feet"),
  48775. name: "Head (Alt)",
  48776. image: {
  48777. source: "./media/characters/caspian/head-alt.svg",
  48778. extra: 668/508,
  48779. bottom: 0/668
  48780. }
  48781. },
  48782. hand: {
  48783. height: math.unit(0.8, "feet"),
  48784. name: "Hand",
  48785. image: {
  48786. source: "./media/characters/caspian/hand.svg"
  48787. }
  48788. },
  48789. paw: {
  48790. height: math.unit(0.95, "feet"),
  48791. name: "Paw",
  48792. image: {
  48793. source: "./media/characters/caspian/paw.svg"
  48794. }
  48795. },
  48796. },
  48797. [
  48798. {
  48799. name: "Normal",
  48800. height: math.unit(162, "feet"),
  48801. default: true
  48802. },
  48803. ]
  48804. ))
  48805. characterMakers.push(() => makeCharacter(
  48806. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  48807. {
  48808. front: {
  48809. height: math.unit(6, "feet"),
  48810. name: "Front",
  48811. image: {
  48812. source: "./media/characters/myra-aisling/front.svg",
  48813. extra: 1268/1166,
  48814. bottom: 73/1341
  48815. }
  48816. },
  48817. back: {
  48818. height: math.unit(6, "feet"),
  48819. name: "Back",
  48820. image: {
  48821. source: "./media/characters/myra-aisling/back.svg",
  48822. extra: 1249/1149,
  48823. bottom: 79/1328
  48824. }
  48825. },
  48826. dressed: {
  48827. height: math.unit(6, "feet"),
  48828. name: "Dressed",
  48829. image: {
  48830. source: "./media/characters/myra-aisling/dressed.svg",
  48831. extra: 1290/1189,
  48832. bottom: 47/1337
  48833. }
  48834. },
  48835. hand: {
  48836. height: math.unit(1.1, "feet"),
  48837. name: "Hand",
  48838. image: {
  48839. source: "./media/characters/myra-aisling/hand.svg"
  48840. }
  48841. },
  48842. paw: {
  48843. height: math.unit(1.23, "feet"),
  48844. name: "Paw",
  48845. image: {
  48846. source: "./media/characters/myra-aisling/paw.svg"
  48847. }
  48848. },
  48849. },
  48850. [
  48851. {
  48852. name: "Normal",
  48853. height: math.unit(160, "feet"),
  48854. default: true
  48855. },
  48856. ]
  48857. ))
  48858. characterMakers.push(() => makeCharacter(
  48859. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  48860. {
  48861. front: {
  48862. height: math.unit(6, "feet"),
  48863. name: "Front",
  48864. image: {
  48865. source: "./media/characters/tenley-sidero/front.svg",
  48866. extra: 1365/1276,
  48867. bottom: 47/1412
  48868. }
  48869. },
  48870. back: {
  48871. height: math.unit(6, "feet"),
  48872. name: "Back",
  48873. image: {
  48874. source: "./media/characters/tenley-sidero/back.svg",
  48875. extra: 1383/1283,
  48876. bottom: 35/1418
  48877. }
  48878. },
  48879. dressed: {
  48880. height: math.unit(6, "feet"),
  48881. name: "Dressed",
  48882. image: {
  48883. source: "./media/characters/tenley-sidero/dressed.svg",
  48884. extra: 1364/1275,
  48885. bottom: 42/1406
  48886. }
  48887. },
  48888. head: {
  48889. height: math.unit(1.47, "feet"),
  48890. name: "Head",
  48891. image: {
  48892. source: "./media/characters/tenley-sidero/head.svg",
  48893. extra: 610/490,
  48894. bottom: 0/610
  48895. }
  48896. },
  48897. },
  48898. [
  48899. {
  48900. name: "Normal",
  48901. height: math.unit(154, "feet"),
  48902. default: true
  48903. },
  48904. ]
  48905. ))
  48906. characterMakers.push(() => makeCharacter(
  48907. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  48908. {
  48909. front: {
  48910. height: math.unit(5, "inches"),
  48911. name: "Front",
  48912. image: {
  48913. source: "./media/characters/mallory/front.svg",
  48914. extra: 1919/1678,
  48915. bottom: 29/1948
  48916. }
  48917. },
  48918. hand: {
  48919. height: math.unit(0.73, "inches"),
  48920. name: "Hand",
  48921. image: {
  48922. source: "./media/characters/mallory/hand.svg"
  48923. }
  48924. },
  48925. paw: {
  48926. height: math.unit(0.68, "inches"),
  48927. name: "Paw",
  48928. image: {
  48929. source: "./media/characters/mallory/paw.svg"
  48930. }
  48931. },
  48932. },
  48933. [
  48934. {
  48935. name: "Small",
  48936. height: math.unit(5, "inches"),
  48937. default: true
  48938. },
  48939. ]
  48940. ))
  48941. characterMakers.push(() => makeCharacter(
  48942. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  48943. {
  48944. naked: {
  48945. height: math.unit(6, "feet"),
  48946. name: "Naked",
  48947. image: {
  48948. source: "./media/characters/mab/naked.svg",
  48949. extra: 1855/1757,
  48950. bottom: 208/2063
  48951. }
  48952. },
  48953. outside: {
  48954. height: math.unit(6, "feet"),
  48955. name: "Outside",
  48956. image: {
  48957. source: "./media/characters/mab/outside.svg",
  48958. extra: 1855/1757,
  48959. bottom: 208/2063
  48960. }
  48961. },
  48962. party: {
  48963. height: math.unit(6, "feet"),
  48964. name: "Party",
  48965. image: {
  48966. source: "./media/characters/mab/party.svg",
  48967. extra: 1855/1757,
  48968. bottom: 208/2063
  48969. }
  48970. },
  48971. },
  48972. [
  48973. {
  48974. name: "Normal",
  48975. height: math.unit(165, "feet"),
  48976. default: true
  48977. },
  48978. ]
  48979. ))
  48980. characterMakers.push(() => makeCharacter(
  48981. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  48982. {
  48983. front: {
  48984. height: math.unit(12, "feet"),
  48985. weight: math.unit(4000, "lb"),
  48986. name: "Front",
  48987. image: {
  48988. source: "./media/characters/winter/front.svg",
  48989. extra: 1286/943,
  48990. bottom: 112/1398
  48991. }
  48992. },
  48993. frontNsfw: {
  48994. height: math.unit(12, "feet"),
  48995. weight: math.unit(4000, "lb"),
  48996. name: "Front (NSFW)",
  48997. image: {
  48998. source: "./media/characters/winter/front-nsfw.svg",
  48999. extra: 1286/943,
  49000. bottom: 112/1398
  49001. }
  49002. },
  49003. dick: {
  49004. height: math.unit(3.79, "feet"),
  49005. name: "Dick",
  49006. image: {
  49007. source: "./media/characters/winter/dick.svg"
  49008. }
  49009. },
  49010. },
  49011. [
  49012. {
  49013. name: "Big",
  49014. height: math.unit(12, "feet"),
  49015. default: true
  49016. },
  49017. ]
  49018. ))
  49019. //characters
  49020. function makeCharacters() {
  49021. const results = [];
  49022. characterMakers.forEach(character => {
  49023. results.push(character());
  49024. });
  49025. return results;
  49026. }