less copy protection, more size visualization
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

60542 wiersze
1.5 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["dinosaur"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["theropod"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["polecat"]
  1800. },
  1801. "polecat": {
  1802. name: "Polecat",
  1803. parents: ["mustelid"]
  1804. },
  1805. "teshari": {
  1806. name: "Teshari",
  1807. parents: ["avian", "raptor"]
  1808. },
  1809. "alicorn": {
  1810. name: "Alicorn",
  1811. parents: ["horse"]
  1812. },
  1813. "atlas-moth": {
  1814. name: "Atlas Moth",
  1815. parents: ["moth"]
  1816. },
  1817. "owlbear": {
  1818. name: "Owlbear",
  1819. parents: ["owl", "bear", "monster"]
  1820. },
  1821. "owl": {
  1822. name: "Owl",
  1823. parents: ["avian"]
  1824. },
  1825. "silvertongue": {
  1826. name: "Silvertongue",
  1827. parents: ["reptile"]
  1828. },
  1829. "ahuizotl": {
  1830. name: "Ahuizotl",
  1831. parents: ["monster"]
  1832. },
  1833. "ender-dragon": {
  1834. name: "Ender Dragon",
  1835. parents: ["dragon"]
  1836. },
  1837. "bruhathkayosaurus": {
  1838. name: "Bruhathkayosaurus",
  1839. parents: ["sauropod"]
  1840. },
  1841. "sauropod": {
  1842. name: "Sauropod",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "black-sable-antelope": {
  1846. name: "Black Sable Antelope",
  1847. parents: ["antelope"]
  1848. },
  1849. "slime": {
  1850. name: "Slime",
  1851. parents: ["goo"]
  1852. },
  1853. "utahraptor": {
  1854. name: "Utahraptor",
  1855. parents: ["raptor"]
  1856. },
  1857. "indian-giant-squirrel": {
  1858. name: "Indian Giant Squirrel",
  1859. parents: ["squirrel"]
  1860. },
  1861. "golden-retriever": {
  1862. name: "Golden Retriever",
  1863. parents: ["dog"]
  1864. },
  1865. "triceratops": {
  1866. name: "Triceratops",
  1867. parents: ["dinosaur"]
  1868. },
  1869. "drake": {
  1870. name: "Drake",
  1871. parents: ["dragon"]
  1872. },
  1873. "okapi": {
  1874. name: "Okapi",
  1875. parents: ["giraffe"]
  1876. },
  1877. "arctic-hare": {
  1878. name: "Arctic Hare",
  1879. parents: ["hare"]
  1880. },
  1881. "hare": {
  1882. name: "Hare",
  1883. parents: ["leporidae"]
  1884. },
  1885. "leporidae": {
  1886. name: "Leporidae",
  1887. parents: ["mammal"]
  1888. },
  1889. "leopard-gecko": {
  1890. name: "Leopard Gecko",
  1891. parents: ["gecko"]
  1892. },
  1893. "dreamspawn": {
  1894. name: "Dreamspawn",
  1895. parents: ["illusion"]
  1896. },
  1897. "illusion": {
  1898. name: "Illusion",
  1899. parents: []
  1900. },
  1901. "purrloin": {
  1902. name: "Purrloin",
  1903. parents: ["cat", "pokemon"]
  1904. },
  1905. "noivern": {
  1906. name: "Noivern",
  1907. parents: ["bat", "dragon", "pokemon"]
  1908. },
  1909. "hedgehog": {
  1910. name: "Hedgehog",
  1911. parents: ["mammal"]
  1912. },
  1913. "liger": {
  1914. name: "Liger",
  1915. parents: ["lion", "tiger", "hybrid"]
  1916. },
  1917. "hybrid": {
  1918. name: "Hybrid",
  1919. parents: []
  1920. },
  1921. "drider": {
  1922. name: "Drider",
  1923. parents: ["spider"]
  1924. },
  1925. "sabresune": {
  1926. name: "Sabresune",
  1927. parents: ["kitsune", "sabertooth-tiger"]
  1928. },
  1929. "ditto": {
  1930. name: "Ditto",
  1931. parents: ["pokemon", "goo"]
  1932. },
  1933. "amogus": {
  1934. name: "Amogus",
  1935. parents: ["deity"]
  1936. },
  1937. "ferret": {
  1938. name: "Ferret",
  1939. parents: ["mustelid"]
  1940. },
  1941. "guinea-pig": {
  1942. name: "Guinea Pig",
  1943. parents: ["rodent"]
  1944. },
  1945. "viper": {
  1946. name: "Viper",
  1947. parents: ["snake"]
  1948. },
  1949. "cinderace": {
  1950. name: "Cinderace",
  1951. parents: ["pokemon", "rabbit"]
  1952. },
  1953. "caudin": {
  1954. name: "Caudin",
  1955. parents: ["dragon"]
  1956. },
  1957. "red-winged-blackbird": {
  1958. name: "Red-Winged Blackbird",
  1959. parents: ["avian"]
  1960. },
  1961. "hooded-wheater": {
  1962. name: "Hooded Wheater",
  1963. parents: ["passerine"]
  1964. },
  1965. "passerine": {
  1966. name: "Passerine",
  1967. parents: ["avian"]
  1968. },
  1969. "gieeg": {
  1970. name: "Gieeg",
  1971. parents: ["alien"]
  1972. },
  1973. "ringtail": {
  1974. name: "Ringtail",
  1975. parents: ["raccoon"]
  1976. },
  1977. "hisuian-zoroark": {
  1978. name: "Hisuian Zoroark",
  1979. parents: ["zoroark", "hisuian"]
  1980. },
  1981. "hisuian": {
  1982. name: "Hisuian",
  1983. parents: ["regional-pokemon"]
  1984. },
  1985. "regional-pokemon": {
  1986. name: "Regional Pokemon",
  1987. parents: ["pokemon"]
  1988. },
  1989. "cybeast": {
  1990. name: "Cybeast",
  1991. parents: ["computer-virus"]
  1992. },
  1993. "javira-dragon": {
  1994. name: "Javira Dragon",
  1995. parents: ["dragon"]
  1996. },
  1997. "koopew": {
  1998. name: "Koopew",
  1999. parents: ["dragon", "alien"]
  2000. },
  2001. "nevrean": {
  2002. name: "Nevrean",
  2003. parents: ["avian", "vilous"]
  2004. },
  2005. "vilous": {
  2006. name: "Vilous Species",
  2007. parents: []
  2008. },
  2009. "titanoboa": {
  2010. name: "Titanoboa",
  2011. parents: ["snake"]
  2012. },
  2013. "raichu": {
  2014. name: "Raichu",
  2015. parents: ["pikachu"]
  2016. },
  2017. "taur": {
  2018. name: "Taur",
  2019. parents: []
  2020. },
  2021. "continental-giant-rabbit": {
  2022. name: "Continental Giant Rabbit",
  2023. parents: ["rabbit"]
  2024. },
  2025. "demigryph": {
  2026. name: "Demigryph",
  2027. parents: ["lion", "eagle"]
  2028. },
  2029. "bald-eagle": {
  2030. name: "Bald Eagle",
  2031. parents: ["eagle"]
  2032. },
  2033. "kestrel": {
  2034. name: "Kestrel",
  2035. parents: ["falcon"]
  2036. },
  2037. "mockingbird": {
  2038. name: "Mockingbird",
  2039. parents: ["songbird"]
  2040. },
  2041. "songbird": {
  2042. name: "Songbird",
  2043. parents: ["avian"]
  2044. },
  2045. "bird-of-prey": {
  2046. name: "Bird of Prey",
  2047. parents: ["avian"]
  2048. },
  2049. "marowak": {
  2050. name: "Marowak",
  2051. parents: ["pokemon", "reptile"]
  2052. },
  2053. "joltik": {
  2054. name: "Joltik",
  2055. parents: ["pokemon", "insect"]
  2056. },
  2057. "mink": {
  2058. name: "Mink",
  2059. parents: ["mustelid"]
  2060. },
  2061. "sandcat": {
  2062. name: "Sandcat",
  2063. parents: ["cat"]
  2064. },
  2065. "hrothgar": {
  2066. name: "Hrothgar",
  2067. parents: ["cat"]
  2068. },
  2069. "garchomp": {
  2070. name: "Garchomp",
  2071. parents: ["dragon", "pokemon"]
  2072. },
  2073. "nargacuga": {
  2074. name: "Nargacuga",
  2075. parents: ["monster-hunter"]
  2076. },
  2077. "sable": {
  2078. name: "Sable",
  2079. parents: ["marten"]
  2080. },
  2081. "deino": {
  2082. name: "Deino",
  2083. parents: ["pokemon", "dinosaur"]
  2084. },
  2085. "housecat": {
  2086. name: "Housecat",
  2087. parents: ["cat"]
  2088. },
  2089. "bombay-cat": {
  2090. name: "Bombay Cat",
  2091. parents: ["housecat"]
  2092. },
  2093. "maine-coon": {
  2094. name: "Maine Coon",
  2095. parents: ["housecat"]
  2096. },
  2097. "coelacanth": {
  2098. name: "Coelacanth",
  2099. parents: ["fish"]
  2100. },
  2101. "silvally": {
  2102. name: "Silvally",
  2103. parents: ["legendary-pokemon"]
  2104. },
  2105. "legendary-pokemon": {
  2106. name: "Legendary Pokemon",
  2107. parents: ["pokemon"]
  2108. },
  2109. "great-maccao": {
  2110. name: "Great Maccao",
  2111. parents: ["monster-hunter", "raptor"]
  2112. },
  2113. "shapeshifter": {
  2114. name: "shapeshifter",
  2115. parents: []
  2116. },
  2117. "obstagoon": {
  2118. name: "Obstagoon",
  2119. parents: ["zigzagoon"]
  2120. },
  2121. "thomsons-gazelle": {
  2122. name: "Thomsons Gazelle",
  2123. parents: ["gazelle"]
  2124. },
  2125. "gazelle": {
  2126. name: "Gazelle",
  2127. parents: ["antelope"]
  2128. },
  2129. "monkey": {
  2130. name: "Monkey",
  2131. parents: ["primate"]
  2132. },
  2133. "serval": {
  2134. name: "Serval",
  2135. parents: ["cat"]
  2136. },
  2137. "swampert": {
  2138. name: "Swampert",
  2139. parents: ["pokemon"]
  2140. },
  2141. "red-fox": {
  2142. name: "Red Fox",
  2143. parents: ["fox"]
  2144. },
  2145. "sliver": {
  2146. name: "Sliver",
  2147. parents: ["alien"]
  2148. },
  2149. "sergix": {
  2150. name: "Sergix",
  2151. parents: ["demon", "sergal", "phoenix"]
  2152. },
  2153. "behemoth": {
  2154. name: "Behemoth",
  2155. parents: ["monster", "dragon", "final-fantasy"]
  2156. },
  2157. "final-fantasy": {
  2158. name: "Final Fantasy",
  2159. parents: ["video-games"]
  2160. },
  2161. "video-games": {
  2162. name: "Video Games",
  2163. parents: []
  2164. },
  2165. "eastern-cottontail-rabbit": {
  2166. name: "Eastern Cottontail Rabbit",
  2167. parents: ["rabbit"]
  2168. },
  2169. "thresher-shark": {
  2170. name: "Thresher Shark",
  2171. parents: ["shark"]
  2172. },
  2173. "ai": {
  2174. name: "AI",
  2175. parents: []
  2176. },
  2177. "black-tip-reef-shark": {
  2178. name: "Black Tip Reef Shark",
  2179. parents: ["shark"]
  2180. },
  2181. "quetzalcoatlus-northropi": {
  2182. name: "Quetzalcoatlus Northropi",
  2183. parents: ["dinosaur"]
  2184. },
  2185. "snivy": {
  2186. name: "Snivy",
  2187. parents: ["pokemon", "snake"]
  2188. },
  2189. "nedynvor": {
  2190. name: "Nedynvor",
  2191. parents: ["avian"]
  2192. },
  2193. "marbled-polecat": {
  2194. name: "Marbled Polecat",
  2195. parents: ["polecat"]
  2196. },
  2197. "ape": {
  2198. name: "Ape",
  2199. parents: ["primate"]
  2200. },
  2201. "primate": {
  2202. name: "Primate",
  2203. parents: ["mammal"]
  2204. },
  2205. "kulve-taroth": {
  2206. name: "Kulve Taroth",
  2207. parents: ["monster-hunter", "dragon"]
  2208. },
  2209. "irthos": {
  2210. name: "Irthos",
  2211. parents: ["dragon"]
  2212. },
  2213. "furred-dragon": {
  2214. name: "Furred Dragon",
  2215. parents: ["dragon"]
  2216. },
  2217. "hippogriff": {
  2218. name: "Hippogriff",
  2219. parents: ["gryphon", "horse"]
  2220. },
  2221. "peregrine-falcon": {
  2222. name: "Peregrine Falcon",
  2223. parents: ["falcon"]
  2224. },
  2225. "deinonychus": {
  2226. name: "Deinonychus",
  2227. parents: ["theropod"]
  2228. },
  2229. "theropod": {
  2230. name: "Theropod",
  2231. parents: ["dinosaur"]
  2232. },
  2233. }
  2234. //species
  2235. function getSpeciesInfo(speciesList) {
  2236. let result = new Set();
  2237. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2238. result.add(entry)
  2239. });
  2240. return Array.from(result);
  2241. };
  2242. function getSpeciesInfoHelper(species) {
  2243. if (!speciesData[species]) {
  2244. console.warn(species + " doesn't exist");
  2245. return [];
  2246. }
  2247. if (speciesData[species].parents) {
  2248. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2249. } else {
  2250. return [species];
  2251. }
  2252. }
  2253. characterMakers.push(() => makeCharacter(
  2254. {
  2255. name: "Fen",
  2256. species: ["crux"],
  2257. description: {
  2258. title: "Bio",
  2259. text: "Very furry. Sheds on everything."
  2260. },
  2261. tags: [
  2262. "anthro",
  2263. "goo"
  2264. ]
  2265. },
  2266. {
  2267. front: {
  2268. height: math.unit(12, "feet"),
  2269. weight: math.unit(2400, "lb"),
  2270. preyCapacity: math.unit(1, "people"),
  2271. name: "Front",
  2272. image: {
  2273. source: "./media/characters/fen/front.svg",
  2274. extra: 1804/1562,
  2275. bottom: 205/2009
  2276. },
  2277. extraAttributes: {
  2278. pawSize: {
  2279. name: "Paw Size",
  2280. power: 2,
  2281. type: "area",
  2282. base: math.unit(0.35, "m^2")
  2283. }
  2284. }
  2285. },
  2286. diving: {
  2287. height: math.unit(4.9, "meters"),
  2288. weight: math.unit(2400, "lb"),
  2289. name: "Diving",
  2290. image: {
  2291. source: "./media/characters/fen/diving.svg"
  2292. }
  2293. },
  2294. sleeby: {
  2295. height: math.unit(3.45, "meters"),
  2296. weight: math.unit(2400, "lb"),
  2297. name: "Sleeby",
  2298. image: {
  2299. source: "./media/characters/fen/sleeby.svg"
  2300. }
  2301. },
  2302. goo: {
  2303. height: math.unit(12, "feet"),
  2304. weight: math.unit(3600, "lb"),
  2305. volume: math.unit(1000, "liters"),
  2306. preyCapacity: math.unit(6, "people"),
  2307. name: "Goo",
  2308. image: {
  2309. source: "./media/characters/fen/goo.svg",
  2310. extra: 1307/1071,
  2311. bottom: 134/1441
  2312. }
  2313. },
  2314. horror: {
  2315. height: math.unit(13.6, "feet"),
  2316. weight: math.unit(2400, "lb"),
  2317. preyCapacity: math.unit(1, "people"),
  2318. name: "Horror",
  2319. image: {
  2320. source: "./media/characters/fen/horror.svg",
  2321. extra: 893/797,
  2322. bottom: 0/893
  2323. }
  2324. },
  2325. gooNsfw: {
  2326. height: math.unit(12, "feet"),
  2327. weight: math.unit(3750, "lb"),
  2328. volume: math.unit(1000, "liters"),
  2329. preyCapacity: math.unit(6, "people"),
  2330. name: "Goo (NSFW)",
  2331. image: {
  2332. source: "./media/characters/fen/goo-nsfw.svg",
  2333. extra: 1875/1734,
  2334. bottom: 122/1997
  2335. }
  2336. },
  2337. maw: {
  2338. height: math.unit(5.03, "feet"),
  2339. name: "Maw",
  2340. image: {
  2341. source: "./media/characters/fen/maw.svg"
  2342. }
  2343. },
  2344. gooCeiling: {
  2345. height: math.unit(6.6, "feet"),
  2346. weight: math.unit(3000, "lb"),
  2347. volume: math.unit(1000, "liters"),
  2348. preyCapacity: math.unit(6, "people"),
  2349. name: "Maw (Goo)",
  2350. image: {
  2351. source: "./media/characters/fen/goo-maw.svg"
  2352. }
  2353. },
  2354. paw: {
  2355. height: math.unit(3.77, "feet"),
  2356. name: "Paw",
  2357. image: {
  2358. source: "./media/characters/fen/paw.svg"
  2359. },
  2360. extraAttributes: {
  2361. "toeSize": {
  2362. name: "Toe Size",
  2363. power: 2,
  2364. type: "area",
  2365. base: math.unit(0.02875, "m^2")
  2366. },
  2367. "pawSize": {
  2368. name: "Paw Size",
  2369. power: 2,
  2370. type: "area",
  2371. base: math.unit(0.378, "m^2")
  2372. },
  2373. }
  2374. },
  2375. tail: {
  2376. height: math.unit(12.1, "feet"),
  2377. name: "Tail",
  2378. image: {
  2379. source: "./media/characters/fen/tail.svg"
  2380. }
  2381. },
  2382. tailFull: {
  2383. height: math.unit(12.1, "feet"),
  2384. name: "Full Tail",
  2385. image: {
  2386. source: "./media/characters/fen/tail-full.svg"
  2387. }
  2388. },
  2389. back: {
  2390. height: math.unit(12, "feet"),
  2391. weight: math.unit(2400, "lb"),
  2392. name: "Back",
  2393. image: {
  2394. source: "./media/characters/fen/back.svg",
  2395. },
  2396. info: {
  2397. description: {
  2398. mode: "append",
  2399. text: "\n\nHe is not currently looking at you."
  2400. }
  2401. }
  2402. },
  2403. full: {
  2404. height: math.unit(1.85, "meter"),
  2405. weight: math.unit(3200, "lb"),
  2406. name: "Full",
  2407. image: {
  2408. source: "./media/characters/fen/full.svg",
  2409. extra: 1133/859,
  2410. bottom: 145/1278
  2411. },
  2412. info: {
  2413. description: {
  2414. mode: "append",
  2415. text: "\n\nMunch."
  2416. }
  2417. }
  2418. },
  2419. gooLounging: {
  2420. height: math.unit(4.53, "feet"),
  2421. weight: math.unit(3000, "lb"),
  2422. preyCapacity: math.unit(6, "people"),
  2423. name: "Goo (Lounging)",
  2424. image: {
  2425. source: "./media/characters/fen/goo-lounging.svg",
  2426. bottom: 116 / 613
  2427. }
  2428. },
  2429. lounging: {
  2430. height: math.unit(10.52, "feet"),
  2431. weight: math.unit(2400, "lb"),
  2432. name: "Lounging",
  2433. image: {
  2434. source: "./media/characters/fen/lounging.svg"
  2435. }
  2436. },
  2437. },
  2438. [
  2439. {
  2440. name: "Small",
  2441. height: math.unit(2.2428, "meter")
  2442. },
  2443. {
  2444. name: "Normal",
  2445. height: math.unit(12, "feet"),
  2446. default: true,
  2447. },
  2448. {
  2449. name: "Big",
  2450. height: math.unit(20, "feet")
  2451. },
  2452. {
  2453. name: "Minimacro",
  2454. height: math.unit(40, "feet"),
  2455. info: {
  2456. description: {
  2457. mode: "append",
  2458. text: "\n\nTOO DAMN BIG"
  2459. }
  2460. }
  2461. },
  2462. {
  2463. name: "Macro",
  2464. height: math.unit(100, "feet"),
  2465. info: {
  2466. description: {
  2467. mode: "append",
  2468. text: "\n\nTOO DAMN BIG"
  2469. }
  2470. }
  2471. },
  2472. {
  2473. name: "Megamacro",
  2474. height: math.unit(2, "miles")
  2475. },
  2476. {
  2477. name: "Gigamacro",
  2478. height: math.unit(10, "earths")
  2479. },
  2480. ]
  2481. ))
  2482. characterMakers.push(() => makeCharacter(
  2483. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2484. {
  2485. front: {
  2486. height: math.unit(183, "cm"),
  2487. weight: math.unit(80, "kg"),
  2488. name: "Front",
  2489. image: {
  2490. source: "./media/characters/sofia-fluttertail/front.svg",
  2491. bottom: 0.01,
  2492. extra: 2154 / 2081
  2493. }
  2494. },
  2495. frontAlt: {
  2496. height: math.unit(183, "cm"),
  2497. weight: math.unit(80, "kg"),
  2498. name: "Front (alt)",
  2499. image: {
  2500. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2501. }
  2502. },
  2503. back: {
  2504. height: math.unit(183, "cm"),
  2505. weight: math.unit(80, "kg"),
  2506. name: "Back",
  2507. image: {
  2508. source: "./media/characters/sofia-fluttertail/back.svg"
  2509. }
  2510. },
  2511. kneeling: {
  2512. height: math.unit(125, "cm"),
  2513. weight: math.unit(80, "kg"),
  2514. name: "Kneeling",
  2515. image: {
  2516. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2517. extra: 1033 / 977,
  2518. bottom: 23.7 / 1057
  2519. }
  2520. },
  2521. maw: {
  2522. height: math.unit(183 / 5, "cm"),
  2523. name: "Maw",
  2524. image: {
  2525. source: "./media/characters/sofia-fluttertail/maw.svg"
  2526. }
  2527. },
  2528. mawcloseup: {
  2529. height: math.unit(183 / 5 * 0.41, "cm"),
  2530. name: "Maw (Closeup)",
  2531. image: {
  2532. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2533. }
  2534. },
  2535. paws: {
  2536. height: math.unit(1.17, "feet"),
  2537. name: "Paws",
  2538. image: {
  2539. source: "./media/characters/sofia-fluttertail/paws.svg",
  2540. extra: 851 / 851,
  2541. bottom: 17 / 868
  2542. }
  2543. },
  2544. },
  2545. [
  2546. {
  2547. name: "Normal",
  2548. height: math.unit(1.83, "meter")
  2549. },
  2550. {
  2551. name: "Size Thief",
  2552. height: math.unit(18, "feet")
  2553. },
  2554. {
  2555. name: "50 Foot Collie",
  2556. height: math.unit(50, "feet")
  2557. },
  2558. {
  2559. name: "Macro",
  2560. height: math.unit(96, "feet"),
  2561. default: true
  2562. },
  2563. {
  2564. name: "Megamerger",
  2565. height: math.unit(650, "feet")
  2566. },
  2567. ]
  2568. ))
  2569. characterMakers.push(() => makeCharacter(
  2570. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2571. {
  2572. front: {
  2573. height: math.unit(7, "feet"),
  2574. weight: math.unit(100, "kg"),
  2575. name: "Front",
  2576. image: {
  2577. source: "./media/characters/march/front.svg",
  2578. extra: 1992/1851,
  2579. bottom: 39/2031
  2580. }
  2581. },
  2582. foot: {
  2583. height: math.unit(0.9, "feet"),
  2584. name: "Foot",
  2585. image: {
  2586. source: "./media/characters/march/foot.svg"
  2587. }
  2588. },
  2589. },
  2590. [
  2591. {
  2592. name: "Normal",
  2593. height: math.unit(7.9, "feet")
  2594. },
  2595. {
  2596. name: "Macro",
  2597. height: math.unit(220, "meters")
  2598. },
  2599. {
  2600. name: "Megamacro",
  2601. height: math.unit(2.98, "km"),
  2602. default: true
  2603. },
  2604. {
  2605. name: "Gigamacro",
  2606. height: math.unit(15963, "km")
  2607. },
  2608. {
  2609. name: "Teramacro",
  2610. height: math.unit(2980000000, "km")
  2611. },
  2612. {
  2613. name: "Examacro",
  2614. height: math.unit(250, "parsecs")
  2615. },
  2616. ]
  2617. ))
  2618. characterMakers.push(() => makeCharacter(
  2619. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2620. {
  2621. front: {
  2622. height: math.unit(6, "feet"),
  2623. weight: math.unit(60, "kg"),
  2624. name: "Front",
  2625. image: {
  2626. source: "./media/characters/noir/front.svg",
  2627. extra: 1,
  2628. bottom: 0.032
  2629. }
  2630. },
  2631. },
  2632. [
  2633. {
  2634. name: "Normal",
  2635. height: math.unit(6.6, "feet")
  2636. },
  2637. {
  2638. name: "Macro",
  2639. height: math.unit(500, "feet")
  2640. },
  2641. {
  2642. name: "Megamacro",
  2643. height: math.unit(2.5, "km"),
  2644. default: true
  2645. },
  2646. {
  2647. name: "Gigamacro",
  2648. height: math.unit(22500, "km")
  2649. },
  2650. {
  2651. name: "Teramacro",
  2652. height: math.unit(2500000000, "km")
  2653. },
  2654. {
  2655. name: "Examacro",
  2656. height: math.unit(200, "parsecs")
  2657. },
  2658. ]
  2659. ))
  2660. characterMakers.push(() => makeCharacter(
  2661. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2662. {
  2663. front: {
  2664. height: math.unit(7, "feet"),
  2665. weight: math.unit(100, "kg"),
  2666. name: "Front",
  2667. image: {
  2668. source: "./media/characters/okuri/front.svg",
  2669. extra: 739/665,
  2670. bottom: 39/778
  2671. }
  2672. },
  2673. back: {
  2674. height: math.unit(7, "feet"),
  2675. weight: math.unit(100, "kg"),
  2676. name: "Back",
  2677. image: {
  2678. source: "./media/characters/okuri/back.svg",
  2679. extra: 734/653,
  2680. bottom: 13/747
  2681. }
  2682. },
  2683. sitting: {
  2684. height: math.unit(2.95, "feet"),
  2685. weight: math.unit(100, "kg"),
  2686. name: "Sitting",
  2687. image: {
  2688. source: "./media/characters/okuri/sitting.svg",
  2689. extra: 370/318,
  2690. bottom: 99/469
  2691. }
  2692. },
  2693. },
  2694. [
  2695. {
  2696. name: "Smallest",
  2697. height: math.unit(5 + 2/12, "feet")
  2698. },
  2699. {
  2700. name: "Smaller",
  2701. height: math.unit(300, "feet")
  2702. },
  2703. {
  2704. name: "Small",
  2705. height: math.unit(1000, "feet")
  2706. },
  2707. {
  2708. name: "Macro",
  2709. height: math.unit(1, "mile")
  2710. },
  2711. {
  2712. name: "Mega Macro (Small)",
  2713. height: math.unit(20, "km")
  2714. },
  2715. {
  2716. name: "Mega Macro (Large)",
  2717. height: math.unit(600, "km")
  2718. },
  2719. {
  2720. name: "Giga Macro",
  2721. height: math.unit(10000, "km")
  2722. },
  2723. {
  2724. name: "Normal",
  2725. height: math.unit(577560, "km"),
  2726. default: true
  2727. },
  2728. {
  2729. name: "Large",
  2730. height: math.unit(4, "galaxies")
  2731. },
  2732. {
  2733. name: "Largest",
  2734. height: math.unit(15, "multiverses")
  2735. },
  2736. ]
  2737. ))
  2738. characterMakers.push(() => makeCharacter(
  2739. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2740. {
  2741. front: {
  2742. height: math.unit(7, "feet"),
  2743. weight: math.unit(100, "kg"),
  2744. name: "Front",
  2745. image: {
  2746. source: "./media/characters/manny/front.svg",
  2747. extra: 1,
  2748. bottom: 0.06
  2749. }
  2750. },
  2751. back: {
  2752. height: math.unit(7, "feet"),
  2753. weight: math.unit(100, "kg"),
  2754. name: "Back",
  2755. image: {
  2756. source: "./media/characters/manny/back.svg",
  2757. extra: 1,
  2758. bottom: 0.014
  2759. }
  2760. },
  2761. },
  2762. [
  2763. {
  2764. name: "Normal",
  2765. height: math.unit(7, "feet"),
  2766. },
  2767. {
  2768. name: "Macro",
  2769. height: math.unit(78, "feet"),
  2770. default: true
  2771. },
  2772. {
  2773. name: "Macro+",
  2774. height: math.unit(300, "meters")
  2775. },
  2776. {
  2777. name: "Macro++",
  2778. height: math.unit(2400, "meters")
  2779. },
  2780. {
  2781. name: "Megamacro",
  2782. height: math.unit(5167, "meters")
  2783. },
  2784. {
  2785. name: "Gigamacro",
  2786. height: math.unit(41769, "miles")
  2787. },
  2788. ]
  2789. ))
  2790. characterMakers.push(() => makeCharacter(
  2791. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2792. {
  2793. front: {
  2794. height: math.unit(7, "feet"),
  2795. weight: math.unit(100, "kg"),
  2796. name: "Front",
  2797. image: {
  2798. source: "./media/characters/adake/front-1.svg"
  2799. }
  2800. },
  2801. frontAlt: {
  2802. height: math.unit(7, "feet"),
  2803. weight: math.unit(100, "kg"),
  2804. name: "Front (Alt)",
  2805. image: {
  2806. source: "./media/characters/adake/front-2.svg",
  2807. extra: 1,
  2808. bottom: 0.01
  2809. }
  2810. },
  2811. back: {
  2812. height: math.unit(7, "feet"),
  2813. weight: math.unit(100, "kg"),
  2814. name: "Back",
  2815. image: {
  2816. source: "./media/characters/adake/back.svg",
  2817. }
  2818. },
  2819. kneel: {
  2820. height: math.unit(5.385, "feet"),
  2821. weight: math.unit(100, "kg"),
  2822. name: "Kneeling",
  2823. image: {
  2824. source: "./media/characters/adake/kneel.svg",
  2825. bottom: 0.052
  2826. }
  2827. },
  2828. },
  2829. [
  2830. {
  2831. name: "Normal",
  2832. height: math.unit(7, "feet"),
  2833. },
  2834. {
  2835. name: "Macro",
  2836. height: math.unit(78, "feet"),
  2837. default: true
  2838. },
  2839. {
  2840. name: "Macro+",
  2841. height: math.unit(300, "meters")
  2842. },
  2843. {
  2844. name: "Macro++",
  2845. height: math.unit(2400, "meters")
  2846. },
  2847. {
  2848. name: "Megamacro",
  2849. height: math.unit(5167, "meters")
  2850. },
  2851. {
  2852. name: "Gigamacro",
  2853. height: math.unit(41769, "miles")
  2854. },
  2855. ]
  2856. ))
  2857. characterMakers.push(() => makeCharacter(
  2858. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2859. {
  2860. front: {
  2861. height: math.unit(1.65, "meters"),
  2862. weight: math.unit(50, "kg"),
  2863. name: "Front",
  2864. image: {
  2865. source: "./media/characters/elijah/front.svg",
  2866. extra: 858 / 830,
  2867. bottom: 95.5 / 953.8559
  2868. }
  2869. },
  2870. back: {
  2871. height: math.unit(1.65, "meters"),
  2872. weight: math.unit(50, "kg"),
  2873. name: "Back",
  2874. image: {
  2875. source: "./media/characters/elijah/back.svg",
  2876. extra: 895 / 850,
  2877. bottom: 5.3 / 897.956
  2878. }
  2879. },
  2880. frontNsfw: {
  2881. height: math.unit(1.65, "meters"),
  2882. weight: math.unit(50, "kg"),
  2883. name: "Front (NSFW)",
  2884. image: {
  2885. source: "./media/characters/elijah/front-nsfw.svg",
  2886. extra: 858 / 830,
  2887. bottom: 95.5 / 953.8559
  2888. }
  2889. },
  2890. backNsfw: {
  2891. height: math.unit(1.65, "meters"),
  2892. weight: math.unit(50, "kg"),
  2893. name: "Back (NSFW)",
  2894. image: {
  2895. source: "./media/characters/elijah/back-nsfw.svg",
  2896. extra: 895 / 850,
  2897. bottom: 5.3 / 897.956
  2898. }
  2899. },
  2900. dick: {
  2901. height: math.unit(1, "feet"),
  2902. name: "Dick",
  2903. image: {
  2904. source: "./media/characters/elijah/dick.svg"
  2905. }
  2906. },
  2907. beakOpen: {
  2908. height: math.unit(1.25, "feet"),
  2909. name: "Beak (Open)",
  2910. image: {
  2911. source: "./media/characters/elijah/beak-open.svg"
  2912. }
  2913. },
  2914. beakShut: {
  2915. height: math.unit(1.25, "feet"),
  2916. name: "Beak (Shut)",
  2917. image: {
  2918. source: "./media/characters/elijah/beak-shut.svg"
  2919. }
  2920. },
  2921. footFlexing: {
  2922. height: math.unit(1.61, "feet"),
  2923. name: "Foot (Flexing)",
  2924. image: {
  2925. source: "./media/characters/elijah/foot-flexing.svg"
  2926. }
  2927. },
  2928. footStepping: {
  2929. height: math.unit(1.44, "feet"),
  2930. name: "Foot (Stepping)",
  2931. image: {
  2932. source: "./media/characters/elijah/foot-stepping.svg"
  2933. }
  2934. },
  2935. plantigradeLeg: {
  2936. height: math.unit(2.34, "feet"),
  2937. name: "Plantigrade Leg",
  2938. image: {
  2939. source: "./media/characters/elijah/plantigrade-leg.svg"
  2940. }
  2941. },
  2942. plantigradeFootLeft: {
  2943. height: math.unit(0.9, "feet"),
  2944. name: "Plantigrade Foot (Left)",
  2945. image: {
  2946. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2947. }
  2948. },
  2949. plantigradeFootRight: {
  2950. height: math.unit(0.9, "feet"),
  2951. name: "Plantigrade Foot (Right)",
  2952. image: {
  2953. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2954. }
  2955. },
  2956. },
  2957. [
  2958. {
  2959. name: "Normal",
  2960. height: math.unit(1.65, "meters")
  2961. },
  2962. {
  2963. name: "Macro",
  2964. height: math.unit(55, "meters"),
  2965. default: true
  2966. },
  2967. {
  2968. name: "Macro+",
  2969. height: math.unit(105, "meters")
  2970. },
  2971. ]
  2972. ))
  2973. characterMakers.push(() => makeCharacter(
  2974. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2975. {
  2976. front: {
  2977. height: math.unit(7 + 2/12, "feet"),
  2978. weight: math.unit(320, "kg"),
  2979. preyCapacity: math.unit(0.276549935, "people"),
  2980. name: "Front",
  2981. image: {
  2982. source: "./media/characters/rai/front.svg",
  2983. extra: 1802/1696,
  2984. bottom: 68/1870
  2985. },
  2986. form: "anthro",
  2987. default: true
  2988. },
  2989. frontDressed: {
  2990. height: math.unit(7 + 2/12, "feet"),
  2991. weight: math.unit(320, "kg"),
  2992. preyCapacity: math.unit(0.276549935, "people"),
  2993. name: "Front (Dressed)",
  2994. image: {
  2995. source: "./media/characters/rai/front-dressed.svg",
  2996. extra: 1802/1696,
  2997. bottom: 68/1870
  2998. },
  2999. form: "anthro"
  3000. },
  3001. side: {
  3002. height: math.unit(7 + 2/12, "feet"),
  3003. weight: math.unit(320, "kg"),
  3004. preyCapacity: math.unit(0.276549935, "people"),
  3005. name: "Side",
  3006. image: {
  3007. source: "./media/characters/rai/side.svg",
  3008. extra: 1789/1710,
  3009. bottom: 115/1904
  3010. },
  3011. form: "anthro"
  3012. },
  3013. back: {
  3014. height: math.unit(7 + 2/12, "feet"),
  3015. weight: math.unit(320, "kg"),
  3016. preyCapacity: math.unit(0.276549935, "people"),
  3017. name: "Back",
  3018. image: {
  3019. source: "./media/characters/rai/back.svg",
  3020. extra: 1770/1707,
  3021. bottom: 28/1798
  3022. },
  3023. form: "anthro"
  3024. },
  3025. feral: {
  3026. height: math.unit(9.5, "feet"),
  3027. weight: math.unit(640, "kg"),
  3028. preyCapacity: math.unit(4, "people"),
  3029. name: "Feral",
  3030. image: {
  3031. source: "./media/characters/rai/feral.svg",
  3032. extra: 945/553,
  3033. bottom: 176/1121
  3034. },
  3035. form: "feral",
  3036. default: true
  3037. },
  3038. dragon: {
  3039. height: math.unit(23, "feet"),
  3040. weight: math.unit(50000, "lb"),
  3041. name: "Dragon",
  3042. image: {
  3043. source: "./media/characters/rai/dragon.svg",
  3044. extra: 2498 / 2030,
  3045. bottom: 85.2 / 2584
  3046. },
  3047. form: "dragon",
  3048. default: true
  3049. },
  3050. maw: {
  3051. height: math.unit(1.69, "feet"),
  3052. name: "Maw",
  3053. image: {
  3054. source: "./media/characters/rai/maw.svg"
  3055. },
  3056. form: "anthro"
  3057. },
  3058. },
  3059. [
  3060. {
  3061. name: "Normal",
  3062. height: math.unit(7 + 2/12, "feet"),
  3063. form: "anthro"
  3064. },
  3065. {
  3066. name: "Big",
  3067. height: math.unit(11, "feet"),
  3068. form: "anthro"
  3069. },
  3070. {
  3071. name: "Minimacro",
  3072. height: math.unit(77, "feet"),
  3073. form: "anthro"
  3074. },
  3075. {
  3076. name: "Macro",
  3077. height: math.unit(302, "feet"),
  3078. default: true,
  3079. form: "anthro"
  3080. },
  3081. {
  3082. name: "Normal",
  3083. height: math.unit(9.5, "feet"),
  3084. form: "feral",
  3085. default: true
  3086. },
  3087. {
  3088. name: "Normal",
  3089. height: math.unit(23, "feet"),
  3090. form: "dragon",
  3091. default: true
  3092. }
  3093. ],
  3094. {
  3095. "anthro": {
  3096. name: "Anthro",
  3097. default: true
  3098. },
  3099. "feral": {
  3100. name: "Feral",
  3101. },
  3102. "dragon": {
  3103. name: "Dragon",
  3104. },
  3105. }
  3106. ))
  3107. characterMakers.push(() => makeCharacter(
  3108. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3109. {
  3110. frontDressed: {
  3111. height: math.unit(216, "feet"),
  3112. weight: math.unit(7000000, "lb"),
  3113. preyCapacity: math.unit(1321, "people"),
  3114. name: "Front (Dressed)",
  3115. image: {
  3116. source: "./media/characters/jazzy/front-dressed.svg",
  3117. extra: 2738 / 2651,
  3118. bottom: 41.8 / 2786
  3119. }
  3120. },
  3121. backDressed: {
  3122. height: math.unit(216, "feet"),
  3123. weight: math.unit(7000000, "lb"),
  3124. preyCapacity: math.unit(1321, "people"),
  3125. name: "Back (Dressed)",
  3126. image: {
  3127. source: "./media/characters/jazzy/back-dressed.svg",
  3128. extra: 2775 / 2673,
  3129. bottom: 36.8 / 2817
  3130. }
  3131. },
  3132. front: {
  3133. height: math.unit(216, "feet"),
  3134. weight: math.unit(7000000, "lb"),
  3135. preyCapacity: math.unit(1321, "people"),
  3136. name: "Front",
  3137. image: {
  3138. source: "./media/characters/jazzy/front.svg",
  3139. extra: 2738 / 2651,
  3140. bottom: 41.8 / 2786
  3141. }
  3142. },
  3143. back: {
  3144. height: math.unit(216, "feet"),
  3145. weight: math.unit(7000000, "lb"),
  3146. preyCapacity: math.unit(1321, "people"),
  3147. name: "Back",
  3148. image: {
  3149. source: "./media/characters/jazzy/back.svg",
  3150. extra: 2775 / 2673,
  3151. bottom: 36.8 / 2817
  3152. }
  3153. },
  3154. maw: {
  3155. height: math.unit(20, "feet"),
  3156. name: "Maw",
  3157. image: {
  3158. source: "./media/characters/jazzy/maw.svg"
  3159. }
  3160. },
  3161. paws: {
  3162. height: math.unit(27.5, "feet"),
  3163. name: "Paws",
  3164. image: {
  3165. source: "./media/characters/jazzy/paws.svg"
  3166. }
  3167. },
  3168. eye: {
  3169. height: math.unit(4.4, "feet"),
  3170. name: "Eye",
  3171. image: {
  3172. source: "./media/characters/jazzy/eye.svg"
  3173. }
  3174. },
  3175. droneOffense: {
  3176. height: math.unit(9.5, "inches"),
  3177. name: "Drone (Offense)",
  3178. image: {
  3179. source: "./media/characters/jazzy/drone-offense.svg"
  3180. }
  3181. },
  3182. droneRecon: {
  3183. height: math.unit(9.5, "inches"),
  3184. name: "Drone (Recon)",
  3185. image: {
  3186. source: "./media/characters/jazzy/drone-recon.svg"
  3187. }
  3188. },
  3189. droneDefense: {
  3190. height: math.unit(9.5, "inches"),
  3191. name: "Drone (Defense)",
  3192. image: {
  3193. source: "./media/characters/jazzy/drone-defense.svg"
  3194. }
  3195. },
  3196. },
  3197. [
  3198. {
  3199. name: "Macro",
  3200. height: math.unit(216, "feet"),
  3201. default: true
  3202. },
  3203. ]
  3204. ))
  3205. characterMakers.push(() => makeCharacter(
  3206. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3207. {
  3208. front: {
  3209. height: math.unit(9 + 6/12, "feet"),
  3210. weight: math.unit(700, "lb"),
  3211. name: "Front",
  3212. image: {
  3213. source: "./media/characters/flamm/front.svg",
  3214. extra: 1736/1596,
  3215. bottom: 93/1829
  3216. }
  3217. },
  3218. buff: {
  3219. height: math.unit(9 + 6/12, "feet"),
  3220. weight: math.unit(950, "lb"),
  3221. name: "Buff",
  3222. image: {
  3223. source: "./media/characters/flamm/buff.svg",
  3224. extra: 3018/2874,
  3225. bottom: 221/3239
  3226. }
  3227. },
  3228. },
  3229. [
  3230. {
  3231. name: "Normal",
  3232. height: math.unit(9.5, "feet")
  3233. },
  3234. {
  3235. name: "Macro",
  3236. height: math.unit(200, "feet"),
  3237. default: true
  3238. },
  3239. ]
  3240. ))
  3241. characterMakers.push(() => makeCharacter(
  3242. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3243. {
  3244. front: {
  3245. height: math.unit(5 + 3/12, "feet"),
  3246. weight: math.unit(60, "kg"),
  3247. name: "Front",
  3248. image: {
  3249. source: "./media/characters/zephiro/front.svg",
  3250. extra: 1873/1761,
  3251. bottom: 147/2020
  3252. }
  3253. },
  3254. side: {
  3255. height: math.unit(5 + 3/12, "feet"),
  3256. weight: math.unit(60, "kg"),
  3257. name: "Side",
  3258. image: {
  3259. source: "./media/characters/zephiro/side.svg",
  3260. extra: 1929/1827,
  3261. bottom: 65/1994
  3262. }
  3263. },
  3264. back: {
  3265. height: math.unit(5 + 3/12, "feet"),
  3266. weight: math.unit(60, "kg"),
  3267. name: "Back",
  3268. image: {
  3269. source: "./media/characters/zephiro/back.svg",
  3270. extra: 1926/1816,
  3271. bottom: 41/1967
  3272. }
  3273. },
  3274. hand: {
  3275. height: math.unit(0.68, "feet"),
  3276. name: "Hand",
  3277. image: {
  3278. source: "./media/characters/zephiro/hand.svg"
  3279. }
  3280. },
  3281. paw: {
  3282. height: math.unit(1, "feet"),
  3283. name: "Paw",
  3284. image: {
  3285. source: "./media/characters/zephiro/paw.svg"
  3286. }
  3287. },
  3288. beans: {
  3289. height: math.unit(0.93, "feet"),
  3290. name: "Beans",
  3291. image: {
  3292. source: "./media/characters/zephiro/beans.svg"
  3293. }
  3294. },
  3295. },
  3296. [
  3297. {
  3298. name: "Micro",
  3299. height: math.unit(3, "inches")
  3300. },
  3301. {
  3302. name: "Normal",
  3303. height: math.unit(5 + 3 / 12, "feet"),
  3304. default: true
  3305. },
  3306. {
  3307. name: "Macro",
  3308. height: math.unit(118, "feet")
  3309. },
  3310. ]
  3311. ))
  3312. characterMakers.push(() => makeCharacter(
  3313. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3314. {
  3315. front: {
  3316. height: math.unit(5, "feet"),
  3317. weight: math.unit(90, "kg"),
  3318. preyCapacity: math.unit(14, "people"),
  3319. name: "Front",
  3320. image: {
  3321. source: "./media/characters/fory/front.svg",
  3322. extra: 2862 / 2674,
  3323. bottom: 180 / 3043.8
  3324. },
  3325. form: "weaselbun",
  3326. default: true,
  3327. extraAttributes: {
  3328. "pawSize": {
  3329. name: "Paw Size",
  3330. power: 2,
  3331. type: "area",
  3332. base: math.unit(0.1596, "m^2")
  3333. },
  3334. "pawLength": {
  3335. name: "Paw Length",
  3336. power: 1,
  3337. type: "length",
  3338. base: math.unit(0.7, "m")
  3339. }
  3340. }
  3341. },
  3342. back: {
  3343. height: math.unit(5, "feet"),
  3344. weight: math.unit(90, "kg"),
  3345. preyCapacity: math.unit(14, "people"),
  3346. name: "Back",
  3347. image: {
  3348. source: "./media/characters/fory/back.svg",
  3349. extra: 1790/1672,
  3350. bottom: 84/1874
  3351. },
  3352. form: "weaselbun",
  3353. extraAttributes: {
  3354. "pawSize": {
  3355. name: "Paw Size",
  3356. power: 2,
  3357. type: "area",
  3358. base: math.unit(0.1596, "m^2")
  3359. },
  3360. "pawLength": {
  3361. name: "Paw Length",
  3362. power: 1,
  3363. type: "length",
  3364. base: math.unit(0.7, "m")
  3365. }
  3366. }
  3367. },
  3368. paw: {
  3369. height: math.unit(2.14, "feet"),
  3370. name: "Paw",
  3371. image: {
  3372. source: "./media/characters/fory/paw.svg"
  3373. },
  3374. form: "weaselbun",
  3375. extraAttributes: {
  3376. "pawSize": {
  3377. name: "Paw Size",
  3378. power: 2,
  3379. type: "area",
  3380. base: math.unit(0.1596, "m^2")
  3381. },
  3382. "pawLength": {
  3383. name: "Paw Length",
  3384. power: 1,
  3385. type: "length",
  3386. base: math.unit(0.48, "m")
  3387. }
  3388. }
  3389. },
  3390. bunBack: {
  3391. height: math.unit(3, "feet"),
  3392. weight: math.unit(20, "kg"),
  3393. preyCapacity: math.unit(3, "people"),
  3394. name: "Back",
  3395. image: {
  3396. source: "./media/characters/fory/bun-back.svg",
  3397. extra: 1749/1564,
  3398. bottom: 246/1995
  3399. },
  3400. form: "bun",
  3401. default: true,
  3402. extraAttributes: {
  3403. "pawSize": {
  3404. name: "Paw Size",
  3405. power: 2,
  3406. type: "area",
  3407. base: math.unit(0.072, "m^2")
  3408. },
  3409. "pawLength": {
  3410. name: "Paw Length",
  3411. power: 1,
  3412. type: "length",
  3413. base: math.unit(0.45, "m")
  3414. }
  3415. }
  3416. },
  3417. },
  3418. [
  3419. {
  3420. name: "Normal",
  3421. height: math.unit(5, "feet"),
  3422. form: "weaselbun"
  3423. },
  3424. {
  3425. name: "Macro",
  3426. height: math.unit(50, "feet"),
  3427. default: true,
  3428. form: "weaselbun"
  3429. },
  3430. {
  3431. name: "Megamacro",
  3432. height: math.unit(10, "miles"),
  3433. form: "weaselbun"
  3434. },
  3435. {
  3436. name: "Gigamacro",
  3437. height: math.unit(5, "earths"),
  3438. form: "weaselbun"
  3439. },
  3440. {
  3441. name: "Normal",
  3442. height: math.unit(3, "feet"),
  3443. default: true,
  3444. form: "bun"
  3445. },
  3446. {
  3447. name: "Fun-Size",
  3448. height: math.unit(12, "feet"),
  3449. form: "bun"
  3450. },
  3451. {
  3452. name: "Macro",
  3453. height: math.unit(100, "feet"),
  3454. form: "bun"
  3455. },
  3456. {
  3457. name: "Planetary",
  3458. height: math.unit(3, "earths"),
  3459. form: "bun"
  3460. },
  3461. ],
  3462. {
  3463. "weaselbun": {
  3464. name: "Weaselbun",
  3465. default: true
  3466. },
  3467. "bun": {
  3468. name: "Bun",
  3469. },
  3470. }
  3471. ))
  3472. characterMakers.push(() => makeCharacter(
  3473. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3474. {
  3475. front: {
  3476. height: math.unit(7, "feet"),
  3477. weight: math.unit(90, "kg"),
  3478. name: "Front",
  3479. image: {
  3480. source: "./media/characters/kurrikage/front.svg",
  3481. extra: 1845/1733,
  3482. bottom: 119/1964
  3483. }
  3484. },
  3485. back: {
  3486. height: math.unit(7, "feet"),
  3487. weight: math.unit(90, "kg"),
  3488. name: "Back",
  3489. image: {
  3490. source: "./media/characters/kurrikage/back.svg",
  3491. extra: 1790/1677,
  3492. bottom: 61/1851
  3493. }
  3494. },
  3495. dressed: {
  3496. height: math.unit(7, "feet"),
  3497. weight: math.unit(90, "kg"),
  3498. name: "Dressed",
  3499. image: {
  3500. source: "./media/characters/kurrikage/dressed.svg",
  3501. extra: 1845/1733,
  3502. bottom: 119/1964
  3503. }
  3504. },
  3505. foot: {
  3506. height: math.unit(1.5, "feet"),
  3507. name: "Foot",
  3508. image: {
  3509. source: "./media/characters/kurrikage/foot.svg"
  3510. }
  3511. },
  3512. staff: {
  3513. height: math.unit(6.7, "feet"),
  3514. name: "Staff",
  3515. image: {
  3516. source: "./media/characters/kurrikage/staff.svg"
  3517. }
  3518. },
  3519. peek: {
  3520. height: math.unit(1.05, "feet"),
  3521. name: "Peeking",
  3522. image: {
  3523. source: "./media/characters/kurrikage/peek.svg",
  3524. bottom: 0.08
  3525. }
  3526. },
  3527. },
  3528. [
  3529. {
  3530. name: "Normal",
  3531. height: math.unit(12, "feet"),
  3532. default: true
  3533. },
  3534. {
  3535. name: "Big",
  3536. height: math.unit(20, "feet")
  3537. },
  3538. {
  3539. name: "Macro",
  3540. height: math.unit(500, "feet")
  3541. },
  3542. {
  3543. name: "Megamacro",
  3544. height: math.unit(20, "miles")
  3545. },
  3546. ]
  3547. ))
  3548. characterMakers.push(() => makeCharacter(
  3549. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3550. {
  3551. front: {
  3552. height: math.unit(6, "feet"),
  3553. weight: math.unit(75, "kg"),
  3554. name: "Front",
  3555. image: {
  3556. source: "./media/characters/shingo/front.svg",
  3557. extra: 1900/1825,
  3558. bottom: 82/1982
  3559. }
  3560. },
  3561. side: {
  3562. height: math.unit(6, "feet"),
  3563. weight: math.unit(75, "kg"),
  3564. name: "Side",
  3565. image: {
  3566. source: "./media/characters/shingo/side.svg",
  3567. extra: 1930/1865,
  3568. bottom: 16/1946
  3569. }
  3570. },
  3571. back: {
  3572. height: math.unit(6, "feet"),
  3573. weight: math.unit(75, "kg"),
  3574. name: "Back",
  3575. image: {
  3576. source: "./media/characters/shingo/back.svg",
  3577. extra: 1922/1852,
  3578. bottom: 16/1938
  3579. }
  3580. },
  3581. frontDressed: {
  3582. height: math.unit(6, "feet"),
  3583. weight: math.unit(150, "lb"),
  3584. name: "Front-dressed",
  3585. image: {
  3586. source: "./media/characters/shingo/front-dressed.svg",
  3587. extra: 1900/1825,
  3588. bottom: 82/1982
  3589. }
  3590. },
  3591. paw: {
  3592. height: math.unit(1.29, "feet"),
  3593. name: "Paw",
  3594. image: {
  3595. source: "./media/characters/shingo/paw.svg"
  3596. }
  3597. },
  3598. hand: {
  3599. height: math.unit(1.07, "feet"),
  3600. name: "Hand",
  3601. image: {
  3602. source: "./media/characters/shingo/hand.svg"
  3603. }
  3604. },
  3605. frontAlt: {
  3606. height: math.unit(6, "feet"),
  3607. weight: math.unit(75, "kg"),
  3608. name: "Front (Alt)",
  3609. image: {
  3610. source: "./media/characters/shingo/front-alt.svg",
  3611. extra: 3511 / 3338,
  3612. bottom: 0.005
  3613. }
  3614. },
  3615. frontAlt2: {
  3616. height: math.unit(6, "feet"),
  3617. weight: math.unit(75, "kg"),
  3618. name: "Front (Alt 2)",
  3619. image: {
  3620. source: "./media/characters/shingo/front-alt-2.svg",
  3621. extra: 706/681,
  3622. bottom: 11/717
  3623. }
  3624. },
  3625. pawAlt: {
  3626. height: math.unit(1, "feet"),
  3627. name: "Paw (Alt)",
  3628. image: {
  3629. source: "./media/characters/shingo/paw-alt.svg"
  3630. }
  3631. },
  3632. },
  3633. [
  3634. {
  3635. name: "Micro",
  3636. height: math.unit(4, "inches")
  3637. },
  3638. {
  3639. name: "Normal",
  3640. height: math.unit(6, "feet"),
  3641. default: true
  3642. },
  3643. {
  3644. name: "Macro",
  3645. height: math.unit(108, "feet")
  3646. },
  3647. {
  3648. name: "Macro+",
  3649. height: math.unit(1500, "feet")
  3650. },
  3651. ]
  3652. ))
  3653. characterMakers.push(() => makeCharacter(
  3654. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3655. {
  3656. side: {
  3657. height: math.unit(6, "feet"),
  3658. weight: math.unit(75, "kg"),
  3659. name: "Side",
  3660. image: {
  3661. source: "./media/characters/aigey/side.svg"
  3662. }
  3663. },
  3664. },
  3665. [
  3666. {
  3667. name: "Macro",
  3668. height: math.unit(200, "feet"),
  3669. default: true
  3670. },
  3671. {
  3672. name: "Megamacro",
  3673. height: math.unit(100, "miles")
  3674. },
  3675. ]
  3676. )
  3677. )
  3678. characterMakers.push(() => makeCharacter(
  3679. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3680. {
  3681. front: {
  3682. height: math.unit(5 + 5 / 12, "feet"),
  3683. weight: math.unit(75, "kg"),
  3684. name: "Front",
  3685. image: {
  3686. source: "./media/characters/natasha/front.svg",
  3687. extra: 859 / 824,
  3688. bottom: 23 / 879.6
  3689. }
  3690. },
  3691. frontNsfw: {
  3692. height: math.unit(5 + 5 / 12, "feet"),
  3693. weight: math.unit(75, "kg"),
  3694. name: "Front (NSFW)",
  3695. image: {
  3696. source: "./media/characters/natasha/front-nsfw.svg",
  3697. extra: 859 / 824,
  3698. bottom: 23 / 879.6
  3699. }
  3700. },
  3701. frontErect: {
  3702. height: math.unit(5 + 5 / 12, "feet"),
  3703. weight: math.unit(75, "kg"),
  3704. name: "Front (Erect)",
  3705. image: {
  3706. source: "./media/characters/natasha/front-erect.svg",
  3707. extra: 859 / 824,
  3708. bottom: 23 / 879.6
  3709. }
  3710. },
  3711. back: {
  3712. height: math.unit(5 + 5 / 12, "feet"),
  3713. weight: math.unit(75, "kg"),
  3714. name: "Back",
  3715. image: {
  3716. source: "./media/characters/natasha/back.svg",
  3717. extra: 887.9 / 852.6,
  3718. bottom: 9.7 / 896.4
  3719. }
  3720. },
  3721. backAlt: {
  3722. height: math.unit(5 + 5 / 12, "feet"),
  3723. weight: math.unit(75, "kg"),
  3724. name: "Back (Alt)",
  3725. image: {
  3726. source: "./media/characters/natasha/back-alt.svg",
  3727. extra: 1236.7 / 1192,
  3728. bottom: 22.3 / 1258.2
  3729. }
  3730. },
  3731. dick: {
  3732. height: math.unit(1.772, "feet"),
  3733. name: "Dick",
  3734. image: {
  3735. source: "./media/characters/natasha/dick.svg"
  3736. }
  3737. },
  3738. paw: {
  3739. height: math.unit(0.250, "meters"),
  3740. name: "Paw",
  3741. image: {
  3742. source: "./media/characters/natasha/paw.svg"
  3743. },
  3744. extraAttributes: {
  3745. "toeSize": {
  3746. name: "Toe Size",
  3747. power: 2,
  3748. type: "area",
  3749. base: math.unit(0.0024, "m^2")
  3750. },
  3751. "padSize": {
  3752. name: "Pad Size",
  3753. power: 2,
  3754. type: "area",
  3755. base: math.unit(0.00889, "m^2")
  3756. },
  3757. "pawSize": {
  3758. name: "Paw Size",
  3759. power: 2,
  3760. type: "area",
  3761. base: math.unit(0.023667, "m^2")
  3762. },
  3763. }
  3764. },
  3765. },
  3766. [
  3767. {
  3768. name: "Shortstack",
  3769. height: math.unit(3, "feet"),
  3770. default: true
  3771. },
  3772. {
  3773. name: "Normal",
  3774. height: math.unit(5 + 5 / 12, "feet")
  3775. },
  3776. {
  3777. name: "Large",
  3778. height: math.unit(12, "feet")
  3779. },
  3780. {
  3781. name: "Macro",
  3782. height: math.unit(100, "feet")
  3783. },
  3784. {
  3785. name: "Macro+",
  3786. height: math.unit(260, "feet")
  3787. },
  3788. {
  3789. name: "Macro++",
  3790. height: math.unit(1, "mile")
  3791. },
  3792. ]
  3793. ))
  3794. characterMakers.push(() => makeCharacter(
  3795. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3796. {
  3797. front: {
  3798. height: math.unit(6, "feet"),
  3799. weight: math.unit(75, "kg"),
  3800. name: "Front",
  3801. image: {
  3802. source: "./media/characters/malik/front.svg",
  3803. extra: 1750/1561,
  3804. bottom: 80/1830
  3805. },
  3806. extraAttributes: {
  3807. "toeSize": {
  3808. name: "Toe Size",
  3809. power: 2,
  3810. type: "area",
  3811. base: math.unit(0.0159, "m^2")
  3812. },
  3813. "pawSize": {
  3814. name: "Paw Size",
  3815. power: 2,
  3816. type: "area",
  3817. base: math.unit(0.09834, "m^2")
  3818. },
  3819. }
  3820. },
  3821. side: {
  3822. height: math.unit(6, "feet"),
  3823. weight: math.unit(75, "kg"),
  3824. name: "Side",
  3825. image: {
  3826. source: "./media/characters/malik/side.svg",
  3827. extra: 1802/1685,
  3828. bottom: 42/1844
  3829. },
  3830. extraAttributes: {
  3831. "toeSize": {
  3832. name: "Toe Size",
  3833. power: 2,
  3834. type: "area",
  3835. base: math.unit(0.0159, "m^2")
  3836. },
  3837. "pawSize": {
  3838. name: "Paw Size",
  3839. power: 2,
  3840. type: "area",
  3841. base: math.unit(0.09834, "m^2")
  3842. },
  3843. }
  3844. },
  3845. back: {
  3846. height: math.unit(6, "feet"),
  3847. weight: math.unit(75, "kg"),
  3848. name: "Back",
  3849. image: {
  3850. source: "./media/characters/malik/back.svg",
  3851. extra: 1803/1607,
  3852. bottom: 33/1836
  3853. },
  3854. extraAttributes: {
  3855. "toeSize": {
  3856. name: "Toe Size",
  3857. power: 2,
  3858. type: "area",
  3859. base: math.unit(0.0159, "m^2")
  3860. },
  3861. "pawSize": {
  3862. name: "Paw Size",
  3863. power: 2,
  3864. type: "area",
  3865. base: math.unit(0.09834, "m^2")
  3866. },
  3867. }
  3868. },
  3869. },
  3870. [
  3871. {
  3872. name: "Macro",
  3873. height: math.unit(156, "feet"),
  3874. default: true
  3875. },
  3876. {
  3877. name: "Macro+",
  3878. height: math.unit(1188, "feet")
  3879. },
  3880. ]
  3881. ))
  3882. characterMakers.push(() => makeCharacter(
  3883. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3884. {
  3885. front: {
  3886. height: math.unit(6, "feet"),
  3887. weight: math.unit(75, "kg"),
  3888. name: "Front",
  3889. image: {
  3890. source: "./media/characters/sefer/front.svg",
  3891. extra: 848 / 659,
  3892. bottom: 28.3 / 876.442
  3893. }
  3894. },
  3895. back: {
  3896. height: math.unit(6, "feet"),
  3897. weight: math.unit(75, "kg"),
  3898. name: "Back",
  3899. image: {
  3900. source: "./media/characters/sefer/back.svg",
  3901. extra: 864 / 695,
  3902. bottom: 10 / 871
  3903. }
  3904. },
  3905. frontDressed: {
  3906. height: math.unit(6, "feet"),
  3907. weight: math.unit(75, "kg"),
  3908. name: "Dressed",
  3909. image: {
  3910. source: "./media/characters/sefer/dressed.svg",
  3911. extra: 839 / 653,
  3912. bottom: 37.6 / 878
  3913. }
  3914. },
  3915. },
  3916. [
  3917. {
  3918. name: "Normal",
  3919. height: math.unit(6, "feet"),
  3920. default: true
  3921. },
  3922. {
  3923. name: "Big",
  3924. height: math.unit(8, "meters")
  3925. },
  3926. ]
  3927. ))
  3928. characterMakers.push(() => makeCharacter(
  3929. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3930. {
  3931. body: {
  3932. height: math.unit(2.2428, "meter"),
  3933. weight: math.unit(124.738, "kg"),
  3934. name: "Body",
  3935. image: {
  3936. extra: 1225 / 1050,
  3937. source: "./media/characters/north/front.svg"
  3938. }
  3939. }
  3940. },
  3941. [
  3942. {
  3943. name: "Micro",
  3944. height: math.unit(4, "inches")
  3945. },
  3946. {
  3947. name: "Macro",
  3948. height: math.unit(63, "meters")
  3949. },
  3950. {
  3951. name: "Megamacro",
  3952. height: math.unit(101, "miles"),
  3953. default: true
  3954. }
  3955. ]
  3956. ))
  3957. characterMakers.push(() => makeCharacter(
  3958. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3959. {
  3960. angled: {
  3961. height: math.unit(4, "meter"),
  3962. weight: math.unit(150, "kg"),
  3963. name: "Angled",
  3964. image: {
  3965. source: "./media/characters/talan/angled-sfw.svg",
  3966. bottom: 29 / 3734
  3967. }
  3968. },
  3969. angledNsfw: {
  3970. height: math.unit(4, "meter"),
  3971. weight: math.unit(150, "kg"),
  3972. name: "Angled (NSFW)",
  3973. image: {
  3974. source: "./media/characters/talan/angled-nsfw.svg",
  3975. bottom: 29 / 3734
  3976. }
  3977. },
  3978. frontNsfw: {
  3979. height: math.unit(4, "meter"),
  3980. weight: math.unit(150, "kg"),
  3981. name: "Front (NSFW)",
  3982. image: {
  3983. source: "./media/characters/talan/front-nsfw.svg",
  3984. bottom: 29 / 3734
  3985. }
  3986. },
  3987. sideNsfw: {
  3988. height: math.unit(4, "meter"),
  3989. weight: math.unit(150, "kg"),
  3990. name: "Side (NSFW)",
  3991. image: {
  3992. source: "./media/characters/talan/side-nsfw.svg",
  3993. bottom: 29 / 3734
  3994. }
  3995. },
  3996. back: {
  3997. height: math.unit(4, "meter"),
  3998. weight: math.unit(150, "kg"),
  3999. name: "Back",
  4000. image: {
  4001. source: "./media/characters/talan/back.svg"
  4002. }
  4003. },
  4004. dickBottom: {
  4005. height: math.unit(0.621, "meter"),
  4006. name: "Dick (Bottom)",
  4007. image: {
  4008. source: "./media/characters/talan/dick-bottom.svg"
  4009. }
  4010. },
  4011. dickTop: {
  4012. height: math.unit(0.621, "meter"),
  4013. name: "Dick (Top)",
  4014. image: {
  4015. source: "./media/characters/talan/dick-top.svg"
  4016. }
  4017. },
  4018. dickSide: {
  4019. height: math.unit(0.305, "meter"),
  4020. name: "Dick (Side)",
  4021. image: {
  4022. source: "./media/characters/talan/dick-side.svg"
  4023. }
  4024. },
  4025. dickFront: {
  4026. height: math.unit(0.305, "meter"),
  4027. name: "Dick (Front)",
  4028. image: {
  4029. source: "./media/characters/talan/dick-front.svg"
  4030. }
  4031. },
  4032. },
  4033. [
  4034. {
  4035. name: "Normal",
  4036. height: math.unit(4, "meters")
  4037. },
  4038. {
  4039. name: "Macro",
  4040. height: math.unit(100, "meters")
  4041. },
  4042. {
  4043. name: "Megamacro",
  4044. height: math.unit(2, "miles"),
  4045. default: true
  4046. },
  4047. {
  4048. name: "Gigamacro",
  4049. height: math.unit(5000, "miles")
  4050. },
  4051. {
  4052. name: "Teramacro",
  4053. height: math.unit(100, "parsecs")
  4054. }
  4055. ]
  4056. ))
  4057. characterMakers.push(() => makeCharacter(
  4058. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4059. {
  4060. front: {
  4061. height: math.unit(2, "meter"),
  4062. weight: math.unit(90, "kg"),
  4063. name: "Front",
  4064. image: {
  4065. source: "./media/characters/gael'rathus/front.svg"
  4066. }
  4067. },
  4068. frontAlt: {
  4069. height: math.unit(2, "meter"),
  4070. weight: math.unit(90, "kg"),
  4071. name: "Front (alt)",
  4072. image: {
  4073. source: "./media/characters/gael'rathus/front-alt.svg"
  4074. }
  4075. },
  4076. frontAlt2: {
  4077. height: math.unit(2, "meter"),
  4078. weight: math.unit(90, "kg"),
  4079. name: "Front (alt 2)",
  4080. image: {
  4081. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4082. }
  4083. }
  4084. },
  4085. [
  4086. {
  4087. name: "Normal",
  4088. height: math.unit(9, "feet"),
  4089. default: true
  4090. },
  4091. {
  4092. name: "Large",
  4093. height: math.unit(25, "feet")
  4094. },
  4095. {
  4096. name: "Macro",
  4097. height: math.unit(0.25, "miles")
  4098. },
  4099. {
  4100. name: "Megamacro",
  4101. height: math.unit(10, "miles")
  4102. }
  4103. ]
  4104. ))
  4105. characterMakers.push(() => makeCharacter(
  4106. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4107. {
  4108. side: {
  4109. height: math.unit(2, "meter"),
  4110. weight: math.unit(140, "kg"),
  4111. name: "Side",
  4112. image: {
  4113. source: "./media/characters/sosha/side.svg",
  4114. extra: 1170/1006,
  4115. bottom: 94/1264
  4116. }
  4117. },
  4118. maw: {
  4119. height: math.unit(2.87, "feet"),
  4120. name: "Maw",
  4121. image: {
  4122. source: "./media/characters/sosha/maw.svg",
  4123. extra: 966/865,
  4124. bottom: 0/966
  4125. }
  4126. },
  4127. cooch: {
  4128. height: math.unit(5.6, "feet"),
  4129. name: "Cooch",
  4130. image: {
  4131. source: "./media/characters/sosha/cooch.svg"
  4132. }
  4133. },
  4134. },
  4135. [
  4136. {
  4137. name: "Normal",
  4138. height: math.unit(12, "feet"),
  4139. default: true
  4140. }
  4141. ]
  4142. ))
  4143. characterMakers.push(() => makeCharacter(
  4144. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4145. {
  4146. side: {
  4147. height: math.unit(5 + 5 / 12, "feet"),
  4148. weight: math.unit(170, "kg"),
  4149. name: "Side",
  4150. image: {
  4151. source: "./media/characters/runnola/side.svg",
  4152. extra: 741 / 448,
  4153. bottom: 0.05
  4154. }
  4155. },
  4156. },
  4157. [
  4158. {
  4159. name: "Small",
  4160. height: math.unit(3, "feet")
  4161. },
  4162. {
  4163. name: "Normal",
  4164. height: math.unit(5 + 5 / 12, "feet"),
  4165. default: true
  4166. },
  4167. {
  4168. name: "Big",
  4169. height: math.unit(10, "feet")
  4170. },
  4171. ]
  4172. ))
  4173. characterMakers.push(() => makeCharacter(
  4174. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4175. {
  4176. front: {
  4177. height: math.unit(2, "meter"),
  4178. weight: math.unit(50, "kg"),
  4179. name: "Front",
  4180. image: {
  4181. source: "./media/characters/kurribird/front.svg",
  4182. bottom: 0.015
  4183. }
  4184. },
  4185. frontAlt: {
  4186. height: math.unit(1.5, "meter"),
  4187. weight: math.unit(50, "kg"),
  4188. name: "Front (Alt)",
  4189. image: {
  4190. source: "./media/characters/kurribird/front-alt.svg",
  4191. extra: 1.45
  4192. }
  4193. },
  4194. },
  4195. [
  4196. {
  4197. name: "Normal",
  4198. height: math.unit(7, "feet")
  4199. },
  4200. {
  4201. name: "Big",
  4202. height: math.unit(12, "feet"),
  4203. default: true
  4204. },
  4205. {
  4206. name: "Macro",
  4207. height: math.unit(1500, "feet")
  4208. },
  4209. {
  4210. name: "Megamacro",
  4211. height: math.unit(2, "miles")
  4212. }
  4213. ]
  4214. ))
  4215. characterMakers.push(() => makeCharacter(
  4216. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4217. {
  4218. front: {
  4219. height: math.unit(2, "meter"),
  4220. weight: math.unit(80, "kg"),
  4221. name: "Front",
  4222. image: {
  4223. source: "./media/characters/elbial/front.svg",
  4224. extra: 1643 / 1556,
  4225. bottom: 60.2 / 1696
  4226. }
  4227. },
  4228. side: {
  4229. height: math.unit(2, "meter"),
  4230. weight: math.unit(80, "kg"),
  4231. name: "Side",
  4232. image: {
  4233. source: "./media/characters/elbial/side.svg",
  4234. extra: 1601/1528,
  4235. bottom: 97/1698
  4236. }
  4237. },
  4238. back: {
  4239. height: math.unit(2, "meter"),
  4240. weight: math.unit(80, "kg"),
  4241. name: "Back",
  4242. image: {
  4243. source: "./media/characters/elbial/back.svg",
  4244. extra: 1653/1569,
  4245. bottom: 20/1673
  4246. }
  4247. },
  4248. frontDressed: {
  4249. height: math.unit(2, "meter"),
  4250. weight: math.unit(80, "kg"),
  4251. name: "Front (Dressed)",
  4252. image: {
  4253. source: "./media/characters/elbial/front-dressed.svg",
  4254. extra: 1638/1569,
  4255. bottom: 70/1708
  4256. }
  4257. },
  4258. genitals: {
  4259. height: math.unit(2 / 3.367, "meter"),
  4260. name: "Genitals",
  4261. image: {
  4262. source: "./media/characters/elbial/genitals.svg"
  4263. }
  4264. },
  4265. },
  4266. [
  4267. {
  4268. name: "Large",
  4269. height: math.unit(100, "feet")
  4270. },
  4271. {
  4272. name: "Macro",
  4273. height: math.unit(500, "feet"),
  4274. default: true
  4275. },
  4276. {
  4277. name: "Megamacro",
  4278. height: math.unit(10, "miles")
  4279. },
  4280. {
  4281. name: "Gigamacro",
  4282. height: math.unit(25000, "miles")
  4283. },
  4284. {
  4285. name: "Full-Size",
  4286. height: math.unit(8000000, "gigaparsecs")
  4287. }
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4292. {
  4293. front: {
  4294. height: math.unit(2, "meter"),
  4295. weight: math.unit(60, "kg"),
  4296. name: "Front",
  4297. image: {
  4298. source: "./media/characters/noah/front.svg"
  4299. }
  4300. },
  4301. talons: {
  4302. height: math.unit(0.315, "meter"),
  4303. name: "Talons",
  4304. image: {
  4305. source: "./media/characters/noah/talons.svg"
  4306. }
  4307. }
  4308. },
  4309. [
  4310. {
  4311. name: "Large",
  4312. height: math.unit(50, "feet")
  4313. },
  4314. {
  4315. name: "Macro",
  4316. height: math.unit(750, "feet"),
  4317. default: true
  4318. },
  4319. {
  4320. name: "Megamacro",
  4321. height: math.unit(50, "miles")
  4322. },
  4323. {
  4324. name: "Gigamacro",
  4325. height: math.unit(100000, "miles")
  4326. },
  4327. {
  4328. name: "Full-Size",
  4329. height: math.unit(3000000000, "miles")
  4330. }
  4331. ]
  4332. ))
  4333. characterMakers.push(() => makeCharacter(
  4334. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4335. {
  4336. front: {
  4337. height: math.unit(2, "meter"),
  4338. weight: math.unit(80, "kg"),
  4339. name: "Front",
  4340. image: {
  4341. source: "./media/characters/natalya/front.svg"
  4342. }
  4343. },
  4344. back: {
  4345. height: math.unit(2, "meter"),
  4346. weight: math.unit(80, "kg"),
  4347. name: "Back",
  4348. image: {
  4349. source: "./media/characters/natalya/back.svg"
  4350. }
  4351. }
  4352. },
  4353. [
  4354. {
  4355. name: "Normal",
  4356. height: math.unit(150, "feet"),
  4357. default: true
  4358. },
  4359. {
  4360. name: "Megamacro",
  4361. height: math.unit(5, "miles")
  4362. },
  4363. {
  4364. name: "Full-Size",
  4365. height: math.unit(600, "kiloparsecs")
  4366. }
  4367. ]
  4368. ))
  4369. characterMakers.push(() => makeCharacter(
  4370. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4371. {
  4372. front: {
  4373. height: math.unit(2, "meter"),
  4374. weight: math.unit(50, "kg"),
  4375. name: "Front",
  4376. image: {
  4377. source: "./media/characters/erestrebah/front.svg",
  4378. extra: 1262/1162,
  4379. bottom: 96/1358
  4380. }
  4381. },
  4382. back: {
  4383. height: math.unit(2, "meter"),
  4384. weight: math.unit(50, "kg"),
  4385. name: "Back",
  4386. image: {
  4387. source: "./media/characters/erestrebah/back.svg",
  4388. extra: 1257/1139,
  4389. bottom: 13/1270
  4390. }
  4391. },
  4392. wing: {
  4393. height: math.unit(2, "meter"),
  4394. weight: math.unit(50, "kg"),
  4395. name: "Wing",
  4396. image: {
  4397. source: "./media/characters/erestrebah/wing.svg",
  4398. extra: 1262/1162,
  4399. bottom: 96/1358
  4400. }
  4401. },
  4402. mouth: {
  4403. height: math.unit(0.39, "feet"),
  4404. name: "Mouth",
  4405. image: {
  4406. source: "./media/characters/erestrebah/mouth.svg"
  4407. }
  4408. }
  4409. },
  4410. [
  4411. {
  4412. name: "Normal",
  4413. height: math.unit(10, "feet")
  4414. },
  4415. {
  4416. name: "Large",
  4417. height: math.unit(50, "feet"),
  4418. default: true
  4419. },
  4420. {
  4421. name: "Macro",
  4422. height: math.unit(300, "feet")
  4423. },
  4424. {
  4425. name: "Macro+",
  4426. height: math.unit(750, "feet")
  4427. },
  4428. {
  4429. name: "Megamacro",
  4430. height: math.unit(3, "miles")
  4431. }
  4432. ]
  4433. ))
  4434. characterMakers.push(() => makeCharacter(
  4435. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4436. {
  4437. front: {
  4438. height: math.unit(2, "meter"),
  4439. weight: math.unit(80, "kg"),
  4440. name: "Front",
  4441. image: {
  4442. source: "./media/characters/jennifer/front.svg",
  4443. bottom: 0.11,
  4444. extra: 1.16
  4445. }
  4446. },
  4447. frontAlt: {
  4448. height: math.unit(2, "meter"),
  4449. weight: math.unit(80, "kg"),
  4450. name: "Front (Alt)",
  4451. image: {
  4452. source: "./media/characters/jennifer/front-alt.svg"
  4453. }
  4454. }
  4455. },
  4456. [
  4457. {
  4458. name: "Canon Height",
  4459. height: math.unit(120, "feet"),
  4460. default: true
  4461. },
  4462. {
  4463. name: "Macro+",
  4464. height: math.unit(300, "feet")
  4465. },
  4466. {
  4467. name: "Megamacro",
  4468. height: math.unit(20000, "feet")
  4469. }
  4470. ]
  4471. ))
  4472. characterMakers.push(() => makeCharacter(
  4473. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4474. {
  4475. front: {
  4476. height: math.unit(2, "meter"),
  4477. weight: math.unit(50, "kg"),
  4478. name: "Front",
  4479. image: {
  4480. source: "./media/characters/kalista/front.svg",
  4481. extra: 1314/1145,
  4482. bottom: 101/1415
  4483. }
  4484. },
  4485. back: {
  4486. height: math.unit(2, "meter"),
  4487. weight: math.unit(50, "kg"),
  4488. name: "Back",
  4489. image: {
  4490. source: "./media/characters/kalista/back.svg",
  4491. extra: 1366 / 1156,
  4492. bottom: 33.9 / 1362.78
  4493. }
  4494. }
  4495. },
  4496. [
  4497. {
  4498. name: "Uncomfortably Small",
  4499. height: math.unit(10, "feet")
  4500. },
  4501. {
  4502. name: "Small",
  4503. height: math.unit(30, "feet")
  4504. },
  4505. {
  4506. name: "Macro",
  4507. height: math.unit(100, "feet"),
  4508. default: true
  4509. },
  4510. {
  4511. name: "Macro+",
  4512. height: math.unit(2000, "feet")
  4513. },
  4514. {
  4515. name: "True Form",
  4516. height: math.unit(8924, "miles")
  4517. }
  4518. ]
  4519. ))
  4520. characterMakers.push(() => makeCharacter(
  4521. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4522. {
  4523. front: {
  4524. height: math.unit(2, "meter"),
  4525. weight: math.unit(120, "kg"),
  4526. name: "Front",
  4527. image: {
  4528. source: "./media/characters/ggv/front.svg"
  4529. }
  4530. },
  4531. side: {
  4532. height: math.unit(2, "meter"),
  4533. weight: math.unit(120, "kg"),
  4534. name: "Side",
  4535. image: {
  4536. source: "./media/characters/ggv/side.svg"
  4537. }
  4538. }
  4539. },
  4540. [
  4541. {
  4542. name: "Extremely Puny",
  4543. height: math.unit(9 + 5 / 12, "feet")
  4544. },
  4545. {
  4546. name: "Horribly Small",
  4547. height: math.unit(47.7, "miles"),
  4548. default: true
  4549. },
  4550. {
  4551. name: "Reasonably Sized",
  4552. height: math.unit(25000, "parsecs")
  4553. },
  4554. {
  4555. name: "Slightly Uncompressed",
  4556. height: math.unit(7.77e31, "parsecs")
  4557. },
  4558. {
  4559. name: "Omniversal",
  4560. height: math.unit(1e300, "meters")
  4561. },
  4562. ]
  4563. ))
  4564. characterMakers.push(() => makeCharacter(
  4565. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4566. {
  4567. front: {
  4568. height: math.unit(2, "meter"),
  4569. weight: math.unit(75, "lb"),
  4570. name: "Front",
  4571. image: {
  4572. source: "./media/characters/napalm/front.svg"
  4573. }
  4574. },
  4575. back: {
  4576. height: math.unit(2, "meter"),
  4577. weight: math.unit(75, "lb"),
  4578. name: "Back",
  4579. image: {
  4580. source: "./media/characters/napalm/back.svg"
  4581. }
  4582. }
  4583. },
  4584. [
  4585. {
  4586. name: "Standard",
  4587. height: math.unit(55, "feet"),
  4588. default: true
  4589. }
  4590. ]
  4591. ))
  4592. characterMakers.push(() => makeCharacter(
  4593. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4594. {
  4595. front: {
  4596. height: math.unit(7 + 5 / 6, "feet"),
  4597. weight: math.unit(325, "lb"),
  4598. name: "Front",
  4599. image: {
  4600. source: "./media/characters/asana/front.svg",
  4601. extra: 1133 / 1060,
  4602. bottom: 15.2 / 1148.6
  4603. }
  4604. },
  4605. back: {
  4606. height: math.unit(7 + 5 / 6, "feet"),
  4607. weight: math.unit(325, "lb"),
  4608. name: "Back",
  4609. image: {
  4610. source: "./media/characters/asana/back.svg",
  4611. extra: 1114 / 1043,
  4612. bottom: 5 / 1120
  4613. }
  4614. },
  4615. dressedDark: {
  4616. height: math.unit(7 + 5 / 6, "feet"),
  4617. weight: math.unit(325, "lb"),
  4618. name: "Dressed (Dark)",
  4619. image: {
  4620. source: "./media/characters/asana/dressed-dark.svg",
  4621. extra: 1133 / 1060,
  4622. bottom: 15.2 / 1148.6
  4623. }
  4624. },
  4625. dressedLight: {
  4626. height: math.unit(7 + 5 / 6, "feet"),
  4627. weight: math.unit(325, "lb"),
  4628. name: "Dressed (Light)",
  4629. image: {
  4630. source: "./media/characters/asana/dressed-light.svg",
  4631. extra: 1133 / 1060,
  4632. bottom: 15.2 / 1148.6
  4633. }
  4634. },
  4635. },
  4636. [
  4637. {
  4638. name: "Standard",
  4639. height: math.unit(7 + 5 / 6, "feet"),
  4640. default: true
  4641. },
  4642. {
  4643. name: "Large",
  4644. height: math.unit(10, "meters")
  4645. },
  4646. {
  4647. name: "Macro",
  4648. height: math.unit(2500, "meters")
  4649. },
  4650. {
  4651. name: "Megamacro",
  4652. height: math.unit(5e6, "meters")
  4653. },
  4654. {
  4655. name: "Examacro",
  4656. height: math.unit(5e12, "lightyears")
  4657. },
  4658. {
  4659. name: "Max Size",
  4660. height: math.unit(1e31, "lightyears")
  4661. }
  4662. ]
  4663. ))
  4664. characterMakers.push(() => makeCharacter(
  4665. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4666. {
  4667. front: {
  4668. height: math.unit(2, "meter"),
  4669. weight: math.unit(60, "kg"),
  4670. name: "Front",
  4671. image: {
  4672. source: "./media/characters/ebony/front.svg",
  4673. bottom: 0.03,
  4674. extra: 1045 / 810 + 0.03
  4675. }
  4676. },
  4677. side: {
  4678. height: math.unit(2, "meter"),
  4679. weight: math.unit(60, "kg"),
  4680. name: "Side",
  4681. image: {
  4682. source: "./media/characters/ebony/side.svg",
  4683. bottom: 0.03,
  4684. extra: 1045 / 810 + 0.03
  4685. }
  4686. },
  4687. back: {
  4688. height: math.unit(2, "meter"),
  4689. weight: math.unit(60, "kg"),
  4690. name: "Back",
  4691. image: {
  4692. source: "./media/characters/ebony/back.svg",
  4693. bottom: 0.01,
  4694. extra: 1045 / 810 + 0.01
  4695. }
  4696. },
  4697. },
  4698. [
  4699. // TODO check why I did this lol
  4700. {
  4701. name: "Standard",
  4702. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4703. default: true
  4704. },
  4705. {
  4706. name: "Macro",
  4707. height: math.unit(200, "feet")
  4708. },
  4709. {
  4710. name: "Gigamacro",
  4711. height: math.unit(13000, "km")
  4712. }
  4713. ]
  4714. ))
  4715. characterMakers.push(() => makeCharacter(
  4716. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4717. {
  4718. front: {
  4719. height: math.unit(6, "feet"),
  4720. weight: math.unit(175, "lb"),
  4721. name: "Front",
  4722. image: {
  4723. source: "./media/characters/mountain/front.svg",
  4724. extra: 972 / 955,
  4725. bottom: 64 / 1036.6
  4726. }
  4727. },
  4728. back: {
  4729. height: math.unit(6, "feet"),
  4730. weight: math.unit(175, "lb"),
  4731. name: "Back",
  4732. image: {
  4733. source: "./media/characters/mountain/back.svg",
  4734. extra: 970 / 950,
  4735. bottom: 28.25 / 999
  4736. }
  4737. },
  4738. },
  4739. [
  4740. {
  4741. name: "Large",
  4742. height: math.unit(20, "meters")
  4743. },
  4744. {
  4745. name: "Macro",
  4746. height: math.unit(300, "meters")
  4747. },
  4748. {
  4749. name: "Gigamacro",
  4750. height: math.unit(10000, "km"),
  4751. default: true
  4752. },
  4753. {
  4754. name: "Examacro",
  4755. height: math.unit(10e9, "lightyears")
  4756. }
  4757. ]
  4758. ))
  4759. characterMakers.push(() => makeCharacter(
  4760. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4761. {
  4762. front: {
  4763. height: math.unit(8, "feet"),
  4764. weight: math.unit(500, "lb"),
  4765. name: "Front",
  4766. image: {
  4767. source: "./media/characters/rick/front.svg"
  4768. }
  4769. }
  4770. },
  4771. [
  4772. {
  4773. name: "Normal",
  4774. height: math.unit(8, "feet"),
  4775. default: true
  4776. },
  4777. {
  4778. name: "Macro",
  4779. height: math.unit(5, "km")
  4780. }
  4781. ]
  4782. ))
  4783. characterMakers.push(() => makeCharacter(
  4784. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4785. {
  4786. front: {
  4787. height: math.unit(8, "feet"),
  4788. weight: math.unit(120, "lb"),
  4789. name: "Front",
  4790. image: {
  4791. source: "./media/characters/ona/front.svg"
  4792. }
  4793. },
  4794. frontAlt: {
  4795. height: math.unit(8, "feet"),
  4796. weight: math.unit(120, "lb"),
  4797. name: "Front (Alt)",
  4798. image: {
  4799. source: "./media/characters/ona/front-alt.svg"
  4800. }
  4801. },
  4802. back: {
  4803. height: math.unit(8, "feet"),
  4804. weight: math.unit(120, "lb"),
  4805. name: "Back",
  4806. image: {
  4807. source: "./media/characters/ona/back.svg"
  4808. }
  4809. },
  4810. foot: {
  4811. height: math.unit(1.1, "feet"),
  4812. name: "Foot",
  4813. image: {
  4814. source: "./media/characters/ona/foot.svg"
  4815. }
  4816. }
  4817. },
  4818. [
  4819. {
  4820. name: "Megamacro",
  4821. height: math.unit(70, "km"),
  4822. default: true
  4823. },
  4824. {
  4825. name: "Gigamacro",
  4826. height: math.unit(681818, "miles")
  4827. },
  4828. {
  4829. name: "Examacro",
  4830. height: math.unit(3800000, "lightyears")
  4831. },
  4832. ]
  4833. ))
  4834. characterMakers.push(() => makeCharacter(
  4835. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4836. {
  4837. front: {
  4838. height: math.unit(12, "feet"),
  4839. weight: math.unit(3000, "lb"),
  4840. name: "Front",
  4841. image: {
  4842. source: "./media/characters/mech/front.svg",
  4843. extra: 2900 / 2770,
  4844. bottom: 110 / 3010
  4845. }
  4846. },
  4847. back: {
  4848. height: math.unit(12, "feet"),
  4849. weight: math.unit(3000, "lb"),
  4850. name: "Back",
  4851. image: {
  4852. source: "./media/characters/mech/back.svg",
  4853. extra: 3011 / 2890,
  4854. bottom: 94 / 3105
  4855. }
  4856. },
  4857. maw: {
  4858. height: math.unit(3.07, "feet"),
  4859. name: "Maw",
  4860. image: {
  4861. source: "./media/characters/mech/maw.svg"
  4862. }
  4863. },
  4864. head: {
  4865. height: math.unit(3.07, "feet"),
  4866. name: "Head",
  4867. image: {
  4868. source: "./media/characters/mech/head.svg"
  4869. }
  4870. },
  4871. dick: {
  4872. height: math.unit(1.43, "feet"),
  4873. name: "Dick",
  4874. image: {
  4875. source: "./media/characters/mech/dick.svg"
  4876. }
  4877. },
  4878. },
  4879. [
  4880. {
  4881. name: "Normal",
  4882. height: math.unit(12, "feet")
  4883. },
  4884. {
  4885. name: "Macro",
  4886. height: math.unit(300, "feet"),
  4887. default: true
  4888. },
  4889. {
  4890. name: "Macro+",
  4891. height: math.unit(1500, "feet")
  4892. },
  4893. ]
  4894. ))
  4895. characterMakers.push(() => makeCharacter(
  4896. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4897. {
  4898. front: {
  4899. height: math.unit(1.3, "meter"),
  4900. weight: math.unit(30, "kg"),
  4901. name: "Front",
  4902. image: {
  4903. source: "./media/characters/gregory/front.svg",
  4904. }
  4905. }
  4906. },
  4907. [
  4908. {
  4909. name: "Normal",
  4910. height: math.unit(1.3, "meter"),
  4911. default: true
  4912. },
  4913. {
  4914. name: "Macro",
  4915. height: math.unit(20, "meter")
  4916. }
  4917. ]
  4918. ))
  4919. characterMakers.push(() => makeCharacter(
  4920. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4921. {
  4922. front: {
  4923. height: math.unit(2.8, "meter"),
  4924. weight: math.unit(200, "kg"),
  4925. name: "Front",
  4926. image: {
  4927. source: "./media/characters/elory/front.svg",
  4928. }
  4929. }
  4930. },
  4931. [
  4932. {
  4933. name: "Normal",
  4934. height: math.unit(2.8, "meter"),
  4935. default: true
  4936. },
  4937. {
  4938. name: "Macro",
  4939. height: math.unit(38, "meter")
  4940. }
  4941. ]
  4942. ))
  4943. characterMakers.push(() => makeCharacter(
  4944. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4945. {
  4946. front: {
  4947. height: math.unit(470, "feet"),
  4948. weight: math.unit(924, "tons"),
  4949. name: "Front",
  4950. image: {
  4951. source: "./media/characters/angelpatamon/front.svg",
  4952. }
  4953. }
  4954. },
  4955. [
  4956. {
  4957. name: "Normal",
  4958. height: math.unit(470, "feet"),
  4959. default: true
  4960. },
  4961. {
  4962. name: "Deity Size I",
  4963. height: math.unit(28651.2, "km")
  4964. },
  4965. {
  4966. name: "Deity Size II",
  4967. height: math.unit(171907.2, "km")
  4968. }
  4969. ]
  4970. ))
  4971. characterMakers.push(() => makeCharacter(
  4972. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4973. {
  4974. side: {
  4975. height: math.unit(7.2, "meter"),
  4976. weight: math.unit(8.2, "tons"),
  4977. name: "Side",
  4978. image: {
  4979. source: "./media/characters/cryae/side.svg",
  4980. extra: 3500 / 1500
  4981. }
  4982. }
  4983. },
  4984. [
  4985. {
  4986. name: "Normal",
  4987. height: math.unit(7.2, "meter"),
  4988. default: true
  4989. }
  4990. ]
  4991. ))
  4992. characterMakers.push(() => makeCharacter(
  4993. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4994. {
  4995. front: {
  4996. height: math.unit(6, "feet"),
  4997. weight: math.unit(175, "lb"),
  4998. name: "Front",
  4999. image: {
  5000. source: "./media/characters/xera/front.svg",
  5001. extra: 2377 / 1972,
  5002. bottom: 75.5 / 2452
  5003. }
  5004. },
  5005. side: {
  5006. height: math.unit(6, "feet"),
  5007. weight: math.unit(175, "lb"),
  5008. name: "Side",
  5009. image: {
  5010. source: "./media/characters/xera/side.svg",
  5011. extra: 2345 / 2019,
  5012. bottom: 39.7 / 2384
  5013. }
  5014. },
  5015. back: {
  5016. height: math.unit(6, "feet"),
  5017. weight: math.unit(175, "lb"),
  5018. name: "Back",
  5019. image: {
  5020. source: "./media/characters/xera/back.svg",
  5021. extra: 2095 / 1984,
  5022. bottom: 67 / 2166
  5023. }
  5024. },
  5025. },
  5026. [
  5027. {
  5028. name: "Small",
  5029. height: math.unit(10, "feet")
  5030. },
  5031. {
  5032. name: "Macro",
  5033. height: math.unit(500, "meters"),
  5034. default: true
  5035. },
  5036. {
  5037. name: "Macro+",
  5038. height: math.unit(10, "km")
  5039. },
  5040. {
  5041. name: "Gigamacro",
  5042. height: math.unit(25000, "km")
  5043. },
  5044. {
  5045. name: "Teramacro",
  5046. height: math.unit(3e6, "km")
  5047. }
  5048. ]
  5049. ))
  5050. characterMakers.push(() => makeCharacter(
  5051. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5052. {
  5053. front: {
  5054. height: math.unit(6, "feet"),
  5055. weight: math.unit(175, "lb"),
  5056. name: "Front",
  5057. image: {
  5058. source: "./media/characters/nebula/front.svg",
  5059. extra: 2566 / 2362,
  5060. bottom: 81 / 2644
  5061. }
  5062. }
  5063. },
  5064. [
  5065. {
  5066. name: "Small",
  5067. height: math.unit(4.5, "meters")
  5068. },
  5069. {
  5070. name: "Macro",
  5071. height: math.unit(1500, "meters"),
  5072. default: true
  5073. },
  5074. {
  5075. name: "Megamacro",
  5076. height: math.unit(150, "km")
  5077. },
  5078. {
  5079. name: "Gigamacro",
  5080. height: math.unit(27000, "km")
  5081. }
  5082. ]
  5083. ))
  5084. characterMakers.push(() => makeCharacter(
  5085. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5086. {
  5087. front: {
  5088. height: math.unit(6, "feet"),
  5089. weight: math.unit(225, "lb"),
  5090. name: "Front",
  5091. image: {
  5092. source: "./media/characters/abysgar/front.svg",
  5093. extra: 1739/1614,
  5094. bottom: 71/1810
  5095. }
  5096. },
  5097. frontNsfw: {
  5098. height: math.unit(6, "feet"),
  5099. weight: math.unit(225, "lb"),
  5100. name: "Front (NSFW)",
  5101. image: {
  5102. source: "./media/characters/abysgar/front-nsfw.svg",
  5103. extra: 1739/1614,
  5104. bottom: 71/1810
  5105. }
  5106. },
  5107. back: {
  5108. height: math.unit(4.6, "feet"),
  5109. weight: math.unit(225, "lb"),
  5110. name: "Back",
  5111. image: {
  5112. source: "./media/characters/abysgar/back.svg",
  5113. extra: 1384/1327,
  5114. bottom: 0/1384
  5115. }
  5116. },
  5117. head: {
  5118. height: math.unit(1.25, "feet"),
  5119. name: "Head",
  5120. image: {
  5121. source: "./media/characters/abysgar/head.svg",
  5122. extra: 669/569,
  5123. bottom: 0/669
  5124. }
  5125. },
  5126. },
  5127. [
  5128. {
  5129. name: "Small",
  5130. height: math.unit(4.5, "meters")
  5131. },
  5132. {
  5133. name: "Macro",
  5134. height: math.unit(1250, "meters"),
  5135. default: true
  5136. },
  5137. {
  5138. name: "Megamacro",
  5139. height: math.unit(125, "km")
  5140. },
  5141. {
  5142. name: "Gigamacro",
  5143. height: math.unit(26000, "km")
  5144. }
  5145. ]
  5146. ))
  5147. characterMakers.push(() => makeCharacter(
  5148. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5149. {
  5150. front: {
  5151. height: math.unit(6, "feet"),
  5152. weight: math.unit(180, "lb"),
  5153. name: "Front",
  5154. image: {
  5155. source: "./media/characters/yakuz/front.svg"
  5156. }
  5157. }
  5158. },
  5159. [
  5160. {
  5161. name: "Small",
  5162. height: math.unit(5, "meters")
  5163. },
  5164. {
  5165. name: "Macro",
  5166. height: math.unit(1500, "meters"),
  5167. default: true
  5168. },
  5169. {
  5170. name: "Megamacro",
  5171. height: math.unit(200, "km")
  5172. },
  5173. {
  5174. name: "Gigamacro",
  5175. height: math.unit(100000, "km")
  5176. }
  5177. ]
  5178. ))
  5179. characterMakers.push(() => makeCharacter(
  5180. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5181. {
  5182. front: {
  5183. height: math.unit(6, "feet"),
  5184. weight: math.unit(175, "lb"),
  5185. name: "Front",
  5186. image: {
  5187. source: "./media/characters/mirova/front.svg",
  5188. extra: 3334 / 3071,
  5189. bottom: 42 / 3375.6
  5190. }
  5191. }
  5192. },
  5193. [
  5194. {
  5195. name: "Small",
  5196. height: math.unit(5, "meters")
  5197. },
  5198. {
  5199. name: "Macro",
  5200. height: math.unit(900, "meters"),
  5201. default: true
  5202. },
  5203. {
  5204. name: "Megamacro",
  5205. height: math.unit(135, "km")
  5206. },
  5207. {
  5208. name: "Gigamacro",
  5209. height: math.unit(20000, "km")
  5210. }
  5211. ]
  5212. ))
  5213. characterMakers.push(() => makeCharacter(
  5214. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5215. {
  5216. side: {
  5217. height: math.unit(28.35, "feet"),
  5218. weight: math.unit(99.75, "tons"),
  5219. name: "Side",
  5220. image: {
  5221. source: "./media/characters/asana-mech/side.svg",
  5222. extra: 923 / 699,
  5223. bottom: 50 / 975
  5224. }
  5225. },
  5226. chaingun: {
  5227. height: math.unit(7, "feet"),
  5228. weight: math.unit(2400, "lb"),
  5229. name: "Chaingun",
  5230. image: {
  5231. source: "./media/characters/asana-mech/chaingun.svg"
  5232. }
  5233. },
  5234. laser: {
  5235. height: math.unit(7.12, "feet"),
  5236. weight: math.unit(2000, "lb"),
  5237. name: "Laser",
  5238. image: {
  5239. source: "./media/characters/asana-mech/laser.svg"
  5240. }
  5241. },
  5242. },
  5243. [
  5244. {
  5245. name: "Normal",
  5246. height: math.unit(28.35, "feet"),
  5247. default: true
  5248. },
  5249. {
  5250. name: "Macro",
  5251. height: math.unit(2500, "feet")
  5252. },
  5253. {
  5254. name: "Megamacro",
  5255. height: math.unit(25, "miles")
  5256. },
  5257. {
  5258. name: "Examacro",
  5259. height: math.unit(6e8, "lightyears")
  5260. },
  5261. ]
  5262. ))
  5263. characterMakers.push(() => makeCharacter(
  5264. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5265. {
  5266. front: {
  5267. height: math.unit(5, "meters"),
  5268. weight: math.unit(1000, "kg"),
  5269. name: "Front",
  5270. image: {
  5271. source: "./media/characters/asche/front.svg",
  5272. extra: 1258 / 1190,
  5273. bottom: 47 / 1305
  5274. }
  5275. },
  5276. frontUnderwear: {
  5277. height: math.unit(5, "meters"),
  5278. weight: math.unit(1000, "kg"),
  5279. name: "Front (Underwear)",
  5280. image: {
  5281. source: "./media/characters/asche/front-underwear.svg",
  5282. extra: 1258 / 1190,
  5283. bottom: 47 / 1305
  5284. }
  5285. },
  5286. frontDressed: {
  5287. height: math.unit(5, "meters"),
  5288. weight: math.unit(1000, "kg"),
  5289. name: "Front (Dressed)",
  5290. image: {
  5291. source: "./media/characters/asche/front-dressed.svg",
  5292. extra: 1258 / 1190,
  5293. bottom: 47 / 1305
  5294. }
  5295. },
  5296. frontArmor: {
  5297. height: math.unit(5, "meters"),
  5298. weight: math.unit(1000, "kg"),
  5299. name: "Front (Armored)",
  5300. image: {
  5301. source: "./media/characters/asche/front-armored.svg",
  5302. extra: 1374 / 1308,
  5303. bottom: 23 / 1397
  5304. }
  5305. },
  5306. mp724: {
  5307. height: math.unit(0.96, "meters"),
  5308. weight: math.unit(38, "kg"),
  5309. name: "H&K MP724",
  5310. image: {
  5311. source: "./media/characters/asche/h&k-mp724.svg"
  5312. }
  5313. },
  5314. side: {
  5315. height: math.unit(5, "meters"),
  5316. weight: math.unit(1000, "kg"),
  5317. name: "Side",
  5318. image: {
  5319. source: "./media/characters/asche/side.svg",
  5320. extra: 1717 / 1609,
  5321. bottom: 0.005
  5322. }
  5323. },
  5324. back: {
  5325. height: math.unit(5, "meters"),
  5326. weight: math.unit(1000, "kg"),
  5327. name: "Back",
  5328. image: {
  5329. source: "./media/characters/asche/back.svg",
  5330. extra: 1570 / 1501
  5331. }
  5332. },
  5333. },
  5334. [
  5335. {
  5336. name: "DEFCON 5",
  5337. height: math.unit(5, "meters")
  5338. },
  5339. {
  5340. name: "DEFCON 4",
  5341. height: math.unit(500, "meters"),
  5342. default: true
  5343. },
  5344. {
  5345. name: "DEFCON 3",
  5346. height: math.unit(5, "km")
  5347. },
  5348. {
  5349. name: "DEFCON 2",
  5350. height: math.unit(500, "km")
  5351. },
  5352. {
  5353. name: "DEFCON 1",
  5354. height: math.unit(500000, "km")
  5355. },
  5356. {
  5357. name: "DEFCON 0",
  5358. height: math.unit(3, "gigaparsecs")
  5359. },
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5364. {
  5365. front: {
  5366. height: math.unit(7, "feet"),
  5367. weight: math.unit(92.7, "kg"),
  5368. name: "Front",
  5369. image: {
  5370. source: "./media/characters/gale/front.svg",
  5371. extra: 977/919,
  5372. bottom: 105/1082
  5373. }
  5374. },
  5375. side: {
  5376. height: math.unit(6.7, "feet"),
  5377. weight: math.unit(92.7, "kg"),
  5378. name: "Side",
  5379. image: {
  5380. source: "./media/characters/gale/side.svg",
  5381. extra: 978/922,
  5382. bottom: 140/1118
  5383. }
  5384. },
  5385. back: {
  5386. height: math.unit(7, "feet"),
  5387. weight: math.unit(92.7, "kg"),
  5388. name: "Back",
  5389. image: {
  5390. source: "./media/characters/gale/back.svg",
  5391. extra: 966/920,
  5392. bottom: 61/1027
  5393. }
  5394. },
  5395. maw: {
  5396. height: math.unit(2.23, "feet"),
  5397. name: "Maw",
  5398. image: {
  5399. source: "./media/characters/gale/maw.svg"
  5400. }
  5401. },
  5402. foot: {
  5403. height: math.unit(2.1, "feet"),
  5404. name: "Foot",
  5405. image: {
  5406. source: "./media/characters/gale/foot.svg"
  5407. }
  5408. },
  5409. },
  5410. [
  5411. {
  5412. name: "Normal",
  5413. height: math.unit(7, "feet")
  5414. },
  5415. {
  5416. name: "Macro",
  5417. height: math.unit(150, "feet"),
  5418. default: true
  5419. },
  5420. {
  5421. name: "Macro+",
  5422. height: math.unit(300, "feet")
  5423. },
  5424. ]
  5425. ))
  5426. characterMakers.push(() => makeCharacter(
  5427. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5428. {
  5429. front: {
  5430. height: math.unit(5 + 10/12, "feet"),
  5431. weight: math.unit(67, "kg"),
  5432. name: "Front",
  5433. image: {
  5434. source: "./media/characters/draylen/front.svg",
  5435. extra: 832/777,
  5436. bottom: 85/917
  5437. }
  5438. }
  5439. },
  5440. [
  5441. {
  5442. name: "Normal",
  5443. height: math.unit(5 + 10/12, "feet")
  5444. },
  5445. {
  5446. name: "Macro",
  5447. height: math.unit(150, "feet"),
  5448. default: true
  5449. }
  5450. ]
  5451. ))
  5452. characterMakers.push(() => makeCharacter(
  5453. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5454. {
  5455. front: {
  5456. height: math.unit(7 + 9 / 12, "feet"),
  5457. weight: math.unit(379, "lbs"),
  5458. name: "Front",
  5459. image: {
  5460. source: "./media/characters/chez/front.svg"
  5461. }
  5462. },
  5463. side: {
  5464. height: math.unit(7 + 9 / 12, "feet"),
  5465. weight: math.unit(379, "lbs"),
  5466. name: "Side",
  5467. image: {
  5468. source: "./media/characters/chez/side.svg"
  5469. }
  5470. }
  5471. },
  5472. [
  5473. {
  5474. name: "Normal",
  5475. height: math.unit(7 + 9 / 12, "feet"),
  5476. default: true
  5477. },
  5478. {
  5479. name: "God King",
  5480. height: math.unit(9750000, "meters")
  5481. }
  5482. ]
  5483. ))
  5484. characterMakers.push(() => makeCharacter(
  5485. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5486. {
  5487. front: {
  5488. height: math.unit(6, "feet"),
  5489. weight: math.unit(275, "lbs"),
  5490. name: "Front",
  5491. image: {
  5492. source: "./media/characters/kaylum/front.svg",
  5493. bottom: 0.01,
  5494. extra: 1166 / 1031
  5495. }
  5496. },
  5497. frontWingless: {
  5498. height: math.unit(6, "feet"),
  5499. weight: math.unit(275, "lbs"),
  5500. name: "Front (Wingless)",
  5501. image: {
  5502. source: "./media/characters/kaylum/front-wingless.svg",
  5503. bottom: 0.01,
  5504. extra: 1117 / 1031
  5505. }
  5506. }
  5507. },
  5508. [
  5509. {
  5510. name: "Normal",
  5511. height: math.unit(3.05, "meters")
  5512. },
  5513. {
  5514. name: "Master",
  5515. height: math.unit(5.5, "meters")
  5516. },
  5517. {
  5518. name: "Rampage",
  5519. height: math.unit(19, "meters")
  5520. },
  5521. {
  5522. name: "Macro Lite",
  5523. height: math.unit(37, "meters")
  5524. },
  5525. {
  5526. name: "Hyper Predator",
  5527. height: math.unit(61, "meters")
  5528. },
  5529. {
  5530. name: "Macro",
  5531. height: math.unit(138, "meters"),
  5532. default: true
  5533. }
  5534. ]
  5535. ))
  5536. characterMakers.push(() => makeCharacter(
  5537. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5538. {
  5539. front: {
  5540. height: math.unit(5 + 5 / 12, "feet"),
  5541. weight: math.unit(120, "lbs"),
  5542. name: "Front",
  5543. image: {
  5544. source: "./media/characters/geta/front.svg",
  5545. extra: 1003/933,
  5546. bottom: 21/1024
  5547. }
  5548. },
  5549. paw: {
  5550. height: math.unit(0.35, "feet"),
  5551. name: "Paw",
  5552. image: {
  5553. source: "./media/characters/geta/paw.svg"
  5554. }
  5555. },
  5556. },
  5557. [
  5558. {
  5559. name: "Micro",
  5560. height: math.unit(3, "inches"),
  5561. default: true
  5562. },
  5563. {
  5564. name: "Normal",
  5565. height: math.unit(5 + 5 / 12, "feet")
  5566. }
  5567. ]
  5568. ))
  5569. characterMakers.push(() => makeCharacter(
  5570. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5571. {
  5572. front: {
  5573. height: math.unit(6, "feet"),
  5574. weight: math.unit(300, "lbs"),
  5575. name: "Front",
  5576. image: {
  5577. source: "./media/characters/tyrnn/front.svg"
  5578. }
  5579. }
  5580. },
  5581. [
  5582. {
  5583. name: "Main Height",
  5584. height: math.unit(355, "feet"),
  5585. default: true
  5586. },
  5587. {
  5588. name: "Fave. Height",
  5589. height: math.unit(2400, "feet")
  5590. }
  5591. ]
  5592. ))
  5593. characterMakers.push(() => makeCharacter(
  5594. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5595. {
  5596. front: {
  5597. height: math.unit(6, "feet"),
  5598. weight: math.unit(300, "lbs"),
  5599. name: "Front",
  5600. image: {
  5601. source: "./media/characters/appledectomy/front.svg"
  5602. }
  5603. }
  5604. },
  5605. [
  5606. {
  5607. name: "Macro",
  5608. height: math.unit(2500, "feet")
  5609. },
  5610. {
  5611. name: "Megamacro",
  5612. height: math.unit(50, "miles"),
  5613. default: true
  5614. },
  5615. {
  5616. name: "Gigamacro",
  5617. height: math.unit(5000, "miles")
  5618. },
  5619. {
  5620. name: "Teramacro",
  5621. height: math.unit(250000, "miles")
  5622. },
  5623. ]
  5624. ))
  5625. characterMakers.push(() => makeCharacter(
  5626. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5627. {
  5628. front: {
  5629. height: math.unit(6, "feet"),
  5630. weight: math.unit(200, "lbs"),
  5631. name: "Front",
  5632. image: {
  5633. source: "./media/characters/vulpes/front.svg",
  5634. extra: 573 / 543,
  5635. bottom: 0.033
  5636. }
  5637. },
  5638. side: {
  5639. height: math.unit(6, "feet"),
  5640. weight: math.unit(200, "lbs"),
  5641. name: "Side",
  5642. image: {
  5643. source: "./media/characters/vulpes/side.svg",
  5644. extra: 577 / 549,
  5645. bottom: 11 / 588
  5646. }
  5647. },
  5648. back: {
  5649. height: math.unit(6, "feet"),
  5650. weight: math.unit(200, "lbs"),
  5651. name: "Back",
  5652. image: {
  5653. source: "./media/characters/vulpes/back.svg",
  5654. extra: 573 / 549,
  5655. bottom: 20 / 593
  5656. }
  5657. },
  5658. feet: {
  5659. height: math.unit(1.276, "feet"),
  5660. name: "Feet",
  5661. image: {
  5662. source: "./media/characters/vulpes/feet.svg"
  5663. }
  5664. },
  5665. maw: {
  5666. height: math.unit(1.18, "feet"),
  5667. name: "Maw",
  5668. image: {
  5669. source: "./media/characters/vulpes/maw.svg"
  5670. }
  5671. },
  5672. },
  5673. [
  5674. {
  5675. name: "Micro",
  5676. height: math.unit(2, "inches")
  5677. },
  5678. {
  5679. name: "Normal",
  5680. height: math.unit(6.3, "feet")
  5681. },
  5682. {
  5683. name: "Macro",
  5684. height: math.unit(850, "feet")
  5685. },
  5686. {
  5687. name: "Megamacro",
  5688. height: math.unit(7500, "feet"),
  5689. default: true
  5690. },
  5691. {
  5692. name: "Gigamacro",
  5693. height: math.unit(570000, "miles")
  5694. }
  5695. ]
  5696. ))
  5697. characterMakers.push(() => makeCharacter(
  5698. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5699. {
  5700. front: {
  5701. height: math.unit(6, "feet"),
  5702. weight: math.unit(210, "lbs"),
  5703. name: "Front",
  5704. image: {
  5705. source: "./media/characters/rain-fallen/front.svg"
  5706. }
  5707. },
  5708. side: {
  5709. height: math.unit(6, "feet"),
  5710. weight: math.unit(210, "lbs"),
  5711. name: "Side",
  5712. image: {
  5713. source: "./media/characters/rain-fallen/side.svg"
  5714. }
  5715. },
  5716. back: {
  5717. height: math.unit(6, "feet"),
  5718. weight: math.unit(210, "lbs"),
  5719. name: "Back",
  5720. image: {
  5721. source: "./media/characters/rain-fallen/back.svg"
  5722. }
  5723. },
  5724. feral: {
  5725. height: math.unit(9, "feet"),
  5726. weight: math.unit(700, "lbs"),
  5727. name: "Feral",
  5728. image: {
  5729. source: "./media/characters/rain-fallen/feral.svg"
  5730. }
  5731. },
  5732. },
  5733. [
  5734. {
  5735. name: "Meddling with Mortals",
  5736. height: math.unit(8 + 8/12, "feet")
  5737. },
  5738. {
  5739. name: "Normal",
  5740. height: math.unit(5, "meter")
  5741. },
  5742. {
  5743. name: "Macro",
  5744. height: math.unit(150, "meter"),
  5745. default: true
  5746. },
  5747. {
  5748. name: "Megamacro",
  5749. height: math.unit(278e6, "meter")
  5750. },
  5751. {
  5752. name: "Gigamacro",
  5753. height: math.unit(2e9, "meter")
  5754. },
  5755. {
  5756. name: "Teramacro",
  5757. height: math.unit(8e12, "meter")
  5758. },
  5759. {
  5760. name: "Devourer",
  5761. height: math.unit(14, "zettameters")
  5762. },
  5763. {
  5764. name: "Scarlet King",
  5765. height: math.unit(18, "yottameters")
  5766. },
  5767. {
  5768. name: "Void",
  5769. height: math.unit(1e88, "yottameters")
  5770. }
  5771. ]
  5772. ))
  5773. characterMakers.push(() => makeCharacter(
  5774. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5775. {
  5776. standing: {
  5777. height: math.unit(6, "feet"),
  5778. weight: math.unit(180, "lbs"),
  5779. name: "Standing",
  5780. image: {
  5781. source: "./media/characters/zaakira/standing.svg",
  5782. extra: 1599/1504,
  5783. bottom: 39/1638
  5784. }
  5785. },
  5786. laying: {
  5787. height: math.unit(3.3, "feet"),
  5788. weight: math.unit(180, "lbs"),
  5789. name: "Laying",
  5790. image: {
  5791. source: "./media/characters/zaakira/laying.svg"
  5792. }
  5793. },
  5794. },
  5795. [
  5796. {
  5797. name: "Normal",
  5798. height: math.unit(12, "feet")
  5799. },
  5800. {
  5801. name: "Macro",
  5802. height: math.unit(279, "feet"),
  5803. default: true
  5804. }
  5805. ]
  5806. ))
  5807. characterMakers.push(() => makeCharacter(
  5808. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5809. {
  5810. femSfw: {
  5811. height: math.unit(8, "feet"),
  5812. weight: math.unit(350, "lb"),
  5813. name: "Fem",
  5814. image: {
  5815. source: "./media/characters/sigvald/fem-sfw.svg",
  5816. extra: 182 / 164,
  5817. bottom: 8.7 / 190.5
  5818. }
  5819. },
  5820. femNsfw: {
  5821. height: math.unit(8, "feet"),
  5822. weight: math.unit(350, "lb"),
  5823. name: "Fem (NSFW)",
  5824. image: {
  5825. source: "./media/characters/sigvald/fem-nsfw.svg",
  5826. extra: 182 / 164,
  5827. bottom: 8.7 / 190.5
  5828. }
  5829. },
  5830. maleNsfw: {
  5831. height: math.unit(8, "feet"),
  5832. weight: math.unit(350, "lb"),
  5833. name: "Male (NSFW)",
  5834. image: {
  5835. source: "./media/characters/sigvald/male-nsfw.svg",
  5836. extra: 182 / 164,
  5837. bottom: 8.7 / 190.5
  5838. }
  5839. },
  5840. hermNsfw: {
  5841. height: math.unit(8, "feet"),
  5842. weight: math.unit(350, "lb"),
  5843. name: "Herm (NSFW)",
  5844. image: {
  5845. source: "./media/characters/sigvald/herm-nsfw.svg",
  5846. extra: 182 / 164,
  5847. bottom: 8.7 / 190.5
  5848. }
  5849. },
  5850. dick: {
  5851. height: math.unit(2.36, "feet"),
  5852. name: "Dick",
  5853. image: {
  5854. source: "./media/characters/sigvald/dick.svg"
  5855. }
  5856. },
  5857. eye: {
  5858. height: math.unit(0.31, "feet"),
  5859. name: "Eye",
  5860. image: {
  5861. source: "./media/characters/sigvald/eye.svg"
  5862. }
  5863. },
  5864. mouth: {
  5865. height: math.unit(0.92, "feet"),
  5866. name: "Mouth",
  5867. image: {
  5868. source: "./media/characters/sigvald/mouth.svg"
  5869. }
  5870. },
  5871. paws: {
  5872. height: math.unit(2.2, "feet"),
  5873. name: "Paws",
  5874. image: {
  5875. source: "./media/characters/sigvald/paws.svg"
  5876. }
  5877. }
  5878. },
  5879. [
  5880. {
  5881. name: "Normal",
  5882. height: math.unit(8, "feet")
  5883. },
  5884. {
  5885. name: "Large",
  5886. height: math.unit(12, "feet")
  5887. },
  5888. {
  5889. name: "Larger",
  5890. height: math.unit(20, "feet")
  5891. },
  5892. {
  5893. name: "Macro",
  5894. height: math.unit(150, "feet")
  5895. },
  5896. {
  5897. name: "Macro+",
  5898. height: math.unit(200, "feet"),
  5899. default: true
  5900. },
  5901. ]
  5902. ))
  5903. characterMakers.push(() => makeCharacter(
  5904. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5905. {
  5906. side: {
  5907. height: math.unit(12, "feet"),
  5908. weight: math.unit(2000, "kg"),
  5909. name: "Side",
  5910. image: {
  5911. source: "./media/characters/scott/side.svg",
  5912. extra: 754 / 724,
  5913. bottom: 0.069
  5914. }
  5915. },
  5916. upright: {
  5917. height: math.unit(12, "feet"),
  5918. weight: math.unit(2000, "kg"),
  5919. name: "Upright",
  5920. image: {
  5921. source: "./media/characters/scott/upright.svg",
  5922. extra: 3881 / 3722,
  5923. bottom: 0.05
  5924. }
  5925. },
  5926. },
  5927. [
  5928. {
  5929. name: "Normal",
  5930. height: math.unit(12, "feet"),
  5931. default: true
  5932. },
  5933. ]
  5934. ))
  5935. characterMakers.push(() => makeCharacter(
  5936. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5937. {
  5938. side: {
  5939. height: math.unit(8, "meters"),
  5940. weight: math.unit(84755, "lbs"),
  5941. name: "Side",
  5942. image: {
  5943. source: "./media/characters/tobias/side.svg",
  5944. extra: 1474 / 1096,
  5945. bottom: 38.9 / 1513.1235
  5946. }
  5947. },
  5948. },
  5949. [
  5950. {
  5951. name: "Normal",
  5952. height: math.unit(8, "meters"),
  5953. default: true
  5954. },
  5955. ]
  5956. ))
  5957. characterMakers.push(() => makeCharacter(
  5958. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5959. {
  5960. front: {
  5961. height: math.unit(5.5, "feet"),
  5962. weight: math.unit(400, "lbs"),
  5963. name: "Front",
  5964. image: {
  5965. source: "./media/characters/kieran/front.svg",
  5966. extra: 2694 / 2364,
  5967. bottom: 217 / 2908
  5968. }
  5969. },
  5970. side: {
  5971. height: math.unit(5.5, "feet"),
  5972. weight: math.unit(400, "lbs"),
  5973. name: "Side",
  5974. image: {
  5975. source: "./media/characters/kieran/side.svg",
  5976. extra: 875 / 777,
  5977. bottom: 84.6 / 959
  5978. }
  5979. },
  5980. },
  5981. [
  5982. {
  5983. name: "Normal",
  5984. height: math.unit(5.5, "feet"),
  5985. default: true
  5986. },
  5987. ]
  5988. ))
  5989. characterMakers.push(() => makeCharacter(
  5990. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5991. {
  5992. side: {
  5993. height: math.unit(2, "meters"),
  5994. weight: math.unit(70, "kg"),
  5995. name: "Side",
  5996. image: {
  5997. source: "./media/characters/sanya/side.svg",
  5998. bottom: 0.02,
  5999. extra: 1.02
  6000. }
  6001. },
  6002. },
  6003. [
  6004. {
  6005. name: "Small",
  6006. height: math.unit(2, "meters")
  6007. },
  6008. {
  6009. name: "Normal",
  6010. height: math.unit(3, "meters")
  6011. },
  6012. {
  6013. name: "Macro",
  6014. height: math.unit(16, "meters"),
  6015. default: true
  6016. },
  6017. ]
  6018. ))
  6019. characterMakers.push(() => makeCharacter(
  6020. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6021. {
  6022. front: {
  6023. height: math.unit(2, "meters"),
  6024. weight: math.unit(120, "kg"),
  6025. name: "Front",
  6026. image: {
  6027. source: "./media/characters/miranda/front.svg",
  6028. extra: 195 / 185,
  6029. bottom: 10.9 / 206.5
  6030. }
  6031. },
  6032. back: {
  6033. height: math.unit(2, "meters"),
  6034. weight: math.unit(120, "kg"),
  6035. name: "Back",
  6036. image: {
  6037. source: "./media/characters/miranda/back.svg",
  6038. extra: 201 / 193,
  6039. bottom: 2.3 / 203.7
  6040. }
  6041. },
  6042. },
  6043. [
  6044. {
  6045. name: "Normal",
  6046. height: math.unit(10, "feet"),
  6047. default: true
  6048. }
  6049. ]
  6050. ))
  6051. characterMakers.push(() => makeCharacter(
  6052. { name: "James", species: ["deer"], tags: ["anthro"] },
  6053. {
  6054. side: {
  6055. height: math.unit(2, "meters"),
  6056. weight: math.unit(100, "kg"),
  6057. name: "Front",
  6058. image: {
  6059. source: "./media/characters/james/front.svg",
  6060. extra: 10 / 8.5
  6061. }
  6062. },
  6063. },
  6064. [
  6065. {
  6066. name: "Normal",
  6067. height: math.unit(8.5, "feet"),
  6068. default: true
  6069. }
  6070. ]
  6071. ))
  6072. characterMakers.push(() => makeCharacter(
  6073. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6074. {
  6075. side: {
  6076. height: math.unit(9.5, "feet"),
  6077. weight: math.unit(2500, "lbs"),
  6078. name: "Side",
  6079. image: {
  6080. source: "./media/characters/heather/side.svg"
  6081. }
  6082. },
  6083. },
  6084. [
  6085. {
  6086. name: "Normal",
  6087. height: math.unit(9.5, "feet"),
  6088. default: true
  6089. }
  6090. ]
  6091. ))
  6092. characterMakers.push(() => makeCharacter(
  6093. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6094. {
  6095. side: {
  6096. height: math.unit(6.5, "feet"),
  6097. weight: math.unit(400, "lbs"),
  6098. name: "Side",
  6099. image: {
  6100. source: "./media/characters/lukas/side.svg",
  6101. extra: 7.25 / 6.5
  6102. }
  6103. },
  6104. },
  6105. [
  6106. {
  6107. name: "Normal",
  6108. height: math.unit(6.5, "feet"),
  6109. default: true
  6110. }
  6111. ]
  6112. ))
  6113. characterMakers.push(() => makeCharacter(
  6114. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6115. {
  6116. side: {
  6117. height: math.unit(5, "feet"),
  6118. weight: math.unit(3000, "lbs"),
  6119. name: "Side",
  6120. image: {
  6121. source: "./media/characters/louise/side.svg"
  6122. }
  6123. },
  6124. },
  6125. [
  6126. {
  6127. name: "Normal",
  6128. height: math.unit(5, "feet"),
  6129. default: true
  6130. }
  6131. ]
  6132. ))
  6133. characterMakers.push(() => makeCharacter(
  6134. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6135. {
  6136. side: {
  6137. height: math.unit(6, "feet"),
  6138. weight: math.unit(150, "lbs"),
  6139. name: "Side",
  6140. image: {
  6141. source: "./media/characters/ramona/side.svg",
  6142. extra: 871/854,
  6143. bottom: 41/912
  6144. }
  6145. },
  6146. },
  6147. [
  6148. {
  6149. name: "Normal",
  6150. height: math.unit(6 + 4/12, "feet")
  6151. },
  6152. {
  6153. name: "Minimacro",
  6154. height: math.unit(5.3, "meters"),
  6155. default: true
  6156. },
  6157. {
  6158. name: "Macro",
  6159. height: math.unit(20, "stories")
  6160. },
  6161. {
  6162. name: "Macro+",
  6163. height: math.unit(50, "stories")
  6164. },
  6165. ]
  6166. ))
  6167. characterMakers.push(() => makeCharacter(
  6168. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6169. {
  6170. standing: {
  6171. height: math.unit(5.75, "feet"),
  6172. weight: math.unit(160, "lbs"),
  6173. name: "Standing",
  6174. image: {
  6175. source: "./media/characters/deerpuff/standing.svg",
  6176. extra: 682 / 624
  6177. }
  6178. },
  6179. sitting: {
  6180. height: math.unit(5.75 / 1.79, "feet"),
  6181. weight: math.unit(160, "lbs"),
  6182. name: "Sitting",
  6183. image: {
  6184. source: "./media/characters/deerpuff/sitting.svg",
  6185. bottom: 44 / 400,
  6186. extra: 1
  6187. }
  6188. },
  6189. taurLaying: {
  6190. height: math.unit(6, "feet"),
  6191. weight: math.unit(400, "lbs"),
  6192. name: "Taur (Laying)",
  6193. image: {
  6194. source: "./media/characters/deerpuff/taur-laying.svg"
  6195. }
  6196. },
  6197. },
  6198. [
  6199. {
  6200. name: "Puffball",
  6201. height: math.unit(6, "inches")
  6202. },
  6203. {
  6204. name: "Normalpuff",
  6205. height: math.unit(5.75, "feet")
  6206. },
  6207. {
  6208. name: "Macropuff",
  6209. height: math.unit(1500, "feet"),
  6210. default: true
  6211. },
  6212. {
  6213. name: "Megapuff",
  6214. height: math.unit(500, "miles")
  6215. },
  6216. {
  6217. name: "Gigapuff",
  6218. height: math.unit(250000, "miles")
  6219. },
  6220. {
  6221. name: "Omegapuff",
  6222. height: math.unit(1000, "lightyears")
  6223. },
  6224. ]
  6225. ))
  6226. characterMakers.push(() => makeCharacter(
  6227. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6228. {
  6229. stomping: {
  6230. height: math.unit(6, "feet"),
  6231. weight: math.unit(170, "lbs"),
  6232. name: "Stomping",
  6233. image: {
  6234. source: "./media/characters/vivian/stomping.svg"
  6235. }
  6236. },
  6237. sitting: {
  6238. height: math.unit(6 / 1.75, "feet"),
  6239. weight: math.unit(170, "lbs"),
  6240. name: "Sitting",
  6241. image: {
  6242. source: "./media/characters/vivian/sitting.svg",
  6243. bottom: 1 / 6.4,
  6244. extra: 1,
  6245. }
  6246. },
  6247. },
  6248. [
  6249. {
  6250. name: "Normal",
  6251. height: math.unit(7, "feet"),
  6252. default: true
  6253. },
  6254. {
  6255. name: "Macro",
  6256. height: math.unit(10, "stories")
  6257. },
  6258. {
  6259. name: "Macro+",
  6260. height: math.unit(30, "stories")
  6261. },
  6262. {
  6263. name: "Megamacro",
  6264. height: math.unit(10, "miles")
  6265. },
  6266. {
  6267. name: "Megamacro+",
  6268. height: math.unit(2750000, "meters")
  6269. },
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6274. {
  6275. front: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(160, "lbs"),
  6278. name: "Front",
  6279. image: {
  6280. source: "./media/characters/prince/front.svg",
  6281. extra: 1938/1682,
  6282. bottom: 45/1983
  6283. }
  6284. },
  6285. back: {
  6286. height: math.unit(6, "feet"),
  6287. weight: math.unit(160, "lbs"),
  6288. name: "Back",
  6289. image: {
  6290. source: "./media/characters/prince/back.svg",
  6291. extra: 1955/1726,
  6292. bottom: 6/1961
  6293. }
  6294. },
  6295. },
  6296. [
  6297. {
  6298. name: "Normal",
  6299. height: math.unit(7.75, "feet"),
  6300. default: true
  6301. },
  6302. {
  6303. name: "Not cute",
  6304. height: math.unit(17, "feet")
  6305. },
  6306. {
  6307. name: "I said NOT",
  6308. height: math.unit(91, "feet")
  6309. },
  6310. {
  6311. name: "Please stop",
  6312. height: math.unit(560, "feet")
  6313. },
  6314. {
  6315. name: "What have you done",
  6316. height: math.unit(2200, "feet")
  6317. },
  6318. {
  6319. name: "Deer God",
  6320. height: math.unit(3.6, "miles")
  6321. },
  6322. ]
  6323. ))
  6324. characterMakers.push(() => makeCharacter(
  6325. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6326. {
  6327. standing: {
  6328. height: math.unit(6, "feet"),
  6329. weight: math.unit(300, "lbs"),
  6330. name: "Standing",
  6331. image: {
  6332. source: "./media/characters/psymon/standing.svg",
  6333. extra: 1888 / 1810,
  6334. bottom: 0.05
  6335. }
  6336. },
  6337. slithering: {
  6338. height: math.unit(6, "feet"),
  6339. weight: math.unit(300, "lbs"),
  6340. name: "Slithering",
  6341. image: {
  6342. source: "./media/characters/psymon/slithering.svg",
  6343. extra: 1330 / 1224
  6344. }
  6345. },
  6346. slitheringAlt: {
  6347. height: math.unit(6, "feet"),
  6348. weight: math.unit(300, "lbs"),
  6349. name: "Slithering (Alt)",
  6350. image: {
  6351. source: "./media/characters/psymon/slithering-alt.svg",
  6352. extra: 1330 / 1224
  6353. }
  6354. },
  6355. },
  6356. [
  6357. {
  6358. name: "Normal",
  6359. height: math.unit(11.25, "feet"),
  6360. default: true
  6361. },
  6362. {
  6363. name: "Large",
  6364. height: math.unit(27, "feet")
  6365. },
  6366. {
  6367. name: "Giant",
  6368. height: math.unit(87, "feet")
  6369. },
  6370. {
  6371. name: "Macro",
  6372. height: math.unit(365, "feet")
  6373. },
  6374. {
  6375. name: "Megamacro",
  6376. height: math.unit(3, "miles")
  6377. },
  6378. {
  6379. name: "World Serpent",
  6380. height: math.unit(8000, "miles")
  6381. },
  6382. ]
  6383. ))
  6384. characterMakers.push(() => makeCharacter(
  6385. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6386. {
  6387. front: {
  6388. height: math.unit(6, "feet"),
  6389. weight: math.unit(180, "lbs"),
  6390. name: "Front",
  6391. image: {
  6392. source: "./media/characters/daimos/front.svg",
  6393. extra: 4160 / 3897,
  6394. bottom: 0.021
  6395. }
  6396. }
  6397. },
  6398. [
  6399. {
  6400. name: "Normal",
  6401. height: math.unit(8, "feet"),
  6402. default: true
  6403. },
  6404. {
  6405. name: "Big Dog",
  6406. height: math.unit(22, "feet")
  6407. },
  6408. {
  6409. name: "Macro",
  6410. height: math.unit(127, "feet")
  6411. },
  6412. {
  6413. name: "Megamacro",
  6414. height: math.unit(3600, "feet")
  6415. },
  6416. ]
  6417. ))
  6418. characterMakers.push(() => makeCharacter(
  6419. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6420. {
  6421. side: {
  6422. height: math.unit(6, "feet"),
  6423. weight: math.unit(180, "lbs"),
  6424. name: "Side",
  6425. image: {
  6426. source: "./media/characters/blake/side.svg",
  6427. extra: 1212 / 1120,
  6428. bottom: 0.05
  6429. }
  6430. },
  6431. crouched: {
  6432. height: math.unit(6 * 0.57, "feet"),
  6433. weight: math.unit(180, "lbs"),
  6434. name: "Crouched",
  6435. image: {
  6436. source: "./media/characters/blake/crouched.svg",
  6437. extra: 840 / 587,
  6438. bottom: 0.04
  6439. }
  6440. },
  6441. bent: {
  6442. height: math.unit(6 * 0.75, "feet"),
  6443. weight: math.unit(180, "lbs"),
  6444. name: "Bent",
  6445. image: {
  6446. source: "./media/characters/blake/bent.svg",
  6447. extra: 592 / 544,
  6448. bottom: 0.035
  6449. }
  6450. },
  6451. },
  6452. [
  6453. {
  6454. name: "Normal",
  6455. height: math.unit(8 + 1 / 6, "feet"),
  6456. default: true
  6457. },
  6458. {
  6459. name: "Big Backside",
  6460. height: math.unit(37, "feet")
  6461. },
  6462. {
  6463. name: "Subway Shredder",
  6464. height: math.unit(72, "feet")
  6465. },
  6466. {
  6467. name: "City Carver",
  6468. height: math.unit(1675, "feet")
  6469. },
  6470. {
  6471. name: "Tectonic Tweaker",
  6472. height: math.unit(2300, "miles")
  6473. },
  6474. ]
  6475. ))
  6476. characterMakers.push(() => makeCharacter(
  6477. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6478. {
  6479. front: {
  6480. height: math.unit(6, "feet"),
  6481. weight: math.unit(180, "lbs"),
  6482. name: "Front",
  6483. image: {
  6484. source: "./media/characters/guisetto/front.svg",
  6485. extra: 856 / 817,
  6486. bottom: 0.06
  6487. }
  6488. },
  6489. airborne: {
  6490. height: math.unit(6, "feet"),
  6491. weight: math.unit(180, "lbs"),
  6492. name: "Airborne",
  6493. image: {
  6494. source: "./media/characters/guisetto/airborne.svg",
  6495. extra: 584 / 525
  6496. }
  6497. },
  6498. },
  6499. [
  6500. {
  6501. name: "Normal",
  6502. height: math.unit(10 + 11 / 12, "feet"),
  6503. default: true
  6504. },
  6505. {
  6506. name: "Large",
  6507. height: math.unit(35, "feet")
  6508. },
  6509. {
  6510. name: "Macro",
  6511. height: math.unit(475, "feet")
  6512. },
  6513. ]
  6514. ))
  6515. characterMakers.push(() => makeCharacter(
  6516. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6517. {
  6518. front: {
  6519. height: math.unit(6, "feet"),
  6520. weight: math.unit(180, "lbs"),
  6521. name: "Front",
  6522. image: {
  6523. source: "./media/characters/luxor/front.svg",
  6524. extra: 2940 / 2152
  6525. }
  6526. },
  6527. back: {
  6528. height: math.unit(6, "feet"),
  6529. weight: math.unit(180, "lbs"),
  6530. name: "Back",
  6531. image: {
  6532. source: "./media/characters/luxor/back.svg",
  6533. extra: 1083 / 960
  6534. }
  6535. },
  6536. },
  6537. [
  6538. {
  6539. name: "Normal",
  6540. height: math.unit(5 + 5 / 6, "feet"),
  6541. default: true
  6542. },
  6543. {
  6544. name: "Lamp",
  6545. height: math.unit(50, "feet")
  6546. },
  6547. {
  6548. name: "Lämp",
  6549. height: math.unit(300, "feet")
  6550. },
  6551. {
  6552. name: "The sun is a lamp",
  6553. height: math.unit(250000, "miles")
  6554. },
  6555. ]
  6556. ))
  6557. characterMakers.push(() => makeCharacter(
  6558. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6559. {
  6560. front: {
  6561. height: math.unit(6, "feet"),
  6562. weight: math.unit(50, "lbs"),
  6563. name: "Front",
  6564. image: {
  6565. source: "./media/characters/huoyan/front.svg"
  6566. }
  6567. },
  6568. side: {
  6569. height: math.unit(6, "feet"),
  6570. weight: math.unit(180, "lbs"),
  6571. name: "Side",
  6572. image: {
  6573. source: "./media/characters/huoyan/side.svg"
  6574. }
  6575. },
  6576. },
  6577. [
  6578. {
  6579. name: "Chef",
  6580. height: math.unit(9, "feet")
  6581. },
  6582. {
  6583. name: "Normal",
  6584. height: math.unit(65, "feet"),
  6585. default: true
  6586. },
  6587. {
  6588. name: "Macro",
  6589. height: math.unit(780, "feet")
  6590. },
  6591. {
  6592. name: "Flaming Mountain",
  6593. height: math.unit(4.8, "miles")
  6594. },
  6595. {
  6596. name: "Celestial",
  6597. height: math.unit(765000, "miles")
  6598. },
  6599. ]
  6600. ))
  6601. characterMakers.push(() => makeCharacter(
  6602. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6603. {
  6604. front: {
  6605. height: math.unit(5 + 3 / 4, "feet"),
  6606. weight: math.unit(120, "lbs"),
  6607. name: "Front",
  6608. image: {
  6609. source: "./media/characters/tails/front.svg"
  6610. }
  6611. }
  6612. },
  6613. [
  6614. {
  6615. name: "Normal",
  6616. height: math.unit(5 + 3 / 4, "feet"),
  6617. default: true
  6618. }
  6619. ]
  6620. ))
  6621. characterMakers.push(() => makeCharacter(
  6622. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6623. {
  6624. front: {
  6625. height: math.unit(4, "feet"),
  6626. weight: math.unit(50, "lbs"),
  6627. name: "Front",
  6628. image: {
  6629. source: "./media/characters/rainy/front.svg"
  6630. }
  6631. }
  6632. },
  6633. [
  6634. {
  6635. name: "Macro",
  6636. height: math.unit(800, "feet"),
  6637. default: true
  6638. }
  6639. ]
  6640. ))
  6641. characterMakers.push(() => makeCharacter(
  6642. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6643. {
  6644. front: {
  6645. height: math.unit(6, "feet"),
  6646. weight: math.unit(150, "lbs"),
  6647. name: "Front",
  6648. image: {
  6649. source: "./media/characters/rainier/front.svg"
  6650. }
  6651. }
  6652. },
  6653. [
  6654. {
  6655. name: "Micro",
  6656. height: math.unit(2, "mm"),
  6657. default: true
  6658. }
  6659. ]
  6660. ))
  6661. characterMakers.push(() => makeCharacter(
  6662. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6663. {
  6664. front: {
  6665. height: math.unit(8 + 4/12, "feet"),
  6666. weight: math.unit(450, "kilograms"),
  6667. volume: math.unit(5, "cups"),
  6668. name: "Front",
  6669. image: {
  6670. source: "./media/characters/andy-renard/front.svg",
  6671. extra: 1839/1726,
  6672. bottom: 134/1973
  6673. }
  6674. },
  6675. back: {
  6676. height: math.unit(8 + 4/12, "feet"),
  6677. weight: math.unit(450, "kilograms"),
  6678. volume: math.unit(5, "cups"),
  6679. name: "Back",
  6680. image: {
  6681. source: "./media/characters/andy-renard/back.svg",
  6682. extra: 1838/1710,
  6683. bottom: 105/1943
  6684. }
  6685. },
  6686. },
  6687. [
  6688. {
  6689. name: "Tall",
  6690. height: math.unit(8 + 4/12, "feet")
  6691. },
  6692. {
  6693. name: "Mini Macro",
  6694. height: math.unit(15, "feet"),
  6695. default: true
  6696. },
  6697. {
  6698. name: "Macro",
  6699. height: math.unit(100, "feet")
  6700. },
  6701. {
  6702. name: "Mega Macro",
  6703. height: math.unit(1000, "feet")
  6704. },
  6705. {
  6706. name: "Giga Macro",
  6707. height: math.unit(10, "miles")
  6708. },
  6709. {
  6710. name: "God Macro",
  6711. height: math.unit(1, "multiverse")
  6712. },
  6713. ]
  6714. ))
  6715. characterMakers.push(() => makeCharacter(
  6716. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6717. {
  6718. front: {
  6719. height: math.unit(6, "feet"),
  6720. weight: math.unit(210, "lbs"),
  6721. name: "Front",
  6722. image: {
  6723. source: "./media/characters/cimmaron/front-sfw.svg",
  6724. extra: 701 / 676,
  6725. bottom: 0.046
  6726. }
  6727. },
  6728. back: {
  6729. height: math.unit(6, "feet"),
  6730. weight: math.unit(210, "lbs"),
  6731. name: "Back",
  6732. image: {
  6733. source: "./media/characters/cimmaron/back-sfw.svg",
  6734. extra: 701 / 676,
  6735. bottom: 0.046
  6736. }
  6737. },
  6738. frontNsfw: {
  6739. height: math.unit(6, "feet"),
  6740. weight: math.unit(210, "lbs"),
  6741. name: "Front (NSFW)",
  6742. image: {
  6743. source: "./media/characters/cimmaron/front-nsfw.svg",
  6744. extra: 701 / 676,
  6745. bottom: 0.046
  6746. }
  6747. },
  6748. backNsfw: {
  6749. height: math.unit(6, "feet"),
  6750. weight: math.unit(210, "lbs"),
  6751. name: "Back (NSFW)",
  6752. image: {
  6753. source: "./media/characters/cimmaron/back-nsfw.svg",
  6754. extra: 701 / 676,
  6755. bottom: 0.046
  6756. }
  6757. },
  6758. dick: {
  6759. height: math.unit(1.714, "feet"),
  6760. name: "Dick",
  6761. image: {
  6762. source: "./media/characters/cimmaron/dick.svg"
  6763. }
  6764. },
  6765. },
  6766. [
  6767. {
  6768. name: "Normal",
  6769. height: math.unit(6, "feet"),
  6770. default: true
  6771. },
  6772. {
  6773. name: "Macro Mayor",
  6774. height: math.unit(350, "meters")
  6775. },
  6776. ]
  6777. ))
  6778. characterMakers.push(() => makeCharacter(
  6779. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6780. {
  6781. front: {
  6782. height: math.unit(6, "feet"),
  6783. weight: math.unit(200, "lbs"),
  6784. name: "Front",
  6785. image: {
  6786. source: "./media/characters/akari/front.svg",
  6787. extra: 962 / 901,
  6788. bottom: 0.04
  6789. }
  6790. }
  6791. },
  6792. [
  6793. {
  6794. name: "Micro",
  6795. height: math.unit(5, "inches"),
  6796. default: true
  6797. },
  6798. {
  6799. name: "Normal",
  6800. height: math.unit(7, "feet")
  6801. },
  6802. ]
  6803. ))
  6804. characterMakers.push(() => makeCharacter(
  6805. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6806. {
  6807. front: {
  6808. height: math.unit(6, "feet"),
  6809. weight: math.unit(140, "lbs"),
  6810. name: "Front",
  6811. image: {
  6812. source: "./media/characters/cynosura/front.svg",
  6813. extra: 437/410,
  6814. bottom: 9/446
  6815. }
  6816. },
  6817. back: {
  6818. height: math.unit(6, "feet"),
  6819. weight: math.unit(140, "lbs"),
  6820. name: "Back",
  6821. image: {
  6822. source: "./media/characters/cynosura/back.svg",
  6823. extra: 1304/1160,
  6824. bottom: 71/1375
  6825. }
  6826. },
  6827. },
  6828. [
  6829. {
  6830. name: "Micro",
  6831. height: math.unit(4, "inches")
  6832. },
  6833. {
  6834. name: "Normal",
  6835. height: math.unit(5.75, "feet"),
  6836. default: true
  6837. },
  6838. {
  6839. name: "Tall",
  6840. height: math.unit(10, "feet")
  6841. },
  6842. {
  6843. name: "Big",
  6844. height: math.unit(20, "feet")
  6845. },
  6846. {
  6847. name: "Macro",
  6848. height: math.unit(50, "feet")
  6849. },
  6850. ]
  6851. ))
  6852. characterMakers.push(() => makeCharacter(
  6853. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6854. {
  6855. front: {
  6856. height: math.unit(13 + 2/12, "feet"),
  6857. weight: math.unit(800, "kg"),
  6858. name: "Front",
  6859. image: {
  6860. source: "./media/characters/gin/front.svg",
  6861. extra: 1312/1191,
  6862. bottom: 45/1357
  6863. }
  6864. },
  6865. mouth: {
  6866. height: math.unit(2.39 * 1.8, "feet"),
  6867. name: "Mouth",
  6868. image: {
  6869. source: "./media/characters/gin/mouth.svg"
  6870. }
  6871. },
  6872. hand: {
  6873. height: math.unit(1.57 * 2.19, "feet"),
  6874. name: "Hand",
  6875. image: {
  6876. source: "./media/characters/gin/hand.svg"
  6877. }
  6878. },
  6879. foot: {
  6880. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6881. name: "Foot",
  6882. image: {
  6883. source: "./media/characters/gin/foot.svg"
  6884. }
  6885. },
  6886. sole: {
  6887. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6888. name: "Sole",
  6889. image: {
  6890. source: "./media/characters/gin/sole.svg"
  6891. }
  6892. },
  6893. },
  6894. [
  6895. {
  6896. name: "Very Small",
  6897. height: math.unit(13 + 2 / 12, "feet")
  6898. },
  6899. {
  6900. name: "Micro",
  6901. height: math.unit(600, "miles")
  6902. },
  6903. {
  6904. name: "Regular",
  6905. height: math.unit(20, "earths"),
  6906. default: true
  6907. },
  6908. {
  6909. name: "Macro",
  6910. height: math.unit(2.2, "solarradii")
  6911. },
  6912. {
  6913. name: "Teramacro",
  6914. height: math.unit(1.2, "galaxies")
  6915. },
  6916. {
  6917. name: "Omegamacro",
  6918. height: math.unit(200, "universes")
  6919. },
  6920. ]
  6921. ))
  6922. characterMakers.push(() => makeCharacter(
  6923. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6924. {
  6925. front: {
  6926. height: math.unit(6 + 1 / 6, "feet"),
  6927. weight: math.unit(178, "lbs"),
  6928. name: "Front",
  6929. image: {
  6930. source: "./media/characters/guy/front.svg"
  6931. }
  6932. }
  6933. },
  6934. [
  6935. {
  6936. name: "Normal",
  6937. height: math.unit(6 + 1 / 6, "feet"),
  6938. default: true
  6939. },
  6940. {
  6941. name: "Large",
  6942. height: math.unit(25 + 7 / 12, "feet")
  6943. },
  6944. {
  6945. name: "Macro",
  6946. height: math.unit(60 + 9 / 12, "feet")
  6947. },
  6948. {
  6949. name: "Macro+",
  6950. height: math.unit(246, "feet")
  6951. },
  6952. {
  6953. name: "Macro++",
  6954. height: math.unit(878, "feet")
  6955. }
  6956. ]
  6957. ))
  6958. characterMakers.push(() => makeCharacter(
  6959. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6960. {
  6961. front: {
  6962. height: math.unit(9, "feet"),
  6963. weight: math.unit(800, "lbs"),
  6964. name: "Front",
  6965. image: {
  6966. source: "./media/characters/tiberius/front.svg",
  6967. extra: 2295 / 2071
  6968. }
  6969. },
  6970. back: {
  6971. height: math.unit(9, "feet"),
  6972. weight: math.unit(800, "lbs"),
  6973. name: "Back",
  6974. image: {
  6975. source: "./media/characters/tiberius/back.svg",
  6976. extra: 2373 / 2160
  6977. }
  6978. },
  6979. },
  6980. [
  6981. {
  6982. name: "Normal",
  6983. height: math.unit(9, "feet"),
  6984. default: true
  6985. }
  6986. ]
  6987. ))
  6988. characterMakers.push(() => makeCharacter(
  6989. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6990. {
  6991. front: {
  6992. height: math.unit(6, "feet"),
  6993. weight: math.unit(600, "lbs"),
  6994. name: "Front",
  6995. image: {
  6996. source: "./media/characters/surgo/front.svg",
  6997. extra: 3591 / 2227
  6998. }
  6999. },
  7000. back: {
  7001. height: math.unit(6, "feet"),
  7002. weight: math.unit(600, "lbs"),
  7003. name: "Back",
  7004. image: {
  7005. source: "./media/characters/surgo/back.svg",
  7006. extra: 3557 / 2228
  7007. }
  7008. },
  7009. laying: {
  7010. height: math.unit(6 * 0.85, "feet"),
  7011. weight: math.unit(600, "lbs"),
  7012. name: "Laying",
  7013. image: {
  7014. source: "./media/characters/surgo/laying.svg"
  7015. }
  7016. },
  7017. },
  7018. [
  7019. {
  7020. name: "Normal",
  7021. height: math.unit(6, "feet"),
  7022. default: true
  7023. }
  7024. ]
  7025. ))
  7026. characterMakers.push(() => makeCharacter(
  7027. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7028. {
  7029. side: {
  7030. height: math.unit(6, "feet"),
  7031. weight: math.unit(150, "lbs"),
  7032. name: "Side",
  7033. image: {
  7034. source: "./media/characters/cibus/side.svg",
  7035. extra: 800 / 400
  7036. }
  7037. },
  7038. },
  7039. [
  7040. {
  7041. name: "Normal",
  7042. height: math.unit(6, "feet"),
  7043. default: true
  7044. }
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7049. {
  7050. front: {
  7051. height: math.unit(6, "feet"),
  7052. weight: math.unit(240, "lbs"),
  7053. name: "Front",
  7054. image: {
  7055. source: "./media/characters/nibbles/front.svg"
  7056. }
  7057. },
  7058. side: {
  7059. height: math.unit(6, "feet"),
  7060. weight: math.unit(240, "lbs"),
  7061. name: "Side",
  7062. image: {
  7063. source: "./media/characters/nibbles/side.svg"
  7064. }
  7065. },
  7066. },
  7067. [
  7068. {
  7069. name: "Normal",
  7070. height: math.unit(9, "feet"),
  7071. default: true
  7072. }
  7073. ]
  7074. ))
  7075. characterMakers.push(() => makeCharacter(
  7076. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7077. {
  7078. side: {
  7079. height: math.unit(5 + 1 / 6, "feet"),
  7080. weight: math.unit(130, "lbs"),
  7081. name: "Side",
  7082. image: {
  7083. source: "./media/characters/rikky/side.svg",
  7084. extra: 851 / 801
  7085. }
  7086. },
  7087. },
  7088. [
  7089. {
  7090. name: "Normal",
  7091. height: math.unit(5 + 1 / 6, "feet")
  7092. },
  7093. {
  7094. name: "Macro",
  7095. height: math.unit(152, "feet"),
  7096. default: true
  7097. },
  7098. {
  7099. name: "Megamacro",
  7100. height: math.unit(7, "miles")
  7101. }
  7102. ]
  7103. ))
  7104. characterMakers.push(() => makeCharacter(
  7105. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7106. {
  7107. side: {
  7108. height: math.unit(370, "cm"),
  7109. weight: math.unit(350, "lbs"),
  7110. name: "Side",
  7111. image: {
  7112. source: "./media/characters/malfressa/side.svg"
  7113. }
  7114. },
  7115. walking: {
  7116. height: math.unit(370, "cm"),
  7117. weight: math.unit(350, "lbs"),
  7118. name: "Walking",
  7119. image: {
  7120. source: "./media/characters/malfressa/walking.svg"
  7121. }
  7122. },
  7123. feral: {
  7124. height: math.unit(2500, "cm"),
  7125. weight: math.unit(100000, "lbs"),
  7126. name: "Feral",
  7127. image: {
  7128. source: "./media/characters/malfressa/feral.svg",
  7129. extra: 2108 / 837,
  7130. bottom: 0.02
  7131. }
  7132. },
  7133. },
  7134. [
  7135. {
  7136. name: "Normal",
  7137. height: math.unit(370, "cm")
  7138. },
  7139. {
  7140. name: "Macro",
  7141. height: math.unit(300, "meters"),
  7142. default: true
  7143. }
  7144. ]
  7145. ))
  7146. characterMakers.push(() => makeCharacter(
  7147. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7148. {
  7149. front: {
  7150. height: math.unit(6, "feet"),
  7151. weight: math.unit(60, "kg"),
  7152. name: "Front",
  7153. image: {
  7154. source: "./media/characters/jaro/front.svg",
  7155. extra: 845/817,
  7156. bottom: 45/890
  7157. }
  7158. },
  7159. back: {
  7160. height: math.unit(6, "feet"),
  7161. weight: math.unit(60, "kg"),
  7162. name: "Back",
  7163. image: {
  7164. source: "./media/characters/jaro/back.svg",
  7165. extra: 847/817,
  7166. bottom: 34/881
  7167. }
  7168. },
  7169. },
  7170. [
  7171. {
  7172. name: "Micro",
  7173. height: math.unit(7, "inches")
  7174. },
  7175. {
  7176. name: "Normal",
  7177. height: math.unit(5.5, "feet"),
  7178. default: true
  7179. },
  7180. {
  7181. name: "Minimacro",
  7182. height: math.unit(20, "feet")
  7183. },
  7184. {
  7185. name: "Macro",
  7186. height: math.unit(200, "meters")
  7187. }
  7188. ]
  7189. ))
  7190. characterMakers.push(() => makeCharacter(
  7191. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7192. {
  7193. front: {
  7194. height: math.unit(6, "feet"),
  7195. weight: math.unit(195, "lb"),
  7196. name: "Front",
  7197. image: {
  7198. source: "./media/characters/rogue/front.svg"
  7199. }
  7200. },
  7201. },
  7202. [
  7203. {
  7204. name: "Macro",
  7205. height: math.unit(90, "feet"),
  7206. default: true
  7207. },
  7208. ]
  7209. ))
  7210. characterMakers.push(() => makeCharacter(
  7211. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7212. {
  7213. standing: {
  7214. height: math.unit(5 + 8 / 12, "feet"),
  7215. weight: math.unit(140, "lb"),
  7216. name: "Standing",
  7217. image: {
  7218. source: "./media/characters/piper/standing.svg",
  7219. extra: 1440/1284,
  7220. bottom: 66/1506
  7221. }
  7222. },
  7223. running: {
  7224. height: math.unit(5 + 8 / 12, "feet"),
  7225. weight: math.unit(140, "lb"),
  7226. name: "Running",
  7227. image: {
  7228. source: "./media/characters/piper/running.svg",
  7229. extra: 3948/3655,
  7230. bottom: 0/3948
  7231. }
  7232. },
  7233. sole: {
  7234. height: math.unit(0.81, "feet"),
  7235. weight: math.unit(2, "kg"),
  7236. name: "Sole",
  7237. image: {
  7238. source: "./media/characters/piper/sole.svg"
  7239. }
  7240. },
  7241. nipple: {
  7242. height: math.unit(0.25, "feet"),
  7243. weight: math.unit(1.5, "lb"),
  7244. name: "Nipple",
  7245. image: {
  7246. source: "./media/characters/piper/nipple.svg"
  7247. }
  7248. },
  7249. head: {
  7250. height: math.unit(1.1, "feet"),
  7251. name: "Head",
  7252. image: {
  7253. source: "./media/characters/piper/head.svg"
  7254. }
  7255. },
  7256. },
  7257. [
  7258. {
  7259. name: "Micro",
  7260. height: math.unit(2, "inches")
  7261. },
  7262. {
  7263. name: "Normal",
  7264. height: math.unit(5 + 8 / 12, "feet")
  7265. },
  7266. {
  7267. name: "Macro",
  7268. height: math.unit(250, "feet"),
  7269. default: true
  7270. },
  7271. {
  7272. name: "Megamacro",
  7273. height: math.unit(7, "miles")
  7274. },
  7275. ]
  7276. ))
  7277. characterMakers.push(() => makeCharacter(
  7278. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7279. {
  7280. front: {
  7281. height: math.unit(6, "feet"),
  7282. weight: math.unit(220, "lb"),
  7283. name: "Front",
  7284. image: {
  7285. source: "./media/characters/gemini/front.svg"
  7286. }
  7287. },
  7288. back: {
  7289. height: math.unit(6, "feet"),
  7290. weight: math.unit(220, "lb"),
  7291. name: "Back",
  7292. image: {
  7293. source: "./media/characters/gemini/back.svg"
  7294. }
  7295. },
  7296. kneeling: {
  7297. height: math.unit(6 / 1.5, "feet"),
  7298. weight: math.unit(220, "lb"),
  7299. name: "Kneeling",
  7300. image: {
  7301. source: "./media/characters/gemini/kneeling.svg",
  7302. bottom: 0.02
  7303. }
  7304. },
  7305. },
  7306. [
  7307. {
  7308. name: "Macro",
  7309. height: math.unit(300, "meters"),
  7310. default: true
  7311. },
  7312. {
  7313. name: "Megamacro",
  7314. height: math.unit(6900, "meters")
  7315. },
  7316. ]
  7317. ))
  7318. characterMakers.push(() => makeCharacter(
  7319. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7320. {
  7321. anthro: {
  7322. height: math.unit(2.35, "meters"),
  7323. weight: math.unit(73, "kg"),
  7324. name: "Anthro",
  7325. image: {
  7326. source: "./media/characters/alicia/anthro.svg",
  7327. extra: 2571 / 2385,
  7328. bottom: 75 / 2648
  7329. }
  7330. },
  7331. paw: {
  7332. height: math.unit(1.32, "feet"),
  7333. name: "Paw",
  7334. image: {
  7335. source: "./media/characters/alicia/paw.svg"
  7336. }
  7337. },
  7338. feral: {
  7339. height: math.unit(1.69, "meters"),
  7340. weight: math.unit(73, "kg"),
  7341. name: "Feral",
  7342. image: {
  7343. source: "./media/characters/alicia/feral.svg",
  7344. extra: 2123 / 1715,
  7345. bottom: 222 / 2349
  7346. }
  7347. },
  7348. },
  7349. [
  7350. {
  7351. name: "Normal",
  7352. height: math.unit(2.35, "meters")
  7353. },
  7354. {
  7355. name: "Macro",
  7356. height: math.unit(60, "meters"),
  7357. default: true
  7358. },
  7359. {
  7360. name: "Megamacro",
  7361. height: math.unit(10000, "kilometers")
  7362. },
  7363. ]
  7364. ))
  7365. characterMakers.push(() => makeCharacter(
  7366. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7367. {
  7368. front: {
  7369. height: math.unit(7, "feet"),
  7370. weight: math.unit(250, "lbs"),
  7371. name: "Front",
  7372. image: {
  7373. source: "./media/characters/archy/front.svg"
  7374. }
  7375. }
  7376. },
  7377. [
  7378. {
  7379. name: "Micro",
  7380. height: math.unit(1, "inch")
  7381. },
  7382. {
  7383. name: "Shorty",
  7384. height: math.unit(5, "feet")
  7385. },
  7386. {
  7387. name: "Normal",
  7388. height: math.unit(7, "feet")
  7389. },
  7390. {
  7391. name: "Macro",
  7392. height: math.unit(600, "meters"),
  7393. default: true
  7394. },
  7395. {
  7396. name: "Megamacro",
  7397. height: math.unit(1, "mile")
  7398. },
  7399. ]
  7400. ))
  7401. characterMakers.push(() => makeCharacter(
  7402. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7403. {
  7404. front: {
  7405. height: math.unit(1.65, "meters"),
  7406. weight: math.unit(74, "kg"),
  7407. name: "Front",
  7408. image: {
  7409. source: "./media/characters/berri/front.svg",
  7410. extra: 857 / 837,
  7411. bottom: 18 / 877
  7412. }
  7413. },
  7414. bum: {
  7415. height: math.unit(1.46, "feet"),
  7416. name: "Bum",
  7417. image: {
  7418. source: "./media/characters/berri/bum.svg"
  7419. }
  7420. },
  7421. mouth: {
  7422. height: math.unit(0.44, "feet"),
  7423. name: "Mouth",
  7424. image: {
  7425. source: "./media/characters/berri/mouth.svg"
  7426. }
  7427. },
  7428. paw: {
  7429. height: math.unit(0.826, "feet"),
  7430. name: "Paw",
  7431. image: {
  7432. source: "./media/characters/berri/paw.svg"
  7433. }
  7434. },
  7435. },
  7436. [
  7437. {
  7438. name: "Normal",
  7439. height: math.unit(1.65, "meters")
  7440. },
  7441. {
  7442. name: "Macro",
  7443. height: math.unit(60, "m"),
  7444. default: true
  7445. },
  7446. {
  7447. name: "Megamacro",
  7448. height: math.unit(9.213, "km")
  7449. },
  7450. {
  7451. name: "Planet Eater",
  7452. height: math.unit(489, "megameters")
  7453. },
  7454. {
  7455. name: "Teramacro",
  7456. height: math.unit(2471635000000, "meters")
  7457. },
  7458. {
  7459. name: "Examacro",
  7460. height: math.unit(8.0624e+26, "meters")
  7461. }
  7462. ]
  7463. ))
  7464. characterMakers.push(() => makeCharacter(
  7465. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7466. {
  7467. front: {
  7468. height: math.unit(1.72, "meters"),
  7469. weight: math.unit(68, "kg"),
  7470. name: "Front",
  7471. image: {
  7472. source: "./media/characters/lexi/front.svg"
  7473. }
  7474. }
  7475. },
  7476. [
  7477. {
  7478. name: "Very Smol",
  7479. height: math.unit(10, "mm")
  7480. },
  7481. {
  7482. name: "Micro",
  7483. height: math.unit(6.8, "cm"),
  7484. default: true
  7485. },
  7486. {
  7487. name: "Normal",
  7488. height: math.unit(1.72, "m")
  7489. }
  7490. ]
  7491. ))
  7492. characterMakers.push(() => makeCharacter(
  7493. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7494. {
  7495. front: {
  7496. height: math.unit(1.69, "meters"),
  7497. weight: math.unit(68, "kg"),
  7498. name: "Front",
  7499. image: {
  7500. source: "./media/characters/martin/front.svg",
  7501. extra: 596 / 581
  7502. }
  7503. }
  7504. },
  7505. [
  7506. {
  7507. name: "Micro",
  7508. height: math.unit(6.85, "cm"),
  7509. default: true
  7510. },
  7511. {
  7512. name: "Normal",
  7513. height: math.unit(1.69, "m")
  7514. }
  7515. ]
  7516. ))
  7517. characterMakers.push(() => makeCharacter(
  7518. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7519. {
  7520. front: {
  7521. height: math.unit(1.69, "meters"),
  7522. weight: math.unit(68, "kg"),
  7523. name: "Front",
  7524. image: {
  7525. source: "./media/characters/juno/front.svg"
  7526. }
  7527. }
  7528. },
  7529. [
  7530. {
  7531. name: "Micro",
  7532. height: math.unit(7, "cm")
  7533. },
  7534. {
  7535. name: "Normal",
  7536. height: math.unit(1.89, "m")
  7537. },
  7538. {
  7539. name: "Macro",
  7540. height: math.unit(353, "meters"),
  7541. default: true
  7542. }
  7543. ]
  7544. ))
  7545. characterMakers.push(() => makeCharacter(
  7546. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7547. {
  7548. front: {
  7549. height: math.unit(1.93, "meters"),
  7550. weight: math.unit(83, "kg"),
  7551. name: "Front",
  7552. image: {
  7553. source: "./media/characters/samantha/front.svg"
  7554. }
  7555. },
  7556. frontClothed: {
  7557. height: math.unit(1.93, "meters"),
  7558. weight: math.unit(83, "kg"),
  7559. name: "Front (Clothed)",
  7560. image: {
  7561. source: "./media/characters/samantha/front-clothed.svg"
  7562. }
  7563. },
  7564. back: {
  7565. height: math.unit(1.93, "meters"),
  7566. weight: math.unit(83, "kg"),
  7567. name: "Back",
  7568. image: {
  7569. source: "./media/characters/samantha/back.svg"
  7570. }
  7571. },
  7572. },
  7573. [
  7574. {
  7575. name: "Normal",
  7576. height: math.unit(1.93, "m")
  7577. },
  7578. {
  7579. name: "Macro",
  7580. height: math.unit(74, "meters"),
  7581. default: true
  7582. },
  7583. {
  7584. name: "Macro+",
  7585. height: math.unit(223, "meters"),
  7586. },
  7587. {
  7588. name: "Megamacro",
  7589. height: math.unit(8381, "meters"),
  7590. },
  7591. {
  7592. name: "Megamacro+",
  7593. height: math.unit(12000, "kilometers")
  7594. },
  7595. ]
  7596. ))
  7597. characterMakers.push(() => makeCharacter(
  7598. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7599. {
  7600. front: {
  7601. height: math.unit(1.92, "meters"),
  7602. weight: math.unit(80, "kg"),
  7603. name: "Front",
  7604. image: {
  7605. source: "./media/characters/dr-clay/front.svg"
  7606. }
  7607. },
  7608. frontClothed: {
  7609. height: math.unit(1.92, "meters"),
  7610. weight: math.unit(80, "kg"),
  7611. name: "Front (Clothed)",
  7612. image: {
  7613. source: "./media/characters/dr-clay/front-clothed.svg"
  7614. }
  7615. }
  7616. },
  7617. [
  7618. {
  7619. name: "Normal",
  7620. height: math.unit(1.92, "m")
  7621. },
  7622. {
  7623. name: "Macro",
  7624. height: math.unit(214, "meters"),
  7625. default: true
  7626. },
  7627. {
  7628. name: "Macro+",
  7629. height: math.unit(12.237, "meters"),
  7630. },
  7631. {
  7632. name: "Megamacro",
  7633. height: math.unit(557, "megameters"),
  7634. },
  7635. {
  7636. name: "Unimaginable",
  7637. height: math.unit(120e9, "lightyears")
  7638. },
  7639. ]
  7640. ))
  7641. characterMakers.push(() => makeCharacter(
  7642. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7643. {
  7644. front: {
  7645. height: math.unit(2, "meters"),
  7646. weight: math.unit(80, "kg"),
  7647. name: "Front",
  7648. image: {
  7649. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7650. }
  7651. }
  7652. },
  7653. [
  7654. {
  7655. name: "Teramacro",
  7656. height: math.unit(500000, "lightyears"),
  7657. default: true
  7658. },
  7659. ]
  7660. ))
  7661. characterMakers.push(() => makeCharacter(
  7662. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7663. {
  7664. crux: {
  7665. height: math.unit(2, "meters"),
  7666. weight: math.unit(150, "kg"),
  7667. name: "Crux",
  7668. image: {
  7669. source: "./media/characters/vemus/crux.svg",
  7670. extra: 1074/936,
  7671. bottom: 23/1097
  7672. }
  7673. },
  7674. skunkTanuki: {
  7675. height: math.unit(2, "meters"),
  7676. weight: math.unit(150, "kg"),
  7677. name: "Skunk-Tanuki",
  7678. image: {
  7679. source: "./media/characters/vemus/skunk-tanuki.svg",
  7680. extra: 926/893,
  7681. bottom: 20/946
  7682. }
  7683. },
  7684. },
  7685. [
  7686. {
  7687. name: "Normal",
  7688. height: math.unit(4, "meters"),
  7689. default: true
  7690. },
  7691. {
  7692. name: "Big",
  7693. height: math.unit(8, "meters")
  7694. },
  7695. {
  7696. name: "Macro",
  7697. height: math.unit(100, "meters")
  7698. },
  7699. {
  7700. name: "Macro+",
  7701. height: math.unit(1500, "meters")
  7702. },
  7703. {
  7704. name: "Stellar",
  7705. height: math.unit(14e8, "meters")
  7706. },
  7707. ]
  7708. ))
  7709. characterMakers.push(() => makeCharacter(
  7710. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7711. {
  7712. front: {
  7713. height: math.unit(2, "meters"),
  7714. weight: math.unit(70, "kg"),
  7715. name: "Front",
  7716. image: {
  7717. source: "./media/characters/beherit/front.svg",
  7718. extra: 1234/1109,
  7719. bottom: 55/1289
  7720. }
  7721. }
  7722. },
  7723. [
  7724. {
  7725. name: "Normal",
  7726. height: math.unit(6, "feet")
  7727. },
  7728. {
  7729. name: "Lorg",
  7730. height: math.unit(25, "feet"),
  7731. default: true
  7732. },
  7733. {
  7734. name: "Lorger",
  7735. height: math.unit(75, "feet")
  7736. },
  7737. {
  7738. name: "Macro",
  7739. height: math.unit(200, "meters")
  7740. },
  7741. ]
  7742. ))
  7743. characterMakers.push(() => makeCharacter(
  7744. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7745. {
  7746. front: {
  7747. height: math.unit(2, "meters"),
  7748. weight: math.unit(150, "kg"),
  7749. name: "Front",
  7750. image: {
  7751. source: "./media/characters/everett/front.svg",
  7752. extra: 1017/866,
  7753. bottom: 86/1103
  7754. }
  7755. },
  7756. paw: {
  7757. height: math.unit(2 / 3.6, "meters"),
  7758. name: "Paw",
  7759. image: {
  7760. source: "./media/characters/everett/paw.svg"
  7761. }
  7762. },
  7763. },
  7764. [
  7765. {
  7766. name: "Normal",
  7767. height: math.unit(15, "feet"),
  7768. default: true
  7769. },
  7770. {
  7771. name: "Lorg",
  7772. height: math.unit(70, "feet"),
  7773. default: true
  7774. },
  7775. {
  7776. name: "Lorger",
  7777. height: math.unit(250, "feet")
  7778. },
  7779. {
  7780. name: "Macro",
  7781. height: math.unit(500, "meters")
  7782. },
  7783. ]
  7784. ))
  7785. characterMakers.push(() => makeCharacter(
  7786. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7787. {
  7788. front: {
  7789. height: math.unit(2, "meters"),
  7790. weight: math.unit(86, "kg"),
  7791. name: "Front",
  7792. image: {
  7793. source: "./media/characters/rose/front.svg",
  7794. extra: 1785/1636,
  7795. bottom: 30/1815
  7796. },
  7797. form: "liom",
  7798. default: true
  7799. },
  7800. frontSporty: {
  7801. height: math.unit(2, "meters"),
  7802. weight: math.unit(86, "kg"),
  7803. name: "Front (Sporty)",
  7804. image: {
  7805. source: "./media/characters/rose/front-sporty.svg",
  7806. extra: 350/335,
  7807. bottom: 10/360
  7808. },
  7809. form: "liom"
  7810. },
  7811. frontAlt: {
  7812. height: math.unit(1.6, "meters"),
  7813. weight: math.unit(86, "kg"),
  7814. name: "Front (Alt)",
  7815. image: {
  7816. source: "./media/characters/rose/front-alt.svg",
  7817. extra: 299/283,
  7818. bottom: 3/302
  7819. },
  7820. form: "liom"
  7821. },
  7822. plush: {
  7823. height: math.unit(2, "meters"),
  7824. weight: math.unit(86/3, "kg"),
  7825. name: "Plush",
  7826. image: {
  7827. source: "./media/characters/rose/plush.svg",
  7828. extra: 361/337,
  7829. bottom: 11/372
  7830. },
  7831. form: "plush",
  7832. default: true
  7833. },
  7834. faeStanding: {
  7835. height: math.unit(10, "cm"),
  7836. weight: math.unit(10, "grams"),
  7837. name: "Standing",
  7838. image: {
  7839. source: "./media/characters/rose/fae-standing.svg",
  7840. extra: 1189/1060,
  7841. bottom: 27/1216
  7842. },
  7843. form: "fae",
  7844. default: true
  7845. },
  7846. faeSitting: {
  7847. height: math.unit(5, "cm"),
  7848. weight: math.unit(10, "grams"),
  7849. name: "Sitting",
  7850. image: {
  7851. source: "./media/characters/rose/fae-sitting.svg",
  7852. extra: 737/577,
  7853. bottom: 356/1093
  7854. },
  7855. form: "fae"
  7856. },
  7857. faePaw: {
  7858. height: math.unit(1.35, "cm"),
  7859. name: "Paw",
  7860. image: {
  7861. source: "./media/characters/rose/fae-paw.svg"
  7862. },
  7863. form: "fae"
  7864. },
  7865. },
  7866. [
  7867. {
  7868. name: "True Micro",
  7869. height: math.unit(9, "cm"),
  7870. form: "liom"
  7871. },
  7872. {
  7873. name: "Micro",
  7874. height: math.unit(16, "cm"),
  7875. form: "liom"
  7876. },
  7877. {
  7878. name: "Normal",
  7879. height: math.unit(1.85, "meters"),
  7880. default: true,
  7881. form: "liom"
  7882. },
  7883. {
  7884. name: "Mini-Macro",
  7885. height: math.unit(5, "meters"),
  7886. form: "liom"
  7887. },
  7888. {
  7889. name: "Macro",
  7890. height: math.unit(15, "meters"),
  7891. form: "liom"
  7892. },
  7893. {
  7894. name: "True Macro",
  7895. height: math.unit(40, "meters"),
  7896. form: "liom"
  7897. },
  7898. {
  7899. name: "City Scale",
  7900. height: math.unit(1, "km"),
  7901. form: "liom"
  7902. },
  7903. {
  7904. name: "Plushie",
  7905. height: math.unit(9, "cm"),
  7906. form: "plush",
  7907. default: true
  7908. },
  7909. {
  7910. name: "Fae",
  7911. height: math.unit(10, "cm"),
  7912. form: "fae",
  7913. default: true
  7914. },
  7915. ],
  7916. {
  7917. "liom": {
  7918. name: "Liom"
  7919. },
  7920. "plush": {
  7921. name: "Plush"
  7922. },
  7923. "fae": {
  7924. name: "Fae Fox",
  7925. default: true
  7926. }
  7927. }
  7928. ))
  7929. characterMakers.push(() => makeCharacter(
  7930. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7931. {
  7932. front: {
  7933. height: math.unit(2, "meters"),
  7934. weight: math.unit(350, "lbs"),
  7935. name: "Front",
  7936. image: {
  7937. source: "./media/characters/regal/front.svg"
  7938. }
  7939. },
  7940. back: {
  7941. height: math.unit(2, "meters"),
  7942. weight: math.unit(350, "lbs"),
  7943. name: "Back",
  7944. image: {
  7945. source: "./media/characters/regal/back.svg"
  7946. }
  7947. },
  7948. },
  7949. [
  7950. {
  7951. name: "Macro",
  7952. height: math.unit(350, "feet"),
  7953. default: true
  7954. }
  7955. ]
  7956. ))
  7957. characterMakers.push(() => makeCharacter(
  7958. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7959. {
  7960. front: {
  7961. height: math.unit(4 + 11 / 12, "feet"),
  7962. weight: math.unit(100, "lbs"),
  7963. name: "Front",
  7964. image: {
  7965. source: "./media/characters/opal/front.svg"
  7966. }
  7967. },
  7968. frontAlt: {
  7969. height: math.unit(4 + 11 / 12, "feet"),
  7970. weight: math.unit(100, "lbs"),
  7971. name: "Front (Alt)",
  7972. image: {
  7973. source: "./media/characters/opal/front-alt.svg"
  7974. }
  7975. },
  7976. },
  7977. [
  7978. {
  7979. name: "Small",
  7980. height: math.unit(4 + 11 / 12, "feet")
  7981. },
  7982. {
  7983. name: "Normal",
  7984. height: math.unit(20, "feet"),
  7985. default: true
  7986. },
  7987. {
  7988. name: "Macro",
  7989. height: math.unit(120, "feet")
  7990. },
  7991. {
  7992. name: "Megamacro",
  7993. height: math.unit(80, "miles")
  7994. },
  7995. {
  7996. name: "True Size",
  7997. height: math.unit(100000, "lightyears")
  7998. },
  7999. ]
  8000. ))
  8001. characterMakers.push(() => makeCharacter(
  8002. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8003. {
  8004. front: {
  8005. height: math.unit(6, "feet"),
  8006. weight: math.unit(200, "lbs"),
  8007. name: "Front",
  8008. image: {
  8009. source: "./media/characters/vector-wuff/front.svg"
  8010. }
  8011. }
  8012. },
  8013. [
  8014. {
  8015. name: "Normal",
  8016. height: math.unit(2.8, "meters")
  8017. },
  8018. {
  8019. name: "Macro",
  8020. height: math.unit(450, "meters"),
  8021. default: true
  8022. },
  8023. {
  8024. name: "Megamacro",
  8025. height: math.unit(15, "kilometers")
  8026. }
  8027. ]
  8028. ))
  8029. characterMakers.push(() => makeCharacter(
  8030. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8031. {
  8032. front: {
  8033. height: math.unit(6, "feet"),
  8034. weight: math.unit(256, "lbs"),
  8035. name: "Front",
  8036. image: {
  8037. source: "./media/characters/dannik/front.svg"
  8038. }
  8039. }
  8040. },
  8041. [
  8042. {
  8043. name: "Macro",
  8044. height: math.unit(69.57, "meters"),
  8045. default: true
  8046. },
  8047. ]
  8048. ))
  8049. characterMakers.push(() => makeCharacter(
  8050. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8051. {
  8052. front: {
  8053. height: math.unit(6, "feet"),
  8054. weight: math.unit(120, "lbs"),
  8055. name: "Front",
  8056. image: {
  8057. source: "./media/characters/azura-saharah/front.svg"
  8058. }
  8059. },
  8060. back: {
  8061. height: math.unit(6, "feet"),
  8062. weight: math.unit(120, "lbs"),
  8063. name: "Back",
  8064. image: {
  8065. source: "./media/characters/azura-saharah/back.svg"
  8066. }
  8067. },
  8068. },
  8069. [
  8070. {
  8071. name: "Macro",
  8072. height: math.unit(100, "feet"),
  8073. default: true
  8074. },
  8075. ]
  8076. ))
  8077. characterMakers.push(() => makeCharacter(
  8078. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8079. {
  8080. side: {
  8081. height: math.unit(5 + 4 / 12, "feet"),
  8082. weight: math.unit(163, "lbs"),
  8083. name: "Side",
  8084. image: {
  8085. source: "./media/characters/kennedy/side.svg"
  8086. }
  8087. }
  8088. },
  8089. [
  8090. {
  8091. name: "Standard Doggo",
  8092. height: math.unit(5 + 4 / 12, "feet")
  8093. },
  8094. {
  8095. name: "Big Doggo",
  8096. height: math.unit(25 + 3 / 12, "feet"),
  8097. default: true
  8098. },
  8099. ]
  8100. ))
  8101. characterMakers.push(() => makeCharacter(
  8102. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8103. {
  8104. front: {
  8105. height: math.unit(5 + 5/12, "feet"),
  8106. weight: math.unit(100, "lbs"),
  8107. name: "Front",
  8108. image: {
  8109. source: "./media/characters/odios-de-lunar/front.svg",
  8110. extra: 1468/1323,
  8111. bottom: 22/1490
  8112. }
  8113. }
  8114. },
  8115. [
  8116. {
  8117. name: "Micro",
  8118. height: math.unit(3, "inches")
  8119. },
  8120. {
  8121. name: "Normal",
  8122. height: math.unit(5.5, "feet"),
  8123. default: true
  8124. },
  8125. {
  8126. name: "Macro",
  8127. height: math.unit(100, "feet")
  8128. },
  8129. ]
  8130. ))
  8131. characterMakers.push(() => makeCharacter(
  8132. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8133. {
  8134. back: {
  8135. height: math.unit(6, "feet"),
  8136. weight: math.unit(220, "lbs"),
  8137. name: "Back",
  8138. image: {
  8139. source: "./media/characters/mandake/back.svg"
  8140. }
  8141. }
  8142. },
  8143. [
  8144. {
  8145. name: "Normal",
  8146. height: math.unit(7, "feet"),
  8147. default: true
  8148. },
  8149. {
  8150. name: "Macro",
  8151. height: math.unit(78, "feet")
  8152. },
  8153. {
  8154. name: "Macro+",
  8155. height: math.unit(300, "meters")
  8156. },
  8157. {
  8158. name: "Macro++",
  8159. height: math.unit(2400, "feet")
  8160. },
  8161. {
  8162. name: "Megamacro",
  8163. height: math.unit(5167, "meters")
  8164. },
  8165. {
  8166. name: "Gigamacro",
  8167. height: math.unit(41769, "miles")
  8168. },
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8173. {
  8174. front: {
  8175. height: math.unit(6, "feet"),
  8176. weight: math.unit(120, "lbs"),
  8177. name: "Front",
  8178. image: {
  8179. source: "./media/characters/yozey/front.svg"
  8180. }
  8181. },
  8182. frontAlt: {
  8183. height: math.unit(6, "feet"),
  8184. weight: math.unit(120, "lbs"),
  8185. name: "Front (Alt)",
  8186. image: {
  8187. source: "./media/characters/yozey/front-alt.svg"
  8188. }
  8189. },
  8190. side: {
  8191. height: math.unit(6, "feet"),
  8192. weight: math.unit(120, "lbs"),
  8193. name: "Side",
  8194. image: {
  8195. source: "./media/characters/yozey/side.svg"
  8196. }
  8197. },
  8198. },
  8199. [
  8200. {
  8201. name: "Micro",
  8202. height: math.unit(3, "inches"),
  8203. default: true
  8204. },
  8205. {
  8206. name: "Normal",
  8207. height: math.unit(6, "feet")
  8208. }
  8209. ]
  8210. ))
  8211. characterMakers.push(() => makeCharacter(
  8212. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8213. {
  8214. front: {
  8215. height: math.unit(6, "feet"),
  8216. weight: math.unit(103, "lbs"),
  8217. name: "Front",
  8218. image: {
  8219. source: "./media/characters/valeska-voss/front.svg"
  8220. }
  8221. }
  8222. },
  8223. [
  8224. {
  8225. name: "Mini-Sized Sub",
  8226. height: math.unit(3.1, "inches")
  8227. },
  8228. {
  8229. name: "Mid-Sized Sub",
  8230. height: math.unit(6.2, "inches")
  8231. },
  8232. {
  8233. name: "Full-Sized Sub",
  8234. height: math.unit(9.3, "inches")
  8235. },
  8236. {
  8237. name: "Normal",
  8238. height: math.unit(5 + 2 / 12, "foot"),
  8239. default: true
  8240. },
  8241. ]
  8242. ))
  8243. characterMakers.push(() => makeCharacter(
  8244. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8245. {
  8246. front: {
  8247. height: math.unit(6, "feet"),
  8248. weight: math.unit(160, "lbs"),
  8249. name: "Front",
  8250. image: {
  8251. source: "./media/characters/gene-zeta/front.svg",
  8252. extra: 3006 / 2826,
  8253. bottom: 182 / 3188
  8254. }
  8255. }
  8256. },
  8257. [
  8258. {
  8259. name: "Micro",
  8260. height: math.unit(6, "inches")
  8261. },
  8262. {
  8263. name: "Normal",
  8264. height: math.unit(5 + 11 / 12, "foot"),
  8265. default: true
  8266. },
  8267. {
  8268. name: "Macro",
  8269. height: math.unit(140, "feet")
  8270. },
  8271. {
  8272. name: "Supercharged",
  8273. height: math.unit(2500, "feet")
  8274. },
  8275. ]
  8276. ))
  8277. characterMakers.push(() => makeCharacter(
  8278. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8279. {
  8280. front: {
  8281. height: math.unit(6, "feet"),
  8282. weight: math.unit(350, "lbs"),
  8283. name: "Front",
  8284. image: {
  8285. source: "./media/characters/razinox/front.svg",
  8286. extra: 1686 / 1548,
  8287. bottom: 28.2 / 1868
  8288. }
  8289. },
  8290. back: {
  8291. height: math.unit(6, "feet"),
  8292. weight: math.unit(350, "lbs"),
  8293. name: "Back",
  8294. image: {
  8295. source: "./media/characters/razinox/back.svg",
  8296. extra: 1660 / 1590,
  8297. bottom: 15 / 1665
  8298. }
  8299. },
  8300. },
  8301. [
  8302. {
  8303. name: "Normal",
  8304. height: math.unit(10 + 8 / 12, "foot")
  8305. },
  8306. {
  8307. name: "Minimacro",
  8308. height: math.unit(15, "foot")
  8309. },
  8310. {
  8311. name: "Macro",
  8312. height: math.unit(60, "foot"),
  8313. default: true
  8314. },
  8315. {
  8316. name: "Megamacro",
  8317. height: math.unit(5, "miles")
  8318. },
  8319. {
  8320. name: "Gigamacro",
  8321. height: math.unit(6000, "miles")
  8322. },
  8323. ]
  8324. ))
  8325. characterMakers.push(() => makeCharacter(
  8326. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8327. {
  8328. front: {
  8329. height: math.unit(6, "feet"),
  8330. weight: math.unit(150, "lbs"),
  8331. name: "Front",
  8332. image: {
  8333. source: "./media/characters/cobalt/front.svg"
  8334. }
  8335. }
  8336. },
  8337. [
  8338. {
  8339. name: "Normal",
  8340. height: math.unit(8 + 1 / 12, "foot")
  8341. },
  8342. {
  8343. name: "Macro",
  8344. height: math.unit(111, "foot"),
  8345. default: true
  8346. },
  8347. {
  8348. name: "Supracosmic",
  8349. height: math.unit(1e42, "feet")
  8350. },
  8351. ]
  8352. ))
  8353. characterMakers.push(() => makeCharacter(
  8354. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8355. {
  8356. front: {
  8357. height: math.unit(5, "inches"),
  8358. name: "Front",
  8359. image: {
  8360. source: "./media/characters/amanda/front.svg",
  8361. extra: 926/791,
  8362. bottom: 38/964
  8363. }
  8364. },
  8365. back: {
  8366. height: math.unit(5, "inches"),
  8367. name: "Back",
  8368. image: {
  8369. source: "./media/characters/amanda/back.svg",
  8370. extra: 909/805,
  8371. bottom: 43/952
  8372. }
  8373. },
  8374. },
  8375. [
  8376. {
  8377. name: "Micro",
  8378. height: math.unit(5, "inches"),
  8379. default: true
  8380. },
  8381. ]
  8382. ))
  8383. characterMakers.push(() => makeCharacter(
  8384. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8385. {
  8386. front: {
  8387. height: math.unit(2.75, "meters"),
  8388. weight: math.unit(1200, "lb"),
  8389. name: "Front",
  8390. image: {
  8391. source: "./media/characters/teal/front.svg",
  8392. extra: 2463 / 2320,
  8393. bottom: 166 / 2629
  8394. }
  8395. },
  8396. back: {
  8397. height: math.unit(2.75, "meters"),
  8398. weight: math.unit(1200, "lb"),
  8399. name: "Back",
  8400. image: {
  8401. source: "./media/characters/teal/back.svg",
  8402. extra: 2580 / 2489,
  8403. bottom: 151 / 2731
  8404. }
  8405. },
  8406. sitting: {
  8407. height: math.unit(1.9, "meters"),
  8408. weight: math.unit(1200, "lb"),
  8409. name: "Sitting",
  8410. image: {
  8411. source: "./media/characters/teal/sitting.svg",
  8412. extra: 623 / 590,
  8413. bottom: 121 / 744
  8414. }
  8415. },
  8416. standing: {
  8417. height: math.unit(2.75, "meters"),
  8418. weight: math.unit(1200, "lb"),
  8419. name: "Standing",
  8420. image: {
  8421. source: "./media/characters/teal/standing.svg",
  8422. extra: 923 / 893,
  8423. bottom: 60 / 983
  8424. }
  8425. },
  8426. stretching: {
  8427. height: math.unit(3.65, "meters"),
  8428. weight: math.unit(1200, "lb"),
  8429. name: "Stretching",
  8430. image: {
  8431. source: "./media/characters/teal/stretching.svg",
  8432. extra: 1276 / 1244,
  8433. bottom: 0 / 1276
  8434. }
  8435. },
  8436. legged: {
  8437. height: math.unit(1.3, "meters"),
  8438. weight: math.unit(100, "lb"),
  8439. name: "Legged",
  8440. image: {
  8441. source: "./media/characters/teal/legged.svg",
  8442. extra: 462 / 437,
  8443. bottom: 24 / 486
  8444. }
  8445. },
  8446. naga: {
  8447. height: math.unit(5.4, "meters"),
  8448. weight: math.unit(4000, "lb"),
  8449. name: "Naga",
  8450. image: {
  8451. source: "./media/characters/teal/naga.svg",
  8452. extra: 1902 / 1858,
  8453. bottom: 0 / 1902
  8454. }
  8455. },
  8456. hand: {
  8457. height: math.unit(0.52, "meters"),
  8458. name: "Hand",
  8459. image: {
  8460. source: "./media/characters/teal/hand.svg"
  8461. }
  8462. },
  8463. maw: {
  8464. height: math.unit(0.43, "meters"),
  8465. name: "Maw",
  8466. image: {
  8467. source: "./media/characters/teal/maw.svg"
  8468. }
  8469. },
  8470. slit: {
  8471. height: math.unit(0.25, "meters"),
  8472. name: "Slit",
  8473. image: {
  8474. source: "./media/characters/teal/slit.svg"
  8475. }
  8476. },
  8477. },
  8478. [
  8479. {
  8480. name: "Normal",
  8481. height: math.unit(2.75, "meters"),
  8482. default: true
  8483. },
  8484. {
  8485. name: "Macro",
  8486. height: math.unit(300, "feet")
  8487. },
  8488. {
  8489. name: "Macro+",
  8490. height: math.unit(2000, "feet")
  8491. },
  8492. ]
  8493. ))
  8494. characterMakers.push(() => makeCharacter(
  8495. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8496. {
  8497. frontCat: {
  8498. height: math.unit(6, "feet"),
  8499. weight: math.unit(180, "lbs"),
  8500. name: "Front (Cat)",
  8501. image: {
  8502. source: "./media/characters/ravin-amulet/front-cat.svg"
  8503. }
  8504. },
  8505. frontCatAlt: {
  8506. height: math.unit(6, "feet"),
  8507. weight: math.unit(180, "lbs"),
  8508. name: "Front (Alt, Cat)",
  8509. image: {
  8510. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8511. }
  8512. },
  8513. frontWerewolf: {
  8514. height: math.unit(6 * 1.2, "feet"),
  8515. weight: math.unit(225, "lbs"),
  8516. name: "Front (Werewolf)",
  8517. image: {
  8518. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8519. }
  8520. },
  8521. backWerewolf: {
  8522. height: math.unit(6 * 1.2, "feet"),
  8523. weight: math.unit(225, "lbs"),
  8524. name: "Back (Werewolf)",
  8525. image: {
  8526. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8527. }
  8528. },
  8529. },
  8530. [
  8531. {
  8532. name: "Nano",
  8533. height: math.unit(1, "micrometer")
  8534. },
  8535. {
  8536. name: "Micro",
  8537. height: math.unit(1, "inch")
  8538. },
  8539. {
  8540. name: "Normal",
  8541. height: math.unit(6, "feet"),
  8542. default: true
  8543. },
  8544. {
  8545. name: "Macro",
  8546. height: math.unit(60, "feet")
  8547. }
  8548. ]
  8549. ))
  8550. characterMakers.push(() => makeCharacter(
  8551. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8552. {
  8553. front: {
  8554. height: math.unit(6, "feet"),
  8555. weight: math.unit(165, "lbs"),
  8556. name: "Front",
  8557. image: {
  8558. source: "./media/characters/fluoresce/front.svg"
  8559. }
  8560. }
  8561. },
  8562. [
  8563. {
  8564. name: "Micro",
  8565. height: math.unit(6, "cm")
  8566. },
  8567. {
  8568. name: "Normal",
  8569. height: math.unit(5 + 7 / 12, "feet"),
  8570. default: true
  8571. },
  8572. {
  8573. name: "Macro",
  8574. height: math.unit(56, "feet")
  8575. },
  8576. {
  8577. name: "Megamacro",
  8578. height: math.unit(1.9, "miles")
  8579. },
  8580. ]
  8581. ))
  8582. characterMakers.push(() => makeCharacter(
  8583. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8584. {
  8585. front: {
  8586. height: math.unit(9 + 6 / 12, "feet"),
  8587. weight: math.unit(523, "lbs"),
  8588. name: "Side",
  8589. image: {
  8590. source: "./media/characters/aurora/side.svg",
  8591. extra: 474/393,
  8592. bottom: 5/479
  8593. }
  8594. }
  8595. },
  8596. [
  8597. {
  8598. name: "Normal",
  8599. height: math.unit(9 + 6 / 12, "feet")
  8600. },
  8601. {
  8602. name: "Macro",
  8603. height: math.unit(96, "feet"),
  8604. default: true
  8605. },
  8606. {
  8607. name: "Macro+",
  8608. height: math.unit(243, "feet")
  8609. },
  8610. ]
  8611. ))
  8612. characterMakers.push(() => makeCharacter(
  8613. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8614. {
  8615. front: {
  8616. height: math.unit(194, "cm"),
  8617. weight: math.unit(90, "kg"),
  8618. name: "Front",
  8619. image: {
  8620. source: "./media/characters/ranek/front.svg",
  8621. extra: 1862/1791,
  8622. bottom: 80/1942
  8623. }
  8624. },
  8625. back: {
  8626. height: math.unit(194, "cm"),
  8627. weight: math.unit(90, "kg"),
  8628. name: "Back",
  8629. image: {
  8630. source: "./media/characters/ranek/back.svg",
  8631. extra: 1853/1787,
  8632. bottom: 74/1927
  8633. }
  8634. },
  8635. feral: {
  8636. height: math.unit(30, "cm"),
  8637. weight: math.unit(1.6, "lbs"),
  8638. name: "Feral",
  8639. image: {
  8640. source: "./media/characters/ranek/feral.svg",
  8641. extra: 990/631,
  8642. bottom: 29/1019
  8643. }
  8644. },
  8645. },
  8646. [
  8647. {
  8648. name: "Normal",
  8649. height: math.unit(194, "cm"),
  8650. default: true
  8651. },
  8652. {
  8653. name: "Macro",
  8654. height: math.unit(100, "meters")
  8655. },
  8656. ]
  8657. ))
  8658. characterMakers.push(() => makeCharacter(
  8659. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8660. {
  8661. front: {
  8662. height: math.unit(5 + 6 / 12, "feet"),
  8663. weight: math.unit(153, "lbs"),
  8664. name: "Front",
  8665. image: {
  8666. source: "./media/characters/andrew-cooper/front.svg"
  8667. }
  8668. },
  8669. },
  8670. [
  8671. {
  8672. name: "Nano",
  8673. height: math.unit(1, "mm")
  8674. },
  8675. {
  8676. name: "Micro",
  8677. height: math.unit(2, "inches")
  8678. },
  8679. {
  8680. name: "Normal",
  8681. height: math.unit(5 + 6 / 12, "feet"),
  8682. default: true
  8683. }
  8684. ]
  8685. ))
  8686. characterMakers.push(() => makeCharacter(
  8687. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8688. {
  8689. front: {
  8690. height: math.unit(6, "feet"),
  8691. weight: math.unit(180, "lbs"),
  8692. name: "Front",
  8693. image: {
  8694. source: "./media/characters/akane-sato/front.svg",
  8695. extra: 1219 / 1140
  8696. }
  8697. },
  8698. back: {
  8699. height: math.unit(6, "feet"),
  8700. weight: math.unit(180, "lbs"),
  8701. name: "Back",
  8702. image: {
  8703. source: "./media/characters/akane-sato/back.svg",
  8704. extra: 1219 / 1170
  8705. }
  8706. },
  8707. },
  8708. [
  8709. {
  8710. name: "Normal",
  8711. height: math.unit(2.5, "meters")
  8712. },
  8713. {
  8714. name: "Macro",
  8715. height: math.unit(250, "meters"),
  8716. default: true
  8717. },
  8718. {
  8719. name: "Megamacro",
  8720. height: math.unit(25, "km")
  8721. },
  8722. ]
  8723. ))
  8724. characterMakers.push(() => makeCharacter(
  8725. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8726. {
  8727. front: {
  8728. height: math.unit(6, "feet"),
  8729. weight: math.unit(65, "kg"),
  8730. name: "Front",
  8731. image: {
  8732. source: "./media/characters/rook/front.svg",
  8733. extra: 960 / 950
  8734. }
  8735. }
  8736. },
  8737. [
  8738. {
  8739. name: "Normal",
  8740. height: math.unit(8.8, "feet")
  8741. },
  8742. {
  8743. name: "Macro",
  8744. height: math.unit(88, "feet"),
  8745. default: true
  8746. },
  8747. {
  8748. name: "Megamacro",
  8749. height: math.unit(8, "miles")
  8750. },
  8751. ]
  8752. ))
  8753. characterMakers.push(() => makeCharacter(
  8754. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8755. {
  8756. front: {
  8757. height: math.unit(12 + 2 / 12, "feet"),
  8758. weight: math.unit(808, "lbs"),
  8759. name: "Front",
  8760. image: {
  8761. source: "./media/characters/prodigy/front.svg"
  8762. }
  8763. }
  8764. },
  8765. [
  8766. {
  8767. name: "Normal",
  8768. height: math.unit(12 + 2 / 12, "feet"),
  8769. default: true
  8770. },
  8771. {
  8772. name: "Macro",
  8773. height: math.unit(143, "feet")
  8774. },
  8775. {
  8776. name: "Macro+",
  8777. height: math.unit(400, "feet")
  8778. },
  8779. ]
  8780. ))
  8781. characterMakers.push(() => makeCharacter(
  8782. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8783. {
  8784. front: {
  8785. height: math.unit(6, "feet"),
  8786. weight: math.unit(225, "lbs"),
  8787. name: "Front",
  8788. image: {
  8789. source: "./media/characters/daniel/front.svg"
  8790. }
  8791. },
  8792. leaning: {
  8793. height: math.unit(6, "feet"),
  8794. weight: math.unit(225, "lbs"),
  8795. name: "Leaning",
  8796. image: {
  8797. source: "./media/characters/daniel/leaning.svg"
  8798. }
  8799. },
  8800. },
  8801. [
  8802. {
  8803. name: "Macro",
  8804. height: math.unit(1000, "feet"),
  8805. default: true
  8806. },
  8807. ]
  8808. ))
  8809. characterMakers.push(() => makeCharacter(
  8810. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8811. {
  8812. front: {
  8813. height: math.unit(6, "feet"),
  8814. weight: math.unit(88, "lbs"),
  8815. name: "Front",
  8816. image: {
  8817. source: "./media/characters/chiros/front.svg",
  8818. extra: 306 / 226
  8819. }
  8820. },
  8821. side: {
  8822. height: math.unit(6, "feet"),
  8823. weight: math.unit(88, "lbs"),
  8824. name: "Side",
  8825. image: {
  8826. source: "./media/characters/chiros/side.svg",
  8827. extra: 306 / 226
  8828. }
  8829. },
  8830. },
  8831. [
  8832. {
  8833. name: "Normal",
  8834. height: math.unit(6, "cm"),
  8835. default: true
  8836. },
  8837. ]
  8838. ))
  8839. characterMakers.push(() => makeCharacter(
  8840. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8841. {
  8842. front: {
  8843. height: math.unit(6, "feet"),
  8844. weight: math.unit(100, "lbs"),
  8845. name: "Front",
  8846. image: {
  8847. source: "./media/characters/selka/front.svg",
  8848. extra: 947 / 887
  8849. }
  8850. }
  8851. },
  8852. [
  8853. {
  8854. name: "Normal",
  8855. height: math.unit(5, "cm"),
  8856. default: true
  8857. },
  8858. ]
  8859. ))
  8860. characterMakers.push(() => makeCharacter(
  8861. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8862. {
  8863. front: {
  8864. height: math.unit(8 + 3 / 12, "feet"),
  8865. weight: math.unit(424, "lbs"),
  8866. name: "Front",
  8867. image: {
  8868. source: "./media/characters/verin/front.svg",
  8869. extra: 1845 / 1550
  8870. }
  8871. },
  8872. frontArmored: {
  8873. height: math.unit(8 + 3 / 12, "feet"),
  8874. weight: math.unit(424, "lbs"),
  8875. name: "Front (Armored)",
  8876. image: {
  8877. source: "./media/characters/verin/front-armor.svg",
  8878. extra: 1845 / 1550,
  8879. bottom: 0.01
  8880. }
  8881. },
  8882. back: {
  8883. height: math.unit(8 + 3 / 12, "feet"),
  8884. weight: math.unit(424, "lbs"),
  8885. name: "Back",
  8886. image: {
  8887. source: "./media/characters/verin/back.svg",
  8888. bottom: 0.1,
  8889. extra: 1
  8890. }
  8891. },
  8892. foot: {
  8893. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8894. name: "Foot",
  8895. image: {
  8896. source: "./media/characters/verin/foot.svg"
  8897. }
  8898. },
  8899. },
  8900. [
  8901. {
  8902. name: "Normal",
  8903. height: math.unit(8 + 3 / 12, "feet")
  8904. },
  8905. {
  8906. name: "Minimacro",
  8907. height: math.unit(21, "feet"),
  8908. default: true
  8909. },
  8910. {
  8911. name: "Macro",
  8912. height: math.unit(626, "feet")
  8913. },
  8914. ]
  8915. ))
  8916. characterMakers.push(() => makeCharacter(
  8917. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8918. {
  8919. front: {
  8920. height: math.unit(2.718, "meters"),
  8921. weight: math.unit(150, "lbs"),
  8922. name: "Front",
  8923. image: {
  8924. source: "./media/characters/sovrim-terraquian/front.svg",
  8925. extra: 1752/1689,
  8926. bottom: 36/1788
  8927. }
  8928. },
  8929. back: {
  8930. height: math.unit(2.718, "meters"),
  8931. weight: math.unit(150, "lbs"),
  8932. name: "Back",
  8933. image: {
  8934. source: "./media/characters/sovrim-terraquian/back.svg",
  8935. extra: 1698/1657,
  8936. bottom: 58/1756
  8937. }
  8938. },
  8939. tongue: {
  8940. height: math.unit(2.865, "feet"),
  8941. name: "Tongue",
  8942. image: {
  8943. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8944. }
  8945. },
  8946. hand: {
  8947. height: math.unit(1.61, "feet"),
  8948. name: "Hand",
  8949. image: {
  8950. source: "./media/characters/sovrim-terraquian/hand.svg"
  8951. }
  8952. },
  8953. foot: {
  8954. height: math.unit(1.05, "feet"),
  8955. name: "Foot",
  8956. image: {
  8957. source: "./media/characters/sovrim-terraquian/foot.svg"
  8958. }
  8959. },
  8960. footAlt: {
  8961. height: math.unit(0.88, "feet"),
  8962. name: "Foot (Alt)",
  8963. image: {
  8964. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Micro",
  8971. height: math.unit(2, "inches")
  8972. },
  8973. {
  8974. name: "Small",
  8975. height: math.unit(1, "meter")
  8976. },
  8977. {
  8978. name: "Normal",
  8979. height: math.unit(Math.E, "meters"),
  8980. default: true
  8981. },
  8982. {
  8983. name: "Macro",
  8984. height: math.unit(20, "meters")
  8985. },
  8986. {
  8987. name: "Macro+",
  8988. height: math.unit(400, "meters")
  8989. },
  8990. ]
  8991. ))
  8992. characterMakers.push(() => makeCharacter(
  8993. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8994. {
  8995. front: {
  8996. height: math.unit(7, "feet"),
  8997. weight: math.unit(489, "lbs"),
  8998. name: "Front",
  8999. image: {
  9000. source: "./media/characters/reece-silvermane/front.svg",
  9001. bottom: 0.02,
  9002. extra: 1
  9003. }
  9004. },
  9005. },
  9006. [
  9007. {
  9008. name: "Macro",
  9009. height: math.unit(1.5, "miles"),
  9010. default: true
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9016. {
  9017. front: {
  9018. height: math.unit(6, "feet"),
  9019. weight: math.unit(78, "kg"),
  9020. name: "Front",
  9021. image: {
  9022. source: "./media/characters/kane/front.svg",
  9023. extra: 978 / 899
  9024. }
  9025. },
  9026. },
  9027. [
  9028. {
  9029. name: "Normal",
  9030. height: math.unit(2.1, "m"),
  9031. },
  9032. {
  9033. name: "Macro",
  9034. height: math.unit(1, "km"),
  9035. default: true
  9036. },
  9037. ]
  9038. ))
  9039. characterMakers.push(() => makeCharacter(
  9040. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9041. {
  9042. front: {
  9043. height: math.unit(6, "feet"),
  9044. weight: math.unit(200, "kg"),
  9045. name: "Front",
  9046. image: {
  9047. source: "./media/characters/tegon/front.svg",
  9048. bottom: 0.01,
  9049. extra: 1
  9050. }
  9051. },
  9052. },
  9053. [
  9054. {
  9055. name: "Micro",
  9056. height: math.unit(1, "inch")
  9057. },
  9058. {
  9059. name: "Normal",
  9060. height: math.unit(6 + 3 / 12, "feet"),
  9061. default: true
  9062. },
  9063. {
  9064. name: "Macro",
  9065. height: math.unit(300, "feet")
  9066. },
  9067. {
  9068. name: "Megamacro",
  9069. height: math.unit(69, "miles")
  9070. },
  9071. ]
  9072. ))
  9073. characterMakers.push(() => makeCharacter(
  9074. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9075. {
  9076. side: {
  9077. height: math.unit(6, "feet"),
  9078. weight: math.unit(2304, "lbs"),
  9079. name: "Side",
  9080. image: {
  9081. source: "./media/characters/arcturax/side.svg",
  9082. extra: 790 / 376,
  9083. bottom: 0.01
  9084. }
  9085. },
  9086. },
  9087. [
  9088. {
  9089. name: "Micro",
  9090. height: math.unit(2, "inch")
  9091. },
  9092. {
  9093. name: "Normal",
  9094. height: math.unit(6, "feet")
  9095. },
  9096. {
  9097. name: "Macro",
  9098. height: math.unit(39, "feet"),
  9099. default: true
  9100. },
  9101. {
  9102. name: "Megamacro",
  9103. height: math.unit(7, "miles")
  9104. },
  9105. ]
  9106. ))
  9107. characterMakers.push(() => makeCharacter(
  9108. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9109. {
  9110. front: {
  9111. height: math.unit(6, "feet"),
  9112. weight: math.unit(50, "lbs"),
  9113. name: "Front",
  9114. image: {
  9115. source: "./media/characters/sentri/front.svg",
  9116. extra: 1750 / 1570,
  9117. bottom: 0.025
  9118. }
  9119. },
  9120. frontAlt: {
  9121. height: math.unit(6, "feet"),
  9122. weight: math.unit(50, "lbs"),
  9123. name: "Front (Alt)",
  9124. image: {
  9125. source: "./media/characters/sentri/front-alt.svg",
  9126. extra: 1750 / 1570,
  9127. bottom: 0.025
  9128. }
  9129. },
  9130. },
  9131. [
  9132. {
  9133. name: "Normal",
  9134. height: math.unit(15, "feet"),
  9135. default: true
  9136. },
  9137. {
  9138. name: "Macro",
  9139. height: math.unit(2500, "feet")
  9140. }
  9141. ]
  9142. ))
  9143. characterMakers.push(() => makeCharacter(
  9144. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9145. {
  9146. front: {
  9147. height: math.unit(5 + 8 / 12, "feet"),
  9148. weight: math.unit(130, "lbs"),
  9149. name: "Front",
  9150. image: {
  9151. source: "./media/characters/corvin/front.svg",
  9152. extra: 1803 / 1629
  9153. }
  9154. },
  9155. frontShirt: {
  9156. height: math.unit(5 + 8 / 12, "feet"),
  9157. weight: math.unit(130, "lbs"),
  9158. name: "Front (Shirt)",
  9159. image: {
  9160. source: "./media/characters/corvin/front-shirt.svg",
  9161. extra: 1803 / 1629
  9162. }
  9163. },
  9164. frontPoncho: {
  9165. height: math.unit(5 + 8 / 12, "feet"),
  9166. weight: math.unit(130, "lbs"),
  9167. name: "Front (Poncho)",
  9168. image: {
  9169. source: "./media/characters/corvin/front-poncho.svg",
  9170. extra: 1803 / 1629
  9171. }
  9172. },
  9173. side: {
  9174. height: math.unit(5 + 8 / 12, "feet"),
  9175. weight: math.unit(130, "lbs"),
  9176. name: "Side",
  9177. image: {
  9178. source: "./media/characters/corvin/side.svg",
  9179. extra: 1012 / 945
  9180. }
  9181. },
  9182. back: {
  9183. height: math.unit(5 + 8 / 12, "feet"),
  9184. weight: math.unit(130, "lbs"),
  9185. name: "Back",
  9186. image: {
  9187. source: "./media/characters/corvin/back.svg",
  9188. extra: 1803 / 1629
  9189. }
  9190. },
  9191. },
  9192. [
  9193. {
  9194. name: "Micro",
  9195. height: math.unit(3, "inches")
  9196. },
  9197. {
  9198. name: "Normal",
  9199. height: math.unit(5 + 8 / 12, "feet")
  9200. },
  9201. {
  9202. name: "Macro",
  9203. height: math.unit(300, "feet"),
  9204. default: true
  9205. },
  9206. {
  9207. name: "Megamacro",
  9208. height: math.unit(500, "miles")
  9209. }
  9210. ]
  9211. ))
  9212. characterMakers.push(() => makeCharacter(
  9213. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9214. {
  9215. front: {
  9216. height: math.unit(6, "feet"),
  9217. weight: math.unit(135, "lbs"),
  9218. name: "Front",
  9219. image: {
  9220. source: "./media/characters/q/front.svg",
  9221. extra: 854 / 752,
  9222. bottom: 0.005
  9223. }
  9224. },
  9225. back: {
  9226. height: math.unit(6, "feet"),
  9227. weight: math.unit(130, "lbs"),
  9228. name: "Back",
  9229. image: {
  9230. source: "./media/characters/q/back.svg",
  9231. extra: 854 / 752
  9232. }
  9233. },
  9234. },
  9235. [
  9236. {
  9237. name: "Macro",
  9238. height: math.unit(90, "feet"),
  9239. default: true
  9240. },
  9241. {
  9242. name: "Extra Macro",
  9243. height: math.unit(300, "feet"),
  9244. },
  9245. {
  9246. name: "BIG WALF",
  9247. height: math.unit(750, "feet"),
  9248. },
  9249. ]
  9250. ))
  9251. characterMakers.push(() => makeCharacter(
  9252. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9253. {
  9254. front: {
  9255. height: math.unit(3, "feet"),
  9256. weight: math.unit(28, "lbs"),
  9257. name: "Front",
  9258. image: {
  9259. source: "./media/characters/citrine/front.svg"
  9260. }
  9261. }
  9262. },
  9263. [
  9264. {
  9265. name: "Normal",
  9266. height: math.unit(3, "feet"),
  9267. default: true
  9268. }
  9269. ]
  9270. ))
  9271. characterMakers.push(() => makeCharacter(
  9272. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9273. {
  9274. front: {
  9275. height: math.unit(14, "feet"),
  9276. weight: math.unit(1450, "kg"),
  9277. preyCapacity: math.unit(15, "people"),
  9278. name: "Front",
  9279. image: {
  9280. source: "./media/characters/aura-starwind/front.svg",
  9281. extra: 1440/1327,
  9282. bottom: 11/1451
  9283. }
  9284. },
  9285. side: {
  9286. height: math.unit(14, "feet"),
  9287. weight: math.unit(1450, "kg"),
  9288. preyCapacity: math.unit(15, "people"),
  9289. name: "Side",
  9290. image: {
  9291. source: "./media/characters/aura-starwind/side.svg",
  9292. extra: 1654 / 1497
  9293. }
  9294. },
  9295. taur: {
  9296. height: math.unit(18, "feet"),
  9297. weight: math.unit(5500, "kg"),
  9298. preyCapacity: math.unit(50, "people"),
  9299. name: "Taur",
  9300. image: {
  9301. source: "./media/characters/aura-starwind/taur.svg",
  9302. extra: 1760 / 1650
  9303. }
  9304. },
  9305. feral: {
  9306. height: math.unit(46, "feet"),
  9307. weight: math.unit(25000, "kg"),
  9308. preyCapacity: math.unit(120, "people"),
  9309. name: "Feral",
  9310. image: {
  9311. source: "./media/characters/aura-starwind/feral.svg"
  9312. }
  9313. },
  9314. },
  9315. [
  9316. {
  9317. name: "Normal",
  9318. height: math.unit(14, "feet"),
  9319. default: true
  9320. },
  9321. {
  9322. name: "Macro",
  9323. height: math.unit(50, "meters")
  9324. },
  9325. {
  9326. name: "Megamacro",
  9327. height: math.unit(5000, "meters")
  9328. },
  9329. {
  9330. name: "Gigamacro",
  9331. height: math.unit(100000, "kilometers")
  9332. },
  9333. ]
  9334. ))
  9335. characterMakers.push(() => makeCharacter(
  9336. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9337. {
  9338. front: {
  9339. height: math.unit(2 + 7 / 12, "feet"),
  9340. weight: math.unit(32, "lbs"),
  9341. name: "Front",
  9342. image: {
  9343. source: "./media/characters/rivet/front.svg",
  9344. extra: 1716 / 1658,
  9345. bottom: 0.03
  9346. }
  9347. },
  9348. foot: {
  9349. height: math.unit(0.551, "feet"),
  9350. name: "Rivet's Foot",
  9351. image: {
  9352. source: "./media/characters/rivet/foot.svg"
  9353. },
  9354. rename: true
  9355. }
  9356. },
  9357. [
  9358. {
  9359. name: "Micro",
  9360. height: math.unit(1.5, "inches"),
  9361. },
  9362. {
  9363. name: "Normal",
  9364. height: math.unit(2 + 7 / 12, "feet"),
  9365. default: true
  9366. },
  9367. {
  9368. name: "Macro",
  9369. height: math.unit(85, "feet")
  9370. },
  9371. {
  9372. name: "Megamacro",
  9373. height: math.unit(2.2, "km")
  9374. }
  9375. ]
  9376. ))
  9377. characterMakers.push(() => makeCharacter(
  9378. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9379. {
  9380. front: {
  9381. height: math.unit(5 + 9 / 12, "feet"),
  9382. weight: math.unit(150, "lbs"),
  9383. name: "Front",
  9384. image: {
  9385. source: "./media/characters/coffee/front.svg",
  9386. extra: 946/880,
  9387. bottom: 66/1012
  9388. }
  9389. },
  9390. foot: {
  9391. height: math.unit(1.29, "feet"),
  9392. name: "Foot",
  9393. image: {
  9394. source: "./media/characters/coffee/foot.svg"
  9395. }
  9396. },
  9397. },
  9398. [
  9399. {
  9400. name: "Micro",
  9401. height: math.unit(2, "inches"),
  9402. },
  9403. {
  9404. name: "Normal",
  9405. height: math.unit(5 + 9 / 12, "feet"),
  9406. default: true
  9407. },
  9408. {
  9409. name: "Macro",
  9410. height: math.unit(800, "feet")
  9411. },
  9412. {
  9413. name: "Megamacro",
  9414. height: math.unit(25, "miles")
  9415. }
  9416. ]
  9417. ))
  9418. characterMakers.push(() => makeCharacter(
  9419. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9420. {
  9421. front: {
  9422. height: math.unit(6, "feet"),
  9423. weight: math.unit(200, "lbs"),
  9424. name: "Front",
  9425. image: {
  9426. source: "./media/characters/chari-gal/front.svg",
  9427. extra: 1568 / 1385,
  9428. bottom: 0.047
  9429. }
  9430. },
  9431. gigantamax: {
  9432. height: math.unit(6 * 16, "feet"),
  9433. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9434. name: "Gigantamax",
  9435. image: {
  9436. source: "./media/characters/chari-gal/gigantamax.svg",
  9437. extra: 1124 / 888,
  9438. bottom: 0.03
  9439. }
  9440. },
  9441. },
  9442. [
  9443. {
  9444. name: "Normal",
  9445. height: math.unit(5 + 7 / 12, "feet")
  9446. },
  9447. {
  9448. name: "Macro",
  9449. height: math.unit(200, "feet"),
  9450. default: true
  9451. }
  9452. ]
  9453. ))
  9454. characterMakers.push(() => makeCharacter(
  9455. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9456. {
  9457. front: {
  9458. height: math.unit(6, "feet"),
  9459. weight: math.unit(150, "lbs"),
  9460. name: "Front",
  9461. image: {
  9462. source: "./media/characters/nova/front.svg",
  9463. extra: 5000 / 4722,
  9464. bottom: 0.02
  9465. }
  9466. }
  9467. },
  9468. [
  9469. {
  9470. name: "Micro-",
  9471. height: math.unit(0.8, "inches")
  9472. },
  9473. {
  9474. name: "Micro",
  9475. height: math.unit(2, "inches"),
  9476. default: true
  9477. },
  9478. ]
  9479. ))
  9480. characterMakers.push(() => makeCharacter(
  9481. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9482. {
  9483. koboldFront: {
  9484. height: math.unit(3 + 1 / 12, "feet"),
  9485. weight: math.unit(21.7, "lbs"),
  9486. name: "Front",
  9487. image: {
  9488. source: "./media/characters/argent/kobold-front.svg",
  9489. extra: 1471 / 1331,
  9490. bottom: 100.8 / 1575.5
  9491. },
  9492. form: "kobold",
  9493. default: true
  9494. },
  9495. dragonFront: {
  9496. height: math.unit(75, "inches"),
  9497. name: "Front",
  9498. image: {
  9499. source: "./media/characters/argent/dragon-front.svg",
  9500. extra: 1389/1248,
  9501. bottom: 54/1443
  9502. },
  9503. form: "dragon",
  9504. },
  9505. dragonBack: {
  9506. height: math.unit(75, "inches"),
  9507. name: "Back",
  9508. image: {
  9509. source: "./media/characters/argent/dragon-back.svg",
  9510. extra: 1399/1271,
  9511. bottom: 23/1422
  9512. },
  9513. form: "dragon",
  9514. },
  9515. dragonDressed: {
  9516. height: math.unit(75, "inches"),
  9517. name: "Dressed",
  9518. image: {
  9519. source: "./media/characters/argent/dragon-dressed.svg",
  9520. extra: 1350/1215,
  9521. bottom: 26/1376
  9522. },
  9523. form: "dragon"
  9524. },
  9525. dragonHead: {
  9526. height: math.unit(23.5, "inches"),
  9527. name: "Head",
  9528. image: {
  9529. source: "./media/characters/argent/dragon-head.svg"
  9530. },
  9531. form: "dragon",
  9532. },
  9533. },
  9534. [
  9535. {
  9536. name: "Micro",
  9537. height: math.unit(2, "inches"),
  9538. form: "kobold",
  9539. },
  9540. {
  9541. name: "Normal",
  9542. height: math.unit(3 + 1 / 12, "feet"),
  9543. form: "kobold",
  9544. default: true
  9545. },
  9546. {
  9547. name: "Macro",
  9548. height: math.unit(120, "feet"),
  9549. form: "kobold",
  9550. },
  9551. {
  9552. name: "Speck",
  9553. height: math.unit(1, "mm"),
  9554. form: "dragon",
  9555. },
  9556. {
  9557. name: "Tiny",
  9558. height: math.unit(1, "cm"),
  9559. form: "dragon",
  9560. },
  9561. {
  9562. name: "Micro",
  9563. height: math.unit(5, "cm"),
  9564. form: "dragon",
  9565. },
  9566. {
  9567. name: "Normal",
  9568. height: math.unit(75, "inches"),
  9569. form: "dragon",
  9570. default: true
  9571. },
  9572. {
  9573. name: "Extra Tall",
  9574. height: math.unit(9, "feet"),
  9575. form: "dragon",
  9576. },
  9577. {
  9578. name: "Inconvenient",
  9579. height: math.unit(5, "meters"),
  9580. form: "dragon",
  9581. },
  9582. {
  9583. name: "Macro",
  9584. height: math.unit(70, "meters"),
  9585. form: "dragon",
  9586. },
  9587. {
  9588. name: "Macro+",
  9589. height: math.unit(250, "meters"),
  9590. form: "dragon",
  9591. },
  9592. {
  9593. name: "Megamacro",
  9594. height: math.unit(20, "km"),
  9595. form: "dragon",
  9596. },
  9597. {
  9598. name: "Mountainous",
  9599. height: math.unit(100, "km"),
  9600. form: "dragon",
  9601. },
  9602. {
  9603. name: "Continental",
  9604. height: math.unit(2, "megameters"),
  9605. form: "dragon",
  9606. },
  9607. {
  9608. name: "Too Big",
  9609. height: math.unit(900, "megameters"),
  9610. form: "dragon",
  9611. },
  9612. ],
  9613. {
  9614. "kobold": {
  9615. name: "Kobold",
  9616. default: true
  9617. },
  9618. "dragon": {
  9619. name: "Dragon",
  9620. },
  9621. }
  9622. ))
  9623. characterMakers.push(() => makeCharacter(
  9624. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9625. {
  9626. lamp: {
  9627. height: math.unit(7 * 1559 / 989, "feet"),
  9628. name: "Magic Lamp",
  9629. image: {
  9630. source: "./media/characters/mira-al-cul/lamp.svg",
  9631. extra: 1617 / 1559
  9632. }
  9633. },
  9634. front: {
  9635. height: math.unit(7, "feet"),
  9636. name: "Front",
  9637. image: {
  9638. source: "./media/characters/mira-al-cul/front.svg",
  9639. extra: 1044 / 990
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Heavily Restricted",
  9646. height: math.unit(7 * 1559 / 989, "feet")
  9647. },
  9648. {
  9649. name: "Freshly Freed",
  9650. height: math.unit(50 * 1559 / 989, "feet")
  9651. },
  9652. {
  9653. name: "World Encompassing",
  9654. height: math.unit(10000 * 1559 / 989, "miles")
  9655. },
  9656. {
  9657. name: "Galactic",
  9658. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9659. },
  9660. {
  9661. name: "Palmed Universe",
  9662. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9663. default: true
  9664. },
  9665. {
  9666. name: "Multiversal Matriarch",
  9667. height: math.unit(8.87e10, "yottameters")
  9668. },
  9669. {
  9670. name: "Void Mother",
  9671. height: math.unit(3.14e110, "yottaparsecs")
  9672. },
  9673. {
  9674. name: "Toying with Transcendence",
  9675. height: math.unit(1e307, "meters")
  9676. },
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9681. {
  9682. front: {
  9683. height: math.unit(17 + 1 / 12, "feet"),
  9684. weight: math.unit(476.2 * 5, "lbs"),
  9685. name: "Front",
  9686. image: {
  9687. source: "./media/characters/kuro-shi-uchū/front.svg",
  9688. extra: 2329 / 1835,
  9689. bottom: 0.02
  9690. }
  9691. },
  9692. },
  9693. [
  9694. {
  9695. name: "Micro",
  9696. height: math.unit(2, "inches")
  9697. },
  9698. {
  9699. name: "Normal",
  9700. height: math.unit(12, "meters")
  9701. },
  9702. {
  9703. name: "Planetary",
  9704. height: math.unit(0.00929, "AU"),
  9705. default: true
  9706. },
  9707. {
  9708. name: "Universal",
  9709. height: math.unit(20, "gigaparsecs")
  9710. },
  9711. ]
  9712. ))
  9713. characterMakers.push(() => makeCharacter(
  9714. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9715. {
  9716. front: {
  9717. height: math.unit(5 + 2 / 12, "feet"),
  9718. weight: math.unit(120, "lbs"),
  9719. name: "Front",
  9720. image: {
  9721. source: "./media/characters/katherine/front.svg",
  9722. extra: 2075 / 1969
  9723. }
  9724. },
  9725. dress: {
  9726. height: math.unit(5 + 2 / 12, "feet"),
  9727. weight: math.unit(120, "lbs"),
  9728. name: "Dress",
  9729. image: {
  9730. source: "./media/characters/katherine/dress.svg",
  9731. extra: 2258 / 2064
  9732. }
  9733. },
  9734. },
  9735. [
  9736. {
  9737. name: "Micro",
  9738. height: math.unit(1, "inches"),
  9739. default: true
  9740. },
  9741. {
  9742. name: "Normal",
  9743. height: math.unit(5 + 2 / 12, "feet")
  9744. },
  9745. {
  9746. name: "Macro",
  9747. height: math.unit(100, "meters")
  9748. },
  9749. {
  9750. name: "Megamacro",
  9751. height: math.unit(80, "miles")
  9752. },
  9753. ]
  9754. ))
  9755. characterMakers.push(() => makeCharacter(
  9756. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9757. {
  9758. front: {
  9759. height: math.unit(7 + 8 / 12, "feet"),
  9760. weight: math.unit(250, "lbs"),
  9761. name: "Front",
  9762. image: {
  9763. source: "./media/characters/yevis/front.svg",
  9764. extra: 1938 / 1755
  9765. }
  9766. }
  9767. },
  9768. [
  9769. {
  9770. name: "Mortal",
  9771. height: math.unit(7 + 8 / 12, "feet")
  9772. },
  9773. {
  9774. name: "Battle",
  9775. height: math.unit(25 + 11 / 12, "feet")
  9776. },
  9777. {
  9778. name: "Wrath",
  9779. height: math.unit(1654 + 11 / 12, "feet")
  9780. },
  9781. {
  9782. name: "Planet Destroyer",
  9783. height: math.unit(12000, "miles")
  9784. },
  9785. {
  9786. name: "Galaxy Conqueror",
  9787. height: math.unit(1.45, "zettameters"),
  9788. default: true
  9789. },
  9790. {
  9791. name: "Universal War",
  9792. height: math.unit(184, "gigaparsecs")
  9793. },
  9794. {
  9795. name: "Eternity War",
  9796. height: math.unit(1.98e55, "yottaparsecs")
  9797. },
  9798. ]
  9799. ))
  9800. characterMakers.push(() => makeCharacter(
  9801. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9802. {
  9803. front: {
  9804. height: math.unit(5 + 8 / 12, "feet"),
  9805. weight: math.unit(63, "kg"),
  9806. name: "Front",
  9807. image: {
  9808. source: "./media/characters/xavier/front.svg",
  9809. extra: 944 / 883
  9810. }
  9811. },
  9812. frontStretch: {
  9813. height: math.unit(5 + 8 / 12, "feet"),
  9814. weight: math.unit(63, "kg"),
  9815. name: "Stretching",
  9816. image: {
  9817. source: "./media/characters/xavier/front-stretch.svg",
  9818. extra: 962 / 820
  9819. }
  9820. },
  9821. },
  9822. [
  9823. {
  9824. name: "Normal",
  9825. height: math.unit(5 + 8 / 12, "feet")
  9826. },
  9827. {
  9828. name: "Macro",
  9829. height: math.unit(100, "meters"),
  9830. default: true
  9831. },
  9832. {
  9833. name: "McLargeHuge",
  9834. height: math.unit(10, "miles")
  9835. },
  9836. ]
  9837. ))
  9838. characterMakers.push(() => makeCharacter(
  9839. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9840. {
  9841. front: {
  9842. height: math.unit(5 + 5 / 12, "feet"),
  9843. weight: math.unit(150, "lb"),
  9844. name: "Front",
  9845. image: {
  9846. source: "./media/characters/joshii/front.svg",
  9847. extra: 765 / 653,
  9848. bottom: 51 / 816
  9849. }
  9850. },
  9851. foot: {
  9852. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9853. name: "Foot",
  9854. image: {
  9855. source: "./media/characters/joshii/foot.svg"
  9856. }
  9857. },
  9858. },
  9859. [
  9860. {
  9861. name: "Micro",
  9862. height: math.unit(2, "inches")
  9863. },
  9864. {
  9865. name: "Normal",
  9866. height: math.unit(5 + 5 / 12, "feet")
  9867. },
  9868. {
  9869. name: "Macro",
  9870. height: math.unit(785, "feet"),
  9871. default: true
  9872. },
  9873. {
  9874. name: "Megamacro",
  9875. height: math.unit(24.5, "miles")
  9876. },
  9877. ]
  9878. ))
  9879. characterMakers.push(() => makeCharacter(
  9880. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9881. {
  9882. front: {
  9883. height: math.unit(6, "feet"),
  9884. weight: math.unit(150, "lb"),
  9885. name: "Front",
  9886. image: {
  9887. source: "./media/characters/goddess-elizabeth/front.svg",
  9888. extra: 1800 / 1525,
  9889. bottom: 0.005
  9890. }
  9891. },
  9892. foot: {
  9893. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9894. name: "Foot",
  9895. image: {
  9896. source: "./media/characters/goddess-elizabeth/foot.svg"
  9897. }
  9898. },
  9899. mouth: {
  9900. height: math.unit(6, "feet"),
  9901. name: "Mouth",
  9902. image: {
  9903. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9904. }
  9905. },
  9906. },
  9907. [
  9908. {
  9909. name: "Micro",
  9910. height: math.unit(12, "feet")
  9911. },
  9912. {
  9913. name: "Normal",
  9914. height: math.unit(80, "miles"),
  9915. default: true
  9916. },
  9917. {
  9918. name: "Macro",
  9919. height: math.unit(15000, "parsecs")
  9920. },
  9921. ]
  9922. ))
  9923. characterMakers.push(() => makeCharacter(
  9924. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9925. {
  9926. front: {
  9927. height: math.unit(5 + 9 / 12, "feet"),
  9928. weight: math.unit(144, "lb"),
  9929. name: "Front",
  9930. image: {
  9931. source: "./media/characters/kara/front.svg"
  9932. }
  9933. },
  9934. feet: {
  9935. height: math.unit(6 / 6.765, "feet"),
  9936. name: "Kara's Feet",
  9937. rename: true,
  9938. image: {
  9939. source: "./media/characters/kara/feet.svg"
  9940. }
  9941. },
  9942. },
  9943. [
  9944. {
  9945. name: "Normal",
  9946. height: math.unit(5 + 9 / 12, "feet")
  9947. },
  9948. {
  9949. name: "Macro",
  9950. height: math.unit(174, "feet"),
  9951. default: true
  9952. },
  9953. ]
  9954. ))
  9955. characterMakers.push(() => makeCharacter(
  9956. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9957. {
  9958. front: {
  9959. height: math.unit(18, "feet"),
  9960. weight: math.unit(4050, "lb"),
  9961. name: "Front",
  9962. image: {
  9963. source: "./media/characters/tyrone/front.svg",
  9964. extra: 2405 / 2270,
  9965. bottom: 182 / 2587
  9966. }
  9967. },
  9968. },
  9969. [
  9970. {
  9971. name: "Normal",
  9972. height: math.unit(18, "feet"),
  9973. default: true
  9974. },
  9975. {
  9976. name: "Macro",
  9977. height: math.unit(300, "feet")
  9978. },
  9979. {
  9980. name: "Megamacro",
  9981. height: math.unit(15, "km")
  9982. },
  9983. {
  9984. name: "Gigamacro",
  9985. height: math.unit(500, "km")
  9986. },
  9987. {
  9988. name: "Teramacro",
  9989. height: math.unit(0.5, "gigameters")
  9990. },
  9991. {
  9992. name: "Omnimacro",
  9993. height: math.unit(1e252, "yottauniverse")
  9994. },
  9995. ]
  9996. ))
  9997. characterMakers.push(() => makeCharacter(
  9998. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9999. {
  10000. front: {
  10001. height: math.unit(7 + 8 / 12, "feet"),
  10002. weight: math.unit(120, "lb"),
  10003. name: "Front",
  10004. image: {
  10005. source: "./media/characters/danny/front.svg",
  10006. extra: 1490 / 1350
  10007. }
  10008. },
  10009. back: {
  10010. height: math.unit(7 + 8 / 12, "feet"),
  10011. weight: math.unit(120, "lb"),
  10012. name: "Back",
  10013. image: {
  10014. source: "./media/characters/danny/back.svg",
  10015. extra: 1490 / 1350
  10016. }
  10017. },
  10018. },
  10019. [
  10020. {
  10021. name: "Normal",
  10022. height: math.unit(7 + 8 / 12, "feet"),
  10023. default: true
  10024. },
  10025. ]
  10026. ))
  10027. characterMakers.push(() => makeCharacter(
  10028. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10029. {
  10030. front: {
  10031. height: math.unit(3.5, "inches"),
  10032. weight: math.unit(19, "grams"),
  10033. name: "Front",
  10034. image: {
  10035. source: "./media/characters/mallow/front.svg",
  10036. extra: 471 / 431
  10037. }
  10038. },
  10039. back: {
  10040. height: math.unit(3.5, "inches"),
  10041. weight: math.unit(19, "grams"),
  10042. name: "Back",
  10043. image: {
  10044. source: "./media/characters/mallow/back.svg",
  10045. extra: 471 / 431
  10046. }
  10047. },
  10048. },
  10049. [
  10050. {
  10051. name: "Normal",
  10052. height: math.unit(3.5, "inches"),
  10053. default: true
  10054. },
  10055. ]
  10056. ))
  10057. characterMakers.push(() => makeCharacter(
  10058. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10059. {
  10060. front: {
  10061. height: math.unit(9, "feet"),
  10062. weight: math.unit(230, "kg"),
  10063. name: "Front",
  10064. image: {
  10065. source: "./media/characters/starry-aqua/front.svg"
  10066. }
  10067. },
  10068. back: {
  10069. height: math.unit(9, "feet"),
  10070. weight: math.unit(230, "kg"),
  10071. name: "Back",
  10072. image: {
  10073. source: "./media/characters/starry-aqua/back.svg"
  10074. }
  10075. },
  10076. hand: {
  10077. height: math.unit(9 * 0.1168, "feet"),
  10078. name: "Hand",
  10079. image: {
  10080. source: "./media/characters/starry-aqua/hand.svg"
  10081. }
  10082. },
  10083. foot: {
  10084. height: math.unit(9 * 0.18, "feet"),
  10085. name: "Foot",
  10086. image: {
  10087. source: "./media/characters/starry-aqua/foot.svg"
  10088. }
  10089. }
  10090. },
  10091. [
  10092. {
  10093. name: "Micro",
  10094. height: math.unit(3, "inches")
  10095. },
  10096. {
  10097. name: "Normal",
  10098. height: math.unit(9, "feet")
  10099. },
  10100. {
  10101. name: "Macro",
  10102. height: math.unit(300, "feet"),
  10103. default: true
  10104. },
  10105. {
  10106. name: "Megamacro",
  10107. height: math.unit(3200, "feet")
  10108. }
  10109. ]
  10110. ))
  10111. characterMakers.push(() => makeCharacter(
  10112. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10113. {
  10114. front: {
  10115. height: math.unit(15, "feet"),
  10116. weight: math.unit(5026, "lb"),
  10117. name: "Front",
  10118. image: {
  10119. source: "./media/characters/luka-towers/front.svg",
  10120. extra: 1269/1133,
  10121. bottom: 51/1320
  10122. }
  10123. },
  10124. },
  10125. [
  10126. {
  10127. name: "Normal",
  10128. height: math.unit(15, "feet"),
  10129. default: true
  10130. },
  10131. {
  10132. name: "Minimacro",
  10133. height: math.unit(25, "feet")
  10134. },
  10135. {
  10136. name: "Macro",
  10137. height: math.unit(320, "feet")
  10138. },
  10139. {
  10140. name: "Megamacro",
  10141. height: math.unit(35000, "feet")
  10142. },
  10143. {
  10144. name: "Gigamacro",
  10145. height: math.unit(4000, "miles")
  10146. },
  10147. {
  10148. name: "Teramacro",
  10149. height: math.unit(15000, "miles")
  10150. },
  10151. ]
  10152. ))
  10153. characterMakers.push(() => makeCharacter(
  10154. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10155. {
  10156. front: {
  10157. height: math.unit(6, "feet"),
  10158. weight: math.unit(150, "lb"),
  10159. name: "Front",
  10160. image: {
  10161. source: "./media/characters/natalie-nightring/front.svg",
  10162. extra: 1,
  10163. bottom: 0.06
  10164. }
  10165. },
  10166. },
  10167. [
  10168. {
  10169. name: "Uh Oh",
  10170. height: math.unit(0.1, "mm")
  10171. },
  10172. {
  10173. name: "Small",
  10174. height: math.unit(3, "inches")
  10175. },
  10176. {
  10177. name: "Human Scale",
  10178. height: math.unit(6, "feet")
  10179. },
  10180. {
  10181. name: "Librarian",
  10182. height: math.unit(50, "feet"),
  10183. default: true
  10184. },
  10185. {
  10186. name: "Immense",
  10187. height: math.unit(200, "miles")
  10188. },
  10189. ]
  10190. ))
  10191. characterMakers.push(() => makeCharacter(
  10192. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10193. {
  10194. front: {
  10195. height: math.unit(6, "feet"),
  10196. weight: math.unit(180, "lbs"),
  10197. name: "Front",
  10198. image: {
  10199. source: "./media/characters/danni-rosie/front.svg",
  10200. extra: 1260 / 1128,
  10201. bottom: 0.022
  10202. }
  10203. },
  10204. },
  10205. [
  10206. {
  10207. name: "Micro",
  10208. height: math.unit(2, "inches"),
  10209. default: true
  10210. },
  10211. ]
  10212. ))
  10213. characterMakers.push(() => makeCharacter(
  10214. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10215. {
  10216. front: {
  10217. height: math.unit(5 + 9 / 12, "feet"),
  10218. weight: math.unit(220, "lb"),
  10219. name: "Front",
  10220. image: {
  10221. source: "./media/characters/samantha-kruse/front.svg",
  10222. extra: (985 / 935),
  10223. bottom: 0.03
  10224. }
  10225. },
  10226. frontUndressed: {
  10227. height: math.unit(5 + 9 / 12, "feet"),
  10228. weight: math.unit(220, "lb"),
  10229. name: "Front (Undressed)",
  10230. image: {
  10231. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10232. extra: (973 / 923),
  10233. bottom: 0.025
  10234. }
  10235. },
  10236. fat: {
  10237. height: math.unit(5 + 9 / 12, "feet"),
  10238. weight: math.unit(900, "lb"),
  10239. name: "Front (Fat)",
  10240. image: {
  10241. source: "./media/characters/samantha-kruse/fat.svg",
  10242. extra: 2688 / 2561
  10243. }
  10244. },
  10245. },
  10246. [
  10247. {
  10248. name: "Normal",
  10249. height: math.unit(5 + 9 / 12, "feet"),
  10250. default: true
  10251. }
  10252. ]
  10253. ))
  10254. characterMakers.push(() => makeCharacter(
  10255. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10256. {
  10257. back: {
  10258. height: math.unit(5 + 4 / 12, "feet"),
  10259. weight: math.unit(4963, "lb"),
  10260. name: "Back",
  10261. image: {
  10262. source: "./media/characters/amelia-rosie/back.svg",
  10263. extra: 1113 / 963,
  10264. bottom: 0.01
  10265. }
  10266. },
  10267. },
  10268. [
  10269. {
  10270. name: "Level 0",
  10271. height: math.unit(5 + 4 / 12, "feet")
  10272. },
  10273. {
  10274. name: "Level 1",
  10275. height: math.unit(164597, "feet"),
  10276. default: true
  10277. },
  10278. {
  10279. name: "Level 2",
  10280. height: math.unit(956243, "miles")
  10281. },
  10282. {
  10283. name: "Level 3",
  10284. height: math.unit(29421709423, "miles")
  10285. },
  10286. {
  10287. name: "Level 4",
  10288. height: math.unit(154, "lightyears")
  10289. },
  10290. {
  10291. name: "Level 5",
  10292. height: math.unit(4738272, "lightyears")
  10293. },
  10294. {
  10295. name: "Level 6",
  10296. height: math.unit(145787152896, "lightyears")
  10297. },
  10298. ]
  10299. ))
  10300. characterMakers.push(() => makeCharacter(
  10301. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10302. {
  10303. front: {
  10304. height: math.unit(5 + 11 / 12, "feet"),
  10305. weight: math.unit(65, "kg"),
  10306. name: "Front",
  10307. image: {
  10308. source: "./media/characters/rook-kitara/front.svg",
  10309. extra: 1347 / 1274,
  10310. bottom: 0.005
  10311. }
  10312. },
  10313. },
  10314. [
  10315. {
  10316. name: "Totally Unfair",
  10317. height: math.unit(1.8, "mm")
  10318. },
  10319. {
  10320. name: "Lap Rookie",
  10321. height: math.unit(1.4, "feet")
  10322. },
  10323. {
  10324. name: "Normal",
  10325. height: math.unit(5 + 11 / 12, "feet"),
  10326. default: true
  10327. },
  10328. {
  10329. name: "How Did This Happen",
  10330. height: math.unit(80, "miles")
  10331. }
  10332. ]
  10333. ))
  10334. characterMakers.push(() => makeCharacter(
  10335. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10336. {
  10337. front: {
  10338. height: math.unit(7, "feet"),
  10339. weight: math.unit(300, "lb"),
  10340. name: "Front",
  10341. image: {
  10342. source: "./media/characters/pisces/front.svg",
  10343. extra: 2255 / 2115,
  10344. bottom: 0.03
  10345. }
  10346. },
  10347. back: {
  10348. height: math.unit(7, "feet"),
  10349. weight: math.unit(300, "lb"),
  10350. name: "Back",
  10351. image: {
  10352. source: "./media/characters/pisces/back.svg",
  10353. extra: 2146 / 2055,
  10354. bottom: 0.04
  10355. }
  10356. },
  10357. },
  10358. [
  10359. {
  10360. name: "Normal",
  10361. height: math.unit(7, "feet"),
  10362. default: true
  10363. },
  10364. {
  10365. name: "Swimming Pool",
  10366. height: math.unit(12.2, "meters")
  10367. },
  10368. {
  10369. name: "Olympic Swimming Pool",
  10370. height: math.unit(56.3, "meters")
  10371. },
  10372. {
  10373. name: "Lake Superior",
  10374. height: math.unit(93900, "meters")
  10375. },
  10376. {
  10377. name: "Mediterranean Sea",
  10378. height: math.unit(644457, "meters")
  10379. },
  10380. {
  10381. name: "World's Oceans",
  10382. height: math.unit(4567491, "meters")
  10383. },
  10384. ]
  10385. ))
  10386. characterMakers.push(() => makeCharacter(
  10387. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10388. {
  10389. front: {
  10390. height: math.unit(2.3, "meters"),
  10391. weight: math.unit(120, "kg"),
  10392. name: "Front",
  10393. image: {
  10394. source: "./media/characters/zelas/front.svg"
  10395. }
  10396. },
  10397. side: {
  10398. height: math.unit(2.3, "meters"),
  10399. weight: math.unit(120, "kg"),
  10400. name: "Side",
  10401. image: {
  10402. source: "./media/characters/zelas/side.svg"
  10403. }
  10404. },
  10405. back: {
  10406. height: math.unit(2.3, "meters"),
  10407. weight: math.unit(120, "kg"),
  10408. name: "Back",
  10409. image: {
  10410. source: "./media/characters/zelas/back.svg"
  10411. }
  10412. },
  10413. foot: {
  10414. height: math.unit(1.116, "feet"),
  10415. name: "Foot",
  10416. image: {
  10417. source: "./media/characters/zelas/foot.svg"
  10418. }
  10419. },
  10420. },
  10421. [
  10422. {
  10423. name: "Normal",
  10424. height: math.unit(2.3, "meters")
  10425. },
  10426. {
  10427. name: "Macro",
  10428. height: math.unit(30, "meters"),
  10429. default: true
  10430. },
  10431. ]
  10432. ))
  10433. characterMakers.push(() => makeCharacter(
  10434. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10435. {
  10436. front: {
  10437. height: math.unit(1, "inch"),
  10438. weight: math.unit(0.21, "grams"),
  10439. name: "Front",
  10440. image: {
  10441. source: "./media/characters/talbot/front.svg",
  10442. extra: 594 / 544
  10443. }
  10444. },
  10445. },
  10446. [
  10447. {
  10448. name: "Micro",
  10449. height: math.unit(1, "inch"),
  10450. default: true
  10451. },
  10452. ]
  10453. ))
  10454. characterMakers.push(() => makeCharacter(
  10455. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10456. {
  10457. front: {
  10458. height: math.unit(3 + 3 / 12, "feet"),
  10459. weight: math.unit(51.8, "lb"),
  10460. name: "Front",
  10461. image: {
  10462. source: "./media/characters/fliss/front.svg",
  10463. extra: 840 / 640
  10464. }
  10465. },
  10466. },
  10467. [
  10468. {
  10469. name: "Teeny Tiny",
  10470. height: math.unit(1, "mm")
  10471. },
  10472. {
  10473. name: "Small",
  10474. height: math.unit(1, "inch"),
  10475. default: true
  10476. },
  10477. {
  10478. name: "Standard Sylveon",
  10479. height: math.unit(3 + 3 / 12, "feet")
  10480. },
  10481. {
  10482. name: "Large Nuisance",
  10483. height: math.unit(33, "feet")
  10484. },
  10485. {
  10486. name: "City Filler",
  10487. height: math.unit(3000, "feet")
  10488. },
  10489. {
  10490. name: "New Horizon",
  10491. height: math.unit(6000, "miles")
  10492. },
  10493. ]
  10494. ))
  10495. characterMakers.push(() => makeCharacter(
  10496. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10497. {
  10498. front: {
  10499. height: math.unit(5, "cm"),
  10500. weight: math.unit(1.94, "g"),
  10501. name: "Front",
  10502. image: {
  10503. source: "./media/characters/fleta/front.svg",
  10504. extra: 835 / 803
  10505. }
  10506. },
  10507. back: {
  10508. height: math.unit(5, "cm"),
  10509. weight: math.unit(1.94, "g"),
  10510. name: "Back",
  10511. image: {
  10512. source: "./media/characters/fleta/back.svg",
  10513. extra: 835 / 803
  10514. }
  10515. },
  10516. },
  10517. [
  10518. {
  10519. name: "Micro",
  10520. height: math.unit(5, "cm"),
  10521. default: true
  10522. },
  10523. ]
  10524. ))
  10525. characterMakers.push(() => makeCharacter(
  10526. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10527. {
  10528. front: {
  10529. height: math.unit(6, "feet"),
  10530. weight: math.unit(225, "lb"),
  10531. name: "Front",
  10532. image: {
  10533. source: "./media/characters/dominic/front.svg",
  10534. extra: 1770 / 1620,
  10535. bottom: 0.025
  10536. }
  10537. },
  10538. back: {
  10539. height: math.unit(6, "feet"),
  10540. weight: math.unit(225, "lb"),
  10541. name: "Back",
  10542. image: {
  10543. source: "./media/characters/dominic/back.svg",
  10544. extra: 1745 / 1620,
  10545. bottom: 0.065
  10546. }
  10547. },
  10548. },
  10549. [
  10550. {
  10551. name: "Nano",
  10552. height: math.unit(0.1, "mm")
  10553. },
  10554. {
  10555. name: "Micro-",
  10556. height: math.unit(1, "mm")
  10557. },
  10558. {
  10559. name: "Micro",
  10560. height: math.unit(4, "inches")
  10561. },
  10562. {
  10563. name: "Normal",
  10564. height: math.unit(6 + 4 / 12, "feet"),
  10565. default: true
  10566. },
  10567. {
  10568. name: "Macro",
  10569. height: math.unit(115, "feet")
  10570. },
  10571. {
  10572. name: "Macro+",
  10573. height: math.unit(955, "feet")
  10574. },
  10575. {
  10576. name: "Megamacro",
  10577. height: math.unit(8990, "feet")
  10578. },
  10579. {
  10580. name: "Gigmacro",
  10581. height: math.unit(9310, "miles")
  10582. },
  10583. {
  10584. name: "Teramacro",
  10585. height: math.unit(1567005010, "miles")
  10586. },
  10587. {
  10588. name: "Examacro",
  10589. height: math.unit(1425, "parsecs")
  10590. },
  10591. ]
  10592. ))
  10593. characterMakers.push(() => makeCharacter(
  10594. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10595. {
  10596. front: {
  10597. height: math.unit(400, "feet"),
  10598. weight: math.unit(44444444, "lb"),
  10599. name: "Front",
  10600. image: {
  10601. source: "./media/characters/major-colonel/front.svg"
  10602. }
  10603. },
  10604. back: {
  10605. height: math.unit(400, "feet"),
  10606. weight: math.unit(44444444, "lb"),
  10607. name: "Back",
  10608. image: {
  10609. source: "./media/characters/major-colonel/back.svg"
  10610. }
  10611. },
  10612. },
  10613. [
  10614. {
  10615. name: "Macro",
  10616. height: math.unit(400, "feet"),
  10617. default: true
  10618. },
  10619. ]
  10620. ))
  10621. characterMakers.push(() => makeCharacter(
  10622. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10623. {
  10624. catFront: {
  10625. height: math.unit(6, "feet"),
  10626. weight: math.unit(120, "lb"),
  10627. name: "Front (Cat Side)",
  10628. image: {
  10629. source: "./media/characters/axel-lycan/cat-front.svg",
  10630. extra: 430 / 402,
  10631. bottom: 43 / 472.35
  10632. }
  10633. },
  10634. catBack: {
  10635. height: math.unit(6, "feet"),
  10636. weight: math.unit(120, "lb"),
  10637. name: "Back (Cat Side)",
  10638. image: {
  10639. source: "./media/characters/axel-lycan/cat-back.svg",
  10640. extra: 447 / 419,
  10641. bottom: 23.3 / 469
  10642. }
  10643. },
  10644. wolfFront: {
  10645. height: math.unit(6, "feet"),
  10646. weight: math.unit(120, "lb"),
  10647. name: "Front (Wolf Side)",
  10648. image: {
  10649. source: "./media/characters/axel-lycan/wolf-front.svg",
  10650. extra: 485 / 456,
  10651. bottom: 19 / 504
  10652. }
  10653. },
  10654. wolfBack: {
  10655. height: math.unit(6, "feet"),
  10656. weight: math.unit(120, "lb"),
  10657. name: "Back (Wolf Side)",
  10658. image: {
  10659. source: "./media/characters/axel-lycan/wolf-back.svg",
  10660. extra: 475 / 438,
  10661. bottom: 39.2 / 514
  10662. }
  10663. },
  10664. },
  10665. [
  10666. {
  10667. name: "Macro",
  10668. height: math.unit(1, "km"),
  10669. default: true
  10670. },
  10671. ]
  10672. ))
  10673. characterMakers.push(() => makeCharacter(
  10674. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10675. {
  10676. front: {
  10677. height: math.unit(5 + 9 / 12, "feet"),
  10678. weight: math.unit(175, "lb"),
  10679. name: "Front",
  10680. image: {
  10681. source: "./media/characters/vanrel-hyena/front.svg",
  10682. extra: 1086 / 1010,
  10683. bottom: 0.04
  10684. }
  10685. },
  10686. },
  10687. [
  10688. {
  10689. name: "Normal",
  10690. height: math.unit(5 + 9 / 12, "feet"),
  10691. default: true
  10692. },
  10693. ]
  10694. ))
  10695. characterMakers.push(() => makeCharacter(
  10696. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10697. {
  10698. front: {
  10699. height: math.unit(6, "feet"),
  10700. weight: math.unit(103, "lb"),
  10701. name: "Front",
  10702. image: {
  10703. source: "./media/characters/abbott-absol/front.svg",
  10704. extra: 2010 / 1842
  10705. }
  10706. },
  10707. },
  10708. [
  10709. {
  10710. name: "Megamicro",
  10711. height: math.unit(0.1, "mm")
  10712. },
  10713. {
  10714. name: "Micro",
  10715. height: math.unit(1, "inch")
  10716. },
  10717. {
  10718. name: "Normal",
  10719. height: math.unit(6, "feet"),
  10720. default: true
  10721. },
  10722. ]
  10723. ))
  10724. characterMakers.push(() => makeCharacter(
  10725. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10726. {
  10727. front: {
  10728. height: math.unit(6, "feet"),
  10729. weight: math.unit(264, "lb"),
  10730. name: "Front",
  10731. image: {
  10732. source: "./media/characters/hector/front.svg",
  10733. extra: 2280 / 2130,
  10734. bottom: 0.07
  10735. }
  10736. },
  10737. },
  10738. [
  10739. {
  10740. name: "Normal",
  10741. height: math.unit(12.25, "foot"),
  10742. default: true
  10743. },
  10744. {
  10745. name: "Macro",
  10746. height: math.unit(160, "feet")
  10747. },
  10748. ]
  10749. ))
  10750. characterMakers.push(() => makeCharacter(
  10751. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10752. {
  10753. front: {
  10754. height: math.unit(6, "feet"),
  10755. weight: math.unit(150, "lb"),
  10756. name: "Front",
  10757. image: {
  10758. source: "./media/characters/sal/front.svg",
  10759. extra: 1846 / 1699,
  10760. bottom: 0.04
  10761. }
  10762. },
  10763. },
  10764. [
  10765. {
  10766. name: "Megamacro",
  10767. height: math.unit(10, "miles"),
  10768. default: true
  10769. },
  10770. ]
  10771. ))
  10772. characterMakers.push(() => makeCharacter(
  10773. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10774. {
  10775. front: {
  10776. height: math.unit(3, "meters"),
  10777. weight: math.unit(450, "kg"),
  10778. name: "front",
  10779. image: {
  10780. source: "./media/characters/ranger/front.svg",
  10781. extra: 2401 / 2243,
  10782. bottom: 0.05
  10783. }
  10784. },
  10785. },
  10786. [
  10787. {
  10788. name: "Normal",
  10789. height: math.unit(3, "meters"),
  10790. default: true
  10791. },
  10792. ]
  10793. ))
  10794. characterMakers.push(() => makeCharacter(
  10795. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10796. {
  10797. front: {
  10798. height: math.unit(14, "feet"),
  10799. weight: math.unit(800, "kg"),
  10800. name: "Front",
  10801. image: {
  10802. source: "./media/characters/theresa/front.svg",
  10803. extra: 3575 / 3346,
  10804. bottom: 0.03
  10805. }
  10806. },
  10807. },
  10808. [
  10809. {
  10810. name: "Normal",
  10811. height: math.unit(14, "feet"),
  10812. default: true
  10813. },
  10814. ]
  10815. ))
  10816. characterMakers.push(() => makeCharacter(
  10817. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10818. {
  10819. front: {
  10820. height: math.unit(6, "feet"),
  10821. weight: math.unit(3, "kg"),
  10822. name: "Front",
  10823. image: {
  10824. source: "./media/characters/ine/front.svg",
  10825. extra: 678 / 539,
  10826. bottom: 0.023
  10827. }
  10828. },
  10829. },
  10830. [
  10831. {
  10832. name: "Normal",
  10833. height: math.unit(2.265, "feet"),
  10834. default: true
  10835. },
  10836. ]
  10837. ))
  10838. characterMakers.push(() => makeCharacter(
  10839. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10840. {
  10841. front: {
  10842. height: math.unit(5, "feet"),
  10843. weight: math.unit(30, "kg"),
  10844. name: "Front",
  10845. image: {
  10846. source: "./media/characters/vial/front.svg",
  10847. extra: 1365 / 1277,
  10848. bottom: 0.04
  10849. }
  10850. },
  10851. },
  10852. [
  10853. {
  10854. name: "Normal",
  10855. height: math.unit(5, "feet"),
  10856. default: true
  10857. },
  10858. ]
  10859. ))
  10860. characterMakers.push(() => makeCharacter(
  10861. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10862. {
  10863. side: {
  10864. height: math.unit(3.4, "meters"),
  10865. weight: math.unit(1000, "lb"),
  10866. name: "Side",
  10867. image: {
  10868. source: "./media/characters/rovoska/side.svg",
  10869. extra: 4403 / 1515
  10870. }
  10871. },
  10872. },
  10873. [
  10874. {
  10875. name: "Normal",
  10876. height: math.unit(3.4, "meters"),
  10877. default: true
  10878. },
  10879. ]
  10880. ))
  10881. characterMakers.push(() => makeCharacter(
  10882. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10883. {
  10884. front: {
  10885. height: math.unit(8, "feet"),
  10886. weight: math.unit(315, "lb"),
  10887. name: "Front",
  10888. image: {
  10889. source: "./media/characters/gunner-rotthbauer/front.svg"
  10890. }
  10891. },
  10892. back: {
  10893. height: math.unit(8, "feet"),
  10894. weight: math.unit(315, "lb"),
  10895. name: "Back",
  10896. image: {
  10897. source: "./media/characters/gunner-rotthbauer/back.svg"
  10898. }
  10899. },
  10900. },
  10901. [
  10902. {
  10903. name: "Micro",
  10904. height: math.unit(3.5, "inches")
  10905. },
  10906. {
  10907. name: "Normal",
  10908. height: math.unit(8, "feet"),
  10909. default: true
  10910. },
  10911. {
  10912. name: "Macro",
  10913. height: math.unit(250, "feet")
  10914. },
  10915. {
  10916. name: "Megamacro",
  10917. height: math.unit(1, "AU")
  10918. },
  10919. ]
  10920. ))
  10921. characterMakers.push(() => makeCharacter(
  10922. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10923. {
  10924. front: {
  10925. height: math.unit(5 + 5 / 12, "feet"),
  10926. weight: math.unit(140, "lb"),
  10927. name: "Front",
  10928. image: {
  10929. source: "./media/characters/allatia/front.svg",
  10930. extra: 1227 / 1180,
  10931. bottom: 0.027
  10932. }
  10933. },
  10934. },
  10935. [
  10936. {
  10937. name: "Normal",
  10938. height: math.unit(5 + 5 / 12, "feet")
  10939. },
  10940. {
  10941. name: "Macro",
  10942. height: math.unit(250, "feet"),
  10943. default: true
  10944. },
  10945. {
  10946. name: "Megamacro",
  10947. height: math.unit(8, "miles")
  10948. }
  10949. ]
  10950. ))
  10951. characterMakers.push(() => makeCharacter(
  10952. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10953. {
  10954. front: {
  10955. height: math.unit(6, "feet"),
  10956. weight: math.unit(120, "lb"),
  10957. name: "Front",
  10958. image: {
  10959. source: "./media/characters/tene/front.svg",
  10960. extra: 814/750,
  10961. bottom: 36/850
  10962. }
  10963. },
  10964. stomping: {
  10965. height: math.unit(2.025, "meters"),
  10966. weight: math.unit(120, "lb"),
  10967. name: "Stomping",
  10968. image: {
  10969. source: "./media/characters/tene/stomping.svg",
  10970. extra: 885/821,
  10971. bottom: 15/900
  10972. }
  10973. },
  10974. sitting: {
  10975. height: math.unit(1, "meter"),
  10976. weight: math.unit(120, "lb"),
  10977. name: "Sitting",
  10978. image: {
  10979. source: "./media/characters/tene/sitting.svg",
  10980. extra: 396/366,
  10981. bottom: 79/475
  10982. }
  10983. },
  10984. smiling: {
  10985. height: math.unit(1.2, "feet"),
  10986. name: "Smiling",
  10987. image: {
  10988. source: "./media/characters/tene/smiling.svg",
  10989. extra: 1364/1071,
  10990. bottom: 0/1364
  10991. }
  10992. },
  10993. smug: {
  10994. height: math.unit(1.3, "feet"),
  10995. name: "Smug",
  10996. image: {
  10997. source: "./media/characters/tene/smug.svg",
  10998. extra: 1323/1082,
  10999. bottom: 0/1323
  11000. }
  11001. },
  11002. feral: {
  11003. height: math.unit(3.9, "feet"),
  11004. weight: math.unit(250, "lb"),
  11005. name: "Feral",
  11006. image: {
  11007. source: "./media/characters/tene/feral.svg",
  11008. extra: 717 / 458,
  11009. bottom: 0.179
  11010. }
  11011. },
  11012. },
  11013. [
  11014. {
  11015. name: "Normal",
  11016. height: math.unit(6, "feet")
  11017. },
  11018. {
  11019. name: "Macro",
  11020. height: math.unit(300, "feet"),
  11021. default: true
  11022. },
  11023. {
  11024. name: "Megamacro",
  11025. height: math.unit(5, "miles")
  11026. },
  11027. ]
  11028. ))
  11029. characterMakers.push(() => makeCharacter(
  11030. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11031. {
  11032. side: {
  11033. height: math.unit(6, "feet"),
  11034. name: "Side",
  11035. image: {
  11036. source: "./media/characters/evander/side.svg",
  11037. extra: 877 / 477
  11038. }
  11039. },
  11040. },
  11041. [
  11042. {
  11043. name: "Normal",
  11044. height: math.unit(0.83, "meters"),
  11045. default: true
  11046. },
  11047. ]
  11048. ))
  11049. characterMakers.push(() => makeCharacter(
  11050. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11051. {
  11052. front: {
  11053. height: math.unit(12, "feet"),
  11054. weight: math.unit(1000, "lb"),
  11055. name: "Front",
  11056. image: {
  11057. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11058. extra: 1762 / 1611
  11059. }
  11060. },
  11061. back: {
  11062. height: math.unit(12, "feet"),
  11063. weight: math.unit(1000, "lb"),
  11064. name: "Back",
  11065. image: {
  11066. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11067. extra: 1762 / 1611
  11068. }
  11069. },
  11070. },
  11071. [
  11072. {
  11073. name: "Normal",
  11074. height: math.unit(12, "feet"),
  11075. default: true
  11076. },
  11077. {
  11078. name: "Kaiju",
  11079. height: math.unit(150, "feet")
  11080. },
  11081. ]
  11082. ))
  11083. characterMakers.push(() => makeCharacter(
  11084. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11085. {
  11086. front: {
  11087. height: math.unit(6, "feet"),
  11088. weight: math.unit(150, "lb"),
  11089. name: "Front",
  11090. image: {
  11091. source: "./media/characters/zero-alurus/front.svg"
  11092. }
  11093. },
  11094. back: {
  11095. height: math.unit(6, "feet"),
  11096. weight: math.unit(150, "lb"),
  11097. name: "Back",
  11098. image: {
  11099. source: "./media/characters/zero-alurus/back.svg"
  11100. }
  11101. },
  11102. },
  11103. [
  11104. {
  11105. name: "Normal",
  11106. height: math.unit(5 + 10 / 12, "feet")
  11107. },
  11108. {
  11109. name: "Macro",
  11110. height: math.unit(60, "feet"),
  11111. default: true
  11112. },
  11113. {
  11114. name: "Macro+",
  11115. height: math.unit(450, "feet")
  11116. },
  11117. ]
  11118. ))
  11119. characterMakers.push(() => makeCharacter(
  11120. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11121. {
  11122. front: {
  11123. height: math.unit(6, "feet"),
  11124. weight: math.unit(200, "lb"),
  11125. name: "Front",
  11126. image: {
  11127. source: "./media/characters/mega-shi/front.svg",
  11128. extra: 1279 / 1250,
  11129. bottom: 0.02
  11130. }
  11131. },
  11132. back: {
  11133. height: math.unit(6, "feet"),
  11134. weight: math.unit(200, "lb"),
  11135. name: "Back",
  11136. image: {
  11137. source: "./media/characters/mega-shi/back.svg",
  11138. extra: 1279 / 1250,
  11139. bottom: 0.02
  11140. }
  11141. },
  11142. },
  11143. [
  11144. {
  11145. name: "Micro",
  11146. height: math.unit(16 + 6 / 12, "feet")
  11147. },
  11148. {
  11149. name: "Third Dimension",
  11150. height: math.unit(40, "meters")
  11151. },
  11152. {
  11153. name: "Normal",
  11154. height: math.unit(660, "feet"),
  11155. default: true
  11156. },
  11157. {
  11158. name: "Megamacro",
  11159. height: math.unit(10, "miles")
  11160. },
  11161. {
  11162. name: "Planetary Launch",
  11163. height: math.unit(500, "miles")
  11164. },
  11165. {
  11166. name: "Interstellar",
  11167. height: math.unit(1e9, "miles")
  11168. },
  11169. {
  11170. name: "Leaving the Universe",
  11171. height: math.unit(1, "gigaparsec")
  11172. },
  11173. {
  11174. name: "Travelling Universes",
  11175. height: math.unit(30e15, "parsecs")
  11176. },
  11177. ]
  11178. ))
  11179. characterMakers.push(() => makeCharacter(
  11180. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11181. {
  11182. front: {
  11183. height: math.unit(5 + 4/12, "feet"),
  11184. weight: math.unit(120, "lb"),
  11185. name: "Front",
  11186. image: {
  11187. source: "./media/characters/odyssey/front.svg",
  11188. extra: 1747/1571,
  11189. bottom: 47/1794
  11190. }
  11191. },
  11192. side: {
  11193. height: math.unit(5.1, "feet"),
  11194. weight: math.unit(120, "lb"),
  11195. name: "Side",
  11196. image: {
  11197. source: "./media/characters/odyssey/side.svg",
  11198. extra: 1847/1619,
  11199. bottom: 47/1894
  11200. }
  11201. },
  11202. lounging: {
  11203. height: math.unit(1.464, "feet"),
  11204. weight: math.unit(120, "lb"),
  11205. name: "Lounging",
  11206. image: {
  11207. source: "./media/characters/odyssey/lounging.svg",
  11208. extra: 1235/837,
  11209. bottom: 551/1786
  11210. }
  11211. },
  11212. },
  11213. [
  11214. {
  11215. name: "Normal",
  11216. height: math.unit(5 + 4 / 12, "feet")
  11217. },
  11218. {
  11219. name: "Macro",
  11220. height: math.unit(1, "km")
  11221. },
  11222. {
  11223. name: "Megamacro",
  11224. height: math.unit(3000, "km")
  11225. },
  11226. {
  11227. name: "Gigamacro",
  11228. height: math.unit(1, "AU"),
  11229. default: true
  11230. },
  11231. {
  11232. name: "Omniversal",
  11233. height: math.unit(100e14, "lightyears")
  11234. },
  11235. ]
  11236. ))
  11237. characterMakers.push(() => makeCharacter(
  11238. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11239. {
  11240. front: {
  11241. height: math.unit(5 + 10/12, "feet"),
  11242. name: "Front",
  11243. image: {
  11244. source: "./media/characters/mekuto/front.svg",
  11245. extra: 875/835,
  11246. bottom: 46/921
  11247. }
  11248. },
  11249. },
  11250. [
  11251. {
  11252. name: "Minimicro",
  11253. height: math.unit(0.2, "inches")
  11254. },
  11255. {
  11256. name: "Micro",
  11257. height: math.unit(1.5, "inches")
  11258. },
  11259. {
  11260. name: "Normal",
  11261. height: math.unit(5 + 10 / 12, "feet"),
  11262. default: true
  11263. },
  11264. {
  11265. name: "Minimacro",
  11266. height: math.unit(17 + 9 / 12, "feet")
  11267. },
  11268. {
  11269. name: "Macro",
  11270. height: math.unit(177.5, "feet")
  11271. },
  11272. {
  11273. name: "Megamacro",
  11274. height: math.unit(152, "miles")
  11275. },
  11276. ]
  11277. ))
  11278. characterMakers.push(() => makeCharacter(
  11279. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11280. {
  11281. front: {
  11282. height: math.unit(6.5, "inches"),
  11283. weight: math.unit(13, "oz"),
  11284. name: "Front",
  11285. image: {
  11286. source: "./media/characters/dafydd-tomos/front.svg",
  11287. extra: 2990 / 2603,
  11288. bottom: 0.03
  11289. }
  11290. },
  11291. },
  11292. [
  11293. {
  11294. name: "Micro",
  11295. height: math.unit(6.5, "inches"),
  11296. default: true
  11297. },
  11298. ]
  11299. ))
  11300. characterMakers.push(() => makeCharacter(
  11301. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11302. {
  11303. front: {
  11304. height: math.unit(6, "feet"),
  11305. weight: math.unit(150, "lb"),
  11306. name: "Front",
  11307. image: {
  11308. source: "./media/characters/splinter/front.svg",
  11309. extra: 2990 / 2882,
  11310. bottom: 0.04
  11311. }
  11312. },
  11313. back: {
  11314. height: math.unit(6, "feet"),
  11315. weight: math.unit(150, "lb"),
  11316. name: "Back",
  11317. image: {
  11318. source: "./media/characters/splinter/back.svg",
  11319. extra: 2990 / 2882,
  11320. bottom: 0.04
  11321. }
  11322. },
  11323. },
  11324. [
  11325. {
  11326. name: "Normal",
  11327. height: math.unit(6, "feet")
  11328. },
  11329. {
  11330. name: "Macro",
  11331. height: math.unit(230, "meters"),
  11332. default: true
  11333. },
  11334. ]
  11335. ))
  11336. characterMakers.push(() => makeCharacter(
  11337. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11338. {
  11339. front: {
  11340. height: math.unit(4 + 10 / 12, "feet"),
  11341. weight: math.unit(480, "lb"),
  11342. name: "Front",
  11343. image: {
  11344. source: "./media/characters/snow-gabumon/front.svg",
  11345. extra: 1140 / 963,
  11346. bottom: 0.058
  11347. }
  11348. },
  11349. back: {
  11350. height: math.unit(4 + 10 / 12, "feet"),
  11351. weight: math.unit(480, "lb"),
  11352. name: "Back",
  11353. image: {
  11354. source: "./media/characters/snow-gabumon/back.svg",
  11355. extra: 1115 / 962,
  11356. bottom: 0.041
  11357. }
  11358. },
  11359. frontUndresed: {
  11360. height: math.unit(4 + 10 / 12, "feet"),
  11361. weight: math.unit(480, "lb"),
  11362. name: "Front (Undressed)",
  11363. image: {
  11364. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11365. extra: 1061 / 960,
  11366. bottom: 0.045
  11367. }
  11368. },
  11369. },
  11370. [
  11371. {
  11372. name: "Micro",
  11373. height: math.unit(1, "inch")
  11374. },
  11375. {
  11376. name: "Normal",
  11377. height: math.unit(4 + 10 / 12, "feet"),
  11378. default: true
  11379. },
  11380. {
  11381. name: "Macro",
  11382. height: math.unit(200, "feet")
  11383. },
  11384. {
  11385. name: "Megamacro",
  11386. height: math.unit(120, "miles")
  11387. },
  11388. {
  11389. name: "Gigamacro",
  11390. height: math.unit(9800, "miles")
  11391. },
  11392. ]
  11393. ))
  11394. characterMakers.push(() => makeCharacter(
  11395. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11396. {
  11397. front: {
  11398. height: math.unit(1.7, "meters"),
  11399. weight: math.unit(140, "lb"),
  11400. name: "Front",
  11401. image: {
  11402. source: "./media/characters/moody/front.svg",
  11403. extra: 3226 / 3007,
  11404. bottom: 0.087
  11405. }
  11406. },
  11407. },
  11408. [
  11409. {
  11410. name: "Micro",
  11411. height: math.unit(1, "mm")
  11412. },
  11413. {
  11414. name: "Normal",
  11415. height: math.unit(1.7, "meters"),
  11416. default: true
  11417. },
  11418. {
  11419. name: "Macro",
  11420. height: math.unit(80, "meters")
  11421. },
  11422. {
  11423. name: "Macro+",
  11424. height: math.unit(500, "meters")
  11425. },
  11426. ]
  11427. ))
  11428. characterMakers.push(() => makeCharacter(
  11429. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11430. {
  11431. front: {
  11432. height: math.unit(6, "feet"),
  11433. weight: math.unit(150, "lb"),
  11434. name: "Front",
  11435. image: {
  11436. source: "./media/characters/zyas/front.svg",
  11437. extra: 1180 / 1120,
  11438. bottom: 0.045
  11439. }
  11440. },
  11441. },
  11442. [
  11443. {
  11444. name: "Normal",
  11445. height: math.unit(10, "feet"),
  11446. default: true
  11447. },
  11448. {
  11449. name: "Macro",
  11450. height: math.unit(500, "feet")
  11451. },
  11452. {
  11453. name: "Megamacro",
  11454. height: math.unit(5, "miles")
  11455. },
  11456. {
  11457. name: "Teramacro",
  11458. height: math.unit(150000, "miles")
  11459. },
  11460. ]
  11461. ))
  11462. characterMakers.push(() => makeCharacter(
  11463. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11464. {
  11465. front: {
  11466. height: math.unit(6, "feet"),
  11467. weight: math.unit(150, "lb"),
  11468. name: "Front",
  11469. image: {
  11470. source: "./media/characters/cuon/front.svg",
  11471. extra: 1390 / 1320,
  11472. bottom: 0.008
  11473. }
  11474. },
  11475. },
  11476. [
  11477. {
  11478. name: "Micro",
  11479. height: math.unit(3, "inches")
  11480. },
  11481. {
  11482. name: "Normal",
  11483. height: math.unit(18 + 9 / 12, "feet"),
  11484. default: true
  11485. },
  11486. {
  11487. name: "Macro",
  11488. height: math.unit(360, "feet")
  11489. },
  11490. {
  11491. name: "Megamacro",
  11492. height: math.unit(360, "miles")
  11493. },
  11494. ]
  11495. ))
  11496. characterMakers.push(() => makeCharacter(
  11497. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11498. {
  11499. front: {
  11500. height: math.unit(2.4, "meters"),
  11501. weight: math.unit(70, "kg"),
  11502. name: "Front",
  11503. image: {
  11504. source: "./media/characters/nyanuxk/front.svg",
  11505. extra: 1172 / 1084,
  11506. bottom: 0.065
  11507. }
  11508. },
  11509. side: {
  11510. height: math.unit(2.4, "meters"),
  11511. weight: math.unit(70, "kg"),
  11512. name: "Side",
  11513. image: {
  11514. source: "./media/characters/nyanuxk/side.svg",
  11515. extra: 1190 / 1132,
  11516. bottom: 0.007
  11517. }
  11518. },
  11519. back: {
  11520. height: math.unit(2.4, "meters"),
  11521. weight: math.unit(70, "kg"),
  11522. name: "Back",
  11523. image: {
  11524. source: "./media/characters/nyanuxk/back.svg",
  11525. extra: 1200 / 1141,
  11526. bottom: 0.015
  11527. }
  11528. },
  11529. foot: {
  11530. height: math.unit(0.52, "meters"),
  11531. name: "Foot",
  11532. image: {
  11533. source: "./media/characters/nyanuxk/foot.svg"
  11534. }
  11535. },
  11536. },
  11537. [
  11538. {
  11539. name: "Micro",
  11540. height: math.unit(2, "cm")
  11541. },
  11542. {
  11543. name: "Normal",
  11544. height: math.unit(2.4, "meters"),
  11545. default: true
  11546. },
  11547. {
  11548. name: "Smaller Macro",
  11549. height: math.unit(120, "meters")
  11550. },
  11551. {
  11552. name: "Bigger Macro",
  11553. height: math.unit(1.2, "km")
  11554. },
  11555. {
  11556. name: "Megamacro",
  11557. height: math.unit(15, "kilometers")
  11558. },
  11559. {
  11560. name: "Gigamacro",
  11561. height: math.unit(2000, "km")
  11562. },
  11563. {
  11564. name: "Teramacro",
  11565. height: math.unit(500000, "km")
  11566. },
  11567. ]
  11568. ))
  11569. characterMakers.push(() => makeCharacter(
  11570. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11571. {
  11572. side: {
  11573. height: math.unit(6, "feet"),
  11574. name: "Side",
  11575. image: {
  11576. source: "./media/characters/ailbhe/side.svg",
  11577. extra: 757 / 464,
  11578. bottom: 0.041
  11579. }
  11580. },
  11581. },
  11582. [
  11583. {
  11584. name: "Normal",
  11585. height: math.unit(1.07, "meters"),
  11586. default: true
  11587. },
  11588. ]
  11589. ))
  11590. characterMakers.push(() => makeCharacter(
  11591. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11592. {
  11593. front: {
  11594. height: math.unit(6, "feet"),
  11595. weight: math.unit(120, "kg"),
  11596. name: "Front",
  11597. image: {
  11598. source: "./media/characters/zevulfius/front.svg",
  11599. extra: 965 / 903
  11600. }
  11601. },
  11602. side: {
  11603. height: math.unit(6, "feet"),
  11604. weight: math.unit(120, "kg"),
  11605. name: "Side",
  11606. image: {
  11607. source: "./media/characters/zevulfius/side.svg",
  11608. extra: 939 / 900
  11609. }
  11610. },
  11611. back: {
  11612. height: math.unit(6, "feet"),
  11613. weight: math.unit(120, "kg"),
  11614. name: "Back",
  11615. image: {
  11616. source: "./media/characters/zevulfius/back.svg",
  11617. extra: 918 / 854,
  11618. bottom: 0.005
  11619. }
  11620. },
  11621. foot: {
  11622. height: math.unit(6 / 3.72, "feet"),
  11623. name: "Foot",
  11624. image: {
  11625. source: "./media/characters/zevulfius/foot.svg"
  11626. }
  11627. },
  11628. },
  11629. [
  11630. {
  11631. name: "Macro",
  11632. height: math.unit(750, "meters")
  11633. },
  11634. {
  11635. name: "Megamacro",
  11636. height: math.unit(20, "km"),
  11637. default: true
  11638. },
  11639. {
  11640. name: "Gigamacro",
  11641. height: math.unit(2000, "km")
  11642. },
  11643. {
  11644. name: "Teramacro",
  11645. height: math.unit(250000, "km")
  11646. },
  11647. ]
  11648. ))
  11649. characterMakers.push(() => makeCharacter(
  11650. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11651. {
  11652. front: {
  11653. height: math.unit(100, "feet"),
  11654. weight: math.unit(350, "kg"),
  11655. name: "Front",
  11656. image: {
  11657. source: "./media/characters/rikes/front.svg",
  11658. extra: 1565 / 1483,
  11659. bottom: 0.017
  11660. }
  11661. },
  11662. },
  11663. [
  11664. {
  11665. name: "Macro",
  11666. height: math.unit(100, "feet"),
  11667. default: true
  11668. },
  11669. ]
  11670. ))
  11671. characterMakers.push(() => makeCharacter(
  11672. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11673. {
  11674. front: {
  11675. height: math.unit(8, "feet"),
  11676. weight: math.unit(356, "lb"),
  11677. name: "Front",
  11678. image: {
  11679. source: "./media/characters/adam-silver-mane/front.svg",
  11680. extra: 1036/937,
  11681. bottom: 63/1099
  11682. }
  11683. },
  11684. side: {
  11685. height: math.unit(8, "feet"),
  11686. weight: math.unit(356, "lb"),
  11687. name: "Side",
  11688. image: {
  11689. source: "./media/characters/adam-silver-mane/side.svg",
  11690. extra: 997/901,
  11691. bottom: 59/1056
  11692. }
  11693. },
  11694. frontNsfw: {
  11695. height: math.unit(8, "feet"),
  11696. weight: math.unit(356, "lb"),
  11697. name: "Front (NSFW)",
  11698. image: {
  11699. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11700. extra: 1036/937,
  11701. bottom: 63/1099
  11702. }
  11703. },
  11704. sideNsfw: {
  11705. height: math.unit(8, "feet"),
  11706. weight: math.unit(356, "lb"),
  11707. name: "Side (NSFW)",
  11708. image: {
  11709. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11710. extra: 997/901,
  11711. bottom: 59/1056
  11712. }
  11713. },
  11714. dick: {
  11715. height: math.unit(2.1, "feet"),
  11716. name: "Dick",
  11717. image: {
  11718. source: "./media/characters/adam-silver-mane/dick.svg"
  11719. }
  11720. },
  11721. taur: {
  11722. height: math.unit(16, "feet"),
  11723. weight: math.unit(1500, "kg"),
  11724. name: "Taur",
  11725. image: {
  11726. source: "./media/characters/adam-silver-mane/taur.svg",
  11727. extra: 1713 / 1571,
  11728. bottom: 0.01
  11729. }
  11730. },
  11731. },
  11732. [
  11733. {
  11734. name: "Normal",
  11735. height: math.unit(8, "feet")
  11736. },
  11737. {
  11738. name: "Minimacro",
  11739. height: math.unit(80, "feet")
  11740. },
  11741. {
  11742. name: "MDA",
  11743. height: math.unit(80, "meters")
  11744. },
  11745. {
  11746. name: "Macro",
  11747. height: math.unit(800, "feet"),
  11748. default: true
  11749. },
  11750. {
  11751. name: "Megamacro",
  11752. height: math.unit(8000, "feet")
  11753. },
  11754. {
  11755. name: "Gigamacro",
  11756. height: math.unit(800, "miles")
  11757. },
  11758. {
  11759. name: "Teramacro",
  11760. height: math.unit(80000, "miles")
  11761. },
  11762. {
  11763. name: "Celestial",
  11764. height: math.unit(8e6, "miles")
  11765. },
  11766. {
  11767. name: "Star Dragon",
  11768. height: math.unit(800000, "parsecs")
  11769. },
  11770. {
  11771. name: "Godly",
  11772. height: math.unit(800, "teraparsecs")
  11773. },
  11774. ]
  11775. ))
  11776. characterMakers.push(() => makeCharacter(
  11777. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11778. {
  11779. front: {
  11780. height: math.unit(6, "feet"),
  11781. weight: math.unit(150, "lb"),
  11782. name: "Front",
  11783. image: {
  11784. source: "./media/characters/ky'owin/front.svg",
  11785. extra: 3862/3053,
  11786. bottom: 74/3936
  11787. }
  11788. },
  11789. },
  11790. [
  11791. {
  11792. name: "Normal",
  11793. height: math.unit(6 + 8 / 12, "feet")
  11794. },
  11795. {
  11796. name: "Large",
  11797. height: math.unit(68, "feet")
  11798. },
  11799. {
  11800. name: "Macro",
  11801. height: math.unit(132, "feet")
  11802. },
  11803. {
  11804. name: "Macro+",
  11805. height: math.unit(340, "feet")
  11806. },
  11807. {
  11808. name: "Macro++",
  11809. height: math.unit(680, "feet"),
  11810. default: true
  11811. },
  11812. {
  11813. name: "Megamacro",
  11814. height: math.unit(1, "mile")
  11815. },
  11816. {
  11817. name: "Megamacro+",
  11818. height: math.unit(10, "miles")
  11819. },
  11820. ]
  11821. ))
  11822. characterMakers.push(() => makeCharacter(
  11823. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11824. {
  11825. front: {
  11826. height: math.unit(4, "feet"),
  11827. weight: math.unit(50, "lb"),
  11828. name: "Front",
  11829. image: {
  11830. source: "./media/characters/mal/front.svg",
  11831. extra: 785 / 724,
  11832. bottom: 0.07
  11833. }
  11834. },
  11835. },
  11836. [
  11837. {
  11838. name: "Micro",
  11839. height: math.unit(4, "inches")
  11840. },
  11841. {
  11842. name: "Normal",
  11843. height: math.unit(4, "feet"),
  11844. default: true
  11845. },
  11846. {
  11847. name: "Macro",
  11848. height: math.unit(200, "feet")
  11849. },
  11850. ]
  11851. ))
  11852. characterMakers.push(() => makeCharacter(
  11853. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11854. {
  11855. front: {
  11856. height: math.unit(6, "feet"),
  11857. weight: math.unit(150, "lb"),
  11858. name: "Front",
  11859. image: {
  11860. source: "./media/characters/jordan-deware/front.svg",
  11861. extra: 1191 / 1012
  11862. }
  11863. },
  11864. },
  11865. [
  11866. {
  11867. name: "Nano",
  11868. height: math.unit(0.01, "mm")
  11869. },
  11870. {
  11871. name: "Minimicro",
  11872. height: math.unit(1, "mm")
  11873. },
  11874. {
  11875. name: "Micro",
  11876. height: math.unit(0.5, "inches")
  11877. },
  11878. {
  11879. name: "Normal",
  11880. height: math.unit(4, "feet"),
  11881. default: true
  11882. },
  11883. {
  11884. name: "Minimacro",
  11885. height: math.unit(40, "meters")
  11886. },
  11887. {
  11888. name: "Small Macro",
  11889. height: math.unit(400, "meters")
  11890. },
  11891. {
  11892. name: "Macro",
  11893. height: math.unit(4, "miles")
  11894. },
  11895. {
  11896. name: "Megamacro",
  11897. height: math.unit(40, "miles")
  11898. },
  11899. {
  11900. name: "Megamacro+",
  11901. height: math.unit(400, "miles")
  11902. },
  11903. {
  11904. name: "Gigamacro",
  11905. height: math.unit(400000, "miles")
  11906. },
  11907. ]
  11908. ))
  11909. characterMakers.push(() => makeCharacter(
  11910. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11911. {
  11912. side: {
  11913. height: math.unit(6, "feet"),
  11914. weight: math.unit(150, "lb"),
  11915. name: "Side",
  11916. image: {
  11917. source: "./media/characters/kimiko/side.svg",
  11918. extra: 600 / 358
  11919. }
  11920. },
  11921. },
  11922. [
  11923. {
  11924. name: "Normal",
  11925. height: math.unit(15, "feet"),
  11926. default: true
  11927. },
  11928. {
  11929. name: "Macro",
  11930. height: math.unit(220, "feet")
  11931. },
  11932. {
  11933. name: "Macro+",
  11934. height: math.unit(1450, "feet")
  11935. },
  11936. {
  11937. name: "Megamacro",
  11938. height: math.unit(11500, "feet")
  11939. },
  11940. {
  11941. name: "Gigamacro",
  11942. height: math.unit(9500, "miles")
  11943. },
  11944. {
  11945. name: "Teramacro",
  11946. height: math.unit(2208005005, "miles")
  11947. },
  11948. {
  11949. name: "Examacro",
  11950. height: math.unit(2750, "parsecs")
  11951. },
  11952. {
  11953. name: "Zettamacro",
  11954. height: math.unit(101500, "parsecs")
  11955. },
  11956. ]
  11957. ))
  11958. characterMakers.push(() => makeCharacter(
  11959. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11960. {
  11961. front: {
  11962. height: math.unit(6, "feet"),
  11963. weight: math.unit(70, "kg"),
  11964. name: "Front",
  11965. image: {
  11966. source: "./media/characters/andrew-sleepy/front.svg"
  11967. }
  11968. },
  11969. side: {
  11970. height: math.unit(6, "feet"),
  11971. weight: math.unit(70, "kg"),
  11972. name: "Side",
  11973. image: {
  11974. source: "./media/characters/andrew-sleepy/side.svg"
  11975. }
  11976. },
  11977. },
  11978. [
  11979. {
  11980. name: "Micro",
  11981. height: math.unit(1, "mm"),
  11982. default: true
  11983. },
  11984. ]
  11985. ))
  11986. characterMakers.push(() => makeCharacter(
  11987. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11988. {
  11989. front: {
  11990. height: math.unit(6, "feet"),
  11991. weight: math.unit(150, "lb"),
  11992. name: "Front",
  11993. image: {
  11994. source: "./media/characters/judio/front.svg",
  11995. extra: 1258 / 1110
  11996. }
  11997. },
  11998. },
  11999. [
  12000. {
  12001. name: "Normal",
  12002. height: math.unit(5 + 6 / 12, "feet")
  12003. },
  12004. {
  12005. name: "Macro",
  12006. height: math.unit(1000, "feet"),
  12007. default: true
  12008. },
  12009. {
  12010. name: "Megamacro",
  12011. height: math.unit(10, "miles")
  12012. },
  12013. ]
  12014. ))
  12015. characterMakers.push(() => makeCharacter(
  12016. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12017. {
  12018. frontDressed: {
  12019. height: math.unit(6, "feet"),
  12020. weight: math.unit(68, "kg"),
  12021. name: "Front (Dressed)",
  12022. image: {
  12023. source: "./media/characters/nomaxice/front-dressed.svg",
  12024. extra: 1137/824,
  12025. bottom: 74/1211
  12026. }
  12027. },
  12028. frontShorts: {
  12029. height: math.unit(6, "feet"),
  12030. weight: math.unit(68, "kg"),
  12031. name: "Front (Shorts)",
  12032. image: {
  12033. source: "./media/characters/nomaxice/front-shorts.svg",
  12034. extra: 1137/824,
  12035. bottom: 74/1211
  12036. }
  12037. },
  12038. back: {
  12039. height: math.unit(6, "feet"),
  12040. weight: math.unit(68, "kg"),
  12041. name: "Back",
  12042. image: {
  12043. source: "./media/characters/nomaxice/back.svg",
  12044. extra: 822/786,
  12045. bottom: 39/861
  12046. }
  12047. },
  12048. hand: {
  12049. height: math.unit(0.565, "feet"),
  12050. name: "Hand",
  12051. image: {
  12052. source: "./media/characters/nomaxice/hand.svg"
  12053. }
  12054. },
  12055. foot: {
  12056. height: math.unit(1, "feet"),
  12057. name: "Foot",
  12058. image: {
  12059. source: "./media/characters/nomaxice/foot.svg"
  12060. }
  12061. },
  12062. },
  12063. [
  12064. {
  12065. name: "Micro",
  12066. height: math.unit(8, "cm")
  12067. },
  12068. {
  12069. name: "Norm",
  12070. height: math.unit(1.82, "m")
  12071. },
  12072. {
  12073. name: "Norm+",
  12074. height: math.unit(8.8, "feet"),
  12075. default: true
  12076. },
  12077. {
  12078. name: "Big",
  12079. height: math.unit(8, "meters")
  12080. },
  12081. {
  12082. name: "Macro",
  12083. height: math.unit(18, "meters")
  12084. },
  12085. {
  12086. name: "Macro+",
  12087. height: math.unit(88, "meters")
  12088. },
  12089. ]
  12090. ))
  12091. characterMakers.push(() => makeCharacter(
  12092. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12093. {
  12094. front: {
  12095. height: math.unit(12, "feet"),
  12096. weight: math.unit(1.5, "tons"),
  12097. name: "Front",
  12098. image: {
  12099. source: "./media/characters/dydros/front.svg",
  12100. extra: 863 / 800,
  12101. bottom: 0.015
  12102. }
  12103. },
  12104. back: {
  12105. height: math.unit(12, "feet"),
  12106. weight: math.unit(1.5, "tons"),
  12107. name: "Back",
  12108. image: {
  12109. source: "./media/characters/dydros/back.svg",
  12110. extra: 900 / 843,
  12111. bottom: 0.005
  12112. }
  12113. },
  12114. },
  12115. [
  12116. {
  12117. name: "Normal",
  12118. height: math.unit(12, "feet"),
  12119. default: true
  12120. },
  12121. ]
  12122. ))
  12123. characterMakers.push(() => makeCharacter(
  12124. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12125. {
  12126. front: {
  12127. height: math.unit(6, "feet"),
  12128. weight: math.unit(100, "kg"),
  12129. name: "Front",
  12130. image: {
  12131. source: "./media/characters/riggi/front.svg",
  12132. extra: 5787 / 5303
  12133. }
  12134. },
  12135. hyper: {
  12136. height: math.unit(6 * 5 / 3, "feet"),
  12137. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12138. name: "Hyper",
  12139. image: {
  12140. source: "./media/characters/riggi/hyper.svg",
  12141. extra: 3595 / 3485
  12142. }
  12143. },
  12144. },
  12145. [
  12146. {
  12147. name: "Small Macro",
  12148. height: math.unit(50, "feet")
  12149. },
  12150. {
  12151. name: "Default",
  12152. height: math.unit(200, "feet"),
  12153. default: true
  12154. },
  12155. {
  12156. name: "Loom",
  12157. height: math.unit(10000, "feet")
  12158. },
  12159. {
  12160. name: "Cruising Altitude",
  12161. height: math.unit(30000, "feet")
  12162. },
  12163. {
  12164. name: "Megamacro",
  12165. height: math.unit(100, "miles")
  12166. },
  12167. {
  12168. name: "Continent Sized",
  12169. height: math.unit(2800, "miles")
  12170. },
  12171. {
  12172. name: "Earth Sized",
  12173. height: math.unit(8000, "miles")
  12174. },
  12175. ]
  12176. ))
  12177. characterMakers.push(() => makeCharacter(
  12178. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12179. {
  12180. front: {
  12181. height: math.unit(6, "feet"),
  12182. weight: math.unit(250, "lb"),
  12183. name: "Front",
  12184. image: {
  12185. source: "./media/characters/alexi/front.svg",
  12186. extra: 3483 / 3291,
  12187. bottom: 0.04
  12188. }
  12189. },
  12190. back: {
  12191. height: math.unit(6, "feet"),
  12192. weight: math.unit(250, "lb"),
  12193. name: "Back",
  12194. image: {
  12195. source: "./media/characters/alexi/back.svg",
  12196. extra: 3533 / 3356,
  12197. bottom: 0.021
  12198. }
  12199. },
  12200. frontTransforming: {
  12201. height: math.unit(8.58, "feet"),
  12202. weight: math.unit(1300, "lb"),
  12203. name: "Transforming",
  12204. image: {
  12205. source: "./media/characters/alexi/front-transforming.svg",
  12206. extra: 437 / 409,
  12207. bottom: 19 / 458.66
  12208. }
  12209. },
  12210. frontTransformed: {
  12211. height: math.unit(12.5, "feet"),
  12212. weight: math.unit(4000, "lb"),
  12213. name: "Transformed",
  12214. image: {
  12215. source: "./media/characters/alexi/front-transformed.svg",
  12216. extra: 639 / 614,
  12217. bottom: 30.55 / 671
  12218. }
  12219. },
  12220. },
  12221. [
  12222. {
  12223. name: "Normal",
  12224. height: math.unit(14, "feet"),
  12225. default: true
  12226. },
  12227. {
  12228. name: "Minimacro",
  12229. height: math.unit(30, "meters")
  12230. },
  12231. {
  12232. name: "Macro",
  12233. height: math.unit(500, "meters")
  12234. },
  12235. {
  12236. name: "Megamacro",
  12237. height: math.unit(9000, "km")
  12238. },
  12239. {
  12240. name: "Teramacro",
  12241. height: math.unit(384000, "km")
  12242. },
  12243. ]
  12244. ))
  12245. characterMakers.push(() => makeCharacter(
  12246. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12247. {
  12248. front: {
  12249. height: math.unit(6, "feet"),
  12250. weight: math.unit(150, "lb"),
  12251. name: "Front",
  12252. image: {
  12253. source: "./media/characters/kayroo/front.svg",
  12254. extra: 1153 / 1038,
  12255. bottom: 0.06
  12256. }
  12257. },
  12258. foot: {
  12259. height: math.unit(6, "feet"),
  12260. weight: math.unit(150, "lb"),
  12261. name: "Foot",
  12262. image: {
  12263. source: "./media/characters/kayroo/foot.svg"
  12264. }
  12265. },
  12266. },
  12267. [
  12268. {
  12269. name: "Normal",
  12270. height: math.unit(8, "feet"),
  12271. default: true
  12272. },
  12273. {
  12274. name: "Minimacro",
  12275. height: math.unit(250, "feet")
  12276. },
  12277. {
  12278. name: "Macro",
  12279. height: math.unit(2800, "feet")
  12280. },
  12281. {
  12282. name: "Megamacro",
  12283. height: math.unit(5200, "feet")
  12284. },
  12285. {
  12286. name: "Gigamacro",
  12287. height: math.unit(27000, "feet")
  12288. },
  12289. {
  12290. name: "Omega",
  12291. height: math.unit(45000, "feet")
  12292. },
  12293. ]
  12294. ))
  12295. characterMakers.push(() => makeCharacter(
  12296. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12297. {
  12298. front: {
  12299. height: math.unit(18, "feet"),
  12300. weight: math.unit(5800, "lb"),
  12301. name: "Front",
  12302. image: {
  12303. source: "./media/characters/rhys/front.svg",
  12304. extra: 3386 / 3090,
  12305. bottom: 0.07
  12306. }
  12307. },
  12308. },
  12309. [
  12310. {
  12311. name: "Normal",
  12312. height: math.unit(18, "feet"),
  12313. default: true
  12314. },
  12315. {
  12316. name: "Working Size",
  12317. height: math.unit(200, "feet")
  12318. },
  12319. {
  12320. name: "Demolition Size",
  12321. height: math.unit(2000, "feet")
  12322. },
  12323. {
  12324. name: "Maximum Licensed Size",
  12325. height: math.unit(5, "miles")
  12326. },
  12327. {
  12328. name: "Maximum Observed Size",
  12329. height: math.unit(10, "yottameters")
  12330. },
  12331. ]
  12332. ))
  12333. characterMakers.push(() => makeCharacter(
  12334. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12335. {
  12336. front: {
  12337. height: math.unit(6, "feet"),
  12338. weight: math.unit(250, "lb"),
  12339. name: "Front",
  12340. image: {
  12341. source: "./media/characters/toto/front.svg",
  12342. extra: 527 / 479,
  12343. bottom: 0.05
  12344. }
  12345. },
  12346. },
  12347. [
  12348. {
  12349. name: "Micro",
  12350. height: math.unit(3, "feet")
  12351. },
  12352. {
  12353. name: "Normal",
  12354. height: math.unit(10, "feet")
  12355. },
  12356. {
  12357. name: "Macro",
  12358. height: math.unit(150, "feet"),
  12359. default: true
  12360. },
  12361. {
  12362. name: "Megamacro",
  12363. height: math.unit(1200, "feet")
  12364. },
  12365. ]
  12366. ))
  12367. characterMakers.push(() => makeCharacter(
  12368. { name: "King", species: ["lion"], tags: ["anthro"] },
  12369. {
  12370. back: {
  12371. height: math.unit(6, "feet"),
  12372. weight: math.unit(150, "lb"),
  12373. name: "Back",
  12374. image: {
  12375. source: "./media/characters/king/back.svg"
  12376. }
  12377. },
  12378. },
  12379. [
  12380. {
  12381. name: "Micro",
  12382. height: math.unit(2, "inches")
  12383. },
  12384. {
  12385. name: "Normal",
  12386. height: math.unit(8, "feet")
  12387. },
  12388. {
  12389. name: "Macro",
  12390. height: math.unit(200, "feet"),
  12391. default: true
  12392. },
  12393. {
  12394. name: "Megamacro",
  12395. height: math.unit(50, "miles")
  12396. },
  12397. ]
  12398. ))
  12399. characterMakers.push(() => makeCharacter(
  12400. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12401. {
  12402. front: {
  12403. height: math.unit(11, "feet"),
  12404. weight: math.unit(1400, "lb"),
  12405. name: "Front",
  12406. image: {
  12407. source: "./media/characters/cordite/front.svg",
  12408. extra: 1919/1827,
  12409. bottom: 40/1959
  12410. }
  12411. },
  12412. side: {
  12413. height: math.unit(11, "feet"),
  12414. weight: math.unit(1400, "lb"),
  12415. name: "Side",
  12416. image: {
  12417. source: "./media/characters/cordite/side.svg",
  12418. extra: 1908/1793,
  12419. bottom: 38/1946
  12420. }
  12421. },
  12422. back: {
  12423. height: math.unit(11, "feet"),
  12424. weight: math.unit(1400, "lb"),
  12425. name: "Back",
  12426. image: {
  12427. source: "./media/characters/cordite/back.svg",
  12428. extra: 1938/1837,
  12429. bottom: 10/1948
  12430. }
  12431. },
  12432. feral: {
  12433. height: math.unit(2, "feet"),
  12434. weight: math.unit(90, "lb"),
  12435. name: "Feral",
  12436. image: {
  12437. source: "./media/characters/cordite/feral.svg",
  12438. extra: 1260 / 755,
  12439. bottom: 0.05
  12440. }
  12441. },
  12442. },
  12443. [
  12444. {
  12445. name: "Normal",
  12446. height: math.unit(11, "feet"),
  12447. default: true
  12448. },
  12449. ]
  12450. ))
  12451. characterMakers.push(() => makeCharacter(
  12452. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12453. {
  12454. front: {
  12455. height: math.unit(6, "feet"),
  12456. weight: math.unit(150, "lb"),
  12457. name: "Front",
  12458. image: {
  12459. source: "./media/characters/pianostrong/front.svg",
  12460. extra: 6577 / 6254,
  12461. bottom: 0.02
  12462. }
  12463. },
  12464. side: {
  12465. height: math.unit(6, "feet"),
  12466. weight: math.unit(150, "lb"),
  12467. name: "Side",
  12468. image: {
  12469. source: "./media/characters/pianostrong/side.svg",
  12470. extra: 6106 / 5730
  12471. }
  12472. },
  12473. back: {
  12474. height: math.unit(6, "feet"),
  12475. weight: math.unit(150, "lb"),
  12476. name: "Back",
  12477. image: {
  12478. source: "./media/characters/pianostrong/back.svg",
  12479. extra: 6085 / 5733,
  12480. bottom: 0.01
  12481. }
  12482. },
  12483. },
  12484. [
  12485. {
  12486. name: "Macro",
  12487. height: math.unit(100, "feet")
  12488. },
  12489. {
  12490. name: "Macro+",
  12491. height: math.unit(300, "feet"),
  12492. default: true
  12493. },
  12494. {
  12495. name: "Macro++",
  12496. height: math.unit(1000, "feet")
  12497. },
  12498. ]
  12499. ))
  12500. characterMakers.push(() => makeCharacter(
  12501. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12502. {
  12503. front: {
  12504. height: math.unit(6, "feet"),
  12505. weight: math.unit(150, "lb"),
  12506. name: "Front",
  12507. image: {
  12508. source: "./media/characters/kona/front.svg",
  12509. extra: 2960 / 2629,
  12510. bottom: 0.005
  12511. }
  12512. },
  12513. },
  12514. [
  12515. {
  12516. name: "Normal",
  12517. height: math.unit(11 + 8 / 12, "feet")
  12518. },
  12519. {
  12520. name: "Macro",
  12521. height: math.unit(850, "feet"),
  12522. default: true
  12523. },
  12524. {
  12525. name: "Macro+",
  12526. height: math.unit(1.5, "km"),
  12527. default: true
  12528. },
  12529. {
  12530. name: "Megamacro",
  12531. height: math.unit(80, "miles")
  12532. },
  12533. {
  12534. name: "Gigamacro",
  12535. height: math.unit(3500, "miles")
  12536. },
  12537. ]
  12538. ))
  12539. characterMakers.push(() => makeCharacter(
  12540. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12541. {
  12542. side: {
  12543. height: math.unit(1.9, "meters"),
  12544. weight: math.unit(326, "kg"),
  12545. name: "Side",
  12546. image: {
  12547. source: "./media/characters/levi/side.svg",
  12548. extra: 1704 / 1334,
  12549. bottom: 0.02
  12550. }
  12551. },
  12552. },
  12553. [
  12554. {
  12555. name: "Normal",
  12556. height: math.unit(1.9, "meters"),
  12557. default: true
  12558. },
  12559. {
  12560. name: "Macro",
  12561. height: math.unit(20, "meters")
  12562. },
  12563. {
  12564. name: "Macro+",
  12565. height: math.unit(200, "meters")
  12566. },
  12567. {
  12568. name: "Megamacro",
  12569. height: math.unit(2, "km")
  12570. },
  12571. {
  12572. name: "Megamacro+",
  12573. height: math.unit(20, "km")
  12574. },
  12575. {
  12576. name: "Gigamacro",
  12577. height: math.unit(2500, "km")
  12578. },
  12579. {
  12580. name: "Gigamacro+",
  12581. height: math.unit(120000, "km")
  12582. },
  12583. {
  12584. name: "Teramacro",
  12585. height: math.unit(7.77e6, "km")
  12586. },
  12587. ]
  12588. ))
  12589. characterMakers.push(() => makeCharacter(
  12590. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12591. {
  12592. front: {
  12593. height: math.unit(6 + 4/12, "feet"),
  12594. weight: math.unit(190, "lb"),
  12595. name: "Front",
  12596. image: {
  12597. source: "./media/characters/bmc/front.svg",
  12598. extra: 1626/1472,
  12599. bottom: 79/1705
  12600. }
  12601. },
  12602. back: {
  12603. height: math.unit(6 + 4/12, "feet"),
  12604. weight: math.unit(190, "lb"),
  12605. name: "Back",
  12606. image: {
  12607. source: "./media/characters/bmc/back.svg",
  12608. extra: 1640/1479,
  12609. bottom: 45/1685
  12610. }
  12611. },
  12612. frontArmor: {
  12613. height: math.unit(6 + 4/12, "feet"),
  12614. weight: math.unit(190, "lb"),
  12615. name: "Front-armor",
  12616. image: {
  12617. source: "./media/characters/bmc/front-armor.svg",
  12618. extra: 1538/1468,
  12619. bottom: 79/1617
  12620. }
  12621. },
  12622. },
  12623. [
  12624. {
  12625. name: "Human-sized",
  12626. height: math.unit(6 + 4 / 12, "feet")
  12627. },
  12628. {
  12629. name: "Interactive Size",
  12630. height: math.unit(25, "feet")
  12631. },
  12632. {
  12633. name: "Small",
  12634. height: math.unit(250, "feet")
  12635. },
  12636. {
  12637. name: "Normal",
  12638. height: math.unit(1250, "feet"),
  12639. default: true
  12640. },
  12641. {
  12642. name: "Good Day",
  12643. height: math.unit(88, "miles")
  12644. },
  12645. {
  12646. name: "Largest Measured Size",
  12647. height: math.unit(105.960, "galaxies")
  12648. },
  12649. ]
  12650. ))
  12651. characterMakers.push(() => makeCharacter(
  12652. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12653. {
  12654. front: {
  12655. height: math.unit(20, "feet"),
  12656. weight: math.unit(2016, "kg"),
  12657. name: "Front",
  12658. image: {
  12659. source: "./media/characters/sven-the-kaiju/front.svg",
  12660. extra: 1277/1250,
  12661. bottom: 35/1312
  12662. }
  12663. },
  12664. mouth: {
  12665. height: math.unit(1.85, "feet"),
  12666. name: "Mouth",
  12667. image: {
  12668. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12669. }
  12670. },
  12671. },
  12672. [
  12673. {
  12674. name: "Fairy",
  12675. height: math.unit(6, "inches")
  12676. },
  12677. {
  12678. name: "Normal",
  12679. height: math.unit(20, "feet"),
  12680. default: true
  12681. },
  12682. {
  12683. name: "Rampage",
  12684. height: math.unit(200, "feet")
  12685. },
  12686. {
  12687. name: "Archfey Forest Guardian",
  12688. height: math.unit(1, "mile")
  12689. },
  12690. ]
  12691. ))
  12692. characterMakers.push(() => makeCharacter(
  12693. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12694. {
  12695. front: {
  12696. height: math.unit(4, "meters"),
  12697. weight: math.unit(2, "tons"),
  12698. name: "Front",
  12699. image: {
  12700. source: "./media/characters/marik/front.svg",
  12701. extra: 1057 / 1003,
  12702. bottom: 0.08
  12703. }
  12704. },
  12705. },
  12706. [
  12707. {
  12708. name: "Normal",
  12709. height: math.unit(4, "meters"),
  12710. default: true
  12711. },
  12712. {
  12713. name: "Macro",
  12714. height: math.unit(20, "meters")
  12715. },
  12716. {
  12717. name: "Megamacro",
  12718. height: math.unit(50, "km")
  12719. },
  12720. {
  12721. name: "Gigamacro",
  12722. height: math.unit(100, "km")
  12723. },
  12724. {
  12725. name: "Alpha Macro",
  12726. height: math.unit(7.88e7, "yottameters")
  12727. },
  12728. ]
  12729. ))
  12730. characterMakers.push(() => makeCharacter(
  12731. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12732. {
  12733. front: {
  12734. height: math.unit(6, "feet"),
  12735. weight: math.unit(110, "lb"),
  12736. name: "Front",
  12737. image: {
  12738. source: "./media/characters/mel/front.svg",
  12739. extra: 736 / 617,
  12740. bottom: 0.017
  12741. }
  12742. },
  12743. },
  12744. [
  12745. {
  12746. name: "Pico",
  12747. height: math.unit(3, "pm")
  12748. },
  12749. {
  12750. name: "Nano",
  12751. height: math.unit(3, "nm")
  12752. },
  12753. {
  12754. name: "Micro",
  12755. height: math.unit(0.3, "mm"),
  12756. default: true
  12757. },
  12758. {
  12759. name: "Micro+",
  12760. height: math.unit(3, "mm")
  12761. },
  12762. {
  12763. name: "Normal",
  12764. height: math.unit(5 + 10.5 / 12, "feet")
  12765. },
  12766. ]
  12767. ))
  12768. characterMakers.push(() => makeCharacter(
  12769. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12770. {
  12771. kaiju: {
  12772. height: math.unit(1.75, "meters"),
  12773. weight: math.unit(55, "kg"),
  12774. name: "Kaiju",
  12775. image: {
  12776. source: "./media/characters/lykonous/kaiju.svg",
  12777. extra: 1055 / 946,
  12778. bottom: 0.135
  12779. }
  12780. },
  12781. },
  12782. [
  12783. {
  12784. name: "Normal",
  12785. height: math.unit(2.5, "meters"),
  12786. default: true
  12787. },
  12788. {
  12789. name: "Kaiju Dragon",
  12790. height: math.unit(60, "meters")
  12791. },
  12792. {
  12793. name: "Mega Kaiju",
  12794. height: math.unit(120, "km")
  12795. },
  12796. {
  12797. name: "Giga Kaiju",
  12798. height: math.unit(200, "megameters")
  12799. },
  12800. {
  12801. name: "Terra Kaiju",
  12802. height: math.unit(400, "gigameters")
  12803. },
  12804. {
  12805. name: "Kaiju Dragon God",
  12806. height: math.unit(13000, "exaparsecs")
  12807. },
  12808. ]
  12809. ))
  12810. characterMakers.push(() => makeCharacter(
  12811. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12812. {
  12813. front: {
  12814. height: math.unit(6, "feet"),
  12815. weight: math.unit(150, "lb"),
  12816. name: "Front",
  12817. image: {
  12818. source: "./media/characters/blü/front.svg",
  12819. extra: 1883 / 1564,
  12820. bottom: 0.031
  12821. }
  12822. },
  12823. },
  12824. [
  12825. {
  12826. name: "Normal",
  12827. height: math.unit(13, "feet"),
  12828. default: true
  12829. },
  12830. {
  12831. name: "Big Boi",
  12832. height: math.unit(150, "meters")
  12833. },
  12834. {
  12835. name: "Mini Stomper",
  12836. height: math.unit(300, "meters")
  12837. },
  12838. {
  12839. name: "Macro",
  12840. height: math.unit(1000, "meters")
  12841. },
  12842. {
  12843. name: "Megamacro",
  12844. height: math.unit(11000, "meters")
  12845. },
  12846. {
  12847. name: "Gigamacro",
  12848. height: math.unit(11000, "km")
  12849. },
  12850. {
  12851. name: "Teramacro",
  12852. height: math.unit(420000, "km")
  12853. },
  12854. {
  12855. name: "Examacro",
  12856. height: math.unit(120, "parsecs")
  12857. },
  12858. {
  12859. name: "God Tho",
  12860. height: math.unit(98000000000, "parsecs")
  12861. },
  12862. ]
  12863. ))
  12864. characterMakers.push(() => makeCharacter(
  12865. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12866. {
  12867. taurFront: {
  12868. height: math.unit(6, "feet"),
  12869. weight: math.unit(200, "lb"),
  12870. name: "Taur (Front)",
  12871. image: {
  12872. source: "./media/characters/scales/taur-front.svg",
  12873. extra: 1,
  12874. bottom: 0.05
  12875. }
  12876. },
  12877. taurBack: {
  12878. height: math.unit(6, "feet"),
  12879. weight: math.unit(200, "lb"),
  12880. name: "Taur (Back)",
  12881. image: {
  12882. source: "./media/characters/scales/taur-back.svg",
  12883. extra: 1,
  12884. bottom: 0.08
  12885. }
  12886. },
  12887. anthro: {
  12888. height: math.unit(6 * 7 / 12, "feet"),
  12889. weight: math.unit(100, "lb"),
  12890. name: "Anthro",
  12891. image: {
  12892. source: "./media/characters/scales/anthro.svg",
  12893. extra: 1,
  12894. bottom: 0.06
  12895. }
  12896. },
  12897. },
  12898. [
  12899. {
  12900. name: "Normal",
  12901. height: math.unit(12, "feet"),
  12902. default: true
  12903. },
  12904. ]
  12905. ))
  12906. characterMakers.push(() => makeCharacter(
  12907. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12908. {
  12909. front: {
  12910. height: math.unit(6, "feet"),
  12911. weight: math.unit(150, "lb"),
  12912. name: "Front",
  12913. image: {
  12914. source: "./media/characters/koragos/front.svg",
  12915. extra: 841 / 794,
  12916. bottom: 0.035
  12917. }
  12918. },
  12919. back: {
  12920. height: math.unit(6, "feet"),
  12921. weight: math.unit(150, "lb"),
  12922. name: "Back",
  12923. image: {
  12924. source: "./media/characters/koragos/back.svg",
  12925. extra: 841 / 810,
  12926. bottom: 0.022
  12927. }
  12928. },
  12929. },
  12930. [
  12931. {
  12932. name: "Normal",
  12933. height: math.unit(6 + 11 / 12, "feet"),
  12934. default: true
  12935. },
  12936. {
  12937. name: "Macro",
  12938. height: math.unit(490, "feet")
  12939. },
  12940. {
  12941. name: "Megamacro",
  12942. height: math.unit(10, "miles")
  12943. },
  12944. {
  12945. name: "Gigamacro",
  12946. height: math.unit(50, "miles")
  12947. },
  12948. ]
  12949. ))
  12950. characterMakers.push(() => makeCharacter(
  12951. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12952. {
  12953. front: {
  12954. height: math.unit(6, "feet"),
  12955. weight: math.unit(250, "lb"),
  12956. name: "Front",
  12957. image: {
  12958. source: "./media/characters/xylrem/front.svg",
  12959. extra: 3323 / 3050,
  12960. bottom: 0.065
  12961. }
  12962. },
  12963. },
  12964. [
  12965. {
  12966. name: "Micro",
  12967. height: math.unit(4, "feet")
  12968. },
  12969. {
  12970. name: "Normal",
  12971. height: math.unit(16, "feet"),
  12972. default: true
  12973. },
  12974. {
  12975. name: "Macro",
  12976. height: math.unit(2720, "feet")
  12977. },
  12978. {
  12979. name: "Megamacro",
  12980. height: math.unit(25000, "miles")
  12981. },
  12982. ]
  12983. ))
  12984. characterMakers.push(() => makeCharacter(
  12985. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12986. {
  12987. front: {
  12988. height: math.unit(8, "feet"),
  12989. weight: math.unit(250, "kg"),
  12990. name: "Front",
  12991. image: {
  12992. source: "./media/characters/ikideru/front.svg",
  12993. extra: 930 / 870,
  12994. bottom: 0.087
  12995. }
  12996. },
  12997. back: {
  12998. height: math.unit(8, "feet"),
  12999. weight: math.unit(250, "kg"),
  13000. name: "Back",
  13001. image: {
  13002. source: "./media/characters/ikideru/back.svg",
  13003. extra: 919 / 852,
  13004. bottom: 0.055
  13005. }
  13006. },
  13007. },
  13008. [
  13009. {
  13010. name: "Rare",
  13011. height: math.unit(8, "feet"),
  13012. default: true
  13013. },
  13014. {
  13015. name: "Playful Loom",
  13016. height: math.unit(80, "feet")
  13017. },
  13018. {
  13019. name: "City Leaner",
  13020. height: math.unit(230, "feet")
  13021. },
  13022. {
  13023. name: "Megamacro",
  13024. height: math.unit(2500, "feet")
  13025. },
  13026. {
  13027. name: "Gigamacro",
  13028. height: math.unit(26400, "feet")
  13029. },
  13030. {
  13031. name: "Tectonic Shifter",
  13032. height: math.unit(1.7, "megameters")
  13033. },
  13034. {
  13035. name: "Planet Carer",
  13036. height: math.unit(21, "megameters")
  13037. },
  13038. {
  13039. name: "God",
  13040. height: math.unit(11157.22, "parsecs")
  13041. },
  13042. ]
  13043. ))
  13044. characterMakers.push(() => makeCharacter(
  13045. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13046. {
  13047. front: {
  13048. height: math.unit(6, "feet"),
  13049. weight: math.unit(120, "lb"),
  13050. name: "Front",
  13051. image: {
  13052. source: "./media/characters/neo/front.svg"
  13053. }
  13054. },
  13055. },
  13056. [
  13057. {
  13058. name: "Micro",
  13059. height: math.unit(2, "inches"),
  13060. default: true
  13061. },
  13062. {
  13063. name: "Human Size",
  13064. height: math.unit(5 + 8 / 12, "feet")
  13065. },
  13066. ]
  13067. ))
  13068. characterMakers.push(() => makeCharacter(
  13069. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13070. {
  13071. front: {
  13072. height: math.unit(13 + 10 / 12, "feet"),
  13073. weight: math.unit(5320, "lb"),
  13074. name: "Front",
  13075. image: {
  13076. source: "./media/characters/chauncey-chantz/front.svg",
  13077. extra: 1587 / 1435,
  13078. bottom: 0.02
  13079. }
  13080. },
  13081. },
  13082. [
  13083. {
  13084. name: "Normal",
  13085. height: math.unit(13 + 10 / 12, "feet"),
  13086. default: true
  13087. },
  13088. {
  13089. name: "Macro",
  13090. height: math.unit(45, "feet")
  13091. },
  13092. {
  13093. name: "Megamacro",
  13094. height: math.unit(250, "miles")
  13095. },
  13096. {
  13097. name: "Planetary",
  13098. height: math.unit(10000, "miles")
  13099. },
  13100. {
  13101. name: "Galactic",
  13102. height: math.unit(40000, "parsecs")
  13103. },
  13104. {
  13105. name: "Universal",
  13106. height: math.unit(1, "yottameter")
  13107. },
  13108. ]
  13109. ))
  13110. characterMakers.push(() => makeCharacter(
  13111. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13112. {
  13113. front: {
  13114. height: math.unit(6, "feet"),
  13115. weight: math.unit(150, "lb"),
  13116. name: "Front",
  13117. image: {
  13118. source: "./media/characters/epifox/front.svg",
  13119. extra: 1,
  13120. bottom: 0.075
  13121. }
  13122. },
  13123. },
  13124. [
  13125. {
  13126. name: "Micro",
  13127. height: math.unit(6, "inches")
  13128. },
  13129. {
  13130. name: "Normal",
  13131. height: math.unit(12, "feet"),
  13132. default: true
  13133. },
  13134. {
  13135. name: "Macro",
  13136. height: math.unit(3810, "feet")
  13137. },
  13138. {
  13139. name: "Megamacro",
  13140. height: math.unit(500, "miles")
  13141. },
  13142. ]
  13143. ))
  13144. characterMakers.push(() => makeCharacter(
  13145. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13146. {
  13147. front: {
  13148. height: math.unit(1.8796, "m"),
  13149. weight: math.unit(230, "lb"),
  13150. name: "Front",
  13151. image: {
  13152. source: "./media/characters/colin-t/front.svg",
  13153. extra: 1272 / 1193,
  13154. bottom: 0.07
  13155. }
  13156. },
  13157. },
  13158. [
  13159. {
  13160. name: "Micro",
  13161. height: math.unit(0.571, "meters")
  13162. },
  13163. {
  13164. name: "Normal",
  13165. height: math.unit(1.8796, "meters"),
  13166. default: true
  13167. },
  13168. {
  13169. name: "Tall",
  13170. height: math.unit(4, "meters")
  13171. },
  13172. {
  13173. name: "Macro",
  13174. height: math.unit(67.241, "meters")
  13175. },
  13176. {
  13177. name: "Megamacro",
  13178. height: math.unit(371.856, "meters")
  13179. },
  13180. {
  13181. name: "Planetary",
  13182. height: math.unit(12631.5689, "km")
  13183. },
  13184. ]
  13185. ))
  13186. characterMakers.push(() => makeCharacter(
  13187. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13188. {
  13189. front: {
  13190. height: math.unit(1.85, "meters"),
  13191. weight: math.unit(80, "kg"),
  13192. name: "Front",
  13193. image: {
  13194. source: "./media/characters/matvei/front.svg",
  13195. extra: 456/447,
  13196. bottom: 8/464
  13197. }
  13198. },
  13199. back: {
  13200. height: math.unit(1.85, "meters"),
  13201. weight: math.unit(80, "kg"),
  13202. name: "Back",
  13203. image: {
  13204. source: "./media/characters/matvei/back.svg",
  13205. extra: 434/427,
  13206. bottom: 11/445
  13207. }
  13208. },
  13209. },
  13210. [
  13211. {
  13212. name: "Normal",
  13213. height: math.unit(1.85, "meters"),
  13214. default: true
  13215. },
  13216. ]
  13217. ))
  13218. characterMakers.push(() => makeCharacter(
  13219. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13220. {
  13221. front: {
  13222. height: math.unit(5 + 9 / 12, "feet"),
  13223. weight: math.unit(70, "lb"),
  13224. name: "Front",
  13225. image: {
  13226. source: "./media/characters/quincy/front.svg",
  13227. extra: 3041 / 2751
  13228. }
  13229. },
  13230. back: {
  13231. height: math.unit(5 + 9 / 12, "feet"),
  13232. weight: math.unit(70, "lb"),
  13233. name: "Back",
  13234. image: {
  13235. source: "./media/characters/quincy/back.svg",
  13236. extra: 3041 / 2751
  13237. }
  13238. },
  13239. flying: {
  13240. height: math.unit(5 + 4 / 12, "feet"),
  13241. weight: math.unit(70, "lb"),
  13242. name: "Flying",
  13243. image: {
  13244. source: "./media/characters/quincy/flying.svg",
  13245. extra: 1044 / 930
  13246. }
  13247. },
  13248. },
  13249. [
  13250. {
  13251. name: "Micro",
  13252. height: math.unit(3, "cm")
  13253. },
  13254. {
  13255. name: "Normal",
  13256. height: math.unit(5 + 9 / 12, "feet")
  13257. },
  13258. {
  13259. name: "Macro",
  13260. height: math.unit(200, "meters"),
  13261. default: true
  13262. },
  13263. {
  13264. name: "Megamacro",
  13265. height: math.unit(1000, "meters")
  13266. },
  13267. ]
  13268. ))
  13269. characterMakers.push(() => makeCharacter(
  13270. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13271. {
  13272. front: {
  13273. height: math.unit(3 + 11/12, "feet"),
  13274. weight: math.unit(50, "lb"),
  13275. name: "Front",
  13276. image: {
  13277. source: "./media/characters/vanrel/front.svg",
  13278. extra: 1104/949,
  13279. bottom: 52/1156
  13280. }
  13281. },
  13282. back: {
  13283. height: math.unit(3 + 11/12, "feet"),
  13284. weight: math.unit(50, "lb"),
  13285. name: "Back",
  13286. image: {
  13287. source: "./media/characters/vanrel/back.svg",
  13288. extra: 1119/976,
  13289. bottom: 37/1156
  13290. }
  13291. },
  13292. tome: {
  13293. height: math.unit(1.35, "feet"),
  13294. weight: math.unit(10, "lb"),
  13295. name: "Vanrel's Tome",
  13296. rename: true,
  13297. image: {
  13298. source: "./media/characters/vanrel/tome.svg"
  13299. }
  13300. },
  13301. beans: {
  13302. height: math.unit(0.89, "feet"),
  13303. name: "Beans",
  13304. image: {
  13305. source: "./media/characters/vanrel/beans.svg"
  13306. }
  13307. },
  13308. },
  13309. [
  13310. {
  13311. name: "Normal",
  13312. height: math.unit(3 + 11/12, "feet"),
  13313. default: true
  13314. },
  13315. ]
  13316. ))
  13317. characterMakers.push(() => makeCharacter(
  13318. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13319. {
  13320. front: {
  13321. height: math.unit(7 + 5 / 12, "feet"),
  13322. name: "Front",
  13323. image: {
  13324. source: "./media/characters/kuiper-vanrel/front.svg",
  13325. extra: 1219/1169,
  13326. bottom: 69/1288
  13327. }
  13328. },
  13329. back: {
  13330. height: math.unit(7 + 5 / 12, "feet"),
  13331. name: "Back",
  13332. image: {
  13333. source: "./media/characters/kuiper-vanrel/back.svg",
  13334. extra: 1236/1193,
  13335. bottom: 27/1263
  13336. }
  13337. },
  13338. foot: {
  13339. height: math.unit(0.55, "meters"),
  13340. name: "Foot",
  13341. image: {
  13342. source: "./media/characters/kuiper-vanrel/foot.svg",
  13343. }
  13344. },
  13345. battle: {
  13346. height: math.unit(6.824, "feet"),
  13347. name: "Battle",
  13348. image: {
  13349. source: "./media/characters/kuiper-vanrel/battle.svg",
  13350. extra: 1466 / 1327,
  13351. bottom: 29 / 1492.5
  13352. }
  13353. },
  13354. meerkui: {
  13355. height: math.unit(18, "inches"),
  13356. name: "Meerkui",
  13357. image: {
  13358. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13359. extra: 1354/1289,
  13360. bottom: 69/1423
  13361. }
  13362. },
  13363. },
  13364. [
  13365. {
  13366. name: "Normal",
  13367. height: math.unit(7 + 5 / 12, "feet"),
  13368. default: true
  13369. },
  13370. ]
  13371. ))
  13372. characterMakers.push(() => makeCharacter(
  13373. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13374. {
  13375. front: {
  13376. height: math.unit(8 + 5 / 12, "feet"),
  13377. name: "Front",
  13378. image: {
  13379. source: "./media/characters/keset-vanrel/front.svg",
  13380. extra: 1231/1148,
  13381. bottom: 82/1313
  13382. }
  13383. },
  13384. back: {
  13385. height: math.unit(8 + 5 / 12, "feet"),
  13386. name: "Back",
  13387. image: {
  13388. source: "./media/characters/keset-vanrel/back.svg",
  13389. extra: 1240/1174,
  13390. bottom: 33/1273
  13391. }
  13392. },
  13393. hand: {
  13394. height: math.unit(0.6, "meters"),
  13395. name: "Hand",
  13396. image: {
  13397. source: "./media/characters/keset-vanrel/hand.svg"
  13398. }
  13399. },
  13400. foot: {
  13401. height: math.unit(0.94978, "meters"),
  13402. name: "Foot",
  13403. image: {
  13404. source: "./media/characters/keset-vanrel/foot.svg"
  13405. }
  13406. },
  13407. battle: {
  13408. height: math.unit(7.408, "feet"),
  13409. name: "Battle",
  13410. image: {
  13411. source: "./media/characters/keset-vanrel/battle.svg",
  13412. extra: 1890 / 1386,
  13413. bottom: 73.28 / 1970
  13414. }
  13415. },
  13416. },
  13417. [
  13418. {
  13419. name: "Normal",
  13420. height: math.unit(8 + 5 / 12, "feet"),
  13421. default: true
  13422. },
  13423. ]
  13424. ))
  13425. characterMakers.push(() => makeCharacter(
  13426. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13427. {
  13428. front: {
  13429. height: math.unit(6, "feet"),
  13430. weight: math.unit(150, "lb"),
  13431. name: "Front",
  13432. image: {
  13433. source: "./media/characters/neos/front.svg",
  13434. extra: 1696 / 992,
  13435. bottom: 0.14
  13436. }
  13437. },
  13438. },
  13439. [
  13440. {
  13441. name: "Normal",
  13442. height: math.unit(54, "cm"),
  13443. default: true
  13444. },
  13445. {
  13446. name: "Macro",
  13447. height: math.unit(100, "m")
  13448. },
  13449. {
  13450. name: "Megamacro",
  13451. height: math.unit(10, "km")
  13452. },
  13453. {
  13454. name: "Megamacro+",
  13455. height: math.unit(100, "km")
  13456. },
  13457. {
  13458. name: "Gigamacro",
  13459. height: math.unit(100, "Mm")
  13460. },
  13461. {
  13462. name: "Teramacro",
  13463. height: math.unit(100, "Gm")
  13464. },
  13465. {
  13466. name: "Examacro",
  13467. height: math.unit(100, "Em")
  13468. },
  13469. {
  13470. name: "Godly",
  13471. height: math.unit(10000, "Ym")
  13472. },
  13473. {
  13474. name: "Beyond Godly",
  13475. height: math.unit(25, "multiverses")
  13476. },
  13477. ]
  13478. ))
  13479. characterMakers.push(() => makeCharacter(
  13480. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13481. {
  13482. feminine: {
  13483. height: math.unit(5, "feet"),
  13484. weight: math.unit(100, "lb"),
  13485. name: "Feminine",
  13486. image: {
  13487. source: "./media/characters/sammy-mouse/feminine.svg",
  13488. extra: 2526 / 2425,
  13489. bottom: 0.123
  13490. }
  13491. },
  13492. masculine: {
  13493. height: math.unit(5, "feet"),
  13494. weight: math.unit(100, "lb"),
  13495. name: "Masculine",
  13496. image: {
  13497. source: "./media/characters/sammy-mouse/masculine.svg",
  13498. extra: 2526 / 2425,
  13499. bottom: 0.123
  13500. }
  13501. },
  13502. },
  13503. [
  13504. {
  13505. name: "Micro",
  13506. height: math.unit(5, "inches")
  13507. },
  13508. {
  13509. name: "Normal",
  13510. height: math.unit(5, "feet"),
  13511. default: true
  13512. },
  13513. {
  13514. name: "Macro",
  13515. height: math.unit(60, "feet")
  13516. },
  13517. ]
  13518. ))
  13519. characterMakers.push(() => makeCharacter(
  13520. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13521. {
  13522. front: {
  13523. height: math.unit(4, "feet"),
  13524. weight: math.unit(50, "lb"),
  13525. name: "Front",
  13526. image: {
  13527. source: "./media/characters/kole/front.svg",
  13528. extra: 1423 / 1303,
  13529. bottom: 0.025
  13530. }
  13531. },
  13532. back: {
  13533. height: math.unit(4, "feet"),
  13534. weight: math.unit(50, "lb"),
  13535. name: "Back",
  13536. image: {
  13537. source: "./media/characters/kole/back.svg",
  13538. extra: 1426 / 1280,
  13539. bottom: 0.02
  13540. }
  13541. },
  13542. },
  13543. [
  13544. {
  13545. name: "Normal",
  13546. height: math.unit(4, "feet"),
  13547. default: true
  13548. },
  13549. ]
  13550. ))
  13551. characterMakers.push(() => makeCharacter(
  13552. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13553. {
  13554. front: {
  13555. height: math.unit(2.5, "feet"),
  13556. weight: math.unit(32, "lb"),
  13557. name: "Front",
  13558. image: {
  13559. source: "./media/characters/rufran/front.svg",
  13560. extra: 1313/885,
  13561. bottom: 94/1407
  13562. }
  13563. },
  13564. side: {
  13565. height: math.unit(2.5, "feet"),
  13566. weight: math.unit(32, "lb"),
  13567. name: "Side",
  13568. image: {
  13569. source: "./media/characters/rufran/side.svg",
  13570. extra: 1109/852,
  13571. bottom: 118/1227
  13572. }
  13573. },
  13574. back: {
  13575. height: math.unit(2.5, "feet"),
  13576. weight: math.unit(32, "lb"),
  13577. name: "Back",
  13578. image: {
  13579. source: "./media/characters/rufran/back.svg",
  13580. extra: 1280/878,
  13581. bottom: 131/1411
  13582. }
  13583. },
  13584. mouth: {
  13585. height: math.unit(1.13, "feet"),
  13586. name: "Mouth",
  13587. image: {
  13588. source: "./media/characters/rufran/mouth.svg"
  13589. }
  13590. },
  13591. foot: {
  13592. height: math.unit(1.33, "feet"),
  13593. name: "Foot",
  13594. image: {
  13595. source: "./media/characters/rufran/foot.svg"
  13596. }
  13597. },
  13598. koboldFront: {
  13599. height: math.unit(2 + 6 / 12, "feet"),
  13600. weight: math.unit(20, "lb"),
  13601. name: "Front (Kobold)",
  13602. image: {
  13603. source: "./media/characters/rufran/kobold-front.svg",
  13604. extra: 2041 / 1839,
  13605. bottom: 0.055
  13606. }
  13607. },
  13608. koboldBack: {
  13609. height: math.unit(2 + 6 / 12, "feet"),
  13610. weight: math.unit(20, "lb"),
  13611. name: "Back (Kobold)",
  13612. image: {
  13613. source: "./media/characters/rufran/kobold-back.svg",
  13614. extra: 2054 / 1839,
  13615. bottom: 0.01
  13616. }
  13617. },
  13618. koboldHand: {
  13619. height: math.unit(0.2166, "meters"),
  13620. name: "Hand (Kobold)",
  13621. image: {
  13622. source: "./media/characters/rufran/kobold-hand.svg"
  13623. }
  13624. },
  13625. koboldFoot: {
  13626. height: math.unit(0.185, "meters"),
  13627. name: "Foot (Kobold)",
  13628. image: {
  13629. source: "./media/characters/rufran/kobold-foot.svg"
  13630. }
  13631. },
  13632. },
  13633. [
  13634. {
  13635. name: "Micro",
  13636. height: math.unit(1, "inch")
  13637. },
  13638. {
  13639. name: "Normal",
  13640. height: math.unit(2 + 6 / 12, "feet"),
  13641. default: true
  13642. },
  13643. {
  13644. name: "Big",
  13645. height: math.unit(60, "feet")
  13646. },
  13647. {
  13648. name: "Macro",
  13649. height: math.unit(325, "feet")
  13650. },
  13651. ]
  13652. ))
  13653. characterMakers.push(() => makeCharacter(
  13654. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13655. {
  13656. front: {
  13657. height: math.unit(0.3, "meters"),
  13658. weight: math.unit(3.5, "kg"),
  13659. name: "Front",
  13660. image: {
  13661. source: "./media/characters/chip/front.svg",
  13662. extra: 748 / 674
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Micro",
  13669. height: math.unit(1, "inch"),
  13670. default: true
  13671. },
  13672. ]
  13673. ))
  13674. characterMakers.push(() => makeCharacter(
  13675. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13676. {
  13677. side: {
  13678. height: math.unit(2.3, "meters"),
  13679. weight: math.unit(3500, "lb"),
  13680. name: "Side",
  13681. image: {
  13682. source: "./media/characters/torvid/side.svg",
  13683. extra: 1972 / 722,
  13684. bottom: 0.035
  13685. }
  13686. },
  13687. },
  13688. [
  13689. {
  13690. name: "Normal",
  13691. height: math.unit(2.3, "meters"),
  13692. default: true
  13693. },
  13694. ]
  13695. ))
  13696. characterMakers.push(() => makeCharacter(
  13697. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13698. {
  13699. front: {
  13700. height: math.unit(2, "meters"),
  13701. weight: math.unit(150.5, "kg"),
  13702. name: "Front",
  13703. image: {
  13704. source: "./media/characters/susan/front.svg",
  13705. extra: 693 / 635,
  13706. bottom: 0.05
  13707. }
  13708. },
  13709. },
  13710. [
  13711. {
  13712. name: "Megamacro",
  13713. height: math.unit(505, "miles"),
  13714. default: true
  13715. },
  13716. ]
  13717. ))
  13718. characterMakers.push(() => makeCharacter(
  13719. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13720. {
  13721. front: {
  13722. height: math.unit(6, "feet"),
  13723. weight: math.unit(150, "lb"),
  13724. name: "Front",
  13725. image: {
  13726. source: "./media/characters/raindrops/front.svg",
  13727. extra: 2655 / 2461,
  13728. bottom: 49 / 2705
  13729. }
  13730. },
  13731. back: {
  13732. height: math.unit(6, "feet"),
  13733. weight: math.unit(150, "lb"),
  13734. name: "Back",
  13735. image: {
  13736. source: "./media/characters/raindrops/back.svg",
  13737. extra: 2574 / 2400,
  13738. bottom: 65 / 2634
  13739. }
  13740. },
  13741. },
  13742. [
  13743. {
  13744. name: "Micro",
  13745. height: math.unit(6, "inches")
  13746. },
  13747. {
  13748. name: "Normal",
  13749. height: math.unit(6 + 2 / 12, "feet")
  13750. },
  13751. {
  13752. name: "Macro",
  13753. height: math.unit(131, "feet"),
  13754. default: true
  13755. },
  13756. {
  13757. name: "Megamacro",
  13758. height: math.unit(15, "miles")
  13759. },
  13760. {
  13761. name: "Gigamacro",
  13762. height: math.unit(4000, "miles")
  13763. },
  13764. {
  13765. name: "Teramacro",
  13766. height: math.unit(315000, "miles")
  13767. },
  13768. ]
  13769. ))
  13770. characterMakers.push(() => makeCharacter(
  13771. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13772. {
  13773. front: {
  13774. height: math.unit(2.794, "meters"),
  13775. weight: math.unit(325, "kg"),
  13776. name: "Front",
  13777. image: {
  13778. source: "./media/characters/tezwa/front.svg",
  13779. extra: 2083 / 1906,
  13780. bottom: 0.031
  13781. }
  13782. },
  13783. foot: {
  13784. height: math.unit(0.687, "meters"),
  13785. name: "Foot",
  13786. image: {
  13787. source: "./media/characters/tezwa/foot.svg"
  13788. }
  13789. },
  13790. },
  13791. [
  13792. {
  13793. name: "Normal",
  13794. height: math.unit(9 + 2 / 12, "feet"),
  13795. default: true
  13796. },
  13797. ]
  13798. ))
  13799. characterMakers.push(() => makeCharacter(
  13800. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13801. {
  13802. front: {
  13803. height: math.unit(58, "feet"),
  13804. weight: math.unit(89000, "lb"),
  13805. name: "Front",
  13806. image: {
  13807. source: "./media/characters/typhus/front.svg",
  13808. extra: 816 / 800,
  13809. bottom: 0.065
  13810. }
  13811. },
  13812. },
  13813. [
  13814. {
  13815. name: "Macro",
  13816. height: math.unit(58, "feet"),
  13817. default: true
  13818. },
  13819. ]
  13820. ))
  13821. characterMakers.push(() => makeCharacter(
  13822. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13823. {
  13824. front: {
  13825. height: math.unit(12, "feet"),
  13826. weight: math.unit(6, "tonnes"),
  13827. name: "Front",
  13828. image: {
  13829. source: "./media/characters/lyra-von-wulf/front.svg",
  13830. extra: 1,
  13831. bottom: 0.10
  13832. }
  13833. },
  13834. frontMecha: {
  13835. height: math.unit(12, "feet"),
  13836. weight: math.unit(12, "tonnes"),
  13837. name: "Front (Mecha)",
  13838. image: {
  13839. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13840. extra: 1,
  13841. bottom: 0.042
  13842. }
  13843. },
  13844. maw: {
  13845. height: math.unit(2.2, "feet"),
  13846. name: "Maw",
  13847. image: {
  13848. source: "./media/characters/lyra-von-wulf/maw.svg"
  13849. }
  13850. },
  13851. },
  13852. [
  13853. {
  13854. name: "Normal",
  13855. height: math.unit(12, "feet"),
  13856. default: true
  13857. },
  13858. {
  13859. name: "Classic",
  13860. height: math.unit(50, "feet")
  13861. },
  13862. {
  13863. name: "Macro",
  13864. height: math.unit(500, "feet")
  13865. },
  13866. {
  13867. name: "Megamacro",
  13868. height: math.unit(1, "mile")
  13869. },
  13870. {
  13871. name: "Gigamacro",
  13872. height: math.unit(400, "miles")
  13873. },
  13874. {
  13875. name: "Teramacro",
  13876. height: math.unit(22000, "miles")
  13877. },
  13878. {
  13879. name: "Solarmacro",
  13880. height: math.unit(8600000, "miles")
  13881. },
  13882. {
  13883. name: "Galactic",
  13884. height: math.unit(1057000, "lightyears")
  13885. },
  13886. ]
  13887. ))
  13888. characterMakers.push(() => makeCharacter(
  13889. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13890. {
  13891. front: {
  13892. height: math.unit(6 + 10 / 12, "feet"),
  13893. weight: math.unit(150, "lb"),
  13894. name: "Front",
  13895. image: {
  13896. source: "./media/characters/dixon/front.svg",
  13897. extra: 3361 / 3209,
  13898. bottom: 0.01
  13899. }
  13900. },
  13901. },
  13902. [
  13903. {
  13904. name: "Normal",
  13905. height: math.unit(6 + 10 / 12, "feet"),
  13906. default: true
  13907. },
  13908. {
  13909. name: "Big",
  13910. height: math.unit(12, "meters")
  13911. },
  13912. {
  13913. name: "Macro",
  13914. height: math.unit(500, "meters")
  13915. },
  13916. {
  13917. name: "Megamacro",
  13918. height: math.unit(2, "km")
  13919. },
  13920. ]
  13921. ))
  13922. characterMakers.push(() => makeCharacter(
  13923. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13924. {
  13925. front: {
  13926. height: math.unit(185, "cm"),
  13927. weight: math.unit(68, "kg"),
  13928. name: "Front",
  13929. image: {
  13930. source: "./media/characters/kauko/front.svg",
  13931. extra: 1455 / 1421,
  13932. bottom: 0.03
  13933. }
  13934. },
  13935. back: {
  13936. height: math.unit(185, "cm"),
  13937. weight: math.unit(68, "kg"),
  13938. name: "Back",
  13939. image: {
  13940. source: "./media/characters/kauko/back.svg",
  13941. extra: 1455 / 1421,
  13942. bottom: 0.004
  13943. }
  13944. },
  13945. },
  13946. [
  13947. {
  13948. name: "Normal",
  13949. height: math.unit(185, "cm"),
  13950. default: true
  13951. },
  13952. ]
  13953. ))
  13954. characterMakers.push(() => makeCharacter(
  13955. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13956. {
  13957. frontSfw: {
  13958. height: math.unit(5, "meters"),
  13959. weight: math.unit(4250, "lb"),
  13960. name: "Front",
  13961. image: {
  13962. source: "./media/characters/varg/front-sfw.svg",
  13963. extra: 1103/1010,
  13964. bottom: 50/1153
  13965. },
  13966. form: "anthro",
  13967. default: true
  13968. },
  13969. backSfw: {
  13970. height: math.unit(5, "meters"),
  13971. weight: math.unit(4250, "lb"),
  13972. name: "Back",
  13973. image: {
  13974. source: "./media/characters/varg/back-sfw.svg",
  13975. extra: 1038/1022,
  13976. bottom: 36/1074
  13977. },
  13978. form: "anthro"
  13979. },
  13980. frontNsfw: {
  13981. height: math.unit(5, "meters"),
  13982. weight: math.unit(4250, "lb"),
  13983. name: "Front (NSFW)",
  13984. image: {
  13985. source: "./media/characters/varg/front-nsfw.svg",
  13986. extra: 1103/1010,
  13987. bottom: 50/1153
  13988. },
  13989. form: "anthro"
  13990. },
  13991. sheath: {
  13992. height: math.unit(3.8, "feet"),
  13993. weight: math.unit(90, "kilograms"),
  13994. name: "Sheath",
  13995. image: {
  13996. source: "./media/characters/varg/sheath.svg"
  13997. },
  13998. form: "anthro"
  13999. },
  14000. dick: {
  14001. height: math.unit(4.6, "feet"),
  14002. weight: math.unit(451, "kilograms"),
  14003. name: "Dick",
  14004. image: {
  14005. source: "./media/characters/varg/dick.svg"
  14006. },
  14007. form: "anthro"
  14008. },
  14009. feralSfw: {
  14010. height: math.unit(5, "meters"),
  14011. weight: math.unit(100000, "lb"),
  14012. name: "Side",
  14013. image: {
  14014. source: "./media/characters/varg/feral-sfw.svg",
  14015. extra: 1065/511,
  14016. bottom: 211/1276
  14017. },
  14018. form: "feral",
  14019. default: true
  14020. },
  14021. feralNsfw: {
  14022. height: math.unit(5, "meters"),
  14023. weight: math.unit(100000, "lb"),
  14024. name: "Side (NSFW)",
  14025. image: {
  14026. source: "./media/characters/varg/feral-nsfw.svg",
  14027. extra: 1065/511,
  14028. bottom: 211/1276
  14029. },
  14030. form: "feral",
  14031. },
  14032. feralSheath: {
  14033. height: math.unit(9.8, "feet"),
  14034. weight: math.unit(2000, "kilograms"),
  14035. name: "Sheath",
  14036. image: {
  14037. source: "./media/characters/varg/sheath.svg"
  14038. },
  14039. form: "feral"
  14040. },
  14041. feralDick: {
  14042. height: math.unit(13.11, "feet"),
  14043. weight: math.unit(10440, "kilograms"),
  14044. name: "Dick",
  14045. image: {
  14046. source: "./media/characters/varg/dick.svg"
  14047. },
  14048. form: "feral"
  14049. },
  14050. },
  14051. [
  14052. {
  14053. name: "Normal",
  14054. height: math.unit(5, "meters"),
  14055. form: "anthro"
  14056. },
  14057. {
  14058. name: "Macro",
  14059. height: math.unit(200, "meters"),
  14060. form: "anthro"
  14061. },
  14062. {
  14063. name: "Megamacro",
  14064. height: math.unit(20, "kilometers"),
  14065. form: "anthro"
  14066. },
  14067. {
  14068. name: "True Size",
  14069. height: math.unit(211, "km"),
  14070. form: "anthro",
  14071. default: true
  14072. },
  14073. {
  14074. name: "Gigamacro",
  14075. height: math.unit(1000, "km"),
  14076. form: "anthro"
  14077. },
  14078. {
  14079. name: "Gigamacro+",
  14080. height: math.unit(8000, "km"),
  14081. form: "anthro"
  14082. },
  14083. {
  14084. name: "Teramacro",
  14085. height: math.unit(1000000, "km"),
  14086. form: "anthro"
  14087. },
  14088. {
  14089. name: "Normal",
  14090. height: math.unit(5, "meters"),
  14091. form: "feral"
  14092. },
  14093. {
  14094. name: "Macro",
  14095. height: math.unit(200, "meters"),
  14096. form: "feral"
  14097. },
  14098. {
  14099. name: "Megamacro",
  14100. height: math.unit(20, "kilometers"),
  14101. form: "feral"
  14102. },
  14103. {
  14104. name: "True Size",
  14105. height: math.unit(211, "km"),
  14106. form: "feral",
  14107. default: true
  14108. },
  14109. {
  14110. name: "Gigamacro",
  14111. height: math.unit(1000, "km"),
  14112. form: "feral"
  14113. },
  14114. {
  14115. name: "Gigamacro+",
  14116. height: math.unit(8000, "km"),
  14117. form: "feral"
  14118. },
  14119. {
  14120. name: "Teramacro",
  14121. height: math.unit(1000000, "km"),
  14122. form: "feral"
  14123. },
  14124. ],
  14125. {
  14126. "anthro": {
  14127. name: "Anthro",
  14128. default: true
  14129. },
  14130. "feral": {
  14131. name: "Feral",
  14132. },
  14133. }
  14134. ))
  14135. characterMakers.push(() => makeCharacter(
  14136. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14137. {
  14138. front: {
  14139. height: math.unit(7 + 7 / 12, "feet"),
  14140. weight: math.unit(267, "lb"),
  14141. name: "Front",
  14142. image: {
  14143. source: "./media/characters/dayza/front.svg",
  14144. extra: 1262 / 1200,
  14145. bottom: 0.035
  14146. }
  14147. },
  14148. side: {
  14149. height: math.unit(7 + 7 / 12, "feet"),
  14150. weight: math.unit(267, "lb"),
  14151. name: "Side",
  14152. image: {
  14153. source: "./media/characters/dayza/side.svg",
  14154. extra: 1295 / 1245,
  14155. bottom: 0.05
  14156. }
  14157. },
  14158. back: {
  14159. height: math.unit(7 + 7 / 12, "feet"),
  14160. weight: math.unit(267, "lb"),
  14161. name: "Back",
  14162. image: {
  14163. source: "./media/characters/dayza/back.svg",
  14164. extra: 1241 / 1170
  14165. }
  14166. },
  14167. },
  14168. [
  14169. {
  14170. name: "Normal",
  14171. height: math.unit(7 + 7 / 12, "feet"),
  14172. default: true
  14173. },
  14174. {
  14175. name: "Macro",
  14176. height: math.unit(155, "feet")
  14177. },
  14178. ]
  14179. ))
  14180. characterMakers.push(() => makeCharacter(
  14181. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14182. {
  14183. front: {
  14184. height: math.unit(6 + 5 / 12, "feet"),
  14185. weight: math.unit(160, "lb"),
  14186. name: "Front",
  14187. image: {
  14188. source: "./media/characters/xanthos/front.svg",
  14189. extra: 1,
  14190. bottom: 0.04
  14191. }
  14192. },
  14193. back: {
  14194. height: math.unit(6 + 5 / 12, "feet"),
  14195. weight: math.unit(160, "lb"),
  14196. name: "Back",
  14197. image: {
  14198. source: "./media/characters/xanthos/back.svg",
  14199. extra: 1,
  14200. bottom: 0.03
  14201. }
  14202. },
  14203. hand: {
  14204. height: math.unit(0.928, "feet"),
  14205. name: "Hand",
  14206. image: {
  14207. source: "./media/characters/xanthos/hand.svg"
  14208. }
  14209. },
  14210. foot: {
  14211. height: math.unit(1.286, "feet"),
  14212. name: "Foot",
  14213. image: {
  14214. source: "./media/characters/xanthos/foot.svg"
  14215. }
  14216. },
  14217. },
  14218. [
  14219. {
  14220. name: "Normal",
  14221. height: math.unit(6 + 5 / 12, "feet"),
  14222. default: true
  14223. },
  14224. {
  14225. name: "Normal+",
  14226. height: math.unit(6, "meters")
  14227. },
  14228. {
  14229. name: "Macro",
  14230. height: math.unit(40, "feet")
  14231. },
  14232. {
  14233. name: "Macro+",
  14234. height: math.unit(200, "meters")
  14235. },
  14236. {
  14237. name: "Megamacro",
  14238. height: math.unit(20, "km")
  14239. },
  14240. {
  14241. name: "Megamacro+",
  14242. height: math.unit(100, "km")
  14243. },
  14244. {
  14245. name: "Gigamacro",
  14246. height: math.unit(200, "megameters")
  14247. },
  14248. {
  14249. name: "Gigamacro+",
  14250. height: math.unit(1.5, "gigameters")
  14251. },
  14252. ]
  14253. ))
  14254. characterMakers.push(() => makeCharacter(
  14255. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14256. {
  14257. front: {
  14258. height: math.unit(6 + 3 / 12, "feet"),
  14259. weight: math.unit(215, "lb"),
  14260. name: "Front",
  14261. image: {
  14262. source: "./media/characters/grynn/front.svg",
  14263. extra: 4627 / 4209,
  14264. bottom: 0.047
  14265. }
  14266. },
  14267. },
  14268. [
  14269. {
  14270. name: "Micro",
  14271. height: math.unit(6, "inches")
  14272. },
  14273. {
  14274. name: "Normal",
  14275. height: math.unit(6 + 3 / 12, "feet"),
  14276. default: true
  14277. },
  14278. {
  14279. name: "Big",
  14280. height: math.unit(104, "feet")
  14281. },
  14282. {
  14283. name: "Macro",
  14284. height: math.unit(944, "feet")
  14285. },
  14286. {
  14287. name: "Macro+",
  14288. height: math.unit(9480, "feet")
  14289. },
  14290. {
  14291. name: "Megamacro",
  14292. height: math.unit(78752, "feet")
  14293. },
  14294. {
  14295. name: "Megamacro+",
  14296. height: math.unit(630128, "feet")
  14297. },
  14298. {
  14299. name: "Megamacro++",
  14300. height: math.unit(3150695, "feet")
  14301. },
  14302. ]
  14303. ))
  14304. characterMakers.push(() => makeCharacter(
  14305. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14306. {
  14307. front: {
  14308. height: math.unit(7 + 5 / 12, "feet"),
  14309. weight: math.unit(450, "lb"),
  14310. name: "Front",
  14311. image: {
  14312. source: "./media/characters/mocha-aura/front.svg",
  14313. extra: 1907 / 1817,
  14314. bottom: 0.04
  14315. }
  14316. },
  14317. back: {
  14318. height: math.unit(7 + 5 / 12, "feet"),
  14319. weight: math.unit(450, "lb"),
  14320. name: "Back",
  14321. image: {
  14322. source: "./media/characters/mocha-aura/back.svg",
  14323. extra: 1900 / 1825,
  14324. bottom: 0.045
  14325. }
  14326. },
  14327. },
  14328. [
  14329. {
  14330. name: "Nano",
  14331. height: math.unit(1, "nm")
  14332. },
  14333. {
  14334. name: "Megamicro",
  14335. height: math.unit(1, "mm")
  14336. },
  14337. {
  14338. name: "Micro",
  14339. height: math.unit(3, "inches")
  14340. },
  14341. {
  14342. name: "Normal",
  14343. height: math.unit(7 + 5 / 12, "feet"),
  14344. default: true
  14345. },
  14346. {
  14347. name: "Macro",
  14348. height: math.unit(30, "feet")
  14349. },
  14350. {
  14351. name: "Megamacro",
  14352. height: math.unit(3500, "feet")
  14353. },
  14354. {
  14355. name: "Teramacro",
  14356. height: math.unit(500000, "miles")
  14357. },
  14358. {
  14359. name: "Petamacro",
  14360. height: math.unit(50000000000000000, "parsecs")
  14361. },
  14362. ]
  14363. ))
  14364. characterMakers.push(() => makeCharacter(
  14365. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14366. {
  14367. front: {
  14368. height: math.unit(6, "feet"),
  14369. weight: math.unit(150, "lb"),
  14370. name: "Front",
  14371. image: {
  14372. source: "./media/characters/ilisha-devya/front.svg",
  14373. extra: 1053/1049,
  14374. bottom: 270/1323
  14375. }
  14376. },
  14377. back: {
  14378. height: math.unit(6, "feet"),
  14379. weight: math.unit(150, "lb"),
  14380. name: "Back",
  14381. image: {
  14382. source: "./media/characters/ilisha-devya/back.svg",
  14383. extra: 1131/1128,
  14384. bottom: 39/1170
  14385. }
  14386. },
  14387. },
  14388. [
  14389. {
  14390. name: "Macro",
  14391. height: math.unit(500, "feet"),
  14392. default: true
  14393. },
  14394. {
  14395. name: "Megamacro",
  14396. height: math.unit(10, "miles")
  14397. },
  14398. {
  14399. name: "Gigamacro",
  14400. height: math.unit(100000, "miles")
  14401. },
  14402. {
  14403. name: "Examacro",
  14404. height: math.unit(1e9, "lightyears")
  14405. },
  14406. {
  14407. name: "Omniversal",
  14408. height: math.unit(1e33, "lightyears")
  14409. },
  14410. {
  14411. name: "Beyond Infinite",
  14412. height: math.unit(1e100, "lightyears")
  14413. },
  14414. ]
  14415. ))
  14416. characterMakers.push(() => makeCharacter(
  14417. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14418. {
  14419. Side: {
  14420. height: math.unit(6, "feet"),
  14421. weight: math.unit(150, "lb"),
  14422. name: "Side",
  14423. image: {
  14424. source: "./media/characters/mira/side.svg",
  14425. extra: 900 / 799,
  14426. bottom: 0.02
  14427. }
  14428. },
  14429. },
  14430. [
  14431. {
  14432. name: "Human Size",
  14433. height: math.unit(6, "feet")
  14434. },
  14435. {
  14436. name: "Macro",
  14437. height: math.unit(100, "feet"),
  14438. default: true
  14439. },
  14440. {
  14441. name: "Megamacro",
  14442. height: math.unit(10, "miles")
  14443. },
  14444. {
  14445. name: "Gigamacro",
  14446. height: math.unit(25000, "miles")
  14447. },
  14448. {
  14449. name: "Teramacro",
  14450. height: math.unit(300, "AU")
  14451. },
  14452. {
  14453. name: "Full Size",
  14454. height: math.unit(4.5e10, "lightyears")
  14455. },
  14456. ]
  14457. ))
  14458. characterMakers.push(() => makeCharacter(
  14459. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14460. {
  14461. front: {
  14462. height: math.unit(6, "feet"),
  14463. weight: math.unit(150, "lb"),
  14464. name: "Front",
  14465. image: {
  14466. source: "./media/characters/holly/front.svg",
  14467. extra: 639 / 606
  14468. }
  14469. },
  14470. back: {
  14471. height: math.unit(6, "feet"),
  14472. weight: math.unit(150, "lb"),
  14473. name: "Back",
  14474. image: {
  14475. source: "./media/characters/holly/back.svg",
  14476. extra: 623 / 598
  14477. }
  14478. },
  14479. frontWorking: {
  14480. height: math.unit(6, "feet"),
  14481. weight: math.unit(150, "lb"),
  14482. name: "Front (Working)",
  14483. image: {
  14484. source: "./media/characters/holly/front-working.svg",
  14485. extra: 607 / 577,
  14486. bottom: 0.048
  14487. }
  14488. },
  14489. },
  14490. [
  14491. {
  14492. name: "Normal",
  14493. height: math.unit(12 + 3 / 12, "feet"),
  14494. default: true
  14495. },
  14496. ]
  14497. ))
  14498. characterMakers.push(() => makeCharacter(
  14499. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14500. {
  14501. front: {
  14502. height: math.unit(6, "feet"),
  14503. weight: math.unit(150, "lb"),
  14504. name: "Front",
  14505. image: {
  14506. source: "./media/characters/porter/front.svg",
  14507. extra: 1,
  14508. bottom: 0.01
  14509. }
  14510. },
  14511. frontRobes: {
  14512. height: math.unit(6, "feet"),
  14513. weight: math.unit(150, "lb"),
  14514. name: "Front (Robes)",
  14515. image: {
  14516. source: "./media/characters/porter/front-robes.svg",
  14517. extra: 1.01,
  14518. bottom: 0.01
  14519. }
  14520. },
  14521. },
  14522. [
  14523. {
  14524. name: "Normal",
  14525. height: math.unit(11 + 9 / 12, "feet"),
  14526. default: true
  14527. },
  14528. ]
  14529. ))
  14530. characterMakers.push(() => makeCharacter(
  14531. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14532. {
  14533. legendary: {
  14534. height: math.unit(6, "feet"),
  14535. weight: math.unit(150, "lb"),
  14536. name: "Legendary",
  14537. image: {
  14538. source: "./media/characters/lucy/legendary.svg",
  14539. extra: 1355 / 1100,
  14540. bottom: 0.045
  14541. }
  14542. },
  14543. },
  14544. [
  14545. {
  14546. name: "Legendary",
  14547. height: math.unit(86882 * 2, "miles"),
  14548. default: true
  14549. },
  14550. ]
  14551. ))
  14552. characterMakers.push(() => makeCharacter(
  14553. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14554. {
  14555. front: {
  14556. height: math.unit(6, "feet"),
  14557. weight: math.unit(150, "lb"),
  14558. name: "Front",
  14559. image: {
  14560. source: "./media/characters/drusilla/front.svg",
  14561. extra: 678 / 635,
  14562. bottom: 0.03
  14563. }
  14564. },
  14565. back: {
  14566. height: math.unit(6, "feet"),
  14567. weight: math.unit(150, "lb"),
  14568. name: "Back",
  14569. image: {
  14570. source: "./media/characters/drusilla/back.svg",
  14571. extra: 678 / 635,
  14572. bottom: 0.005
  14573. }
  14574. },
  14575. },
  14576. [
  14577. {
  14578. name: "Macro",
  14579. height: math.unit(100, "feet")
  14580. },
  14581. {
  14582. name: "Canon Height",
  14583. height: math.unit(2000, "feet"),
  14584. default: true
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14590. {
  14591. front: {
  14592. height: math.unit(6, "feet"),
  14593. weight: math.unit(180, "lb"),
  14594. name: "Front",
  14595. image: {
  14596. source: "./media/characters/renard-thatch/front.svg",
  14597. extra: 2411 / 2275,
  14598. bottom: 0.01
  14599. }
  14600. },
  14601. frontPosing: {
  14602. height: math.unit(6, "feet"),
  14603. weight: math.unit(180, "lb"),
  14604. name: "Front (Posing)",
  14605. image: {
  14606. source: "./media/characters/renard-thatch/front-posing.svg",
  14607. extra: 2381 / 2261,
  14608. bottom: 0.01
  14609. }
  14610. },
  14611. back: {
  14612. height: math.unit(6, "feet"),
  14613. weight: math.unit(180, "lb"),
  14614. name: "Back",
  14615. image: {
  14616. source: "./media/characters/renard-thatch/back.svg",
  14617. extra: 2428 / 2288
  14618. }
  14619. },
  14620. },
  14621. [
  14622. {
  14623. name: "Micro",
  14624. height: math.unit(3, "inches")
  14625. },
  14626. {
  14627. name: "Default",
  14628. height: math.unit(6, "feet"),
  14629. default: true
  14630. },
  14631. {
  14632. name: "Macro",
  14633. height: math.unit(75, "feet")
  14634. },
  14635. ]
  14636. ))
  14637. characterMakers.push(() => makeCharacter(
  14638. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14639. {
  14640. front: {
  14641. height: math.unit(1450, "feet"),
  14642. weight: math.unit(1.21e6, "tons"),
  14643. name: "Front",
  14644. image: {
  14645. source: "./media/characters/sekvra/front.svg",
  14646. extra: 1193/1190,
  14647. bottom: 78/1271
  14648. }
  14649. },
  14650. side: {
  14651. height: math.unit(1450, "feet"),
  14652. weight: math.unit(1.21e6, "tons"),
  14653. name: "Side",
  14654. image: {
  14655. source: "./media/characters/sekvra/side.svg",
  14656. extra: 1193/1190,
  14657. bottom: 52/1245
  14658. }
  14659. },
  14660. back: {
  14661. height: math.unit(1450, "feet"),
  14662. weight: math.unit(1.21e6, "tons"),
  14663. name: "Back",
  14664. image: {
  14665. source: "./media/characters/sekvra/back.svg",
  14666. extra: 1219/1216,
  14667. bottom: 21/1240
  14668. }
  14669. },
  14670. frontClothed: {
  14671. height: math.unit(1450, "feet"),
  14672. weight: math.unit(1.21e6, "tons"),
  14673. name: "Front (Clothed)",
  14674. image: {
  14675. source: "./media/characters/sekvra/front-clothed.svg",
  14676. extra: 1192/1189,
  14677. bottom: 79/1271
  14678. }
  14679. },
  14680. },
  14681. [
  14682. {
  14683. name: "Macro",
  14684. height: math.unit(1450, "feet"),
  14685. default: true
  14686. },
  14687. {
  14688. name: "Megamacro",
  14689. height: math.unit(15000, "feet")
  14690. },
  14691. ]
  14692. ))
  14693. characterMakers.push(() => makeCharacter(
  14694. { name: "Carmine", species: ["otter"], 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/carmine/front.svg",
  14702. extra: 1,
  14703. bottom: 0.035
  14704. }
  14705. },
  14706. frontArmor: {
  14707. height: math.unit(6, "feet"),
  14708. weight: math.unit(150, "lb"),
  14709. name: "Front (Armor)",
  14710. image: {
  14711. source: "./media/characters/carmine/front-armor.svg",
  14712. extra: 1,
  14713. bottom: 0.035
  14714. }
  14715. },
  14716. },
  14717. [
  14718. {
  14719. name: "Large",
  14720. height: math.unit(1, "mile")
  14721. },
  14722. {
  14723. name: "Huge",
  14724. height: math.unit(40, "miles"),
  14725. default: true
  14726. },
  14727. {
  14728. name: "Colossal",
  14729. height: math.unit(2500, "miles")
  14730. },
  14731. ]
  14732. ))
  14733. characterMakers.push(() => makeCharacter(
  14734. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14735. {
  14736. front: {
  14737. height: math.unit(6, "feet"),
  14738. weight: math.unit(150, "lb"),
  14739. name: "Front",
  14740. image: {
  14741. source: "./media/characters/elyssia/front.svg",
  14742. extra: 2201 / 2035,
  14743. bottom: 0.05
  14744. }
  14745. },
  14746. frontClothed: {
  14747. height: math.unit(6, "feet"),
  14748. weight: math.unit(150, "lb"),
  14749. name: "Front (Clothed)",
  14750. image: {
  14751. source: "./media/characters/elyssia/front-clothed.svg",
  14752. extra: 2201 / 2035,
  14753. bottom: 0.05
  14754. }
  14755. },
  14756. back: {
  14757. height: math.unit(6, "feet"),
  14758. weight: math.unit(150, "lb"),
  14759. name: "Back",
  14760. image: {
  14761. source: "./media/characters/elyssia/back.svg",
  14762. extra: 2201 / 2035,
  14763. bottom: 0.013
  14764. }
  14765. },
  14766. },
  14767. [
  14768. {
  14769. name: "Smaller",
  14770. height: math.unit(150, "feet")
  14771. },
  14772. {
  14773. name: "Standard",
  14774. height: math.unit(1400, "feet"),
  14775. default: true
  14776. },
  14777. {
  14778. name: "Distracted",
  14779. height: math.unit(15000, "feet")
  14780. },
  14781. ]
  14782. ))
  14783. characterMakers.push(() => makeCharacter(
  14784. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14785. {
  14786. front: {
  14787. height: math.unit(7 + 4/12, "feet"),
  14788. weight: math.unit(690, "lb"),
  14789. name: "Front",
  14790. image: {
  14791. source: "./media/characters/geno-maxwell/front.svg",
  14792. extra: 984/856,
  14793. bottom: 87/1071
  14794. }
  14795. },
  14796. back: {
  14797. height: math.unit(7 + 4/12, "feet"),
  14798. weight: math.unit(690, "lb"),
  14799. name: "Back",
  14800. image: {
  14801. source: "./media/characters/geno-maxwell/back.svg",
  14802. extra: 981/854,
  14803. bottom: 57/1038
  14804. }
  14805. },
  14806. frontCostume: {
  14807. height: math.unit(7 + 4/12, "feet"),
  14808. weight: math.unit(690, "lb"),
  14809. name: "Front (Costume)",
  14810. image: {
  14811. source: "./media/characters/geno-maxwell/front-costume.svg",
  14812. extra: 984/856,
  14813. bottom: 87/1071
  14814. }
  14815. },
  14816. backcostume: {
  14817. height: math.unit(7 + 4/12, "feet"),
  14818. weight: math.unit(690, "lb"),
  14819. name: "Back (Costume)",
  14820. image: {
  14821. source: "./media/characters/geno-maxwell/back-costume.svg",
  14822. extra: 981/854,
  14823. bottom: 57/1038
  14824. }
  14825. },
  14826. },
  14827. [
  14828. {
  14829. name: "Micro",
  14830. height: math.unit(3, "inches")
  14831. },
  14832. {
  14833. name: "Normal",
  14834. height: math.unit(7 + 4 / 12, "feet"),
  14835. default: true
  14836. },
  14837. {
  14838. name: "Macro",
  14839. height: math.unit(220, "feet")
  14840. },
  14841. {
  14842. name: "Megamacro",
  14843. height: math.unit(11, "miles")
  14844. },
  14845. ]
  14846. ))
  14847. characterMakers.push(() => makeCharacter(
  14848. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14849. {
  14850. front: {
  14851. height: math.unit(7 + 4/12, "feet"),
  14852. weight: math.unit(750, "lb"),
  14853. name: "Front",
  14854. image: {
  14855. source: "./media/characters/regena-maxwell/front.svg",
  14856. extra: 984/856,
  14857. bottom: 87/1071
  14858. }
  14859. },
  14860. back: {
  14861. height: math.unit(7 + 4/12, "feet"),
  14862. weight: math.unit(750, "lb"),
  14863. name: "Back",
  14864. image: {
  14865. source: "./media/characters/regena-maxwell/back.svg",
  14866. extra: 981/854,
  14867. bottom: 57/1038
  14868. }
  14869. },
  14870. frontCostume: {
  14871. height: math.unit(7 + 4/12, "feet"),
  14872. weight: math.unit(750, "lb"),
  14873. name: "Front (Costume)",
  14874. image: {
  14875. source: "./media/characters/regena-maxwell/front-costume.svg",
  14876. extra: 984/856,
  14877. bottom: 87/1071
  14878. }
  14879. },
  14880. backcostume: {
  14881. height: math.unit(7 + 4/12, "feet"),
  14882. weight: math.unit(750, "lb"),
  14883. name: "Back (Costume)",
  14884. image: {
  14885. source: "./media/characters/regena-maxwell/back-costume.svg",
  14886. extra: 981/854,
  14887. bottom: 57/1038
  14888. }
  14889. },
  14890. },
  14891. [
  14892. {
  14893. name: "Normal",
  14894. height: math.unit(7 + 4 / 12, "feet"),
  14895. default: true
  14896. },
  14897. {
  14898. name: "Macro",
  14899. height: math.unit(220, "feet")
  14900. },
  14901. {
  14902. name: "Megamacro",
  14903. height: math.unit(11, "miles")
  14904. },
  14905. ]
  14906. ))
  14907. characterMakers.push(() => makeCharacter(
  14908. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14909. {
  14910. front: {
  14911. height: math.unit(6, "feet"),
  14912. weight: math.unit(150, "lb"),
  14913. name: "Front",
  14914. image: {
  14915. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14916. extra: 860 / 690,
  14917. bottom: 0.03
  14918. }
  14919. },
  14920. },
  14921. [
  14922. {
  14923. name: "Normal",
  14924. height: math.unit(1.7, "meters"),
  14925. default: true
  14926. },
  14927. ]
  14928. ))
  14929. characterMakers.push(() => makeCharacter(
  14930. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14931. {
  14932. front: {
  14933. height: math.unit(6, "feet"),
  14934. weight: math.unit(150, "lb"),
  14935. name: "Front",
  14936. image: {
  14937. source: "./media/characters/quilly/front.svg",
  14938. extra: 890 / 776
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Gigamacro",
  14945. height: math.unit(404090, "miles"),
  14946. default: true
  14947. },
  14948. ]
  14949. ))
  14950. characterMakers.push(() => makeCharacter(
  14951. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14952. {
  14953. front: {
  14954. height: math.unit(7 + 8 / 12, "feet"),
  14955. weight: math.unit(350, "lb"),
  14956. name: "Front",
  14957. image: {
  14958. source: "./media/characters/tempest/front.svg",
  14959. extra: 1175 / 1086,
  14960. bottom: 0.02
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Normal",
  14967. height: math.unit(7 + 8 / 12, "feet"),
  14968. default: true
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14974. {
  14975. side: {
  14976. height: math.unit(4 + 5 / 12, "feet"),
  14977. weight: math.unit(80, "lb"),
  14978. name: "Side",
  14979. image: {
  14980. source: "./media/characters/rodger/side.svg",
  14981. extra: 1235 / 1118
  14982. }
  14983. },
  14984. },
  14985. [
  14986. {
  14987. name: "Micro",
  14988. height: math.unit(1, "inch")
  14989. },
  14990. {
  14991. name: "Normal",
  14992. height: math.unit(4 + 5 / 12, "feet"),
  14993. default: true
  14994. },
  14995. {
  14996. name: "Macro",
  14997. height: math.unit(120, "feet")
  14998. },
  14999. ]
  15000. ))
  15001. characterMakers.push(() => makeCharacter(
  15002. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15003. {
  15004. front: {
  15005. height: math.unit(6, "feet"),
  15006. weight: math.unit(150, "lb"),
  15007. name: "Front",
  15008. image: {
  15009. source: "./media/characters/danyel/front.svg",
  15010. extra: 1185 / 1123,
  15011. bottom: 0.05
  15012. }
  15013. },
  15014. },
  15015. [
  15016. {
  15017. name: "Shrunken",
  15018. height: math.unit(0.5, "mm")
  15019. },
  15020. {
  15021. name: "Micro",
  15022. height: math.unit(1, "mm"),
  15023. default: true
  15024. },
  15025. {
  15026. name: "Upsized",
  15027. height: math.unit(5 + 5 / 12, "feet")
  15028. },
  15029. ]
  15030. ))
  15031. characterMakers.push(() => makeCharacter(
  15032. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15033. {
  15034. front: {
  15035. height: math.unit(5 + 6 / 12, "feet"),
  15036. weight: math.unit(200, "lb"),
  15037. name: "Front",
  15038. image: {
  15039. source: "./media/characters/vivian-bijoux/front.svg",
  15040. extra: 1217/1209,
  15041. bottom: 76/1293
  15042. }
  15043. },
  15044. back: {
  15045. height: math.unit(5 + 6 / 12, "feet"),
  15046. weight: math.unit(200, "lb"),
  15047. name: "Back",
  15048. image: {
  15049. source: "./media/characters/vivian-bijoux/back.svg",
  15050. extra: 1214/1208,
  15051. bottom: 51/1265
  15052. }
  15053. },
  15054. dressed: {
  15055. height: math.unit(5 + 6 / 12, "feet"),
  15056. weight: math.unit(200, "lb"),
  15057. name: "Dressed",
  15058. image: {
  15059. source: "./media/characters/vivian-bijoux/dressed.svg",
  15060. extra: 1217/1209,
  15061. bottom: 76/1293
  15062. }
  15063. },
  15064. },
  15065. [
  15066. {
  15067. name: "Normal",
  15068. height: math.unit(5 + 6 / 12, "feet"),
  15069. default: true
  15070. },
  15071. {
  15072. name: "Bad Dream",
  15073. height: math.unit(500, "feet")
  15074. },
  15075. {
  15076. name: "Nightmare",
  15077. height: math.unit(500, "miles")
  15078. },
  15079. ]
  15080. ))
  15081. characterMakers.push(() => makeCharacter(
  15082. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15083. {
  15084. front: {
  15085. height: math.unit(6 + 1 / 12, "feet"),
  15086. weight: math.unit(260, "lb"),
  15087. name: "Front",
  15088. image: {
  15089. source: "./media/characters/zeta/front.svg",
  15090. extra: 1968 / 1889,
  15091. bottom: 0.06
  15092. }
  15093. },
  15094. back: {
  15095. height: math.unit(6 + 1 / 12, "feet"),
  15096. weight: math.unit(260, "lb"),
  15097. name: "Back",
  15098. image: {
  15099. source: "./media/characters/zeta/back.svg",
  15100. extra: 1944 / 1858,
  15101. bottom: 0.03
  15102. }
  15103. },
  15104. hand: {
  15105. height: math.unit(1.112, "feet"),
  15106. name: "Hand",
  15107. image: {
  15108. source: "./media/characters/zeta/hand.svg"
  15109. }
  15110. },
  15111. foot: {
  15112. height: math.unit(1.48, "feet"),
  15113. name: "Foot",
  15114. image: {
  15115. source: "./media/characters/zeta/foot.svg"
  15116. }
  15117. },
  15118. },
  15119. [
  15120. {
  15121. name: "Micro",
  15122. height: math.unit(6, "inches")
  15123. },
  15124. {
  15125. name: "Normal",
  15126. height: math.unit(6 + 1 / 12, "feet"),
  15127. default: true
  15128. },
  15129. {
  15130. name: "Macro",
  15131. height: math.unit(20, "feet")
  15132. },
  15133. ]
  15134. ))
  15135. characterMakers.push(() => makeCharacter(
  15136. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15137. {
  15138. front: {
  15139. height: math.unit(6, "feet"),
  15140. weight: math.unit(150, "lb"),
  15141. name: "Front",
  15142. image: {
  15143. source: "./media/characters/jamie-larsen/front.svg",
  15144. extra: 962 / 933,
  15145. bottom: 0.02
  15146. }
  15147. },
  15148. back: {
  15149. height: math.unit(6, "feet"),
  15150. weight: math.unit(150, "lb"),
  15151. name: "Back",
  15152. image: {
  15153. source: "./media/characters/jamie-larsen/back.svg",
  15154. extra: 997 / 946
  15155. }
  15156. },
  15157. },
  15158. [
  15159. {
  15160. name: "Macro",
  15161. height: math.unit(28 + 7 / 12, "feet"),
  15162. default: true
  15163. },
  15164. {
  15165. name: "Macro+",
  15166. height: math.unit(180, "feet")
  15167. },
  15168. {
  15169. name: "Megamacro",
  15170. height: math.unit(10, "miles")
  15171. },
  15172. {
  15173. name: "Gigamacro",
  15174. height: math.unit(200000, "miles")
  15175. },
  15176. ]
  15177. ))
  15178. characterMakers.push(() => makeCharacter(
  15179. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15180. {
  15181. front: {
  15182. height: math.unit(6, "feet"),
  15183. weight: math.unit(120, "lb"),
  15184. name: "Front",
  15185. image: {
  15186. source: "./media/characters/vance/front.svg",
  15187. extra: 1980 / 1890,
  15188. bottom: 0.09
  15189. }
  15190. },
  15191. back: {
  15192. height: math.unit(6, "feet"),
  15193. weight: math.unit(120, "lb"),
  15194. name: "Back",
  15195. image: {
  15196. source: "./media/characters/vance/back.svg",
  15197. extra: 2081 / 1994,
  15198. bottom: 0.014
  15199. }
  15200. },
  15201. hand: {
  15202. height: math.unit(0.88, "feet"),
  15203. name: "Hand",
  15204. image: {
  15205. source: "./media/characters/vance/hand.svg"
  15206. }
  15207. },
  15208. foot: {
  15209. height: math.unit(0.64, "feet"),
  15210. name: "Foot",
  15211. image: {
  15212. source: "./media/characters/vance/foot.svg"
  15213. }
  15214. },
  15215. },
  15216. [
  15217. {
  15218. name: "Small",
  15219. height: math.unit(90, "feet"),
  15220. default: true
  15221. },
  15222. {
  15223. name: "Macro",
  15224. height: math.unit(100, "meters")
  15225. },
  15226. {
  15227. name: "Megamacro",
  15228. height: math.unit(15, "miles")
  15229. },
  15230. ]
  15231. ))
  15232. characterMakers.push(() => makeCharacter(
  15233. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15234. {
  15235. front: {
  15236. height: math.unit(6, "feet"),
  15237. weight: math.unit(180, "lb"),
  15238. name: "Front",
  15239. image: {
  15240. source: "./media/characters/xochitl/front.svg",
  15241. extra: 2297 / 2261,
  15242. bottom: 0.065
  15243. }
  15244. },
  15245. back: {
  15246. height: math.unit(6, "feet"),
  15247. weight: math.unit(180, "lb"),
  15248. name: "Back",
  15249. image: {
  15250. source: "./media/characters/xochitl/back.svg",
  15251. extra: 2386 / 2354,
  15252. bottom: 0.01
  15253. }
  15254. },
  15255. foot: {
  15256. height: math.unit(6 / 5 * 1.15, "feet"),
  15257. weight: math.unit(150, "lb"),
  15258. name: "Foot",
  15259. image: {
  15260. source: "./media/characters/xochitl/foot.svg"
  15261. }
  15262. },
  15263. },
  15264. [
  15265. {
  15266. name: "Macro",
  15267. height: math.unit(80, "feet")
  15268. },
  15269. {
  15270. name: "Macro+",
  15271. height: math.unit(400, "feet"),
  15272. default: true
  15273. },
  15274. {
  15275. name: "Gigamacro",
  15276. height: math.unit(80000, "miles")
  15277. },
  15278. {
  15279. name: "Gigamacro+",
  15280. height: math.unit(400000, "miles")
  15281. },
  15282. {
  15283. name: "Teramacro",
  15284. height: math.unit(300, "AU")
  15285. },
  15286. ]
  15287. ))
  15288. characterMakers.push(() => makeCharacter(
  15289. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15290. {
  15291. front: {
  15292. height: math.unit(6, "feet"),
  15293. weight: math.unit(150, "lb"),
  15294. name: "Front",
  15295. image: {
  15296. source: "./media/characters/vincent/front.svg",
  15297. extra: 1130 / 1080,
  15298. bottom: 0.055
  15299. }
  15300. },
  15301. beak: {
  15302. height: math.unit(6 * 0.1, "feet"),
  15303. name: "Beak",
  15304. image: {
  15305. source: "./media/characters/vincent/beak.svg"
  15306. }
  15307. },
  15308. hand: {
  15309. height: math.unit(6 * 0.85, "feet"),
  15310. weight: math.unit(150, "lb"),
  15311. name: "Hand",
  15312. image: {
  15313. source: "./media/characters/vincent/hand.svg"
  15314. }
  15315. },
  15316. foot: {
  15317. height: math.unit(6 * 0.19, "feet"),
  15318. weight: math.unit(150, "lb"),
  15319. name: "Foot",
  15320. image: {
  15321. source: "./media/characters/vincent/foot.svg"
  15322. }
  15323. },
  15324. },
  15325. [
  15326. {
  15327. name: "Base",
  15328. height: math.unit(6 + 5 / 12, "feet"),
  15329. default: true
  15330. },
  15331. {
  15332. name: "Macro",
  15333. height: math.unit(300, "feet")
  15334. },
  15335. {
  15336. name: "Megamacro",
  15337. height: math.unit(2, "miles")
  15338. },
  15339. {
  15340. name: "Gigamacro",
  15341. height: math.unit(1000, "miles")
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15347. {
  15348. front: {
  15349. height: math.unit(2, "meters"),
  15350. weight: math.unit(500, "kg"),
  15351. name: "Front",
  15352. image: {
  15353. source: "./media/characters/coatl/front.svg",
  15354. extra: 3948 / 3500,
  15355. bottom: 0.082
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Normal",
  15362. height: math.unit(4, "meters")
  15363. },
  15364. {
  15365. name: "Macro",
  15366. height: math.unit(100, "meters"),
  15367. default: true
  15368. },
  15369. {
  15370. name: "Macro+",
  15371. height: math.unit(300, "meters")
  15372. },
  15373. {
  15374. name: "Megamacro",
  15375. height: math.unit(3, "gigameters")
  15376. },
  15377. {
  15378. name: "Megamacro+",
  15379. height: math.unit(300, "terameters")
  15380. },
  15381. {
  15382. name: "Megamacro++",
  15383. height: math.unit(3, "lightyears")
  15384. },
  15385. ]
  15386. ))
  15387. characterMakers.push(() => makeCharacter(
  15388. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15389. {
  15390. front: {
  15391. height: math.unit(6, "feet"),
  15392. weight: math.unit(50, "kg"),
  15393. name: "front",
  15394. image: {
  15395. source: "./media/characters/shiroryu/front.svg",
  15396. extra: 1990 / 1935
  15397. }
  15398. },
  15399. },
  15400. [
  15401. {
  15402. name: "Mortal Mingling",
  15403. height: math.unit(3, "meters")
  15404. },
  15405. {
  15406. name: "Kaiju-ish",
  15407. height: math.unit(250, "meters")
  15408. },
  15409. {
  15410. name: "Somewhat Godly",
  15411. height: math.unit(400, "km"),
  15412. default: true
  15413. },
  15414. {
  15415. name: "Planetary",
  15416. height: math.unit(300, "megameters")
  15417. },
  15418. {
  15419. name: "Galaxy-dwarfing",
  15420. height: math.unit(450, "kiloparsecs")
  15421. },
  15422. {
  15423. name: "Universe Eater",
  15424. height: math.unit(150, "gigaparsecs")
  15425. },
  15426. {
  15427. name: "Almost Immeasurable",
  15428. height: math.unit(1.3e266, "yottaparsecs")
  15429. },
  15430. ]
  15431. ))
  15432. characterMakers.push(() => makeCharacter(
  15433. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15434. {
  15435. front: {
  15436. height: math.unit(6, "feet"),
  15437. weight: math.unit(150, "lb"),
  15438. name: "Front",
  15439. image: {
  15440. source: "./media/characters/umeko/front.svg",
  15441. extra: 1,
  15442. bottom: 0.019
  15443. }
  15444. },
  15445. frontArmored: {
  15446. height: math.unit(6, "feet"),
  15447. weight: math.unit(150, "lb"),
  15448. name: "Front (Armored)",
  15449. image: {
  15450. source: "./media/characters/umeko/front-armored.svg",
  15451. extra: 1,
  15452. bottom: 0.021
  15453. }
  15454. },
  15455. },
  15456. [
  15457. {
  15458. name: "Macro",
  15459. height: math.unit(220, "feet"),
  15460. default: true
  15461. },
  15462. {
  15463. name: "Guardian Dragon",
  15464. height: math.unit(50, "miles")
  15465. },
  15466. {
  15467. name: "Cosmic",
  15468. height: math.unit(800000, "miles")
  15469. },
  15470. ]
  15471. ))
  15472. characterMakers.push(() => makeCharacter(
  15473. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15474. {
  15475. front: {
  15476. height: math.unit(6, "feet"),
  15477. weight: math.unit(150, "lb"),
  15478. name: "Front",
  15479. image: {
  15480. source: "./media/characters/cassidy/front.svg",
  15481. extra: 810/808,
  15482. bottom: 41/851
  15483. }
  15484. },
  15485. },
  15486. [
  15487. {
  15488. name: "Canon Height",
  15489. height: math.unit(120, "feet"),
  15490. default: true
  15491. },
  15492. {
  15493. name: "Macro+",
  15494. height: math.unit(400, "feet")
  15495. },
  15496. {
  15497. name: "Macro++",
  15498. height: math.unit(4000, "feet")
  15499. },
  15500. {
  15501. name: "Megamacro",
  15502. height: math.unit(3, "miles")
  15503. },
  15504. ]
  15505. ))
  15506. characterMakers.push(() => makeCharacter(
  15507. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15508. {
  15509. front: {
  15510. height: math.unit(6, "feet"),
  15511. weight: math.unit(150, "lb"),
  15512. name: "Front",
  15513. image: {
  15514. source: "./media/characters/isaac/front.svg",
  15515. extra: 896 / 815,
  15516. bottom: 0.11
  15517. }
  15518. },
  15519. },
  15520. [
  15521. {
  15522. name: "Human Size",
  15523. height: math.unit(8, "feet"),
  15524. default: true
  15525. },
  15526. {
  15527. name: "Macro",
  15528. height: math.unit(400, "feet")
  15529. },
  15530. {
  15531. name: "Megamacro",
  15532. height: math.unit(50, "miles")
  15533. },
  15534. {
  15535. name: "Canon Height",
  15536. height: math.unit(200, "AU")
  15537. },
  15538. ]
  15539. ))
  15540. characterMakers.push(() => makeCharacter(
  15541. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15542. {
  15543. front: {
  15544. height: math.unit(6, "feet"),
  15545. weight: math.unit(72, "kg"),
  15546. name: "Front",
  15547. image: {
  15548. source: "./media/characters/sleekit/front.svg",
  15549. extra: 4693 / 4487,
  15550. bottom: 0.012
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Minimum Height",
  15557. height: math.unit(10, "meters")
  15558. },
  15559. {
  15560. name: "Smaller",
  15561. height: math.unit(25, "meters")
  15562. },
  15563. {
  15564. name: "Larger",
  15565. height: math.unit(38, "meters"),
  15566. default: true
  15567. },
  15568. {
  15569. name: "Maximum height",
  15570. height: math.unit(100, "meters")
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(6, "feet"),
  15579. weight: math.unit(150, "lb"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/nillia/front.svg",
  15583. extra: 2195 / 2037,
  15584. bottom: 0.005
  15585. }
  15586. },
  15587. back: {
  15588. height: math.unit(6, "feet"),
  15589. weight: math.unit(150, "lb"),
  15590. name: "Back",
  15591. image: {
  15592. source: "./media/characters/nillia/back.svg",
  15593. extra: 2195 / 2037,
  15594. bottom: 0.005
  15595. }
  15596. },
  15597. },
  15598. [
  15599. {
  15600. name: "Canon Height",
  15601. height: math.unit(489, "feet"),
  15602. default: true
  15603. }
  15604. ]
  15605. ))
  15606. characterMakers.push(() => makeCharacter(
  15607. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15608. {
  15609. front: {
  15610. height: math.unit(6, "feet"),
  15611. weight: math.unit(150, "lb"),
  15612. name: "Front",
  15613. image: {
  15614. source: "./media/characters/mesmyriza/front.svg",
  15615. extra: 2067 / 1784,
  15616. bottom: 0.035
  15617. }
  15618. },
  15619. foot: {
  15620. height: math.unit(6 / (250 / 35), "feet"),
  15621. name: "Foot",
  15622. image: {
  15623. source: "./media/characters/mesmyriza/foot.svg"
  15624. }
  15625. },
  15626. },
  15627. [
  15628. {
  15629. name: "Macro",
  15630. height: math.unit(457, "meters"),
  15631. default: true
  15632. },
  15633. {
  15634. name: "Megamacro",
  15635. height: math.unit(8, "megameters")
  15636. },
  15637. ]
  15638. ))
  15639. characterMakers.push(() => makeCharacter(
  15640. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15641. {
  15642. front: {
  15643. height: math.unit(6, "feet"),
  15644. weight: math.unit(250, "lb"),
  15645. name: "Front",
  15646. image: {
  15647. source: "./media/characters/saudade/front.svg",
  15648. extra: 1172 / 1139,
  15649. bottom: 0.035
  15650. }
  15651. },
  15652. },
  15653. [
  15654. {
  15655. name: "Micro",
  15656. height: math.unit(3, "inches")
  15657. },
  15658. {
  15659. name: "Normal",
  15660. height: math.unit(6, "feet"),
  15661. default: true
  15662. },
  15663. {
  15664. name: "Macro",
  15665. height: math.unit(50, "feet")
  15666. },
  15667. {
  15668. name: "Megamacro",
  15669. height: math.unit(2800, "feet")
  15670. },
  15671. ]
  15672. ))
  15673. characterMakers.push(() => makeCharacter(
  15674. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15675. {
  15676. front: {
  15677. height: math.unit(5 + 4 / 12, "feet"),
  15678. weight: math.unit(100, "lb"),
  15679. name: "Front",
  15680. image: {
  15681. source: "./media/characters/keireer/front.svg",
  15682. extra: 716 / 666,
  15683. bottom: 0.05
  15684. }
  15685. },
  15686. },
  15687. [
  15688. {
  15689. name: "Normal",
  15690. height: math.unit(5 + 4 / 12, "feet"),
  15691. default: true
  15692. },
  15693. ]
  15694. ))
  15695. characterMakers.push(() => makeCharacter(
  15696. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15697. {
  15698. front: {
  15699. height: math.unit(5.5, "feet"),
  15700. weight: math.unit(90, "kg"),
  15701. name: "Front",
  15702. image: {
  15703. source: "./media/characters/mirja/front.svg",
  15704. extra: 1452/1262,
  15705. bottom: 67/1519
  15706. }
  15707. },
  15708. frontDressed: {
  15709. height: math.unit(5.5, "feet"),
  15710. weight: math.unit(90, "lb"),
  15711. name: "Front (Dressed)",
  15712. image: {
  15713. source: "./media/characters/mirja/dressed.svg",
  15714. extra: 1452/1262,
  15715. bottom: 67/1519
  15716. }
  15717. },
  15718. back: {
  15719. height: math.unit(6, "feet"),
  15720. weight: math.unit(90, "lb"),
  15721. name: "Back",
  15722. image: {
  15723. source: "./media/characters/mirja/back.svg",
  15724. extra: 1892/1795,
  15725. bottom: 48/1940
  15726. }
  15727. },
  15728. maw: {
  15729. height: math.unit(1.312, "feet"),
  15730. name: "Maw",
  15731. image: {
  15732. source: "./media/characters/mirja/maw.svg"
  15733. }
  15734. },
  15735. paw: {
  15736. height: math.unit(1.15, "feet"),
  15737. name: "Paw",
  15738. image: {
  15739. source: "./media/characters/mirja/paw.svg"
  15740. }
  15741. },
  15742. },
  15743. [
  15744. {
  15745. name: "\"Incognito\"",
  15746. height: math.unit(3, "meters")
  15747. },
  15748. {
  15749. name: "Strolling Size",
  15750. height: math.unit(15, "km")
  15751. },
  15752. {
  15753. name: "Larger Strolling Size",
  15754. height: math.unit(400, "km")
  15755. },
  15756. {
  15757. name: "Preferred Size",
  15758. height: math.unit(5000, "km"),
  15759. default: true
  15760. },
  15761. {
  15762. name: "True Size",
  15763. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15764. },
  15765. ]
  15766. ))
  15767. characterMakers.push(() => makeCharacter(
  15768. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15769. {
  15770. front: {
  15771. height: math.unit(15, "feet"),
  15772. weight: math.unit(880, "kg"),
  15773. name: "Front",
  15774. image: {
  15775. source: "./media/characters/nightraver/front.svg",
  15776. extra: 2444 / 2160,
  15777. bottom: 0.027
  15778. }
  15779. },
  15780. back: {
  15781. height: math.unit(15, "feet"),
  15782. weight: math.unit(880, "kg"),
  15783. name: "Back",
  15784. image: {
  15785. source: "./media/characters/nightraver/back.svg",
  15786. extra: 2309 / 2180,
  15787. bottom: 0.005
  15788. }
  15789. },
  15790. sole: {
  15791. height: math.unit(2.878, "feet"),
  15792. name: "Sole",
  15793. image: {
  15794. source: "./media/characters/nightraver/sole.svg"
  15795. }
  15796. },
  15797. foot: {
  15798. height: math.unit(2.285, "feet"),
  15799. name: "Foot",
  15800. image: {
  15801. source: "./media/characters/nightraver/foot.svg"
  15802. }
  15803. },
  15804. maw: {
  15805. height: math.unit(2.67, "feet"),
  15806. name: "Maw",
  15807. image: {
  15808. source: "./media/characters/nightraver/maw.svg"
  15809. }
  15810. },
  15811. },
  15812. [
  15813. {
  15814. name: "Micro",
  15815. height: math.unit(1, "cm")
  15816. },
  15817. {
  15818. name: "Normal",
  15819. height: math.unit(15, "feet"),
  15820. default: true
  15821. },
  15822. {
  15823. name: "Macro",
  15824. height: math.unit(300, "feet")
  15825. },
  15826. {
  15827. name: "Megamacro",
  15828. height: math.unit(300, "miles")
  15829. },
  15830. {
  15831. name: "Gigamacro",
  15832. height: math.unit(10000, "miles")
  15833. },
  15834. ]
  15835. ))
  15836. characterMakers.push(() => makeCharacter(
  15837. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15838. {
  15839. side: {
  15840. height: math.unit(2, "inches"),
  15841. weight: math.unit(5, "grams"),
  15842. name: "Side",
  15843. image: {
  15844. source: "./media/characters/arc/side.svg"
  15845. }
  15846. },
  15847. },
  15848. [
  15849. {
  15850. name: "Micro",
  15851. height: math.unit(2, "inches"),
  15852. default: true
  15853. },
  15854. ]
  15855. ))
  15856. characterMakers.push(() => makeCharacter(
  15857. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15858. {
  15859. front: {
  15860. height: math.unit(1.1938, "meters"),
  15861. weight: math.unit(54, "kg"),
  15862. name: "Front",
  15863. image: {
  15864. source: "./media/characters/nebula-shahar/front.svg",
  15865. extra: 1642 / 1436,
  15866. bottom: 0.06
  15867. }
  15868. },
  15869. },
  15870. [
  15871. {
  15872. name: "Megamicro",
  15873. height: math.unit(0.3, "mm")
  15874. },
  15875. {
  15876. name: "Micro",
  15877. height: math.unit(3, "cm")
  15878. },
  15879. {
  15880. name: "Normal",
  15881. height: math.unit(138, "cm"),
  15882. default: true
  15883. },
  15884. {
  15885. name: "Macro",
  15886. height: math.unit(30, "m")
  15887. },
  15888. ]
  15889. ))
  15890. characterMakers.push(() => makeCharacter(
  15891. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15892. {
  15893. front: {
  15894. height: math.unit(5.24, "feet"),
  15895. weight: math.unit(150, "lb"),
  15896. name: "Front",
  15897. image: {
  15898. source: "./media/characters/shayla/front.svg",
  15899. extra: 1512 / 1414,
  15900. bottom: 0.01
  15901. }
  15902. },
  15903. back: {
  15904. height: math.unit(5.24, "feet"),
  15905. weight: math.unit(150, "lb"),
  15906. name: "Back",
  15907. image: {
  15908. source: "./media/characters/shayla/back.svg",
  15909. extra: 1512 / 1414
  15910. }
  15911. },
  15912. hand: {
  15913. height: math.unit(0.7781496062992126, "feet"),
  15914. name: "Hand",
  15915. image: {
  15916. source: "./media/characters/shayla/hand.svg"
  15917. }
  15918. },
  15919. foot: {
  15920. height: math.unit(1.4206036745406823, "feet"),
  15921. name: "Foot",
  15922. image: {
  15923. source: "./media/characters/shayla/foot.svg"
  15924. }
  15925. },
  15926. },
  15927. [
  15928. {
  15929. name: "Micro",
  15930. height: math.unit(0.32, "feet")
  15931. },
  15932. {
  15933. name: "Normal",
  15934. height: math.unit(5.24, "feet"),
  15935. default: true
  15936. },
  15937. {
  15938. name: "Macro",
  15939. height: math.unit(492.12, "feet")
  15940. },
  15941. {
  15942. name: "Megamacro",
  15943. height: math.unit(186.41, "miles")
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15949. {
  15950. front: {
  15951. height: math.unit(2.2, "m"),
  15952. weight: math.unit(120, "kg"),
  15953. name: "Front",
  15954. image: {
  15955. source: "./media/characters/pia-jr/front.svg",
  15956. extra: 1000 / 970,
  15957. bottom: 0.035
  15958. }
  15959. },
  15960. hand: {
  15961. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15962. name: "Hand",
  15963. image: {
  15964. source: "./media/characters/pia-jr/hand.svg"
  15965. }
  15966. },
  15967. paw: {
  15968. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15969. name: "Paw",
  15970. image: {
  15971. source: "./media/characters/pia-jr/paw.svg"
  15972. }
  15973. },
  15974. },
  15975. [
  15976. {
  15977. name: "Micro",
  15978. height: math.unit(1.2, "cm")
  15979. },
  15980. {
  15981. name: "Normal",
  15982. height: math.unit(2.2, "m"),
  15983. default: true
  15984. },
  15985. {
  15986. name: "Macro",
  15987. height: math.unit(180, "m")
  15988. },
  15989. {
  15990. name: "Megamacro",
  15991. height: math.unit(420, "km")
  15992. },
  15993. ]
  15994. ))
  15995. characterMakers.push(() => makeCharacter(
  15996. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15997. {
  15998. front: {
  15999. height: math.unit(2, "m"),
  16000. weight: math.unit(115, "kg"),
  16001. name: "Front",
  16002. image: {
  16003. source: "./media/characters/pia-sr/front.svg",
  16004. extra: 760 / 730,
  16005. bottom: 0.015
  16006. }
  16007. },
  16008. back: {
  16009. height: math.unit(2, "m"),
  16010. weight: math.unit(115, "kg"),
  16011. name: "Back",
  16012. image: {
  16013. source: "./media/characters/pia-sr/back.svg",
  16014. extra: 760 / 730,
  16015. bottom: 0.01
  16016. }
  16017. },
  16018. hand: {
  16019. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16020. name: "Hand",
  16021. image: {
  16022. source: "./media/characters/pia-sr/hand.svg"
  16023. }
  16024. },
  16025. foot: {
  16026. height: math.unit(1.83, "feet"),
  16027. name: "Foot",
  16028. image: {
  16029. source: "./media/characters/pia-sr/foot.svg"
  16030. }
  16031. },
  16032. },
  16033. [
  16034. {
  16035. name: "Micro",
  16036. height: math.unit(88, "mm")
  16037. },
  16038. {
  16039. name: "Normal",
  16040. height: math.unit(2, "m"),
  16041. default: true
  16042. },
  16043. {
  16044. name: "Macro",
  16045. height: math.unit(200, "m")
  16046. },
  16047. {
  16048. name: "Megamacro",
  16049. height: math.unit(420, "km")
  16050. },
  16051. ]
  16052. ))
  16053. characterMakers.push(() => makeCharacter(
  16054. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16055. {
  16056. front: {
  16057. height: math.unit(8 + 2 / 12, "feet"),
  16058. weight: math.unit(300, "lb"),
  16059. name: "Front",
  16060. image: {
  16061. source: "./media/characters/kibibyte/front.svg",
  16062. extra: 2221 / 2098,
  16063. bottom: 0.04
  16064. }
  16065. },
  16066. },
  16067. [
  16068. {
  16069. name: "Normal",
  16070. height: math.unit(8 + 2 / 12, "feet"),
  16071. default: true
  16072. },
  16073. {
  16074. name: "Socialable Macro",
  16075. height: math.unit(50, "feet")
  16076. },
  16077. {
  16078. name: "Macro",
  16079. height: math.unit(300, "feet")
  16080. },
  16081. {
  16082. name: "Megamacro",
  16083. height: math.unit(500, "miles")
  16084. },
  16085. ]
  16086. ))
  16087. characterMakers.push(() => makeCharacter(
  16088. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16089. {
  16090. front: {
  16091. height: math.unit(6, "feet"),
  16092. weight: math.unit(150, "lb"),
  16093. name: "Front",
  16094. image: {
  16095. source: "./media/characters/felix/front.svg",
  16096. extra: 762 / 722,
  16097. bottom: 0.02
  16098. }
  16099. },
  16100. frontClothed: {
  16101. height: math.unit(6, "feet"),
  16102. weight: math.unit(150, "lb"),
  16103. name: "Front (Clothed)",
  16104. image: {
  16105. source: "./media/characters/felix/front-clothed.svg",
  16106. extra: 762 / 722,
  16107. bottom: 0.02
  16108. }
  16109. },
  16110. },
  16111. [
  16112. {
  16113. name: "Normal",
  16114. height: math.unit(6 + 8 / 12, "feet"),
  16115. default: true
  16116. },
  16117. {
  16118. name: "Macro",
  16119. height: math.unit(2600, "feet")
  16120. },
  16121. {
  16122. name: "Megamacro",
  16123. height: math.unit(450, "miles")
  16124. },
  16125. ]
  16126. ))
  16127. characterMakers.push(() => makeCharacter(
  16128. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16129. {
  16130. front: {
  16131. height: math.unit(6 + 1 / 12, "feet"),
  16132. weight: math.unit(250, "lb"),
  16133. name: "Front",
  16134. image: {
  16135. source: "./media/characters/tobo/front.svg",
  16136. extra: 608 / 586,
  16137. bottom: 0.023
  16138. }
  16139. },
  16140. back: {
  16141. height: math.unit(6 + 1 / 12, "feet"),
  16142. weight: math.unit(250, "lb"),
  16143. name: "Back",
  16144. image: {
  16145. source: "./media/characters/tobo/back.svg",
  16146. extra: 608 / 586
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Nano",
  16153. height: math.unit(2, "nm")
  16154. },
  16155. {
  16156. name: "Megamicro",
  16157. height: math.unit(0.1, "mm")
  16158. },
  16159. {
  16160. name: "Micro",
  16161. height: math.unit(1, "inch"),
  16162. default: true
  16163. },
  16164. {
  16165. name: "Human-sized",
  16166. height: math.unit(6 + 1 / 12, "feet")
  16167. },
  16168. {
  16169. name: "Macro",
  16170. height: math.unit(250, "feet")
  16171. },
  16172. {
  16173. name: "Megamacro",
  16174. height: math.unit(75, "miles")
  16175. },
  16176. {
  16177. name: "Texas-sized",
  16178. height: math.unit(750, "miles")
  16179. },
  16180. {
  16181. name: "Teramacro",
  16182. height: math.unit(50000, "miles")
  16183. },
  16184. ]
  16185. ))
  16186. characterMakers.push(() => makeCharacter(
  16187. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16188. {
  16189. front: {
  16190. height: math.unit(6, "feet"),
  16191. weight: math.unit(269, "lb"),
  16192. name: "Front",
  16193. image: {
  16194. source: "./media/characters/danny-kapowsky/front.svg",
  16195. extra: 766 / 736,
  16196. bottom: 0.044
  16197. }
  16198. },
  16199. back: {
  16200. height: math.unit(6, "feet"),
  16201. weight: math.unit(269, "lb"),
  16202. name: "Back",
  16203. image: {
  16204. source: "./media/characters/danny-kapowsky/back.svg",
  16205. extra: 797 / 760,
  16206. bottom: 0.025
  16207. }
  16208. },
  16209. },
  16210. [
  16211. {
  16212. name: "Macro",
  16213. height: math.unit(150, "feet"),
  16214. default: true
  16215. },
  16216. {
  16217. name: "Macro+",
  16218. height: math.unit(200, "feet")
  16219. },
  16220. {
  16221. name: "Macro++",
  16222. height: math.unit(300, "feet")
  16223. },
  16224. {
  16225. name: "Macro+++",
  16226. height: math.unit(400, "feet")
  16227. },
  16228. ]
  16229. ))
  16230. characterMakers.push(() => makeCharacter(
  16231. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16232. {
  16233. side: {
  16234. height: math.unit(6, "feet"),
  16235. weight: math.unit(170, "lb"),
  16236. name: "Side",
  16237. image: {
  16238. source: "./media/characters/finn/side.svg",
  16239. extra: 1953 / 1807,
  16240. bottom: 0.057
  16241. }
  16242. },
  16243. },
  16244. [
  16245. {
  16246. name: "Megamacro",
  16247. height: math.unit(14445, "feet"),
  16248. default: true
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16254. {
  16255. front: {
  16256. height: math.unit(5 + 6 / 12, "feet"),
  16257. weight: math.unit(125, "lb"),
  16258. name: "Front",
  16259. image: {
  16260. source: "./media/characters/roy/front.svg",
  16261. extra: 1,
  16262. bottom: 0.11
  16263. }
  16264. },
  16265. },
  16266. [
  16267. {
  16268. name: "Micro",
  16269. height: math.unit(3, "inches"),
  16270. default: true
  16271. },
  16272. {
  16273. name: "Normal",
  16274. height: math.unit(5 + 6 / 12, "feet")
  16275. },
  16276. {
  16277. name: "Lesser Macro",
  16278. height: math.unit(60, "feet")
  16279. },
  16280. {
  16281. name: "Greater Macro",
  16282. height: math.unit(120, "feet")
  16283. },
  16284. ]
  16285. ))
  16286. characterMakers.push(() => makeCharacter(
  16287. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16288. {
  16289. front: {
  16290. height: math.unit(6, "feet"),
  16291. weight: math.unit(100, "lb"),
  16292. name: "Front",
  16293. image: {
  16294. source: "./media/characters/aevsivs/front.svg",
  16295. extra: 1,
  16296. bottom: 0.03
  16297. }
  16298. },
  16299. back: {
  16300. height: math.unit(6, "feet"),
  16301. weight: math.unit(100, "lb"),
  16302. name: "Back",
  16303. image: {
  16304. source: "./media/characters/aevsivs/back.svg"
  16305. }
  16306. },
  16307. },
  16308. [
  16309. {
  16310. name: "Micro",
  16311. height: math.unit(2, "inches"),
  16312. default: true
  16313. },
  16314. {
  16315. name: "Normal",
  16316. height: math.unit(5, "feet")
  16317. },
  16318. ]
  16319. ))
  16320. characterMakers.push(() => makeCharacter(
  16321. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16322. {
  16323. front: {
  16324. height: math.unit(5 + 7 / 12, "feet"),
  16325. weight: math.unit(159, "lb"),
  16326. name: "Front",
  16327. image: {
  16328. source: "./media/characters/hildegard/front.svg",
  16329. extra: 289 / 269,
  16330. bottom: 7.63 / 297.8
  16331. }
  16332. },
  16333. back: {
  16334. height: math.unit(5 + 7 / 12, "feet"),
  16335. weight: math.unit(159, "lb"),
  16336. name: "Back",
  16337. image: {
  16338. source: "./media/characters/hildegard/back.svg",
  16339. extra: 280 / 260,
  16340. bottom: 2.3 / 282
  16341. }
  16342. },
  16343. },
  16344. [
  16345. {
  16346. name: "Normal",
  16347. height: math.unit(5 + 7 / 12, "feet"),
  16348. default: true
  16349. },
  16350. ]
  16351. ))
  16352. characterMakers.push(() => makeCharacter(
  16353. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16354. {
  16355. bernard: {
  16356. height: math.unit(2 + 7 / 12, "feet"),
  16357. weight: math.unit(66, "lb"),
  16358. name: "Bernard",
  16359. rename: true,
  16360. image: {
  16361. source: "./media/characters/bernard-wilder/bernard.svg",
  16362. extra: 192 / 128,
  16363. bottom: 0.05
  16364. }
  16365. },
  16366. wilder: {
  16367. height: math.unit(5 + 8 / 12, "feet"),
  16368. weight: math.unit(143, "lb"),
  16369. name: "Wilder",
  16370. rename: true,
  16371. image: {
  16372. source: "./media/characters/bernard-wilder/wilder.svg",
  16373. extra: 361 / 312,
  16374. bottom: 0.02
  16375. }
  16376. },
  16377. },
  16378. [
  16379. {
  16380. name: "Normal",
  16381. height: math.unit(2 + 7 / 12, "feet"),
  16382. default: true
  16383. },
  16384. ]
  16385. ))
  16386. characterMakers.push(() => makeCharacter(
  16387. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16388. {
  16389. anthro: {
  16390. height: math.unit(6 + 1 / 12, "feet"),
  16391. weight: math.unit(155, "lb"),
  16392. name: "Anthro",
  16393. image: {
  16394. source: "./media/characters/hearth/anthro.svg",
  16395. extra: 1178/1136,
  16396. bottom: 28/1206
  16397. }
  16398. },
  16399. feral: {
  16400. height: math.unit(3.78, "feet"),
  16401. weight: math.unit(35, "kg"),
  16402. name: "Feral",
  16403. image: {
  16404. source: "./media/characters/hearth/feral.svg",
  16405. extra: 153 / 135,
  16406. bottom: 0.03
  16407. }
  16408. },
  16409. },
  16410. [
  16411. {
  16412. name: "Normal",
  16413. height: math.unit(6 + 1 / 12, "feet"),
  16414. default: true
  16415. },
  16416. ]
  16417. ))
  16418. characterMakers.push(() => makeCharacter(
  16419. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16420. {
  16421. front: {
  16422. height: math.unit(6, "feet"),
  16423. weight: math.unit(182, "lb"),
  16424. name: "Front",
  16425. image: {
  16426. source: "./media/characters/ingrid/front.svg",
  16427. extra: 294 / 268,
  16428. bottom: 0.027
  16429. }
  16430. },
  16431. },
  16432. [
  16433. {
  16434. name: "Normal",
  16435. height: math.unit(6, "feet"),
  16436. default: true
  16437. },
  16438. ]
  16439. ))
  16440. characterMakers.push(() => makeCharacter(
  16441. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16442. {
  16443. eevee: {
  16444. height: math.unit(2 + 10 / 12, "feet"),
  16445. weight: math.unit(86, "lb"),
  16446. name: "Malgam",
  16447. image: {
  16448. source: "./media/characters/malgam/eevee.svg",
  16449. extra: 952/784,
  16450. bottom: 38/990
  16451. }
  16452. },
  16453. sylveon: {
  16454. height: math.unit(4, "feet"),
  16455. weight: math.unit(101, "lb"),
  16456. name: "Future Malgam",
  16457. rename: true,
  16458. image: {
  16459. source: "./media/characters/malgam/sylveon.svg",
  16460. extra: 371 / 325,
  16461. bottom: 0.015
  16462. }
  16463. },
  16464. gigantamax: {
  16465. height: math.unit(50, "feet"),
  16466. name: "Gigantamax Malgam",
  16467. rename: true,
  16468. image: {
  16469. source: "./media/characters/malgam/gigantamax.svg"
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Normal",
  16476. height: math.unit(2 + 10 / 12, "feet"),
  16477. default: true
  16478. },
  16479. ]
  16480. ))
  16481. characterMakers.push(() => makeCharacter(
  16482. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16483. {
  16484. front: {
  16485. height: math.unit(5 + 11 / 12, "feet"),
  16486. weight: math.unit(188, "lb"),
  16487. name: "Front",
  16488. image: {
  16489. source: "./media/characters/fleur/front.svg",
  16490. extra: 309 / 283,
  16491. bottom: 0.007
  16492. }
  16493. },
  16494. },
  16495. [
  16496. {
  16497. name: "Normal",
  16498. height: math.unit(5 + 11 / 12, "feet"),
  16499. default: true
  16500. },
  16501. ]
  16502. ))
  16503. characterMakers.push(() => makeCharacter(
  16504. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16505. {
  16506. front: {
  16507. height: math.unit(5 + 4 / 12, "feet"),
  16508. weight: math.unit(122, "lb"),
  16509. name: "Front",
  16510. image: {
  16511. source: "./media/characters/jude/front.svg",
  16512. extra: 288 / 273,
  16513. bottom: 0.03
  16514. }
  16515. },
  16516. },
  16517. [
  16518. {
  16519. name: "Normal",
  16520. height: math.unit(5 + 4 / 12, "feet"),
  16521. default: true
  16522. },
  16523. ]
  16524. ))
  16525. characterMakers.push(() => makeCharacter(
  16526. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16527. {
  16528. front: {
  16529. height: math.unit(5 + 11 / 12, "feet"),
  16530. weight: math.unit(190, "lb"),
  16531. name: "Front",
  16532. image: {
  16533. source: "./media/characters/seara/front.svg",
  16534. extra: 1,
  16535. bottom: 0.05
  16536. }
  16537. },
  16538. },
  16539. [
  16540. {
  16541. name: "Normal",
  16542. height: math.unit(5 + 11 / 12, "feet"),
  16543. default: true
  16544. },
  16545. ]
  16546. ))
  16547. characterMakers.push(() => makeCharacter(
  16548. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16549. {
  16550. front: {
  16551. height: math.unit(16 + 5 / 12, "feet"),
  16552. weight: math.unit(524, "lb"),
  16553. name: "Front",
  16554. image: {
  16555. source: "./media/characters/caspian-lugia/front.svg",
  16556. extra: 1,
  16557. bottom: 0.04
  16558. }
  16559. },
  16560. },
  16561. [
  16562. {
  16563. name: "Normal",
  16564. height: math.unit(16 + 5 / 12, "feet"),
  16565. default: true
  16566. },
  16567. ]
  16568. ))
  16569. characterMakers.push(() => makeCharacter(
  16570. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16571. {
  16572. front: {
  16573. height: math.unit(5 + 7 / 12, "feet"),
  16574. weight: math.unit(170, "lb"),
  16575. name: "Front",
  16576. image: {
  16577. source: "./media/characters/mika/front.svg",
  16578. extra: 1,
  16579. bottom: 0.016
  16580. }
  16581. },
  16582. },
  16583. [
  16584. {
  16585. name: "Normal",
  16586. height: math.unit(5 + 7 / 12, "feet"),
  16587. default: true
  16588. },
  16589. ]
  16590. ))
  16591. characterMakers.push(() => makeCharacter(
  16592. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16593. {
  16594. front: {
  16595. height: math.unit(6 + 2 / 12, "feet"),
  16596. weight: math.unit(268, "lb"),
  16597. name: "Front",
  16598. image: {
  16599. source: "./media/characters/sol/front.svg",
  16600. extra: 247 / 231,
  16601. bottom: 0.05
  16602. }
  16603. },
  16604. },
  16605. [
  16606. {
  16607. name: "Normal",
  16608. height: math.unit(6 + 2 / 12, "feet"),
  16609. default: true
  16610. },
  16611. ]
  16612. ))
  16613. characterMakers.push(() => makeCharacter(
  16614. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16615. {
  16616. buizel: {
  16617. height: math.unit(2 + 5 / 12, "feet"),
  16618. weight: math.unit(87, "lb"),
  16619. name: "Front",
  16620. image: {
  16621. source: "./media/characters/umiko/buizel.svg",
  16622. extra: 172 / 157,
  16623. bottom: 0.01
  16624. },
  16625. form: "buizel",
  16626. default: true
  16627. },
  16628. floatzel: {
  16629. height: math.unit(5 + 9 / 12, "feet"),
  16630. weight: math.unit(250, "lb"),
  16631. name: "Front",
  16632. image: {
  16633. source: "./media/characters/umiko/floatzel.svg",
  16634. extra: 1076/1006,
  16635. bottom: 15/1091
  16636. },
  16637. form: "floatzel",
  16638. default: true
  16639. },
  16640. },
  16641. [
  16642. {
  16643. name: "Normal",
  16644. height: math.unit(2 + 5 / 12, "feet"),
  16645. form: "buizel",
  16646. default: true
  16647. },
  16648. {
  16649. name: "Normal",
  16650. height: math.unit(5 + 9 / 12, "feet"),
  16651. form: "floatzel",
  16652. default: true
  16653. },
  16654. ],
  16655. {
  16656. "buizel": {
  16657. name: "Buizel"
  16658. },
  16659. "floatzel": {
  16660. name: "Floatzel",
  16661. default: true
  16662. }
  16663. }
  16664. ))
  16665. characterMakers.push(() => makeCharacter(
  16666. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16667. {
  16668. front: {
  16669. height: math.unit(6 + 2 / 12, "feet"),
  16670. weight: math.unit(146, "lb"),
  16671. name: "Front",
  16672. image: {
  16673. source: "./media/characters/iliac/front.svg",
  16674. extra: 389 / 365,
  16675. bottom: 0.035
  16676. }
  16677. },
  16678. },
  16679. [
  16680. {
  16681. name: "Normal",
  16682. height: math.unit(6 + 2 / 12, "feet"),
  16683. default: true
  16684. },
  16685. ]
  16686. ))
  16687. characterMakers.push(() => makeCharacter(
  16688. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16689. {
  16690. front: {
  16691. height: math.unit(6, "feet"),
  16692. weight: math.unit(170, "lb"),
  16693. name: "Front",
  16694. image: {
  16695. source: "./media/characters/topaz/front.svg",
  16696. extra: 317 / 303,
  16697. bottom: 0.055
  16698. }
  16699. },
  16700. },
  16701. [
  16702. {
  16703. name: "Normal",
  16704. height: math.unit(6, "feet"),
  16705. default: true
  16706. },
  16707. ]
  16708. ))
  16709. characterMakers.push(() => makeCharacter(
  16710. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16711. {
  16712. front: {
  16713. height: math.unit(5 + 11 / 12, "feet"),
  16714. weight: math.unit(144, "lb"),
  16715. name: "Front",
  16716. image: {
  16717. source: "./media/characters/gabriel/front.svg",
  16718. extra: 285 / 262,
  16719. bottom: 0.004
  16720. }
  16721. },
  16722. },
  16723. [
  16724. {
  16725. name: "Normal",
  16726. height: math.unit(5 + 11 / 12, "feet"),
  16727. default: true
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16733. {
  16734. side: {
  16735. height: math.unit(6 + 5 / 12, "feet"),
  16736. weight: math.unit(300, "lb"),
  16737. name: "Side",
  16738. image: {
  16739. source: "./media/characters/tempest-suicune/side.svg",
  16740. extra: 195 / 154,
  16741. bottom: 0.04
  16742. }
  16743. },
  16744. },
  16745. [
  16746. {
  16747. name: "Normal",
  16748. height: math.unit(6 + 5 / 12, "feet"),
  16749. default: true
  16750. },
  16751. ]
  16752. ))
  16753. characterMakers.push(() => makeCharacter(
  16754. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16755. {
  16756. front: {
  16757. height: math.unit(7 + 2 / 12, "feet"),
  16758. weight: math.unit(322, "lb"),
  16759. name: "Front",
  16760. image: {
  16761. source: "./media/characters/vulcan/front.svg",
  16762. extra: 154 / 147,
  16763. bottom: 0.04
  16764. }
  16765. },
  16766. },
  16767. [
  16768. {
  16769. name: "Normal",
  16770. height: math.unit(7 + 2 / 12, "feet"),
  16771. default: true
  16772. },
  16773. ]
  16774. ))
  16775. characterMakers.push(() => makeCharacter(
  16776. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16777. {
  16778. front: {
  16779. height: math.unit(5 + 10 / 12, "feet"),
  16780. weight: math.unit(264, "lb"),
  16781. name: "Front",
  16782. image: {
  16783. source: "./media/characters/gault/front.svg",
  16784. extra: 161 / 140,
  16785. bottom: 0.028
  16786. }
  16787. },
  16788. },
  16789. [
  16790. {
  16791. name: "Normal",
  16792. height: math.unit(5 + 10 / 12, "feet"),
  16793. default: true
  16794. },
  16795. ]
  16796. ))
  16797. characterMakers.push(() => makeCharacter(
  16798. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16799. {
  16800. front: {
  16801. height: math.unit(6, "feet"),
  16802. weight: math.unit(150, "lb"),
  16803. name: "Front",
  16804. image: {
  16805. source: "./media/characters/shard/front.svg",
  16806. extra: 273 / 238,
  16807. bottom: 0.02
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Normal",
  16814. height: math.unit(3 + 6 / 12, "feet"),
  16815. default: true
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(5 + 11 / 12, "feet"),
  16824. weight: math.unit(146, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/ashe/front.svg",
  16828. extra: 400 / 373,
  16829. bottom: 0.01
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(5 + 11 / 12, "feet"),
  16837. default: true
  16838. },
  16839. ]
  16840. ))
  16841. characterMakers.push(() => makeCharacter(
  16842. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16843. {
  16844. front: {
  16845. height: math.unit(5 + 5 / 12, "feet"),
  16846. weight: math.unit(135, "lb"),
  16847. name: "Front",
  16848. image: {
  16849. source: "./media/characters/beatrix/front.svg",
  16850. extra: 392 / 379,
  16851. bottom: 0.01
  16852. }
  16853. },
  16854. },
  16855. [
  16856. {
  16857. name: "Normal",
  16858. height: math.unit(6, "feet"),
  16859. default: true
  16860. },
  16861. ]
  16862. ))
  16863. characterMakers.push(() => makeCharacter(
  16864. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16865. {
  16866. front: {
  16867. height: math.unit(6 + 2/12, "feet"),
  16868. weight: math.unit(135, "lb"),
  16869. name: "Front",
  16870. image: {
  16871. source: "./media/characters/ignatius/front.svg",
  16872. extra: 1380/1259,
  16873. bottom: 27/1407
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(6 + 2/12, "feet"),
  16881. default: true
  16882. },
  16883. ]
  16884. ))
  16885. characterMakers.push(() => makeCharacter(
  16886. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16887. {
  16888. front: {
  16889. height: math.unit(6 + 2 / 12, "feet"),
  16890. weight: math.unit(138, "lb"),
  16891. name: "Front",
  16892. image: {
  16893. source: "./media/characters/mei-li/front.svg",
  16894. extra: 237 / 229,
  16895. bottom: 0.03
  16896. }
  16897. },
  16898. },
  16899. [
  16900. {
  16901. name: "Normal",
  16902. height: math.unit(6 + 2 / 12, "feet"),
  16903. default: true
  16904. },
  16905. ]
  16906. ))
  16907. characterMakers.push(() => makeCharacter(
  16908. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16909. {
  16910. front: {
  16911. height: math.unit(2 + 4 / 12, "feet"),
  16912. weight: math.unit(62, "lb"),
  16913. name: "Front",
  16914. image: {
  16915. source: "./media/characters/puru/front.svg",
  16916. extra: 206 / 149,
  16917. bottom: 0.06
  16918. }
  16919. },
  16920. },
  16921. [
  16922. {
  16923. name: "Normal",
  16924. height: math.unit(2 + 4 / 12, "feet"),
  16925. default: true
  16926. },
  16927. ]
  16928. ))
  16929. characterMakers.push(() => makeCharacter(
  16930. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16931. {
  16932. anthro: {
  16933. height: math.unit(5 + 8/12, "feet"),
  16934. weight: math.unit(200, "lb"),
  16935. energyNeed: math.unit(2000, "kcal"),
  16936. name: "Anthro",
  16937. image: {
  16938. source: "./media/characters/kee/anthro.svg",
  16939. extra: 3251/3184,
  16940. bottom: 250/3501
  16941. }
  16942. },
  16943. taur: {
  16944. height: math.unit(11, "feet"),
  16945. weight: math.unit(500, "lb"),
  16946. energyNeed: math.unit(5000, "kcal"),
  16947. name: "Taur",
  16948. image: {
  16949. source: "./media/characters/kee/taur.svg",
  16950. extra: 1362/1320,
  16951. bottom: 83/1445
  16952. }
  16953. },
  16954. },
  16955. [
  16956. {
  16957. name: "Normal",
  16958. height: math.unit(5 + 8/12, "feet"),
  16959. default: true
  16960. },
  16961. {
  16962. name: "Macro",
  16963. height: math.unit(35, "feet")
  16964. },
  16965. ]
  16966. ))
  16967. characterMakers.push(() => makeCharacter(
  16968. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16969. {
  16970. anthro: {
  16971. height: math.unit(7, "feet"),
  16972. weight: math.unit(190, "lb"),
  16973. name: "Anthro",
  16974. image: {
  16975. source: "./media/characters/cobalt-dracha/anthro.svg",
  16976. extra: 231 / 225,
  16977. bottom: 0.04
  16978. }
  16979. },
  16980. feral: {
  16981. height: math.unit(9 + 7 / 12, "feet"),
  16982. weight: math.unit(294, "lb"),
  16983. name: "Feral",
  16984. image: {
  16985. source: "./media/characters/cobalt-dracha/feral.svg",
  16986. extra: 692 / 633,
  16987. bottom: 0.05
  16988. }
  16989. },
  16990. },
  16991. [
  16992. {
  16993. name: "Normal",
  16994. height: math.unit(7, "feet"),
  16995. default: true
  16996. },
  16997. ]
  16998. ))
  16999. characterMakers.push(() => makeCharacter(
  17000. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17001. {
  17002. fallen: {
  17003. height: math.unit(11 + 8 / 12, "feet"),
  17004. weight: math.unit(485, "lb"),
  17005. name: "Java (Fallen)",
  17006. rename: true,
  17007. image: {
  17008. source: "./media/characters/java/fallen.svg",
  17009. extra: 226 / 208,
  17010. bottom: 0.005
  17011. }
  17012. },
  17013. godkin: {
  17014. height: math.unit(10 + 6 / 12, "feet"),
  17015. weight: math.unit(328, "lb"),
  17016. name: "Java (Godkin)",
  17017. rename: true,
  17018. image: {
  17019. source: "./media/characters/java/godkin.svg",
  17020. extra: 1104/1068,
  17021. bottom: 36/1140
  17022. }
  17023. },
  17024. },
  17025. [
  17026. {
  17027. name: "Normal",
  17028. height: math.unit(11 + 8 / 12, "feet"),
  17029. default: true
  17030. },
  17031. ]
  17032. ))
  17033. characterMakers.push(() => makeCharacter(
  17034. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17035. {
  17036. front: {
  17037. height: math.unit(5 + 9 / 12, "feet"),
  17038. weight: math.unit(170, "lb"),
  17039. name: "Front",
  17040. image: {
  17041. source: "./media/characters/purna/front.svg",
  17042. extra: 239 / 229,
  17043. bottom: 0.01
  17044. }
  17045. },
  17046. },
  17047. [
  17048. {
  17049. name: "Normal",
  17050. height: math.unit(5 + 9 / 12, "feet"),
  17051. default: true
  17052. },
  17053. ]
  17054. ))
  17055. characterMakers.push(() => makeCharacter(
  17056. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17057. {
  17058. front: {
  17059. height: math.unit(5 + 9 / 12, "feet"),
  17060. weight: math.unit(142, "lb"),
  17061. name: "Front",
  17062. image: {
  17063. source: "./media/characters/kuva/front.svg",
  17064. extra: 281 / 271,
  17065. bottom: 0.006
  17066. }
  17067. },
  17068. },
  17069. [
  17070. {
  17071. name: "Normal",
  17072. height: math.unit(5 + 9 / 12, "feet"),
  17073. default: true
  17074. },
  17075. ]
  17076. ))
  17077. characterMakers.push(() => makeCharacter(
  17078. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17079. {
  17080. anthro: {
  17081. height: math.unit(9 + 2 / 12, "feet"),
  17082. weight: math.unit(270, "lb"),
  17083. name: "Anthro",
  17084. image: {
  17085. source: "./media/characters/embra/anthro.svg",
  17086. extra: 200 / 187,
  17087. bottom: 0.02
  17088. }
  17089. },
  17090. feral: {
  17091. height: math.unit(18 + 8 / 12, "feet"),
  17092. weight: math.unit(576, "lb"),
  17093. name: "Feral",
  17094. image: {
  17095. source: "./media/characters/embra/feral.svg",
  17096. extra: 152 / 137,
  17097. bottom: 0.037
  17098. }
  17099. },
  17100. },
  17101. [
  17102. {
  17103. name: "Normal",
  17104. height: math.unit(9 + 2 / 12, "feet"),
  17105. default: true
  17106. },
  17107. ]
  17108. ))
  17109. characterMakers.push(() => makeCharacter(
  17110. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17111. {
  17112. anthro: {
  17113. height: math.unit(10 + 9 / 12, "feet"),
  17114. weight: math.unit(224, "lb"),
  17115. name: "Anthro",
  17116. image: {
  17117. source: "./media/characters/grottos/anthro.svg",
  17118. extra: 350 / 332,
  17119. bottom: 0.045
  17120. }
  17121. },
  17122. feral: {
  17123. height: math.unit(20 + 7 / 12, "feet"),
  17124. weight: math.unit(629, "lb"),
  17125. name: "Feral",
  17126. image: {
  17127. source: "./media/characters/grottos/feral.svg",
  17128. extra: 207 / 190,
  17129. bottom: 0.05
  17130. }
  17131. },
  17132. },
  17133. [
  17134. {
  17135. name: "Normal",
  17136. height: math.unit(10 + 9 / 12, "feet"),
  17137. default: true
  17138. },
  17139. ]
  17140. ))
  17141. characterMakers.push(() => makeCharacter(
  17142. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17143. {
  17144. anthro: {
  17145. height: math.unit(9 + 6 / 12, "feet"),
  17146. weight: math.unit(298, "lb"),
  17147. name: "Anthro",
  17148. image: {
  17149. source: "./media/characters/frifna/anthro.svg",
  17150. extra: 282 / 269,
  17151. bottom: 0.015
  17152. }
  17153. },
  17154. feral: {
  17155. height: math.unit(16 + 2 / 12, "feet"),
  17156. weight: math.unit(624, "lb"),
  17157. name: "Feral",
  17158. image: {
  17159. source: "./media/characters/frifna/feral.svg"
  17160. }
  17161. },
  17162. },
  17163. [
  17164. {
  17165. name: "Normal",
  17166. height: math.unit(9 + 6 / 12, "feet"),
  17167. default: true
  17168. },
  17169. ]
  17170. ))
  17171. characterMakers.push(() => makeCharacter(
  17172. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17173. {
  17174. front: {
  17175. height: math.unit(6 + 2 / 12, "feet"),
  17176. weight: math.unit(168, "lb"),
  17177. name: "Front",
  17178. image: {
  17179. source: "./media/characters/elise/front.svg",
  17180. extra: 276 / 271
  17181. }
  17182. },
  17183. },
  17184. [
  17185. {
  17186. name: "Normal",
  17187. height: math.unit(6 + 2 / 12, "feet"),
  17188. default: true
  17189. },
  17190. ]
  17191. ))
  17192. characterMakers.push(() => makeCharacter(
  17193. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17194. {
  17195. front: {
  17196. height: math.unit(5 + 10 / 12, "feet"),
  17197. weight: math.unit(210, "lb"),
  17198. name: "Front",
  17199. image: {
  17200. source: "./media/characters/glade/front.svg",
  17201. extra: 258 / 247,
  17202. bottom: 0.008
  17203. }
  17204. },
  17205. },
  17206. [
  17207. {
  17208. name: "Normal",
  17209. height: math.unit(5 + 10 / 12, "feet"),
  17210. default: true
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17216. {
  17217. front: {
  17218. height: math.unit(5 + 10 / 12, "feet"),
  17219. weight: math.unit(129, "lb"),
  17220. name: "Front",
  17221. image: {
  17222. source: "./media/characters/rina/front.svg",
  17223. extra: 266 / 255,
  17224. bottom: 0.005
  17225. }
  17226. },
  17227. },
  17228. [
  17229. {
  17230. name: "Normal",
  17231. height: math.unit(5 + 10 / 12, "feet"),
  17232. default: true
  17233. },
  17234. ]
  17235. ))
  17236. characterMakers.push(() => makeCharacter(
  17237. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17238. {
  17239. front: {
  17240. height: math.unit(6 + 1 / 12, "feet"),
  17241. weight: math.unit(192, "lb"),
  17242. name: "Front",
  17243. image: {
  17244. source: "./media/characters/veronica/front.svg",
  17245. extra: 319 / 309,
  17246. bottom: 0.005
  17247. }
  17248. },
  17249. },
  17250. [
  17251. {
  17252. name: "Normal",
  17253. height: math.unit(6 + 1 / 12, "feet"),
  17254. default: true
  17255. },
  17256. ]
  17257. ))
  17258. characterMakers.push(() => makeCharacter(
  17259. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17260. {
  17261. front: {
  17262. height: math.unit(9 + 3 / 12, "feet"),
  17263. weight: math.unit(1100, "lb"),
  17264. name: "Front",
  17265. image: {
  17266. source: "./media/characters/braxton/front.svg",
  17267. extra: 1057 / 984,
  17268. bottom: 0.05
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(9 + 3 / 12, "feet")
  17276. },
  17277. {
  17278. name: "Giant",
  17279. height: math.unit(300, "feet"),
  17280. default: true
  17281. },
  17282. {
  17283. name: "Macro",
  17284. height: math.unit(700, "feet")
  17285. },
  17286. {
  17287. name: "Megamacro",
  17288. height: math.unit(6000, "feet")
  17289. },
  17290. ]
  17291. ))
  17292. characterMakers.push(() => makeCharacter(
  17293. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17294. {
  17295. front: {
  17296. height: math.unit(6 + 7 / 12, "feet"),
  17297. weight: math.unit(150, "lb"),
  17298. name: "Front",
  17299. image: {
  17300. source: "./media/characters/blue-feyonics/front.svg",
  17301. extra: 1403 / 1306,
  17302. bottom: 0.047
  17303. }
  17304. },
  17305. },
  17306. [
  17307. {
  17308. name: "Normal",
  17309. height: math.unit(6 + 7 / 12, "feet"),
  17310. default: true
  17311. },
  17312. ]
  17313. ))
  17314. characterMakers.push(() => makeCharacter(
  17315. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17316. {
  17317. front: {
  17318. height: math.unit(1.8, "meters"),
  17319. weight: math.unit(60, "kg"),
  17320. name: "Front",
  17321. image: {
  17322. source: "./media/characters/maxwell/front.svg",
  17323. extra: 2060 / 1873
  17324. }
  17325. },
  17326. },
  17327. [
  17328. {
  17329. name: "Micro",
  17330. height: math.unit(1, "mm")
  17331. },
  17332. {
  17333. name: "Normal",
  17334. height: math.unit(1.8, "meter"),
  17335. default: true
  17336. },
  17337. {
  17338. name: "Macro",
  17339. height: math.unit(30, "meters")
  17340. },
  17341. {
  17342. name: "Megamacro",
  17343. height: math.unit(10, "km")
  17344. },
  17345. ]
  17346. ))
  17347. characterMakers.push(() => makeCharacter(
  17348. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17349. {
  17350. front: {
  17351. height: math.unit(6, "feet"),
  17352. weight: math.unit(150, "lb"),
  17353. name: "Front",
  17354. image: {
  17355. source: "./media/characters/jack/front.svg",
  17356. extra: 1754 / 1640,
  17357. bottom: 0.01
  17358. }
  17359. },
  17360. },
  17361. [
  17362. {
  17363. name: "Normal",
  17364. height: math.unit(80000, "feet"),
  17365. default: true
  17366. },
  17367. {
  17368. name: "Max size",
  17369. height: math.unit(10, "lightyears")
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17375. {
  17376. urban: {
  17377. height: math.unit(5, "feet"),
  17378. weight: math.unit(240, "lb"),
  17379. name: "Urban",
  17380. image: {
  17381. source: "./media/characters/cafat/urban.svg",
  17382. extra: 1223/1126,
  17383. bottom: 205/1428
  17384. }
  17385. },
  17386. summer: {
  17387. height: math.unit(5, "feet"),
  17388. weight: math.unit(240, "lb"),
  17389. name: "Summer",
  17390. image: {
  17391. source: "./media/characters/cafat/summer.svg",
  17392. extra: 1223/1126,
  17393. bottom: 205/1428
  17394. }
  17395. },
  17396. winter: {
  17397. height: math.unit(5, "feet"),
  17398. weight: math.unit(240, "lb"),
  17399. name: "Winter",
  17400. image: {
  17401. source: "./media/characters/cafat/winter.svg",
  17402. extra: 1223/1126,
  17403. bottom: 205/1428
  17404. }
  17405. },
  17406. lingerie: {
  17407. height: math.unit(5, "feet"),
  17408. weight: math.unit(240, "lb"),
  17409. name: "Lingerie",
  17410. image: {
  17411. source: "./media/characters/cafat/lingerie.svg",
  17412. extra: 1223/1126,
  17413. bottom: 205/1428
  17414. }
  17415. },
  17416. upright: {
  17417. height: math.unit(6.3, "feet"),
  17418. weight: math.unit(240, "lb"),
  17419. name: "Upright",
  17420. image: {
  17421. source: "./media/characters/cafat/upright.svg",
  17422. bottom: 0.01
  17423. }
  17424. },
  17425. uprightFull: {
  17426. height: math.unit(6.3, "feet"),
  17427. weight: math.unit(240, "lb"),
  17428. name: "Upright (Full)",
  17429. image: {
  17430. source: "./media/characters/cafat/upright-full.svg",
  17431. bottom: 0.01
  17432. }
  17433. },
  17434. },
  17435. [
  17436. {
  17437. name: "Small",
  17438. height: math.unit(5, "feet"),
  17439. default: true
  17440. },
  17441. {
  17442. name: "Large",
  17443. height: math.unit(13, "feet")
  17444. },
  17445. ]
  17446. ))
  17447. characterMakers.push(() => makeCharacter(
  17448. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17449. {
  17450. front: {
  17451. height: math.unit(6, "feet"),
  17452. weight: math.unit(150, "lb"),
  17453. name: "Front",
  17454. image: {
  17455. source: "./media/characters/verin-raharra/front.svg",
  17456. extra: 5019 / 4835,
  17457. bottom: 0.023
  17458. }
  17459. },
  17460. },
  17461. [
  17462. {
  17463. name: "Normal",
  17464. height: math.unit(7 + 5 / 12, "feet"),
  17465. default: true
  17466. },
  17467. {
  17468. name: "Upsized",
  17469. height: math.unit(20, "feet")
  17470. },
  17471. ]
  17472. ))
  17473. characterMakers.push(() => makeCharacter(
  17474. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17475. {
  17476. front: {
  17477. height: math.unit(7, "feet"),
  17478. weight: math.unit(230, "lb"),
  17479. name: "Front",
  17480. image: {
  17481. source: "./media/characters/nakata/front.svg",
  17482. extra: 1.005,
  17483. bottom: 0.01
  17484. }
  17485. },
  17486. },
  17487. [
  17488. {
  17489. name: "Normal",
  17490. height: math.unit(7, "feet"),
  17491. default: true
  17492. },
  17493. {
  17494. name: "Big",
  17495. height: math.unit(14, "feet")
  17496. },
  17497. {
  17498. name: "Macro",
  17499. height: math.unit(400, "feet")
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17505. {
  17506. front: {
  17507. height: math.unit(4.91, "feet"),
  17508. weight: math.unit(100, "lb"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/lily/front.svg",
  17512. extra: 1585 / 1415,
  17513. bottom: 0.02
  17514. }
  17515. },
  17516. },
  17517. [
  17518. {
  17519. name: "Normal",
  17520. height: math.unit(4.91, "feet"),
  17521. default: true
  17522. },
  17523. ]
  17524. ))
  17525. characterMakers.push(() => makeCharacter(
  17526. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17527. {
  17528. laying: {
  17529. height: math.unit(4 + 4 / 12, "feet"),
  17530. weight: math.unit(600, "lb"),
  17531. name: "Laying",
  17532. image: {
  17533. source: "./media/characters/sheila/laying.svg",
  17534. extra: 1333 / 1265,
  17535. bottom: 0.16
  17536. }
  17537. },
  17538. },
  17539. [
  17540. {
  17541. name: "Normal",
  17542. height: math.unit(4 + 4 / 12, "feet"),
  17543. default: true
  17544. },
  17545. ]
  17546. ))
  17547. characterMakers.push(() => makeCharacter(
  17548. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17549. {
  17550. front: {
  17551. height: math.unit(6, "feet"),
  17552. weight: math.unit(190, "lb"),
  17553. name: "Front",
  17554. image: {
  17555. source: "./media/characters/sax/front.svg",
  17556. extra: 1187 / 973,
  17557. bottom: 0.042
  17558. }
  17559. },
  17560. },
  17561. [
  17562. {
  17563. name: "Micro",
  17564. height: math.unit(4, "inches"),
  17565. default: true
  17566. },
  17567. ]
  17568. ))
  17569. characterMakers.push(() => makeCharacter(
  17570. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17571. {
  17572. front: {
  17573. height: math.unit(6, "feet"),
  17574. weight: math.unit(150, "lb"),
  17575. name: "Front",
  17576. image: {
  17577. source: "./media/characters/pandora/front.svg",
  17578. extra: 2720 / 2556,
  17579. bottom: 0.015
  17580. }
  17581. },
  17582. back: {
  17583. height: math.unit(6, "feet"),
  17584. weight: math.unit(150, "lb"),
  17585. name: "Back",
  17586. image: {
  17587. source: "./media/characters/pandora/back.svg",
  17588. extra: 2720 / 2556,
  17589. bottom: 0.01
  17590. }
  17591. },
  17592. beans: {
  17593. height: math.unit(6 / 8, "feet"),
  17594. name: "Beans",
  17595. image: {
  17596. source: "./media/characters/pandora/beans.svg"
  17597. }
  17598. },
  17599. collar: {
  17600. height: math.unit(0.31, "feet"),
  17601. name: "Collar",
  17602. image: {
  17603. source: "./media/characters/pandora/collar.svg"
  17604. }
  17605. },
  17606. skirt: {
  17607. height: math.unit(6, "feet"),
  17608. weight: math.unit(150, "lb"),
  17609. name: "Skirt",
  17610. image: {
  17611. source: "./media/characters/pandora/skirt.svg",
  17612. extra: 1622 / 1525,
  17613. bottom: 0.015
  17614. }
  17615. },
  17616. hoodie: {
  17617. height: math.unit(6, "feet"),
  17618. weight: math.unit(150, "lb"),
  17619. name: "Hoodie",
  17620. image: {
  17621. source: "./media/characters/pandora/hoodie.svg",
  17622. extra: 1622 / 1525,
  17623. bottom: 0.015
  17624. }
  17625. },
  17626. casual: {
  17627. height: math.unit(6, "feet"),
  17628. weight: math.unit(150, "lb"),
  17629. name: "Casual",
  17630. image: {
  17631. source: "./media/characters/pandora/casual.svg",
  17632. extra: 1622 / 1525,
  17633. bottom: 0.015
  17634. }
  17635. },
  17636. },
  17637. [
  17638. {
  17639. name: "Normal",
  17640. height: math.unit(6, "feet")
  17641. },
  17642. {
  17643. name: "Big Steppy",
  17644. height: math.unit(1, "km"),
  17645. default: true
  17646. },
  17647. {
  17648. name: "Galactic Steppy",
  17649. height: math.unit(2, "gigameters")
  17650. },
  17651. ]
  17652. ))
  17653. characterMakers.push(() => makeCharacter(
  17654. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17655. {
  17656. side: {
  17657. height: math.unit(10, "feet"),
  17658. weight: math.unit(800, "kg"),
  17659. name: "Side",
  17660. image: {
  17661. source: "./media/characters/venio-darcony/side.svg",
  17662. extra: 1373 / 1003,
  17663. bottom: 0.037
  17664. }
  17665. },
  17666. front: {
  17667. height: math.unit(19, "feet"),
  17668. weight: math.unit(800, "kg"),
  17669. name: "Front",
  17670. image: {
  17671. source: "./media/characters/venio-darcony/front.svg"
  17672. }
  17673. },
  17674. back: {
  17675. height: math.unit(19, "feet"),
  17676. weight: math.unit(800, "kg"),
  17677. name: "Back",
  17678. image: {
  17679. source: "./media/characters/venio-darcony/back.svg"
  17680. }
  17681. },
  17682. sideNsfw: {
  17683. height: math.unit(10, "feet"),
  17684. weight: math.unit(800, "kg"),
  17685. name: "Side (NSFW)",
  17686. image: {
  17687. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17688. extra: 1373 / 1003,
  17689. bottom: 0.037
  17690. }
  17691. },
  17692. frontNsfw: {
  17693. height: math.unit(19, "feet"),
  17694. weight: math.unit(800, "kg"),
  17695. name: "Front (NSFW)",
  17696. image: {
  17697. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17698. }
  17699. },
  17700. backNsfw: {
  17701. height: math.unit(19, "feet"),
  17702. weight: math.unit(800, "kg"),
  17703. name: "Back (NSFW)",
  17704. image: {
  17705. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17706. }
  17707. },
  17708. sideArmored: {
  17709. height: math.unit(10, "feet"),
  17710. weight: math.unit(800, "kg"),
  17711. name: "Side (Armored)",
  17712. image: {
  17713. source: "./media/characters/venio-darcony/side-armored.svg",
  17714. extra: 1373 / 1003,
  17715. bottom: 0.037
  17716. }
  17717. },
  17718. frontArmored: {
  17719. height: math.unit(19, "feet"),
  17720. weight: math.unit(900, "kg"),
  17721. name: "Front (Armored)",
  17722. image: {
  17723. source: "./media/characters/venio-darcony/front-armored.svg"
  17724. }
  17725. },
  17726. backArmored: {
  17727. height: math.unit(19, "feet"),
  17728. weight: math.unit(900, "kg"),
  17729. name: "Back (Armored)",
  17730. image: {
  17731. source: "./media/characters/venio-darcony/back-armored.svg"
  17732. }
  17733. },
  17734. sword: {
  17735. height: math.unit(10, "feet"),
  17736. weight: math.unit(50, "lb"),
  17737. name: "Sword",
  17738. image: {
  17739. source: "./media/characters/venio-darcony/sword.svg"
  17740. }
  17741. },
  17742. },
  17743. [
  17744. {
  17745. name: "Normal",
  17746. height: math.unit(10, "feet")
  17747. },
  17748. {
  17749. name: "Macro",
  17750. height: math.unit(130, "feet"),
  17751. default: true
  17752. },
  17753. {
  17754. name: "Macro+",
  17755. height: math.unit(240, "feet")
  17756. },
  17757. ]
  17758. ))
  17759. characterMakers.push(() => makeCharacter(
  17760. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17761. {
  17762. front: {
  17763. height: math.unit(6, "feet"),
  17764. weight: math.unit(150, "lb"),
  17765. name: "Front",
  17766. image: {
  17767. source: "./media/characters/veski/front.svg",
  17768. extra: 1299 / 1225,
  17769. bottom: 0.04
  17770. }
  17771. },
  17772. back: {
  17773. height: math.unit(6, "feet"),
  17774. weight: math.unit(150, "lb"),
  17775. name: "Back",
  17776. image: {
  17777. source: "./media/characters/veski/back.svg",
  17778. extra: 1299 / 1225,
  17779. bottom: 0.008
  17780. }
  17781. },
  17782. maw: {
  17783. height: math.unit(1.5 * 1.21, "feet"),
  17784. name: "Maw",
  17785. image: {
  17786. source: "./media/characters/veski/maw.svg"
  17787. }
  17788. },
  17789. },
  17790. [
  17791. {
  17792. name: "Macro",
  17793. height: math.unit(2, "km"),
  17794. default: true
  17795. },
  17796. ]
  17797. ))
  17798. characterMakers.push(() => makeCharacter(
  17799. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17800. {
  17801. front: {
  17802. height: math.unit(5 + 7 / 12, "feet"),
  17803. name: "Front",
  17804. image: {
  17805. source: "./media/characters/isabelle/front.svg",
  17806. extra: 2130 / 1976,
  17807. bottom: 0.05
  17808. }
  17809. },
  17810. },
  17811. [
  17812. {
  17813. name: "Supermicro",
  17814. height: math.unit(10, "micrometers")
  17815. },
  17816. {
  17817. name: "Micro",
  17818. height: math.unit(1, "inch")
  17819. },
  17820. {
  17821. name: "Tiny",
  17822. height: math.unit(5, "inches")
  17823. },
  17824. {
  17825. name: "Standard",
  17826. height: math.unit(5 + 7 / 12, "inches")
  17827. },
  17828. {
  17829. name: "Macro",
  17830. height: math.unit(80, "meters"),
  17831. default: true
  17832. },
  17833. {
  17834. name: "Megamacro",
  17835. height: math.unit(250, "meters")
  17836. },
  17837. {
  17838. name: "Gigamacro",
  17839. height: math.unit(5, "km")
  17840. },
  17841. {
  17842. name: "Cosmic",
  17843. height: math.unit(2.5e6, "miles")
  17844. },
  17845. ]
  17846. ))
  17847. characterMakers.push(() => makeCharacter(
  17848. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17849. {
  17850. front: {
  17851. height: math.unit(6, "feet"),
  17852. weight: math.unit(150, "lb"),
  17853. name: "Front",
  17854. image: {
  17855. source: "./media/characters/hanzo/front.svg",
  17856. extra: 374 / 344,
  17857. bottom: 0.02
  17858. }
  17859. },
  17860. },
  17861. [
  17862. {
  17863. name: "Normal",
  17864. height: math.unit(8, "feet"),
  17865. default: true
  17866. },
  17867. ]
  17868. ))
  17869. characterMakers.push(() => makeCharacter(
  17870. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17871. {
  17872. front: {
  17873. height: math.unit(7, "feet"),
  17874. weight: math.unit(130, "lb"),
  17875. name: "Front",
  17876. image: {
  17877. source: "./media/characters/anna/front.svg",
  17878. extra: 169 / 145,
  17879. bottom: 0.06
  17880. }
  17881. },
  17882. full: {
  17883. height: math.unit(4.96, "feet"),
  17884. weight: math.unit(220, "lb"),
  17885. name: "Full",
  17886. image: {
  17887. source: "./media/characters/anna/full.svg",
  17888. extra: 138 / 114,
  17889. bottom: 0.15
  17890. }
  17891. },
  17892. tongue: {
  17893. height: math.unit(2.53, "feet"),
  17894. name: "Tongue",
  17895. image: {
  17896. source: "./media/characters/anna/tongue.svg"
  17897. }
  17898. },
  17899. },
  17900. [
  17901. {
  17902. name: "Normal",
  17903. height: math.unit(7, "feet"),
  17904. default: true
  17905. },
  17906. ]
  17907. ))
  17908. characterMakers.push(() => makeCharacter(
  17909. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17910. {
  17911. front: {
  17912. height: math.unit(7, "feet"),
  17913. weight: math.unit(150, "lb"),
  17914. name: "Front",
  17915. image: {
  17916. source: "./media/characters/ian-corvid/front.svg",
  17917. extra: 150 / 142,
  17918. bottom: 0.02
  17919. }
  17920. },
  17921. back: {
  17922. height: math.unit(7, "feet"),
  17923. weight: math.unit(150, "lb"),
  17924. name: "Back",
  17925. image: {
  17926. source: "./media/characters/ian-corvid/back.svg",
  17927. extra: 150 / 143,
  17928. bottom: 0.01
  17929. }
  17930. },
  17931. stomping: {
  17932. height: math.unit(7, "feet"),
  17933. weight: math.unit(150, "lb"),
  17934. name: "Stomping",
  17935. image: {
  17936. source: "./media/characters/ian-corvid/stomping.svg",
  17937. extra: 76 / 72
  17938. }
  17939. },
  17940. sitting: {
  17941. height: math.unit(7 / 1.8, "feet"),
  17942. weight: math.unit(150, "lb"),
  17943. name: "Sitting",
  17944. image: {
  17945. source: "./media/characters/ian-corvid/sitting.svg",
  17946. extra: 1400 / 1269,
  17947. bottom: 0.15
  17948. }
  17949. },
  17950. },
  17951. [
  17952. {
  17953. name: "Tiny Microw",
  17954. height: math.unit(1, "inch")
  17955. },
  17956. {
  17957. name: "Microw",
  17958. height: math.unit(6, "inches")
  17959. },
  17960. {
  17961. name: "Crow",
  17962. height: math.unit(7 + 1 / 12, "feet"),
  17963. default: true
  17964. },
  17965. {
  17966. name: "Macrow",
  17967. height: math.unit(176, "feet")
  17968. },
  17969. ]
  17970. ))
  17971. characterMakers.push(() => makeCharacter(
  17972. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17973. {
  17974. front: {
  17975. height: math.unit(5 + 7 / 12, "feet"),
  17976. weight: math.unit(147, "lb"),
  17977. name: "Front",
  17978. image: {
  17979. source: "./media/characters/natalie-kellon/front.svg",
  17980. extra: 1214 / 1141,
  17981. bottom: 0.02
  17982. }
  17983. },
  17984. },
  17985. [
  17986. {
  17987. name: "Micro",
  17988. height: math.unit(1 / 16, "inch")
  17989. },
  17990. {
  17991. name: "Tiny",
  17992. height: math.unit(4, "inches")
  17993. },
  17994. {
  17995. name: "Normal",
  17996. height: math.unit(5 + 7 / 12, "feet"),
  17997. default: true
  17998. },
  17999. {
  18000. name: "Amazon",
  18001. height: math.unit(12, "feet")
  18002. },
  18003. {
  18004. name: "Giantess",
  18005. height: math.unit(160, "meters")
  18006. },
  18007. {
  18008. name: "Titaness",
  18009. height: math.unit(800, "meters")
  18010. },
  18011. ]
  18012. ))
  18013. characterMakers.push(() => makeCharacter(
  18014. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18015. {
  18016. front: {
  18017. height: math.unit(6, "feet"),
  18018. weight: math.unit(150, "lb"),
  18019. name: "Front",
  18020. image: {
  18021. source: "./media/characters/alluria/front.svg",
  18022. extra: 806 / 738,
  18023. bottom: 0.01
  18024. }
  18025. },
  18026. side: {
  18027. height: math.unit(6, "feet"),
  18028. weight: math.unit(150, "lb"),
  18029. name: "Side",
  18030. image: {
  18031. source: "./media/characters/alluria/side.svg",
  18032. extra: 800 / 750,
  18033. }
  18034. },
  18035. back: {
  18036. height: math.unit(6, "feet"),
  18037. weight: math.unit(150, "lb"),
  18038. name: "Back",
  18039. image: {
  18040. source: "./media/characters/alluria/back.svg",
  18041. extra: 806 / 738,
  18042. }
  18043. },
  18044. frontMaid: {
  18045. height: math.unit(6, "feet"),
  18046. weight: math.unit(150, "lb"),
  18047. name: "Front (Maid)",
  18048. image: {
  18049. source: "./media/characters/alluria/front-maid.svg",
  18050. extra: 806 / 738,
  18051. bottom: 0.01
  18052. }
  18053. },
  18054. sideMaid: {
  18055. height: math.unit(6, "feet"),
  18056. weight: math.unit(150, "lb"),
  18057. name: "Side (Maid)",
  18058. image: {
  18059. source: "./media/characters/alluria/side-maid.svg",
  18060. extra: 800 / 750,
  18061. bottom: 0.005
  18062. }
  18063. },
  18064. backMaid: {
  18065. height: math.unit(6, "feet"),
  18066. weight: math.unit(150, "lb"),
  18067. name: "Back (Maid)",
  18068. image: {
  18069. source: "./media/characters/alluria/back-maid.svg",
  18070. extra: 806 / 738,
  18071. }
  18072. },
  18073. },
  18074. [
  18075. {
  18076. name: "Micro",
  18077. height: math.unit(6, "inches"),
  18078. default: true
  18079. },
  18080. ]
  18081. ))
  18082. characterMakers.push(() => makeCharacter(
  18083. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18084. {
  18085. front: {
  18086. height: math.unit(6, "feet"),
  18087. weight: math.unit(150, "lb"),
  18088. name: "Front",
  18089. image: {
  18090. source: "./media/characters/kyle/front.svg",
  18091. extra: 1069 / 962,
  18092. bottom: 77.228 / 1727.45
  18093. }
  18094. },
  18095. },
  18096. [
  18097. {
  18098. name: "Macro",
  18099. height: math.unit(150, "feet"),
  18100. default: true
  18101. },
  18102. ]
  18103. ))
  18104. characterMakers.push(() => makeCharacter(
  18105. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18106. {
  18107. front: {
  18108. height: math.unit(6, "feet"),
  18109. weight: math.unit(300, "lb"),
  18110. name: "Front",
  18111. image: {
  18112. source: "./media/characters/duncan/front.svg",
  18113. extra: 1650 / 1482,
  18114. bottom: 0.05
  18115. }
  18116. },
  18117. },
  18118. [
  18119. {
  18120. name: "Macro",
  18121. height: math.unit(100, "feet"),
  18122. default: true
  18123. },
  18124. ]
  18125. ))
  18126. characterMakers.push(() => makeCharacter(
  18127. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18128. {
  18129. front: {
  18130. height: math.unit(5 + 4 / 12, "feet"),
  18131. weight: math.unit(220, "lb"),
  18132. name: "Front",
  18133. image: {
  18134. source: "./media/characters/memory/front.svg",
  18135. extra: 3641 / 3545,
  18136. bottom: 0.03
  18137. }
  18138. },
  18139. back: {
  18140. height: math.unit(5 + 4 / 12, "feet"),
  18141. weight: math.unit(220, "lb"),
  18142. name: "Back",
  18143. image: {
  18144. source: "./media/characters/memory/back.svg",
  18145. extra: 3641 / 3545,
  18146. bottom: 0.025
  18147. }
  18148. },
  18149. frontSkirt: {
  18150. height: math.unit(5 + 4 / 12, "feet"),
  18151. weight: math.unit(220, "lb"),
  18152. name: "Front (Skirt)",
  18153. image: {
  18154. source: "./media/characters/memory/front-skirt.svg",
  18155. extra: 3641 / 3545,
  18156. bottom: 0.03
  18157. }
  18158. },
  18159. frontDress: {
  18160. height: math.unit(5 + 4 / 12, "feet"),
  18161. weight: math.unit(220, "lb"),
  18162. name: "Front (Dress)",
  18163. image: {
  18164. source: "./media/characters/memory/front-dress.svg",
  18165. extra: 3641 / 3545,
  18166. bottom: 0.03
  18167. }
  18168. },
  18169. },
  18170. [
  18171. {
  18172. name: "Micro",
  18173. height: math.unit(6, "inches"),
  18174. default: true
  18175. },
  18176. {
  18177. name: "Normal",
  18178. height: math.unit(5 + 4 / 12, "feet")
  18179. },
  18180. ]
  18181. ))
  18182. characterMakers.push(() => makeCharacter(
  18183. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18184. {
  18185. front: {
  18186. height: math.unit(4 + 11 / 12, "feet"),
  18187. weight: math.unit(100, "lb"),
  18188. name: "Front",
  18189. image: {
  18190. source: "./media/characters/luno/front.svg",
  18191. extra: 1535 / 1487,
  18192. bottom: 0.03
  18193. }
  18194. },
  18195. },
  18196. [
  18197. {
  18198. name: "Micro",
  18199. height: math.unit(3, "inches")
  18200. },
  18201. {
  18202. name: "Normal",
  18203. height: math.unit(4 + 11 / 12, "feet"),
  18204. default: true
  18205. },
  18206. {
  18207. name: "Macro",
  18208. height: math.unit(300, "feet")
  18209. },
  18210. {
  18211. name: "Megamacro",
  18212. height: math.unit(700, "miles")
  18213. },
  18214. ]
  18215. ))
  18216. characterMakers.push(() => makeCharacter(
  18217. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18218. {
  18219. front: {
  18220. height: math.unit(6 + 2 / 12, "feet"),
  18221. weight: math.unit(170, "lb"),
  18222. name: "Front",
  18223. image: {
  18224. source: "./media/characters/jamesy/front.svg",
  18225. extra: 440 / 382,
  18226. bottom: 0.005
  18227. }
  18228. },
  18229. },
  18230. [
  18231. {
  18232. name: "Micro",
  18233. height: math.unit(3, "inches")
  18234. },
  18235. {
  18236. name: "Normal",
  18237. height: math.unit(6 + 2 / 12, "feet"),
  18238. default: true
  18239. },
  18240. {
  18241. name: "Macro",
  18242. height: math.unit(300, "feet")
  18243. },
  18244. {
  18245. name: "Megamacro",
  18246. height: math.unit(700, "miles")
  18247. },
  18248. ]
  18249. ))
  18250. characterMakers.push(() => makeCharacter(
  18251. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18252. {
  18253. front: {
  18254. height: math.unit(6, "feet"),
  18255. weight: math.unit(160, "lb"),
  18256. name: "Front",
  18257. image: {
  18258. source: "./media/characters/mark/front.svg",
  18259. extra: 3300 / 3100,
  18260. bottom: 136.42 / 3440.47
  18261. }
  18262. },
  18263. },
  18264. [
  18265. {
  18266. name: "Macro",
  18267. height: math.unit(120, "meters")
  18268. },
  18269. {
  18270. name: "Bigger Macro",
  18271. height: math.unit(350, "meters")
  18272. },
  18273. {
  18274. name: "Megamacro",
  18275. height: math.unit(8, "km"),
  18276. default: true
  18277. },
  18278. {
  18279. name: "Continental",
  18280. height: math.unit(4550, "km")
  18281. },
  18282. {
  18283. name: "Planetary",
  18284. height: math.unit(65000, "km")
  18285. },
  18286. ]
  18287. ))
  18288. characterMakers.push(() => makeCharacter(
  18289. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18290. {
  18291. front: {
  18292. height: math.unit(6, "feet"),
  18293. weight: math.unit(400, "lb"),
  18294. name: "Front",
  18295. image: {
  18296. source: "./media/characters/mac/front.svg",
  18297. extra: 1048 / 987.7,
  18298. bottom: 60 / 1107.6,
  18299. }
  18300. },
  18301. },
  18302. [
  18303. {
  18304. name: "Macro",
  18305. height: math.unit(500, "feet"),
  18306. default: true
  18307. },
  18308. ]
  18309. ))
  18310. characterMakers.push(() => makeCharacter(
  18311. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18312. {
  18313. front: {
  18314. height: math.unit(5 + 2 / 12, "feet"),
  18315. weight: math.unit(190, "lb"),
  18316. name: "Front",
  18317. image: {
  18318. source: "./media/characters/bari/front.svg",
  18319. extra: 3156 / 2880,
  18320. bottom: 0.03
  18321. }
  18322. },
  18323. back: {
  18324. height: math.unit(5 + 2 / 12, "feet"),
  18325. weight: math.unit(190, "lb"),
  18326. name: "Back",
  18327. image: {
  18328. source: "./media/characters/bari/back.svg",
  18329. extra: 3260 / 2834,
  18330. bottom: 0.025
  18331. }
  18332. },
  18333. frontPlush: {
  18334. height: math.unit(5 + 2 / 12, "feet"),
  18335. weight: math.unit(190, "lb"),
  18336. name: "Front (Plush)",
  18337. image: {
  18338. source: "./media/characters/bari/front-plush.svg",
  18339. extra: 1112 / 1061,
  18340. bottom: 0.002
  18341. }
  18342. },
  18343. },
  18344. [
  18345. {
  18346. name: "Micro",
  18347. height: math.unit(3, "inches")
  18348. },
  18349. {
  18350. name: "Normal",
  18351. height: math.unit(5 + 2 / 12, "feet"),
  18352. default: true
  18353. },
  18354. {
  18355. name: "Macro",
  18356. height: math.unit(20, "feet")
  18357. },
  18358. ]
  18359. ))
  18360. characterMakers.push(() => makeCharacter(
  18361. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18362. {
  18363. front: {
  18364. height: math.unit(6 + 1 / 12, "feet"),
  18365. weight: math.unit(275, "lb"),
  18366. name: "Front",
  18367. image: {
  18368. source: "./media/characters/hunter-misha-raven/front.svg"
  18369. }
  18370. },
  18371. },
  18372. [
  18373. {
  18374. name: "Mortal",
  18375. height: math.unit(6 + 1 / 12, "feet")
  18376. },
  18377. {
  18378. name: "Divine",
  18379. height: math.unit(1.12134e34, "parsecs"),
  18380. default: true
  18381. },
  18382. ]
  18383. ))
  18384. characterMakers.push(() => makeCharacter(
  18385. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18386. {
  18387. front: {
  18388. height: math.unit(6 + 3 / 12, "feet"),
  18389. weight: math.unit(220, "lb"),
  18390. name: "Front",
  18391. image: {
  18392. source: "./media/characters/max-calore/front.svg",
  18393. extra: 1700 / 1648,
  18394. bottom: 0.01
  18395. }
  18396. },
  18397. back: {
  18398. height: math.unit(6 + 3 / 12, "feet"),
  18399. weight: math.unit(220, "lb"),
  18400. name: "Back",
  18401. image: {
  18402. source: "./media/characters/max-calore/back.svg",
  18403. extra: 1700 / 1648,
  18404. bottom: 0.01
  18405. }
  18406. },
  18407. },
  18408. [
  18409. {
  18410. name: "Normal",
  18411. height: math.unit(6 + 3 / 12, "feet"),
  18412. default: true
  18413. },
  18414. ]
  18415. ))
  18416. characterMakers.push(() => makeCharacter(
  18417. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18418. {
  18419. side: {
  18420. height: math.unit(2 + 8 / 12, "feet"),
  18421. weight: math.unit(99, "lb"),
  18422. name: "Side",
  18423. image: {
  18424. source: "./media/characters/aspen/side.svg",
  18425. extra: 152 / 138,
  18426. bottom: 0.032
  18427. }
  18428. },
  18429. },
  18430. [
  18431. {
  18432. name: "Normal",
  18433. height: math.unit(2 + 8 / 12, "feet"),
  18434. default: true
  18435. },
  18436. ]
  18437. ))
  18438. characterMakers.push(() => makeCharacter(
  18439. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18440. {
  18441. side: {
  18442. height: math.unit(3 + 2 / 12, "feet"),
  18443. weight: math.unit(224, "lb"),
  18444. name: "Side",
  18445. image: {
  18446. source: "./media/characters/sheila-feral-wolf/side.svg",
  18447. extra: 179 / 166,
  18448. bottom: 0.03
  18449. }
  18450. },
  18451. },
  18452. [
  18453. {
  18454. name: "Normal",
  18455. height: math.unit(3 + 2 / 12, "feet"),
  18456. default: true
  18457. },
  18458. ]
  18459. ))
  18460. characterMakers.push(() => makeCharacter(
  18461. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18462. {
  18463. side: {
  18464. height: math.unit(1 + 9 / 12, "feet"),
  18465. weight: math.unit(38, "lb"),
  18466. name: "Side",
  18467. image: {
  18468. source: "./media/characters/michelle/side.svg",
  18469. extra: 147 / 136.7,
  18470. bottom: 0.03
  18471. }
  18472. },
  18473. },
  18474. [
  18475. {
  18476. name: "Normal",
  18477. height: math.unit(1 + 9 / 12, "feet"),
  18478. default: true
  18479. },
  18480. ]
  18481. ))
  18482. characterMakers.push(() => makeCharacter(
  18483. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18484. {
  18485. front: {
  18486. height: math.unit(1.54, "feet"),
  18487. weight: math.unit(50, "lb"),
  18488. name: "Front",
  18489. image: {
  18490. source: "./media/characters/nino/front.svg"
  18491. }
  18492. },
  18493. },
  18494. [
  18495. {
  18496. name: "Normal",
  18497. height: math.unit(1.54, "feet"),
  18498. default: true
  18499. },
  18500. ]
  18501. ))
  18502. characterMakers.push(() => makeCharacter(
  18503. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18504. {
  18505. front: {
  18506. height: math.unit(1.49, "feet"),
  18507. weight: math.unit(45, "lb"),
  18508. name: "Front",
  18509. image: {
  18510. source: "./media/characters/viola/front.svg"
  18511. }
  18512. },
  18513. },
  18514. [
  18515. {
  18516. name: "Normal",
  18517. height: math.unit(1.49, "feet"),
  18518. default: true
  18519. },
  18520. ]
  18521. ))
  18522. characterMakers.push(() => makeCharacter(
  18523. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18524. {
  18525. front: {
  18526. height: math.unit(6 + 5 / 12, "feet"),
  18527. weight: math.unit(580, "lb"),
  18528. name: "Front",
  18529. image: {
  18530. source: "./media/characters/atlas/front.svg",
  18531. extra: 298.5 / 290,
  18532. bottom: 0.015
  18533. }
  18534. },
  18535. },
  18536. [
  18537. {
  18538. name: "Normal",
  18539. height: math.unit(6 + 5 / 12, "feet"),
  18540. default: true
  18541. },
  18542. ]
  18543. ))
  18544. characterMakers.push(() => makeCharacter(
  18545. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18546. {
  18547. side: {
  18548. height: math.unit(15.6, "inches"),
  18549. weight: math.unit(10, "lb"),
  18550. name: "Side",
  18551. image: {
  18552. source: "./media/characters/davy/side.svg",
  18553. extra: 200 / 170,
  18554. bottom: 0.01
  18555. }
  18556. },
  18557. },
  18558. [
  18559. {
  18560. name: "Normal",
  18561. height: math.unit(15.6, "inches"),
  18562. default: true
  18563. },
  18564. ]
  18565. ))
  18566. characterMakers.push(() => makeCharacter(
  18567. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18568. {
  18569. side: {
  18570. height: math.unit(4 + 8 / 12, "feet"),
  18571. weight: math.unit(166, "lb"),
  18572. name: "Side",
  18573. image: {
  18574. source: "./media/characters/fiona/side.svg",
  18575. extra: 232 / 220,
  18576. bottom: 0.03
  18577. }
  18578. },
  18579. },
  18580. [
  18581. {
  18582. name: "Normal",
  18583. height: math.unit(4 + 8 / 12, "feet"),
  18584. default: true
  18585. },
  18586. ]
  18587. ))
  18588. characterMakers.push(() => makeCharacter(
  18589. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18590. {
  18591. front: {
  18592. height: math.unit(26, "inches"),
  18593. weight: math.unit(35, "lb"),
  18594. name: "Front",
  18595. image: {
  18596. source: "./media/characters/lyla/front.svg",
  18597. bottom: 0.1
  18598. }
  18599. },
  18600. },
  18601. [
  18602. {
  18603. name: "Normal",
  18604. height: math.unit(3, "feet"),
  18605. default: true
  18606. },
  18607. ]
  18608. ))
  18609. characterMakers.push(() => makeCharacter(
  18610. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18611. {
  18612. side: {
  18613. height: math.unit(1.8, "feet"),
  18614. weight: math.unit(44, "lb"),
  18615. name: "Side",
  18616. image: {
  18617. source: "./media/characters/perseus/side.svg",
  18618. bottom: 0.21
  18619. }
  18620. },
  18621. },
  18622. [
  18623. {
  18624. name: "Normal",
  18625. height: math.unit(1.8, "feet"),
  18626. default: true
  18627. },
  18628. ]
  18629. ))
  18630. characterMakers.push(() => makeCharacter(
  18631. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18632. {
  18633. side: {
  18634. height: math.unit(4 + 2 / 12, "feet"),
  18635. weight: math.unit(20, "lb"),
  18636. name: "Side",
  18637. image: {
  18638. source: "./media/characters/remus/side.svg"
  18639. }
  18640. },
  18641. },
  18642. [
  18643. {
  18644. name: "Normal",
  18645. height: math.unit(4 + 2 / 12, "feet"),
  18646. default: true
  18647. },
  18648. ]
  18649. ))
  18650. characterMakers.push(() => makeCharacter(
  18651. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18652. {
  18653. front: {
  18654. height: math.unit(4 + 11 / 12, "feet"),
  18655. weight: math.unit(114, "lb"),
  18656. name: "Front",
  18657. image: {
  18658. source: "./media/characters/raf/front.svg",
  18659. extra: 1504/1339,
  18660. bottom: 26/1530
  18661. }
  18662. },
  18663. side: {
  18664. height: math.unit(4 + 11 / 12, "feet"),
  18665. weight: math.unit(114, "lb"),
  18666. name: "Side",
  18667. image: {
  18668. source: "./media/characters/raf/side.svg",
  18669. extra: 1466/1316,
  18670. bottom: 29/1495
  18671. }
  18672. },
  18673. paw: {
  18674. height: math.unit(1.45, "feet"),
  18675. name: "Paw",
  18676. image: {
  18677. source: "./media/characters/raf/paw.svg"
  18678. },
  18679. extraAttributes: {
  18680. "toeSize": {
  18681. name: "Toe Size",
  18682. power: 2,
  18683. type: "area",
  18684. base: math.unit(0.004, "m^2")
  18685. },
  18686. "padSize": {
  18687. name: "Pad Size",
  18688. power: 2,
  18689. type: "area",
  18690. base: math.unit(0.04, "m^2")
  18691. },
  18692. "footSize": {
  18693. name: "Foot Size",
  18694. power: 2,
  18695. type: "area",
  18696. base: math.unit(0.08, "m^2")
  18697. },
  18698. }
  18699. },
  18700. },
  18701. [
  18702. {
  18703. name: "Micro",
  18704. height: math.unit(2, "inches")
  18705. },
  18706. {
  18707. name: "Normal",
  18708. height: math.unit(4 + 11 / 12, "feet"),
  18709. default: true
  18710. },
  18711. {
  18712. name: "Macro",
  18713. height: math.unit(70, "feet")
  18714. },
  18715. ]
  18716. ))
  18717. characterMakers.push(() => makeCharacter(
  18718. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18719. {
  18720. front: {
  18721. height: math.unit(1.5, "meters"),
  18722. weight: math.unit(68, "kg"),
  18723. name: "Front",
  18724. image: {
  18725. source: "./media/characters/liam-einarr/front.svg",
  18726. extra: 2822 / 2666
  18727. }
  18728. },
  18729. back: {
  18730. height: math.unit(1.5, "meters"),
  18731. weight: math.unit(68, "kg"),
  18732. name: "Back",
  18733. image: {
  18734. source: "./media/characters/liam-einarr/back.svg",
  18735. extra: 2822 / 2666,
  18736. bottom: 0.015
  18737. }
  18738. },
  18739. },
  18740. [
  18741. {
  18742. name: "Normal",
  18743. height: math.unit(1.5, "meters"),
  18744. default: true
  18745. },
  18746. {
  18747. name: "Macro",
  18748. height: math.unit(150, "meters")
  18749. },
  18750. {
  18751. name: "Megamacro",
  18752. height: math.unit(35, "km")
  18753. },
  18754. ]
  18755. ))
  18756. characterMakers.push(() => makeCharacter(
  18757. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18758. {
  18759. front: {
  18760. height: math.unit(6, "feet"),
  18761. weight: math.unit(75, "kg"),
  18762. name: "Front",
  18763. image: {
  18764. source: "./media/characters/linda/front.svg",
  18765. extra: 930 / 874,
  18766. bottom: 0.004
  18767. }
  18768. },
  18769. },
  18770. [
  18771. {
  18772. name: "Normal",
  18773. height: math.unit(6, "feet"),
  18774. default: true
  18775. },
  18776. ]
  18777. ))
  18778. characterMakers.push(() => makeCharacter(
  18779. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18780. {
  18781. front: {
  18782. height: math.unit(6 + 8 / 12, "feet"),
  18783. weight: math.unit(220, "lb"),
  18784. name: "Front",
  18785. image: {
  18786. source: "./media/characters/caylex/front.svg",
  18787. extra: 821 / 772,
  18788. bottom: 0.07
  18789. }
  18790. },
  18791. back: {
  18792. height: math.unit(6 + 8 / 12, "feet"),
  18793. weight: math.unit(220, "lb"),
  18794. name: "Back",
  18795. image: {
  18796. source: "./media/characters/caylex/back.svg",
  18797. extra: 821 / 772,
  18798. bottom: 0.022
  18799. }
  18800. },
  18801. hand: {
  18802. height: math.unit(1.25, "feet"),
  18803. name: "Hand",
  18804. image: {
  18805. source: "./media/characters/caylex/hand.svg"
  18806. }
  18807. },
  18808. foot: {
  18809. height: math.unit(1.6, "feet"),
  18810. name: "Foot",
  18811. image: {
  18812. source: "./media/characters/caylex/foot.svg"
  18813. }
  18814. },
  18815. armored: {
  18816. height: math.unit(6 + 8 / 12, "feet"),
  18817. weight: math.unit(250, "lb"),
  18818. name: "Armored",
  18819. image: {
  18820. source: "./media/characters/caylex/armored.svg",
  18821. extra: 1420 / 1310,
  18822. bottom: 0.045
  18823. }
  18824. },
  18825. },
  18826. [
  18827. {
  18828. name: "Normal",
  18829. height: math.unit(6 + 8 / 12, "feet"),
  18830. default: true
  18831. },
  18832. {
  18833. name: "Normal+",
  18834. height: math.unit(12, "feet")
  18835. },
  18836. ]
  18837. ))
  18838. characterMakers.push(() => makeCharacter(
  18839. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18840. {
  18841. front: {
  18842. height: math.unit(7 + 6 / 12, "feet"),
  18843. weight: math.unit(288, "lb"),
  18844. name: "Front",
  18845. image: {
  18846. source: "./media/characters/alana/front.svg",
  18847. extra: 679 / 653,
  18848. bottom: 22.5 / 701
  18849. }
  18850. },
  18851. },
  18852. [
  18853. {
  18854. name: "Normal",
  18855. height: math.unit(7 + 6 / 12, "feet")
  18856. },
  18857. {
  18858. name: "Large",
  18859. height: math.unit(50, "feet")
  18860. },
  18861. {
  18862. name: "Macro",
  18863. height: math.unit(100, "feet"),
  18864. default: true
  18865. },
  18866. {
  18867. name: "Macro+",
  18868. height: math.unit(200, "feet")
  18869. },
  18870. ]
  18871. ))
  18872. characterMakers.push(() => makeCharacter(
  18873. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18874. {
  18875. front: {
  18876. height: math.unit(6 + 1 / 12, "feet"),
  18877. weight: math.unit(210, "lb"),
  18878. name: "Front",
  18879. image: {
  18880. source: "./media/characters/hasani/front.svg",
  18881. extra: 244 / 232,
  18882. bottom: 0.01
  18883. }
  18884. },
  18885. back: {
  18886. height: math.unit(6 + 1 / 12, "feet"),
  18887. weight: math.unit(210, "lb"),
  18888. name: "Back",
  18889. image: {
  18890. source: "./media/characters/hasani/back.svg",
  18891. extra: 244 / 232,
  18892. bottom: 0.01
  18893. }
  18894. },
  18895. },
  18896. [
  18897. {
  18898. name: "Normal",
  18899. height: math.unit(6 + 1 / 12, "feet")
  18900. },
  18901. {
  18902. name: "Macro",
  18903. height: math.unit(175, "feet"),
  18904. default: true
  18905. },
  18906. ]
  18907. ))
  18908. characterMakers.push(() => makeCharacter(
  18909. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18910. {
  18911. front: {
  18912. height: math.unit(1.82, "meters"),
  18913. weight: math.unit(140, "lb"),
  18914. name: "Front",
  18915. image: {
  18916. source: "./media/characters/nita/front.svg",
  18917. extra: 2473 / 2363,
  18918. bottom: 0.01
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Normal",
  18925. height: math.unit(1.82, "m")
  18926. },
  18927. {
  18928. name: "Macro",
  18929. height: math.unit(300, "m")
  18930. },
  18931. {
  18932. name: "Mistake Canon",
  18933. height: math.unit(0.5, "miles"),
  18934. default: true
  18935. },
  18936. {
  18937. name: "Big Mistake",
  18938. height: math.unit(13, "miles")
  18939. },
  18940. {
  18941. name: "Playing God",
  18942. height: math.unit(2450, "miles")
  18943. },
  18944. ]
  18945. ))
  18946. characterMakers.push(() => makeCharacter(
  18947. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18948. {
  18949. front: {
  18950. height: math.unit(4, "feet"),
  18951. weight: math.unit(120, "lb"),
  18952. name: "Front",
  18953. image: {
  18954. source: "./media/characters/shiriko/front.svg",
  18955. extra: 970/934,
  18956. bottom: 5/975
  18957. }
  18958. },
  18959. },
  18960. [
  18961. {
  18962. name: "Normal",
  18963. height: math.unit(4, "feet"),
  18964. default: true
  18965. },
  18966. ]
  18967. ))
  18968. characterMakers.push(() => makeCharacter(
  18969. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18970. {
  18971. front: {
  18972. height: math.unit(6, "feet"),
  18973. name: "front",
  18974. image: {
  18975. source: "./media/characters/deja/front.svg",
  18976. extra: 926 / 840,
  18977. bottom: 0.07
  18978. }
  18979. },
  18980. },
  18981. [
  18982. {
  18983. name: "Planck Length",
  18984. height: math.unit(1.6e-35, "meters")
  18985. },
  18986. {
  18987. name: "Normal",
  18988. height: math.unit(30.48, "meters"),
  18989. default: true
  18990. },
  18991. {
  18992. name: "Universal",
  18993. height: math.unit(8.8e26, "meters")
  18994. },
  18995. ]
  18996. ))
  18997. characterMakers.push(() => makeCharacter(
  18998. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18999. {
  19000. side: {
  19001. height: math.unit(8, "feet"),
  19002. weight: math.unit(6300, "lb"),
  19003. name: "Side",
  19004. image: {
  19005. source: "./media/characters/anima/side.svg",
  19006. bottom: 0.035
  19007. }
  19008. },
  19009. },
  19010. [
  19011. {
  19012. name: "Normal",
  19013. height: math.unit(8, "feet"),
  19014. default: true
  19015. },
  19016. ]
  19017. ))
  19018. characterMakers.push(() => makeCharacter(
  19019. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19020. {
  19021. front: {
  19022. height: math.unit(8, "feet"),
  19023. weight: math.unit(350, "lb"),
  19024. name: "Front",
  19025. image: {
  19026. source: "./media/characters/bianca/front.svg",
  19027. extra: 234 / 225,
  19028. bottom: 0.03
  19029. }
  19030. },
  19031. },
  19032. [
  19033. {
  19034. name: "Normal",
  19035. height: math.unit(8, "feet"),
  19036. default: true
  19037. },
  19038. ]
  19039. ))
  19040. characterMakers.push(() => makeCharacter(
  19041. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19042. {
  19043. front: {
  19044. height: math.unit(11 + 5/12, "feet"),
  19045. weight: math.unit(1200, "lb"),
  19046. name: "Front",
  19047. image: {
  19048. source: "./media/characters/adinia/front.svg",
  19049. extra: 1767/1641,
  19050. bottom: 44/1811
  19051. },
  19052. extraAttributes: {
  19053. "energyIntake": {
  19054. name: "Energy Intake",
  19055. power: 3,
  19056. type: "energy",
  19057. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19058. },
  19059. }
  19060. },
  19061. back: {
  19062. height: math.unit(11 + 5/12, "feet"),
  19063. weight: math.unit(1200, "lb"),
  19064. name: "Back",
  19065. image: {
  19066. source: "./media/characters/adinia/back.svg",
  19067. extra: 1834/1684,
  19068. bottom: 14/1848
  19069. },
  19070. extraAttributes: {
  19071. "energyIntake": {
  19072. name: "Energy Intake",
  19073. power: 3,
  19074. type: "energy",
  19075. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19076. },
  19077. }
  19078. },
  19079. maw: {
  19080. height: math.unit(3.79, "feet"),
  19081. name: "Maw",
  19082. image: {
  19083. source: "./media/characters/adinia/maw.svg"
  19084. }
  19085. },
  19086. rump: {
  19087. height: math.unit(4.6, "feet"),
  19088. name: "Rump",
  19089. image: {
  19090. source: "./media/characters/adinia/rump.svg"
  19091. }
  19092. },
  19093. },
  19094. [
  19095. {
  19096. name: "Normal",
  19097. height: math.unit(11 + 5 / 12, "feet"),
  19098. default: true
  19099. },
  19100. ]
  19101. ))
  19102. characterMakers.push(() => makeCharacter(
  19103. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19104. {
  19105. front: {
  19106. height: math.unit(3, "meters"),
  19107. weight: math.unit(200, "kg"),
  19108. name: "Front",
  19109. image: {
  19110. source: "./media/characters/lykasa/front.svg",
  19111. extra: 1076 / 976,
  19112. bottom: 0.06
  19113. }
  19114. },
  19115. },
  19116. [
  19117. {
  19118. name: "Normal",
  19119. height: math.unit(3, "meters")
  19120. },
  19121. {
  19122. name: "Kaiju",
  19123. height: math.unit(120, "meters"),
  19124. default: true
  19125. },
  19126. {
  19127. name: "Mega Kaiju",
  19128. height: math.unit(240, "km")
  19129. },
  19130. {
  19131. name: "Giga Kaiju",
  19132. height: math.unit(400, "megameters")
  19133. },
  19134. {
  19135. name: "Tera Kaiju",
  19136. height: math.unit(800, "gigameters")
  19137. },
  19138. {
  19139. name: "Kaiju Dragon Goddess",
  19140. height: math.unit(26, "zettaparsecs")
  19141. },
  19142. ]
  19143. ))
  19144. characterMakers.push(() => makeCharacter(
  19145. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19146. {
  19147. side: {
  19148. height: math.unit(283 / 124 * 6, "feet"),
  19149. weight: math.unit(35000, "lb"),
  19150. name: "Side",
  19151. image: {
  19152. source: "./media/characters/malfaren/side.svg",
  19153. extra: 1310/529,
  19154. bottom: 24/1334
  19155. }
  19156. },
  19157. front: {
  19158. height: math.unit(22.36, "feet"),
  19159. weight: math.unit(35000, "lb"),
  19160. name: "Front",
  19161. image: {
  19162. source: "./media/characters/malfaren/front.svg",
  19163. extra: 1237/1115,
  19164. bottom: 32/1269
  19165. }
  19166. },
  19167. maw: {
  19168. height: math.unit(6.9, "feet"),
  19169. name: "Maw",
  19170. image: {
  19171. source: "./media/characters/malfaren/maw.svg"
  19172. }
  19173. },
  19174. dick: {
  19175. height: math.unit(6.19, "feet"),
  19176. name: "Dick",
  19177. image: {
  19178. source: "./media/characters/malfaren/dick.svg"
  19179. }
  19180. },
  19181. eye: {
  19182. height: math.unit(0.69, "feet"),
  19183. name: "Eye",
  19184. image: {
  19185. source: "./media/characters/malfaren/eye.svg"
  19186. }
  19187. },
  19188. },
  19189. [
  19190. {
  19191. name: "Big",
  19192. height: math.unit(283 / 162 * 6, "feet"),
  19193. },
  19194. {
  19195. name: "Bigger",
  19196. height: math.unit(283 / 124 * 6, "feet")
  19197. },
  19198. {
  19199. name: "Massive",
  19200. height: math.unit(283 / 92 * 6, "feet"),
  19201. default: true
  19202. },
  19203. {
  19204. name: "👀💦",
  19205. height: math.unit(283 / 73 * 6, "feet"),
  19206. },
  19207. ]
  19208. ))
  19209. characterMakers.push(() => makeCharacter(
  19210. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19211. {
  19212. front: {
  19213. height: math.unit(1.7, "m"),
  19214. weight: math.unit(70, "kg"),
  19215. name: "Front",
  19216. image: {
  19217. source: "./media/characters/kernel/front.svg",
  19218. extra: 222 / 210,
  19219. bottom: 0.007
  19220. }
  19221. },
  19222. },
  19223. [
  19224. {
  19225. name: "Nano",
  19226. height: math.unit(17, "micrometers")
  19227. },
  19228. {
  19229. name: "Micro",
  19230. height: math.unit(1.7, "mm")
  19231. },
  19232. {
  19233. name: "Small",
  19234. height: math.unit(1.7, "cm")
  19235. },
  19236. {
  19237. name: "Normal",
  19238. height: math.unit(1.7, "m"),
  19239. default: true
  19240. },
  19241. ]
  19242. ))
  19243. characterMakers.push(() => makeCharacter(
  19244. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19245. {
  19246. front: {
  19247. height: math.unit(1.75, "meters"),
  19248. weight: math.unit(65, "kg"),
  19249. name: "Front",
  19250. image: {
  19251. source: "./media/characters/jayne-folest/front.svg",
  19252. extra: 2115 / 2007,
  19253. bottom: 0.02
  19254. }
  19255. },
  19256. back: {
  19257. height: math.unit(1.75, "meters"),
  19258. weight: math.unit(65, "kg"),
  19259. name: "Back",
  19260. image: {
  19261. source: "./media/characters/jayne-folest/back.svg",
  19262. extra: 2115 / 2007,
  19263. bottom: 0.005
  19264. }
  19265. },
  19266. frontClothed: {
  19267. height: math.unit(1.75, "meters"),
  19268. weight: math.unit(65, "kg"),
  19269. name: "Front (Clothed)",
  19270. image: {
  19271. source: "./media/characters/jayne-folest/front-clothed.svg",
  19272. extra: 2115 / 2007,
  19273. bottom: 0.035
  19274. }
  19275. },
  19276. hand: {
  19277. height: math.unit(1 / 1.260, "feet"),
  19278. name: "Hand",
  19279. image: {
  19280. source: "./media/characters/jayne-folest/hand.svg"
  19281. }
  19282. },
  19283. foot: {
  19284. height: math.unit(1 / 0.918, "feet"),
  19285. name: "Foot",
  19286. image: {
  19287. source: "./media/characters/jayne-folest/foot.svg"
  19288. }
  19289. },
  19290. },
  19291. [
  19292. {
  19293. name: "Micro",
  19294. height: math.unit(4, "cm")
  19295. },
  19296. {
  19297. name: "Normal",
  19298. height: math.unit(1.75, "meters")
  19299. },
  19300. {
  19301. name: "Macro",
  19302. height: math.unit(47.5, "meters"),
  19303. default: true
  19304. },
  19305. ]
  19306. ))
  19307. characterMakers.push(() => makeCharacter(
  19308. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19309. {
  19310. front: {
  19311. height: math.unit(180, "cm"),
  19312. weight: math.unit(70, "kg"),
  19313. name: "Front",
  19314. image: {
  19315. source: "./media/characters/algier/front.svg",
  19316. extra: 596 / 572,
  19317. bottom: 0.04
  19318. }
  19319. },
  19320. back: {
  19321. height: math.unit(180, "cm"),
  19322. weight: math.unit(70, "kg"),
  19323. name: "Back",
  19324. image: {
  19325. source: "./media/characters/algier/back.svg",
  19326. extra: 596 / 572,
  19327. bottom: 0.025
  19328. }
  19329. },
  19330. frontdressed: {
  19331. height: math.unit(180, "cm"),
  19332. weight: math.unit(150, "kg"),
  19333. name: "Front-dressed",
  19334. image: {
  19335. source: "./media/characters/algier/front-dressed.svg",
  19336. extra: 596 / 572,
  19337. bottom: 0.038
  19338. }
  19339. },
  19340. },
  19341. [
  19342. {
  19343. name: "Micro",
  19344. height: math.unit(5, "cm")
  19345. },
  19346. {
  19347. name: "Normal",
  19348. height: math.unit(180, "cm"),
  19349. default: true
  19350. },
  19351. {
  19352. name: "Macro",
  19353. height: math.unit(64, "m")
  19354. },
  19355. ]
  19356. ))
  19357. characterMakers.push(() => makeCharacter(
  19358. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19359. {
  19360. upright: {
  19361. height: math.unit(7, "feet"),
  19362. weight: math.unit(300, "lb"),
  19363. name: "Upright",
  19364. image: {
  19365. source: "./media/characters/pretzel/upright.svg",
  19366. extra: 534 / 522,
  19367. bottom: 0.065
  19368. }
  19369. },
  19370. sprawling: {
  19371. height: math.unit(3.75, "feet"),
  19372. weight: math.unit(300, "lb"),
  19373. name: "Sprawling",
  19374. image: {
  19375. source: "./media/characters/pretzel/sprawling.svg",
  19376. extra: 314 / 281,
  19377. bottom: 0.1
  19378. }
  19379. },
  19380. tongue: {
  19381. height: math.unit(2, "feet"),
  19382. name: "Tongue",
  19383. image: {
  19384. source: "./media/characters/pretzel/tongue.svg"
  19385. }
  19386. },
  19387. },
  19388. [
  19389. {
  19390. name: "Normal",
  19391. height: math.unit(7, "feet"),
  19392. default: true
  19393. },
  19394. {
  19395. name: "Oversized",
  19396. height: math.unit(15, "feet")
  19397. },
  19398. {
  19399. name: "Huge",
  19400. height: math.unit(30, "feet")
  19401. },
  19402. {
  19403. name: "Macro",
  19404. height: math.unit(250, "feet")
  19405. },
  19406. ]
  19407. ))
  19408. characterMakers.push(() => makeCharacter(
  19409. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19410. {
  19411. sideFront: {
  19412. height: math.unit(5 + 2 / 12, "feet"),
  19413. weight: math.unit(120, "lb"),
  19414. name: "Front Side",
  19415. image: {
  19416. source: "./media/characters/roxi/side-front.svg",
  19417. extra: 2924 / 2717,
  19418. bottom: 0.08
  19419. }
  19420. },
  19421. sideBack: {
  19422. height: math.unit(5 + 2 / 12, "feet"),
  19423. weight: math.unit(120, "lb"),
  19424. name: "Back Side",
  19425. image: {
  19426. source: "./media/characters/roxi/side-back.svg",
  19427. extra: 2904 / 2693,
  19428. bottom: 0.06
  19429. }
  19430. },
  19431. front: {
  19432. height: math.unit(5 + 2 / 12, "feet"),
  19433. weight: math.unit(120, "lb"),
  19434. name: "Front",
  19435. image: {
  19436. source: "./media/characters/roxi/front.svg",
  19437. extra: 2028 / 1907,
  19438. bottom: 0.01
  19439. }
  19440. },
  19441. frontAlt: {
  19442. height: math.unit(5 + 2 / 12, "feet"),
  19443. weight: math.unit(120, "lb"),
  19444. name: "Front (Alt)",
  19445. image: {
  19446. source: "./media/characters/roxi/front-alt.svg",
  19447. extra: 1828 / 1798,
  19448. bottom: 0.01
  19449. }
  19450. },
  19451. sitting: {
  19452. height: math.unit(2.8, "feet"),
  19453. weight: math.unit(120, "lb"),
  19454. name: "Sitting",
  19455. image: {
  19456. source: "./media/characters/roxi/sitting.svg",
  19457. extra: 2660 / 2462,
  19458. bottom: 0.1
  19459. }
  19460. },
  19461. },
  19462. [
  19463. {
  19464. name: "Normal",
  19465. height: math.unit(5 + 2 / 12, "feet"),
  19466. default: true
  19467. },
  19468. ]
  19469. ))
  19470. characterMakers.push(() => makeCharacter(
  19471. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19472. {
  19473. side: {
  19474. height: math.unit(55, "feet"),
  19475. weight: math.unit(153, "tons"),
  19476. name: "Side",
  19477. image: {
  19478. source: "./media/characters/shadow/side.svg",
  19479. extra: 701 / 628,
  19480. bottom: 0.02
  19481. }
  19482. },
  19483. flying: {
  19484. height: math.unit(145, "feet"),
  19485. weight: math.unit(153, "tons"),
  19486. name: "Flying",
  19487. image: {
  19488. source: "./media/characters/shadow/flying.svg"
  19489. }
  19490. },
  19491. },
  19492. [
  19493. {
  19494. name: "Normal",
  19495. height: math.unit(55, "feet"),
  19496. default: true
  19497. },
  19498. ]
  19499. ))
  19500. characterMakers.push(() => makeCharacter(
  19501. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19502. {
  19503. front: {
  19504. height: math.unit(6, "feet"),
  19505. weight: math.unit(200, "lb"),
  19506. name: "Front",
  19507. image: {
  19508. source: "./media/characters/marcie/front.svg",
  19509. extra: 960 / 876,
  19510. bottom: 58 / 1017.87
  19511. }
  19512. },
  19513. },
  19514. [
  19515. {
  19516. name: "Macro",
  19517. height: math.unit(1, "mile"),
  19518. default: true
  19519. },
  19520. ]
  19521. ))
  19522. characterMakers.push(() => makeCharacter(
  19523. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19524. {
  19525. front: {
  19526. height: math.unit(7, "feet"),
  19527. weight: math.unit(200, "lb"),
  19528. name: "Front",
  19529. image: {
  19530. source: "./media/characters/kachina/front.svg",
  19531. extra: 1290.68 / 1119,
  19532. bottom: 36.5 / 1327.18
  19533. }
  19534. },
  19535. },
  19536. [
  19537. {
  19538. name: "Normal",
  19539. height: math.unit(7, "feet"),
  19540. default: true
  19541. },
  19542. ]
  19543. ))
  19544. characterMakers.push(() => makeCharacter(
  19545. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19546. {
  19547. looking: {
  19548. height: math.unit(2, "meters"),
  19549. weight: math.unit(300, "kg"),
  19550. name: "Looking",
  19551. image: {
  19552. source: "./media/characters/kash/looking.svg",
  19553. extra: 474 / 344,
  19554. bottom: 0.03
  19555. }
  19556. },
  19557. side: {
  19558. height: math.unit(2, "meters"),
  19559. weight: math.unit(300, "kg"),
  19560. name: "Side",
  19561. image: {
  19562. source: "./media/characters/kash/side.svg",
  19563. extra: 302 / 251,
  19564. bottom: 0.03
  19565. }
  19566. },
  19567. front: {
  19568. height: math.unit(2, "meters"),
  19569. weight: math.unit(300, "kg"),
  19570. name: "Front",
  19571. image: {
  19572. source: "./media/characters/kash/front.svg",
  19573. extra: 495 / 360,
  19574. bottom: 0.015
  19575. }
  19576. },
  19577. },
  19578. [
  19579. {
  19580. name: "Normal",
  19581. height: math.unit(2, "meters"),
  19582. default: true
  19583. },
  19584. {
  19585. name: "Big",
  19586. height: math.unit(3, "meters")
  19587. },
  19588. {
  19589. name: "Large",
  19590. height: math.unit(5, "meters")
  19591. },
  19592. ]
  19593. ))
  19594. characterMakers.push(() => makeCharacter(
  19595. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19596. {
  19597. feeding: {
  19598. height: math.unit(6.7, "feet"),
  19599. weight: math.unit(350, "lb"),
  19600. name: "Feeding",
  19601. image: {
  19602. source: "./media/characters/lalim/feeding.svg",
  19603. }
  19604. },
  19605. },
  19606. [
  19607. {
  19608. name: "Normal",
  19609. height: math.unit(6.7, "feet"),
  19610. default: true
  19611. },
  19612. ]
  19613. ))
  19614. characterMakers.push(() => makeCharacter(
  19615. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19616. {
  19617. front: {
  19618. height: math.unit(9.5, "feet"),
  19619. weight: math.unit(600, "lb"),
  19620. name: "Front",
  19621. image: {
  19622. source: "./media/characters/de'vout/front.svg",
  19623. extra: 1443 / 1328,
  19624. bottom: 0.025
  19625. }
  19626. },
  19627. back: {
  19628. height: math.unit(9.5, "feet"),
  19629. weight: math.unit(600, "lb"),
  19630. name: "Back",
  19631. image: {
  19632. source: "./media/characters/de'vout/back.svg",
  19633. extra: 1443 / 1328
  19634. }
  19635. },
  19636. frontDressed: {
  19637. height: math.unit(9.5, "feet"),
  19638. weight: math.unit(600, "lb"),
  19639. name: "Front (Dressed",
  19640. image: {
  19641. source: "./media/characters/de'vout/front-dressed.svg",
  19642. extra: 1443 / 1328,
  19643. bottom: 0.025
  19644. }
  19645. },
  19646. backDressed: {
  19647. height: math.unit(9.5, "feet"),
  19648. weight: math.unit(600, "lb"),
  19649. name: "Back (Dressed",
  19650. image: {
  19651. source: "./media/characters/de'vout/back-dressed.svg",
  19652. extra: 1443 / 1328
  19653. }
  19654. },
  19655. },
  19656. [
  19657. {
  19658. name: "Normal",
  19659. height: math.unit(9.5, "feet"),
  19660. default: true
  19661. },
  19662. ]
  19663. ))
  19664. characterMakers.push(() => makeCharacter(
  19665. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19666. {
  19667. front: {
  19668. height: math.unit(8, "feet"),
  19669. weight: math.unit(225, "lb"),
  19670. name: "Front",
  19671. image: {
  19672. source: "./media/characters/talana/front.svg",
  19673. extra: 1410 / 1300,
  19674. bottom: 0.015
  19675. }
  19676. },
  19677. frontDressed: {
  19678. height: math.unit(8, "feet"),
  19679. weight: math.unit(225, "lb"),
  19680. name: "Front (Dressed",
  19681. image: {
  19682. source: "./media/characters/talana/front-dressed.svg",
  19683. extra: 1410 / 1300,
  19684. bottom: 0.015
  19685. }
  19686. },
  19687. },
  19688. [
  19689. {
  19690. name: "Normal",
  19691. height: math.unit(8, "feet"),
  19692. default: true
  19693. },
  19694. ]
  19695. ))
  19696. characterMakers.push(() => makeCharacter(
  19697. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19698. {
  19699. side: {
  19700. height: math.unit(7.2, "feet"),
  19701. weight: math.unit(150, "lb"),
  19702. name: "Side",
  19703. image: {
  19704. source: "./media/characters/xeauvok/side.svg",
  19705. extra: 1975 / 1523,
  19706. bottom: 0.07
  19707. }
  19708. },
  19709. },
  19710. [
  19711. {
  19712. name: "Normal",
  19713. height: math.unit(7.2, "feet"),
  19714. default: true
  19715. },
  19716. ]
  19717. ))
  19718. characterMakers.push(() => makeCharacter(
  19719. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19720. {
  19721. side: {
  19722. height: math.unit(4, "meters"),
  19723. weight: math.unit(2200, "kg"),
  19724. name: "Side",
  19725. image: {
  19726. source: "./media/characters/zara/side.svg",
  19727. extra: 765/744,
  19728. bottom: 156/921
  19729. }
  19730. },
  19731. },
  19732. [
  19733. {
  19734. name: "Normal",
  19735. height: math.unit(4, "meters"),
  19736. default: true
  19737. },
  19738. ]
  19739. ))
  19740. characterMakers.push(() => makeCharacter(
  19741. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19742. {
  19743. side: {
  19744. height: math.unit(6, "feet"),
  19745. weight: math.unit(150, "lb"),
  19746. name: "Side",
  19747. image: {
  19748. source: "./media/characters/richard-dragon/side.svg",
  19749. extra: 845 / 340,
  19750. bottom: 0.017
  19751. }
  19752. },
  19753. maw: {
  19754. height: math.unit(2.97, "feet"),
  19755. name: "Maw",
  19756. image: {
  19757. source: "./media/characters/richard-dragon/maw.svg"
  19758. }
  19759. },
  19760. },
  19761. [
  19762. ]
  19763. ))
  19764. characterMakers.push(() => makeCharacter(
  19765. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19766. {
  19767. front: {
  19768. height: math.unit(4, "feet"),
  19769. weight: math.unit(100, "lb"),
  19770. name: "Front",
  19771. image: {
  19772. source: "./media/characters/richard-smeargle/front.svg",
  19773. extra: 2952 / 2820,
  19774. bottom: 0.028
  19775. }
  19776. },
  19777. },
  19778. [
  19779. {
  19780. name: "Normal",
  19781. height: math.unit(4, "feet"),
  19782. default: true
  19783. },
  19784. {
  19785. name: "Dynamax",
  19786. height: math.unit(20, "meters")
  19787. },
  19788. ]
  19789. ))
  19790. characterMakers.push(() => makeCharacter(
  19791. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19792. {
  19793. front: {
  19794. height: math.unit(6, "feet"),
  19795. weight: math.unit(110, "lb"),
  19796. name: "Front",
  19797. image: {
  19798. source: "./media/characters/klay/front.svg",
  19799. extra: 962 / 883,
  19800. bottom: 0.04
  19801. }
  19802. },
  19803. back: {
  19804. height: math.unit(6, "feet"),
  19805. weight: math.unit(110, "lb"),
  19806. name: "Back",
  19807. image: {
  19808. source: "./media/characters/klay/back.svg",
  19809. extra: 962 / 883
  19810. }
  19811. },
  19812. beans: {
  19813. height: math.unit(1.15, "feet"),
  19814. name: "Beans",
  19815. image: {
  19816. source: "./media/characters/klay/beans.svg"
  19817. }
  19818. },
  19819. },
  19820. [
  19821. {
  19822. name: "Micro",
  19823. height: math.unit(6, "inches")
  19824. },
  19825. {
  19826. name: "Mini",
  19827. height: math.unit(3, "feet")
  19828. },
  19829. {
  19830. name: "Normal",
  19831. height: math.unit(6, "feet"),
  19832. default: true
  19833. },
  19834. {
  19835. name: "Big",
  19836. height: math.unit(25, "feet")
  19837. },
  19838. {
  19839. name: "Macro",
  19840. height: math.unit(100, "feet")
  19841. },
  19842. {
  19843. name: "Megamacro",
  19844. height: math.unit(400, "feet")
  19845. },
  19846. ]
  19847. ))
  19848. characterMakers.push(() => makeCharacter(
  19849. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19850. {
  19851. front: {
  19852. height: math.unit(6, "feet"),
  19853. weight: math.unit(160, "lb"),
  19854. name: "Front",
  19855. image: {
  19856. source: "./media/characters/marcus/front.svg",
  19857. extra: 734 / 676,
  19858. bottom: 0.03
  19859. }
  19860. },
  19861. },
  19862. [
  19863. {
  19864. name: "Little",
  19865. height: math.unit(6, "feet")
  19866. },
  19867. {
  19868. name: "Normal",
  19869. height: math.unit(110, "feet"),
  19870. default: true
  19871. },
  19872. {
  19873. name: "Macro",
  19874. height: math.unit(250, "feet")
  19875. },
  19876. {
  19877. name: "Megamacro",
  19878. height: math.unit(1000, "feet")
  19879. },
  19880. ]
  19881. ))
  19882. characterMakers.push(() => makeCharacter(
  19883. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19884. {
  19885. front: {
  19886. height: math.unit(7, "feet"),
  19887. weight: math.unit(275, "lb"),
  19888. name: "Front",
  19889. image: {
  19890. source: "./media/characters/claude-delroute/front.svg",
  19891. extra: 902/827,
  19892. bottom: 26/928
  19893. }
  19894. },
  19895. side: {
  19896. height: math.unit(7, "feet"),
  19897. weight: math.unit(275, "lb"),
  19898. name: "Side",
  19899. image: {
  19900. source: "./media/characters/claude-delroute/side.svg",
  19901. extra: 908/853,
  19902. bottom: 16/924
  19903. }
  19904. },
  19905. back: {
  19906. height: math.unit(7, "feet"),
  19907. weight: math.unit(275, "lb"),
  19908. name: "Back",
  19909. image: {
  19910. source: "./media/characters/claude-delroute/back.svg",
  19911. extra: 911/829,
  19912. bottom: 18/929
  19913. }
  19914. },
  19915. maw: {
  19916. height: math.unit(0.6407, "meters"),
  19917. name: "Maw",
  19918. image: {
  19919. source: "./media/characters/claude-delroute/maw.svg"
  19920. }
  19921. },
  19922. },
  19923. [
  19924. {
  19925. name: "Normal",
  19926. height: math.unit(7, "feet"),
  19927. default: true
  19928. },
  19929. {
  19930. name: "Lorge",
  19931. height: math.unit(20, "feet")
  19932. },
  19933. ]
  19934. ))
  19935. characterMakers.push(() => makeCharacter(
  19936. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19937. {
  19938. front: {
  19939. height: math.unit(8 + 4 / 12, "feet"),
  19940. weight: math.unit(600, "lb"),
  19941. name: "Front",
  19942. image: {
  19943. source: "./media/characters/dragonien/front.svg",
  19944. extra: 100 / 94,
  19945. bottom: 3.3 / 103.3445
  19946. }
  19947. },
  19948. back: {
  19949. height: math.unit(8 + 4 / 12, "feet"),
  19950. weight: math.unit(600, "lb"),
  19951. name: "Back",
  19952. image: {
  19953. source: "./media/characters/dragonien/back.svg",
  19954. extra: 776 / 746,
  19955. bottom: 6.4 / 782.0616
  19956. }
  19957. },
  19958. foot: {
  19959. height: math.unit(1.54, "feet"),
  19960. name: "Foot",
  19961. image: {
  19962. source: "./media/characters/dragonien/foot.svg",
  19963. }
  19964. },
  19965. },
  19966. [
  19967. {
  19968. name: "Normal",
  19969. height: math.unit(8 + 4 / 12, "feet"),
  19970. default: true
  19971. },
  19972. {
  19973. name: "Macro",
  19974. height: math.unit(200, "feet")
  19975. },
  19976. {
  19977. name: "Megamacro",
  19978. height: math.unit(1, "mile")
  19979. },
  19980. {
  19981. name: "Gigamacro",
  19982. height: math.unit(1000, "miles")
  19983. },
  19984. ]
  19985. ))
  19986. characterMakers.push(() => makeCharacter(
  19987. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19988. {
  19989. front: {
  19990. height: math.unit(5 + 2 / 12, "feet"),
  19991. weight: math.unit(110, "lb"),
  19992. name: "Front",
  19993. image: {
  19994. source: "./media/characters/desta/front.svg",
  19995. extra: 767 / 726,
  19996. bottom: 11.7 / 779
  19997. }
  19998. },
  19999. back: {
  20000. height: math.unit(5 + 2 / 12, "feet"),
  20001. weight: math.unit(110, "lb"),
  20002. name: "Back",
  20003. image: {
  20004. source: "./media/characters/desta/back.svg",
  20005. extra: 777 / 728,
  20006. bottom: 6 / 784
  20007. }
  20008. },
  20009. frontAlt: {
  20010. height: math.unit(5 + 2 / 12, "feet"),
  20011. weight: math.unit(110, "lb"),
  20012. name: "Front",
  20013. image: {
  20014. source: "./media/characters/desta/front-alt.svg",
  20015. extra: 1482 / 1417
  20016. }
  20017. },
  20018. side: {
  20019. height: math.unit(5 + 2 / 12, "feet"),
  20020. weight: math.unit(110, "lb"),
  20021. name: "Side",
  20022. image: {
  20023. source: "./media/characters/desta/side.svg",
  20024. extra: 2579 / 2491,
  20025. bottom: 0.053
  20026. }
  20027. },
  20028. },
  20029. [
  20030. {
  20031. name: "Micro",
  20032. height: math.unit(6, "inches")
  20033. },
  20034. {
  20035. name: "Normal",
  20036. height: math.unit(5 + 2 / 12, "feet"),
  20037. default: true
  20038. },
  20039. {
  20040. name: "Macro",
  20041. height: math.unit(62, "feet")
  20042. },
  20043. {
  20044. name: "Megamacro",
  20045. height: math.unit(1800, "feet")
  20046. },
  20047. ]
  20048. ))
  20049. characterMakers.push(() => makeCharacter(
  20050. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20051. {
  20052. front: {
  20053. height: math.unit(10, "feet"),
  20054. weight: math.unit(700, "lb"),
  20055. name: "Front",
  20056. image: {
  20057. source: "./media/characters/storm-alystar/front.svg",
  20058. extra: 2112 / 1898,
  20059. bottom: 0.034
  20060. }
  20061. },
  20062. },
  20063. [
  20064. {
  20065. name: "Micro",
  20066. height: math.unit(3.5, "inches")
  20067. },
  20068. {
  20069. name: "Normal",
  20070. height: math.unit(10, "feet"),
  20071. default: true
  20072. },
  20073. {
  20074. name: "Macro",
  20075. height: math.unit(400, "feet")
  20076. },
  20077. {
  20078. name: "Deific",
  20079. height: math.unit(60, "miles")
  20080. },
  20081. ]
  20082. ))
  20083. characterMakers.push(() => makeCharacter(
  20084. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20085. {
  20086. front: {
  20087. height: math.unit(2.35, "meters"),
  20088. weight: math.unit(119, "kg"),
  20089. name: "Front",
  20090. image: {
  20091. source: "./media/characters/ilia/front.svg",
  20092. extra: 1285 / 1255,
  20093. bottom: 0.06
  20094. }
  20095. },
  20096. },
  20097. [
  20098. {
  20099. name: "Normal",
  20100. height: math.unit(2.35, "meters")
  20101. },
  20102. {
  20103. name: "Macro",
  20104. height: math.unit(140, "meters"),
  20105. default: true
  20106. },
  20107. {
  20108. name: "Megamacro",
  20109. height: math.unit(100, "miles")
  20110. },
  20111. ]
  20112. ))
  20113. characterMakers.push(() => makeCharacter(
  20114. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20115. {
  20116. front: {
  20117. height: math.unit(6 + 5 / 12, "feet"),
  20118. weight: math.unit(190, "lb"),
  20119. name: "Front",
  20120. image: {
  20121. source: "./media/characters/kingdead/front.svg",
  20122. extra: 1228 / 1177
  20123. }
  20124. },
  20125. },
  20126. [
  20127. {
  20128. name: "Micro",
  20129. height: math.unit(7, "inches")
  20130. },
  20131. {
  20132. name: "Normal",
  20133. height: math.unit(6 + 5 / 12, "feet")
  20134. },
  20135. {
  20136. name: "Macro",
  20137. height: math.unit(150, "feet"),
  20138. default: true
  20139. },
  20140. {
  20141. name: "Megamacro",
  20142. height: math.unit(200, "miles")
  20143. },
  20144. ]
  20145. ))
  20146. characterMakers.push(() => makeCharacter(
  20147. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20148. {
  20149. front: {
  20150. height: math.unit(8, "feet"),
  20151. weight: math.unit(600, "lb"),
  20152. name: "Front",
  20153. image: {
  20154. source: "./media/characters/kyrehx/front.svg",
  20155. extra: 1195 / 1095,
  20156. bottom: 0.034
  20157. }
  20158. },
  20159. },
  20160. [
  20161. {
  20162. name: "Micro",
  20163. height: math.unit(2, "inches")
  20164. },
  20165. {
  20166. name: "Normal",
  20167. height: math.unit(8, "feet"),
  20168. default: true
  20169. },
  20170. {
  20171. name: "Macro",
  20172. height: math.unit(255, "feet")
  20173. },
  20174. ]
  20175. ))
  20176. characterMakers.push(() => makeCharacter(
  20177. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20178. {
  20179. front: {
  20180. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20181. weight: math.unit(184, "lb"),
  20182. name: "Front",
  20183. image: {
  20184. source: "./media/characters/xang/front.svg",
  20185. extra: 845 / 755
  20186. }
  20187. },
  20188. },
  20189. [
  20190. {
  20191. name: "Normal",
  20192. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20193. default: true
  20194. },
  20195. {
  20196. name: "Macro",
  20197. height: math.unit(0.935 * 146, "feet")
  20198. },
  20199. {
  20200. name: "Megamacro",
  20201. height: math.unit(0.935 * 3, "miles")
  20202. },
  20203. ]
  20204. ))
  20205. characterMakers.push(() => makeCharacter(
  20206. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20207. {
  20208. frontDressed: {
  20209. height: math.unit(5 + 7 / 12, "feet"),
  20210. weight: math.unit(140, "lb"),
  20211. name: "Front (Dressed)",
  20212. image: {
  20213. source: "./media/characters/doc-weardno/front-dressed.svg",
  20214. extra: 263 / 234
  20215. }
  20216. },
  20217. backDressed: {
  20218. height: math.unit(5 + 7 / 12, "feet"),
  20219. weight: math.unit(140, "lb"),
  20220. name: "Back (Dressed)",
  20221. image: {
  20222. source: "./media/characters/doc-weardno/back-dressed.svg",
  20223. extra: 266 / 238
  20224. }
  20225. },
  20226. front: {
  20227. height: math.unit(5 + 7 / 12, "feet"),
  20228. weight: math.unit(140, "lb"),
  20229. name: "Front",
  20230. image: {
  20231. source: "./media/characters/doc-weardno/front.svg",
  20232. extra: 254 / 233
  20233. }
  20234. },
  20235. },
  20236. [
  20237. {
  20238. name: "Micro",
  20239. height: math.unit(3, "inches")
  20240. },
  20241. {
  20242. name: "Normal",
  20243. height: math.unit(5 + 7 / 12, "feet"),
  20244. default: true
  20245. },
  20246. {
  20247. name: "Macro",
  20248. height: math.unit(25, "feet")
  20249. },
  20250. {
  20251. name: "Megamacro",
  20252. height: math.unit(2, "miles")
  20253. },
  20254. ]
  20255. ))
  20256. characterMakers.push(() => makeCharacter(
  20257. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20258. {
  20259. front: {
  20260. height: math.unit(6 + 2 / 12, "feet"),
  20261. weight: math.unit(153, "lb"),
  20262. name: "Front",
  20263. image: {
  20264. source: "./media/characters/seth-whilst/front.svg",
  20265. bottom: 0.07
  20266. }
  20267. },
  20268. },
  20269. [
  20270. {
  20271. name: "Micro",
  20272. height: math.unit(5, "inches")
  20273. },
  20274. {
  20275. name: "Normal",
  20276. height: math.unit(6 + 2 / 12, "feet"),
  20277. default: true
  20278. },
  20279. ]
  20280. ))
  20281. characterMakers.push(() => makeCharacter(
  20282. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20283. {
  20284. front: {
  20285. height: math.unit(3, "inches"),
  20286. weight: math.unit(8, "grams"),
  20287. name: "Front",
  20288. image: {
  20289. source: "./media/characters/pocket-jabari/front.svg",
  20290. extra: 1024 / 974,
  20291. bottom: 0.039
  20292. }
  20293. },
  20294. },
  20295. [
  20296. {
  20297. name: "Minimicro",
  20298. height: math.unit(8, "mm")
  20299. },
  20300. {
  20301. name: "Micro",
  20302. height: math.unit(3, "inches"),
  20303. default: true
  20304. },
  20305. {
  20306. name: "Normal",
  20307. height: math.unit(3, "feet")
  20308. },
  20309. ]
  20310. ))
  20311. characterMakers.push(() => makeCharacter(
  20312. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20313. {
  20314. frontDressed: {
  20315. height: math.unit(15, "feet"),
  20316. weight: math.unit(3280, "lb"),
  20317. name: "Front (Dressed)",
  20318. image: {
  20319. source: "./media/characters/sapphy/front-dressed.svg",
  20320. extra: 1951/1654,
  20321. bottom: 194/2145
  20322. },
  20323. form: "anthro",
  20324. default: true
  20325. },
  20326. backDressed: {
  20327. height: math.unit(15, "feet"),
  20328. weight: math.unit(3280, "lb"),
  20329. name: "Back (Dressed)",
  20330. image: {
  20331. source: "./media/characters/sapphy/back-dressed.svg",
  20332. extra: 2058/1918,
  20333. bottom: 125/2183
  20334. },
  20335. form: "anthro"
  20336. },
  20337. frontNude: {
  20338. height: math.unit(15, "feet"),
  20339. weight: math.unit(3280, "lb"),
  20340. name: "Front (Nude)",
  20341. image: {
  20342. source: "./media/characters/sapphy/front-nude.svg",
  20343. extra: 1951/1654,
  20344. bottom: 194/2145
  20345. },
  20346. form: "anthro"
  20347. },
  20348. backNude: {
  20349. height: math.unit(15, "feet"),
  20350. weight: math.unit(3280, "lb"),
  20351. name: "Back (Nude)",
  20352. image: {
  20353. source: "./media/characters/sapphy/back-nude.svg",
  20354. extra: 2058/1918,
  20355. bottom: 125/2183
  20356. },
  20357. form: "anthro"
  20358. },
  20359. full: {
  20360. height: math.unit(15, "feet"),
  20361. weight: math.unit(3280, "lb"),
  20362. name: "Full",
  20363. image: {
  20364. source: "./media/characters/sapphy/full.svg",
  20365. extra: 1396/1317,
  20366. bottom: 44/1440
  20367. },
  20368. form: "anthro"
  20369. },
  20370. dick: {
  20371. height: math.unit(3.8, "feet"),
  20372. name: "Dick",
  20373. image: {
  20374. source: "./media/characters/sapphy/dick.svg"
  20375. },
  20376. form: "anthro"
  20377. },
  20378. feral: {
  20379. height: math.unit(35, "feet"),
  20380. weight: math.unit(160, "tons"),
  20381. name: "Feral",
  20382. image: {
  20383. source: "./media/characters/sapphy/feral.svg",
  20384. extra: 1050/573,
  20385. bottom: 60/1110
  20386. },
  20387. form: "feral",
  20388. default: true
  20389. },
  20390. },
  20391. [
  20392. {
  20393. name: "Normal",
  20394. height: math.unit(15, "feet"),
  20395. form: "anthro"
  20396. },
  20397. {
  20398. name: "Casual Macro",
  20399. height: math.unit(120, "feet"),
  20400. form: "anthro"
  20401. },
  20402. {
  20403. name: "Macro",
  20404. height: math.unit(2150, "feet"),
  20405. default: true,
  20406. form: "anthro"
  20407. },
  20408. {
  20409. name: "Megamacro",
  20410. height: math.unit(8, "miles"),
  20411. form: "anthro"
  20412. },
  20413. {
  20414. name: "Galaxy Mom",
  20415. height: math.unit(6, "megalightyears"),
  20416. form: "anthro"
  20417. },
  20418. {
  20419. name: "Normal",
  20420. height: math.unit(35, "feet"),
  20421. form: "feral",
  20422. default: true
  20423. },
  20424. {
  20425. name: "Macro",
  20426. height: math.unit(300, "feet"),
  20427. form: "feral"
  20428. },
  20429. {
  20430. name: "Galaxy Mom",
  20431. height: math.unit(10, "megalightyears"),
  20432. form: "feral"
  20433. },
  20434. ],
  20435. {
  20436. "anthro": {
  20437. name: "Anthro",
  20438. default: true
  20439. },
  20440. "feral": {
  20441. name: "Feral"
  20442. }
  20443. }
  20444. ))
  20445. characterMakers.push(() => makeCharacter(
  20446. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20447. {
  20448. hyenaFront: {
  20449. height: math.unit(6, "feet"),
  20450. weight: math.unit(190, "lb"),
  20451. name: "Front",
  20452. image: {
  20453. source: "./media/characters/kiro/hyena-front.svg",
  20454. extra: 927/839,
  20455. bottom: 91/1018
  20456. },
  20457. form: "hyena",
  20458. default: true
  20459. },
  20460. front: {
  20461. height: math.unit(6, "feet"),
  20462. weight: math.unit(170, "lb"),
  20463. name: "Front",
  20464. image: {
  20465. source: "./media/characters/kiro/front.svg",
  20466. extra: 1064 / 1012,
  20467. bottom: 0.052
  20468. },
  20469. form: "folf",
  20470. default: true
  20471. },
  20472. },
  20473. [
  20474. {
  20475. name: "Micro",
  20476. height: math.unit(6, "inches"),
  20477. form: "folf"
  20478. },
  20479. {
  20480. name: "Normal",
  20481. height: math.unit(6, "feet"),
  20482. form: "folf",
  20483. default: true
  20484. },
  20485. {
  20486. name: "Macro",
  20487. height: math.unit(72, "feet"),
  20488. form: "folf"
  20489. },
  20490. {
  20491. name: "Micro",
  20492. height: math.unit(6, "inches"),
  20493. form: "hyena"
  20494. },
  20495. {
  20496. name: "Normal",
  20497. height: math.unit(6, "feet"),
  20498. form: "hyena",
  20499. default: true
  20500. },
  20501. {
  20502. name: "Macro",
  20503. height: math.unit(72, "feet"),
  20504. form: "hyena"
  20505. },
  20506. ],
  20507. {
  20508. "hyena": {
  20509. name: "Hyena",
  20510. default: true
  20511. },
  20512. "folf": {
  20513. name: "Folf",
  20514. },
  20515. }
  20516. ))
  20517. characterMakers.push(() => makeCharacter(
  20518. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20519. {
  20520. front: {
  20521. height: math.unit(5 + 9 / 12, "feet"),
  20522. weight: math.unit(175, "lb"),
  20523. name: "Front",
  20524. image: {
  20525. source: "./media/characters/irishfox/front.svg",
  20526. extra: 1912 / 1680,
  20527. bottom: 0.02
  20528. }
  20529. },
  20530. },
  20531. [
  20532. {
  20533. name: "Nano",
  20534. height: math.unit(1, "mm")
  20535. },
  20536. {
  20537. name: "Micro",
  20538. height: math.unit(2, "inches")
  20539. },
  20540. {
  20541. name: "Normal",
  20542. height: math.unit(5 + 9 / 12, "feet"),
  20543. default: true
  20544. },
  20545. {
  20546. name: "Macro",
  20547. height: math.unit(45, "feet")
  20548. },
  20549. ]
  20550. ))
  20551. characterMakers.push(() => makeCharacter(
  20552. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20553. {
  20554. front: {
  20555. height: math.unit(6 + 1 / 12, "feet"),
  20556. weight: math.unit(75, "lb"),
  20557. name: "Front",
  20558. image: {
  20559. source: "./media/characters/aronai-sieyes/front.svg",
  20560. extra: 1532/1450,
  20561. bottom: 42/1574
  20562. }
  20563. },
  20564. side: {
  20565. height: math.unit(6 + 1 / 12, "feet"),
  20566. weight: math.unit(75, "lb"),
  20567. name: "Side",
  20568. image: {
  20569. source: "./media/characters/aronai-sieyes/side.svg",
  20570. extra: 1422/1365,
  20571. bottom: 148/1570
  20572. }
  20573. },
  20574. back: {
  20575. height: math.unit(6 + 1 / 12, "feet"),
  20576. weight: math.unit(75, "lb"),
  20577. name: "Back",
  20578. image: {
  20579. source: "./media/characters/aronai-sieyes/back.svg",
  20580. extra: 1526/1464,
  20581. bottom: 51/1577
  20582. }
  20583. },
  20584. dressed: {
  20585. height: math.unit(6 + 1 / 12, "feet"),
  20586. weight: math.unit(75, "lb"),
  20587. name: "Dressed",
  20588. image: {
  20589. source: "./media/characters/aronai-sieyes/dressed.svg",
  20590. extra: 1559/1483,
  20591. bottom: 39/1598
  20592. }
  20593. },
  20594. slit: {
  20595. height: math.unit(1.3, "feet"),
  20596. name: "Slit",
  20597. image: {
  20598. source: "./media/characters/aronai-sieyes/slit.svg"
  20599. }
  20600. },
  20601. slitSpread: {
  20602. height: math.unit(0.9, "feet"),
  20603. name: "Slit (Spread)",
  20604. image: {
  20605. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20606. }
  20607. },
  20608. rump: {
  20609. height: math.unit(1.3, "feet"),
  20610. name: "Rump",
  20611. image: {
  20612. source: "./media/characters/aronai-sieyes/rump.svg"
  20613. }
  20614. },
  20615. maw: {
  20616. height: math.unit(1.25, "feet"),
  20617. name: "Maw",
  20618. image: {
  20619. source: "./media/characters/aronai-sieyes/maw.svg"
  20620. }
  20621. },
  20622. feral: {
  20623. height: math.unit(18, "feet"),
  20624. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20625. name: "Feral",
  20626. image: {
  20627. source: "./media/characters/aronai-sieyes/feral.svg",
  20628. extra: 1530 / 1240,
  20629. bottom: 0.035
  20630. }
  20631. },
  20632. },
  20633. [
  20634. {
  20635. name: "Micro",
  20636. height: math.unit(2, "inches")
  20637. },
  20638. {
  20639. name: "Normal",
  20640. height: math.unit(6 + 1 / 12, "feet"),
  20641. default: true
  20642. }
  20643. ]
  20644. ))
  20645. characterMakers.push(() => makeCharacter(
  20646. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20647. {
  20648. front: {
  20649. height: math.unit(12, "feet"),
  20650. weight: math.unit(410, "kg"),
  20651. name: "Front",
  20652. image: {
  20653. source: "./media/characters/xuna/front.svg",
  20654. extra: 2184 / 1980
  20655. }
  20656. },
  20657. side: {
  20658. height: math.unit(12, "feet"),
  20659. weight: math.unit(410, "kg"),
  20660. name: "Side",
  20661. image: {
  20662. source: "./media/characters/xuna/side.svg",
  20663. extra: 2184 / 1980
  20664. }
  20665. },
  20666. back: {
  20667. height: math.unit(12, "feet"),
  20668. weight: math.unit(410, "kg"),
  20669. name: "Back",
  20670. image: {
  20671. source: "./media/characters/xuna/back.svg",
  20672. extra: 2184 / 1980
  20673. }
  20674. },
  20675. },
  20676. [
  20677. {
  20678. name: "Nano glow",
  20679. height: math.unit(10, "nm")
  20680. },
  20681. {
  20682. name: "Micro floof",
  20683. height: math.unit(0.3, "m")
  20684. },
  20685. {
  20686. name: "Huggable softy boi",
  20687. height: math.unit(3.6576, "m"),
  20688. default: true
  20689. },
  20690. {
  20691. name: "Admirable floof",
  20692. height: math.unit(80, "meters")
  20693. },
  20694. {
  20695. name: "Gentle macro",
  20696. height: math.unit(300, "meters")
  20697. },
  20698. {
  20699. name: "Very careful floof",
  20700. height: math.unit(3200, "meters")
  20701. },
  20702. {
  20703. name: "The mega floof",
  20704. height: math.unit(36000, "meters")
  20705. },
  20706. {
  20707. name: "Giga-fur-Wicker",
  20708. height: math.unit(4800000, "meters")
  20709. },
  20710. {
  20711. name: "Licky world",
  20712. height: math.unit(20000000, "meters")
  20713. },
  20714. {
  20715. name: "Floofy cyan sun",
  20716. height: math.unit(1500000000, "meters")
  20717. },
  20718. {
  20719. name: "Milky Wicker",
  20720. height: math.unit(1000000000000000000000, "meters")
  20721. },
  20722. {
  20723. name: "The observing Wicker",
  20724. height: math.unit(999999999999999999999999999, "meters")
  20725. },
  20726. ]
  20727. ))
  20728. characterMakers.push(() => makeCharacter(
  20729. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20730. {
  20731. front: {
  20732. height: math.unit(5 + 9 / 12, "feet"),
  20733. weight: math.unit(150, "lb"),
  20734. name: "Front",
  20735. image: {
  20736. source: "./media/characters/arokha-sieyes/front.svg",
  20737. extra: 1425 / 1284,
  20738. bottom: 0.05
  20739. }
  20740. },
  20741. },
  20742. [
  20743. {
  20744. name: "Normal",
  20745. height: math.unit(5 + 9 / 12, "feet")
  20746. },
  20747. {
  20748. name: "Macro",
  20749. height: math.unit(30, "meters"),
  20750. default: true
  20751. },
  20752. ]
  20753. ))
  20754. characterMakers.push(() => makeCharacter(
  20755. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20756. {
  20757. front: {
  20758. height: math.unit(6, "feet"),
  20759. weight: math.unit(180, "lb"),
  20760. name: "Front",
  20761. image: {
  20762. source: "./media/characters/arokh-sieyes/front.svg",
  20763. extra: 1830 / 1769,
  20764. bottom: 0.01
  20765. }
  20766. },
  20767. },
  20768. [
  20769. {
  20770. name: "Normal",
  20771. height: math.unit(6, "feet")
  20772. },
  20773. {
  20774. name: "Macro",
  20775. height: math.unit(30, "meters"),
  20776. default: true
  20777. },
  20778. ]
  20779. ))
  20780. characterMakers.push(() => makeCharacter(
  20781. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20782. {
  20783. side: {
  20784. height: math.unit(13 + 1 / 12, "feet"),
  20785. weight: math.unit(8.5, "tonnes"),
  20786. preyCapacity: math.unit(36, "people"),
  20787. name: "Side",
  20788. image: {
  20789. source: "./media/characters/goldeneye/side.svg",
  20790. extra: 1139/741,
  20791. bottom: 98/1237
  20792. }
  20793. },
  20794. front: {
  20795. height: math.unit(5.1, "feet"),
  20796. weight: math.unit(8.5, "tonnes"),
  20797. preyCapacity: math.unit(36, "people"),
  20798. name: "Front",
  20799. image: {
  20800. source: "./media/characters/goldeneye/front.svg",
  20801. extra: 635/365,
  20802. bottom: 598/1233
  20803. }
  20804. },
  20805. maw: {
  20806. height: math.unit(6.6, "feet"),
  20807. name: "Maw",
  20808. image: {
  20809. source: "./media/characters/goldeneye/maw.svg"
  20810. }
  20811. },
  20812. headFront: {
  20813. height: math.unit(8, "feet"),
  20814. name: "Head (Front)",
  20815. image: {
  20816. source: "./media/characters/goldeneye/head-front.svg"
  20817. }
  20818. },
  20819. headSide: {
  20820. height: math.unit(6, "feet"),
  20821. name: "Head (Side)",
  20822. image: {
  20823. source: "./media/characters/goldeneye/head-side.svg"
  20824. }
  20825. },
  20826. headBack: {
  20827. height: math.unit(8, "feet"),
  20828. name: "Head (Back)",
  20829. image: {
  20830. source: "./media/characters/goldeneye/head-back.svg"
  20831. }
  20832. },
  20833. paw: {
  20834. height: math.unit(3.4, "feet"),
  20835. name: "Paw",
  20836. image: {
  20837. source: "./media/characters/goldeneye/paw.svg"
  20838. }
  20839. },
  20840. toering: {
  20841. height: math.unit(0.45, "feet"),
  20842. name: "Toering",
  20843. image: {
  20844. source: "./media/characters/goldeneye/toering.svg"
  20845. }
  20846. },
  20847. eyes: {
  20848. height: math.unit(0.5, "feet"),
  20849. name: "Eyes",
  20850. image: {
  20851. source: "./media/characters/goldeneye/eyes.svg"
  20852. }
  20853. },
  20854. },
  20855. [
  20856. {
  20857. name: "Normal",
  20858. height: math.unit(13 + 1 / 12, "feet"),
  20859. default: true
  20860. },
  20861. ]
  20862. ))
  20863. characterMakers.push(() => makeCharacter(
  20864. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20865. {
  20866. front: {
  20867. height: math.unit(6 + 1 / 12, "feet"),
  20868. weight: math.unit(210, "lb"),
  20869. name: "Front",
  20870. image: {
  20871. source: "./media/characters/leonardo-lycheborne/front.svg",
  20872. extra: 776/723,
  20873. bottom: 34/810
  20874. }
  20875. },
  20876. side: {
  20877. height: math.unit(6 + 1 / 12, "feet"),
  20878. weight: math.unit(210, "lb"),
  20879. name: "Side",
  20880. image: {
  20881. source: "./media/characters/leonardo-lycheborne/side.svg",
  20882. extra: 780/728,
  20883. bottom: 12/792
  20884. }
  20885. },
  20886. back: {
  20887. height: math.unit(6 + 1 / 12, "feet"),
  20888. weight: math.unit(210, "lb"),
  20889. name: "Back",
  20890. image: {
  20891. source: "./media/characters/leonardo-lycheborne/back.svg",
  20892. extra: 775/721,
  20893. bottom: 17/792
  20894. }
  20895. },
  20896. hand: {
  20897. height: math.unit(1.08, "feet"),
  20898. name: "Hand",
  20899. image: {
  20900. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20901. }
  20902. },
  20903. foot: {
  20904. height: math.unit(1.32, "feet"),
  20905. name: "Foot",
  20906. image: {
  20907. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20908. }
  20909. },
  20910. maw: {
  20911. height: math.unit(1, "feet"),
  20912. name: "Maw",
  20913. image: {
  20914. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20915. }
  20916. },
  20917. were: {
  20918. height: math.unit(20, "feet"),
  20919. weight: math.unit(7800, "lb"),
  20920. name: "Were",
  20921. image: {
  20922. source: "./media/characters/leonardo-lycheborne/were.svg",
  20923. extra: 1224/1165,
  20924. bottom: 72/1296
  20925. }
  20926. },
  20927. feral: {
  20928. height: math.unit(7.5, "feet"),
  20929. weight: math.unit(600, "lb"),
  20930. name: "Feral",
  20931. image: {
  20932. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20933. extra: 797/702,
  20934. bottom: 139/936
  20935. }
  20936. },
  20937. taur: {
  20938. height: math.unit(11, "feet"),
  20939. weight: math.unit(3300, "lb"),
  20940. name: "Taur",
  20941. image: {
  20942. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20943. extra: 1271/1197,
  20944. bottom: 47/1318
  20945. }
  20946. },
  20947. barghest: {
  20948. height: math.unit(11, "feet"),
  20949. weight: math.unit(1300, "lb"),
  20950. name: "Barghest",
  20951. image: {
  20952. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20953. extra: 1291/1204,
  20954. bottom: 37/1328
  20955. }
  20956. },
  20957. dick: {
  20958. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20959. name: "Dick",
  20960. image: {
  20961. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20962. }
  20963. },
  20964. dickWere: {
  20965. height: math.unit((20) / 3.8, "feet"),
  20966. name: "Dick (Were)",
  20967. image: {
  20968. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20969. }
  20970. },
  20971. },
  20972. [
  20973. {
  20974. name: "Normal",
  20975. height: math.unit(6 + 1 / 12, "feet"),
  20976. default: true
  20977. },
  20978. ]
  20979. ))
  20980. characterMakers.push(() => makeCharacter(
  20981. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20982. {
  20983. front: {
  20984. height: math.unit(10, "feet"),
  20985. weight: math.unit(350, "lb"),
  20986. name: "Front",
  20987. image: {
  20988. source: "./media/characters/jet/front.svg",
  20989. extra: 2050 / 1980,
  20990. bottom: 0.013
  20991. }
  20992. },
  20993. back: {
  20994. height: math.unit(10, "feet"),
  20995. weight: math.unit(350, "lb"),
  20996. name: "Back",
  20997. image: {
  20998. source: "./media/characters/jet/back.svg",
  20999. extra: 2050 / 1980,
  21000. bottom: 0.013
  21001. }
  21002. },
  21003. },
  21004. [
  21005. {
  21006. name: "Micro",
  21007. height: math.unit(6, "inches")
  21008. },
  21009. {
  21010. name: "Normal",
  21011. height: math.unit(10, "feet"),
  21012. default: true
  21013. },
  21014. {
  21015. name: "Macro",
  21016. height: math.unit(100, "feet")
  21017. },
  21018. ]
  21019. ))
  21020. characterMakers.push(() => makeCharacter(
  21021. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21022. {
  21023. front: {
  21024. height: math.unit(15, "feet"),
  21025. weight: math.unit(2800, "lb"),
  21026. name: "Front",
  21027. image: {
  21028. source: "./media/characters/tanarath/front.svg",
  21029. extra: 2392 / 2220,
  21030. bottom: 0.03
  21031. }
  21032. },
  21033. back: {
  21034. height: math.unit(15, "feet"),
  21035. weight: math.unit(2800, "lb"),
  21036. name: "Back",
  21037. image: {
  21038. source: "./media/characters/tanarath/back.svg",
  21039. extra: 2392 / 2220,
  21040. bottom: 0.03
  21041. }
  21042. },
  21043. },
  21044. [
  21045. {
  21046. name: "Normal",
  21047. height: math.unit(15, "feet"),
  21048. default: true
  21049. },
  21050. ]
  21051. ))
  21052. characterMakers.push(() => makeCharacter(
  21053. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21054. {
  21055. front: {
  21056. height: math.unit(7 + 1 / 12, "feet"),
  21057. weight: math.unit(175, "lb"),
  21058. name: "Front",
  21059. image: {
  21060. source: "./media/characters/patty-cattybatty/front.svg",
  21061. extra: 908 / 874,
  21062. bottom: 0.025
  21063. }
  21064. },
  21065. },
  21066. [
  21067. {
  21068. name: "Micro",
  21069. height: math.unit(1, "inch")
  21070. },
  21071. {
  21072. name: "Normal",
  21073. height: math.unit(7 + 1 / 12, "feet")
  21074. },
  21075. {
  21076. name: "Mini Macro",
  21077. height: math.unit(155, "feet")
  21078. },
  21079. {
  21080. name: "Macro",
  21081. height: math.unit(1077, "feet")
  21082. },
  21083. {
  21084. name: "Mega Macro",
  21085. height: math.unit(47650, "feet"),
  21086. default: true
  21087. },
  21088. {
  21089. name: "Giga Macro",
  21090. height: math.unit(440, "miles")
  21091. },
  21092. {
  21093. name: "Tera Macro",
  21094. height: math.unit(8700, "miles")
  21095. },
  21096. {
  21097. name: "Planetary Macro",
  21098. height: math.unit(32700, "miles")
  21099. },
  21100. {
  21101. name: "Solar Macro",
  21102. height: math.unit(550000, "miles")
  21103. },
  21104. {
  21105. name: "Celestial Macro",
  21106. height: math.unit(2.5, "AU")
  21107. },
  21108. ]
  21109. ))
  21110. characterMakers.push(() => makeCharacter(
  21111. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21112. {
  21113. front: {
  21114. height: math.unit(4 + 5 / 12, "feet"),
  21115. weight: math.unit(90, "lb"),
  21116. name: "Front",
  21117. image: {
  21118. source: "./media/characters/cappu/front.svg",
  21119. extra: 1247 / 1152,
  21120. bottom: 0.012
  21121. }
  21122. },
  21123. },
  21124. [
  21125. {
  21126. name: "Normal",
  21127. height: math.unit(4 + 5 / 12, "feet"),
  21128. default: true
  21129. },
  21130. ]
  21131. ))
  21132. characterMakers.push(() => makeCharacter(
  21133. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21134. {
  21135. frontDressed: {
  21136. height: math.unit(70, "cm"),
  21137. weight: math.unit(6, "kg"),
  21138. name: "Front (Dressed)",
  21139. image: {
  21140. source: "./media/characters/sebi/front-dressed.svg",
  21141. extra: 713.5 / 686.5,
  21142. bottom: 0.003
  21143. }
  21144. },
  21145. front: {
  21146. height: math.unit(70, "cm"),
  21147. weight: math.unit(5, "kg"),
  21148. name: "Front",
  21149. image: {
  21150. source: "./media/characters/sebi/front.svg",
  21151. extra: 713.5 / 686.5,
  21152. bottom: 0.003
  21153. }
  21154. }
  21155. },
  21156. [
  21157. {
  21158. name: "Normal",
  21159. height: math.unit(70, "cm"),
  21160. default: true
  21161. },
  21162. {
  21163. name: "Macro",
  21164. height: math.unit(8, "meters")
  21165. },
  21166. ]
  21167. ))
  21168. characterMakers.push(() => makeCharacter(
  21169. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21170. {
  21171. front: {
  21172. height: math.unit(6, "feet"),
  21173. weight: math.unit(150, "lb"),
  21174. name: "Front",
  21175. image: {
  21176. source: "./media/characters/typhek/front.svg",
  21177. extra: 1948 / 1929,
  21178. bottom: 0.025
  21179. }
  21180. },
  21181. side: {
  21182. height: math.unit(6, "feet"),
  21183. weight: math.unit(150, "lb"),
  21184. name: "Side",
  21185. image: {
  21186. source: "./media/characters/typhek/side.svg",
  21187. extra: 2034 / 2010,
  21188. bottom: 0.003
  21189. }
  21190. },
  21191. back: {
  21192. height: math.unit(6, "feet"),
  21193. weight: math.unit(150, "lb"),
  21194. name: "Back",
  21195. image: {
  21196. source: "./media/characters/typhek/back.svg",
  21197. extra: 2005 / 1978,
  21198. bottom: 0.004
  21199. }
  21200. },
  21201. palm: {
  21202. height: math.unit(1.2, "feet"),
  21203. name: "Palm",
  21204. image: {
  21205. source: "./media/characters/typhek/palm.svg"
  21206. }
  21207. },
  21208. fist: {
  21209. height: math.unit(1.1, "feet"),
  21210. name: "Fist",
  21211. image: {
  21212. source: "./media/characters/typhek/fist.svg"
  21213. }
  21214. },
  21215. foot: {
  21216. height: math.unit(1.57, "feet"),
  21217. name: "Foot",
  21218. image: {
  21219. source: "./media/characters/typhek/foot.svg"
  21220. }
  21221. },
  21222. sole: {
  21223. height: math.unit(2.05, "feet"),
  21224. name: "Sole",
  21225. image: {
  21226. source: "./media/characters/typhek/sole.svg"
  21227. }
  21228. },
  21229. },
  21230. [
  21231. {
  21232. name: "Macro",
  21233. height: math.unit(40, "stories"),
  21234. default: true
  21235. },
  21236. {
  21237. name: "Megamacro",
  21238. height: math.unit(1, "mile")
  21239. },
  21240. {
  21241. name: "Gigamacro",
  21242. height: math.unit(4000, "solarradii")
  21243. },
  21244. {
  21245. name: "Universal",
  21246. height: math.unit(1.1, "universes")
  21247. }
  21248. ]
  21249. ))
  21250. characterMakers.push(() => makeCharacter(
  21251. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21252. {
  21253. side: {
  21254. height: math.unit(5 + 7 / 12, "feet"),
  21255. weight: math.unit(150, "lb"),
  21256. name: "Side",
  21257. image: {
  21258. source: "./media/characters/kassy/side.svg",
  21259. extra: 1280 / 1225,
  21260. bottom: 0.002
  21261. }
  21262. },
  21263. front: {
  21264. height: math.unit(5 + 7 / 12, "feet"),
  21265. weight: math.unit(150, "lb"),
  21266. name: "Front",
  21267. image: {
  21268. source: "./media/characters/kassy/front.svg",
  21269. extra: 1280 / 1225,
  21270. bottom: 0.025
  21271. }
  21272. },
  21273. back: {
  21274. height: math.unit(5 + 7 / 12, "feet"),
  21275. weight: math.unit(150, "lb"),
  21276. name: "Back",
  21277. image: {
  21278. source: "./media/characters/kassy/back.svg",
  21279. extra: 1280 / 1225,
  21280. bottom: 0.002
  21281. }
  21282. },
  21283. foot: {
  21284. height: math.unit(1.266, "feet"),
  21285. name: "Foot",
  21286. image: {
  21287. source: "./media/characters/kassy/foot.svg"
  21288. }
  21289. },
  21290. },
  21291. [
  21292. {
  21293. name: "Normal",
  21294. height: math.unit(5 + 7 / 12, "feet")
  21295. },
  21296. {
  21297. name: "Macro",
  21298. height: math.unit(137, "feet"),
  21299. default: true
  21300. },
  21301. {
  21302. name: "Megamacro",
  21303. height: math.unit(1, "mile")
  21304. },
  21305. ]
  21306. ))
  21307. characterMakers.push(() => makeCharacter(
  21308. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21309. {
  21310. front: {
  21311. height: math.unit(6 + 1 / 12, "feet"),
  21312. weight: math.unit(200, "lb"),
  21313. name: "Front",
  21314. image: {
  21315. source: "./media/characters/neil/front.svg",
  21316. extra: 1326 / 1250,
  21317. bottom: 0.023
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Normal",
  21324. height: math.unit(6 + 1 / 12, "feet"),
  21325. default: true
  21326. },
  21327. {
  21328. name: "Macro",
  21329. height: math.unit(200, "feet")
  21330. },
  21331. ]
  21332. ))
  21333. characterMakers.push(() => makeCharacter(
  21334. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21335. {
  21336. front: {
  21337. height: math.unit(5 + 9 / 12, "feet"),
  21338. weight: math.unit(190, "lb"),
  21339. name: "Front",
  21340. image: {
  21341. source: "./media/characters/atticus/front.svg",
  21342. extra: 2934 / 2785,
  21343. bottom: 0.025
  21344. }
  21345. },
  21346. },
  21347. [
  21348. {
  21349. name: "Normal",
  21350. height: math.unit(5 + 9 / 12, "feet"),
  21351. default: true
  21352. },
  21353. {
  21354. name: "Macro",
  21355. height: math.unit(180, "feet")
  21356. },
  21357. ]
  21358. ))
  21359. characterMakers.push(() => makeCharacter(
  21360. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21361. {
  21362. side: {
  21363. height: math.unit(9, "feet"),
  21364. weight: math.unit(650, "lb"),
  21365. name: "Side",
  21366. image: {
  21367. source: "./media/characters/milo/side.svg",
  21368. extra: 2644 / 2310,
  21369. bottom: 0.032
  21370. }
  21371. },
  21372. },
  21373. [
  21374. {
  21375. name: "Normal",
  21376. height: math.unit(9, "feet"),
  21377. default: true
  21378. },
  21379. {
  21380. name: "Macro",
  21381. height: math.unit(300, "feet")
  21382. },
  21383. ]
  21384. ))
  21385. characterMakers.push(() => makeCharacter(
  21386. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21387. {
  21388. side: {
  21389. height: math.unit(8, "meters"),
  21390. weight: math.unit(90000, "kg"),
  21391. name: "Side",
  21392. image: {
  21393. source: "./media/characters/ijzer/side.svg",
  21394. extra: 2756 / 1600,
  21395. bottom: 0.01
  21396. }
  21397. },
  21398. },
  21399. [
  21400. {
  21401. name: "Small",
  21402. height: math.unit(3, "meters")
  21403. },
  21404. {
  21405. name: "Normal",
  21406. height: math.unit(8, "meters"),
  21407. default: true
  21408. },
  21409. {
  21410. name: "Normal+",
  21411. height: math.unit(10, "meters")
  21412. },
  21413. {
  21414. name: "Bigger",
  21415. height: math.unit(24, "meters")
  21416. },
  21417. {
  21418. name: "Huge",
  21419. height: math.unit(80, "meters")
  21420. },
  21421. ]
  21422. ))
  21423. characterMakers.push(() => makeCharacter(
  21424. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21425. {
  21426. front: {
  21427. height: math.unit(6 + 2 / 12, "feet"),
  21428. weight: math.unit(153, "lb"),
  21429. name: "Front",
  21430. image: {
  21431. source: "./media/characters/luca-cervicum/front.svg",
  21432. extra: 370 / 327,
  21433. bottom: 0.015
  21434. }
  21435. },
  21436. back: {
  21437. height: math.unit(6 + 2 / 12, "feet"),
  21438. weight: math.unit(153, "lb"),
  21439. name: "Back",
  21440. image: {
  21441. source: "./media/characters/luca-cervicum/back.svg",
  21442. extra: 367 / 333,
  21443. bottom: 0.005
  21444. }
  21445. },
  21446. frontGear: {
  21447. height: math.unit(6 + 2 / 12, "feet"),
  21448. weight: math.unit(173, "lb"),
  21449. name: "Front (Gear)",
  21450. image: {
  21451. source: "./media/characters/luca-cervicum/front-gear.svg",
  21452. extra: 377 / 333,
  21453. bottom: 0.006
  21454. }
  21455. },
  21456. },
  21457. [
  21458. {
  21459. name: "Normal",
  21460. height: math.unit(6 + 2 / 12, "feet"),
  21461. default: true
  21462. },
  21463. ]
  21464. ))
  21465. characterMakers.push(() => makeCharacter(
  21466. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21467. {
  21468. front: {
  21469. height: math.unit(6 + 1 / 12, "feet"),
  21470. weight: math.unit(304, "lb"),
  21471. name: "Front",
  21472. image: {
  21473. source: "./media/characters/oliver/front.svg",
  21474. extra: 157 / 143,
  21475. bottom: 0.08
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Normal",
  21482. height: math.unit(6 + 1 / 12, "feet"),
  21483. default: true
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21489. {
  21490. front: {
  21491. height: math.unit(5 + 7 / 12, "feet"),
  21492. weight: math.unit(140, "lb"),
  21493. name: "Front",
  21494. image: {
  21495. source: "./media/characters/shane/front.svg",
  21496. extra: 304 / 289,
  21497. bottom: 0.005
  21498. }
  21499. },
  21500. },
  21501. [
  21502. {
  21503. name: "Normal",
  21504. height: math.unit(5 + 7 / 12, "feet"),
  21505. default: true
  21506. },
  21507. ]
  21508. ))
  21509. characterMakers.push(() => makeCharacter(
  21510. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21511. {
  21512. front: {
  21513. height: math.unit(5 + 9 / 12, "feet"),
  21514. weight: math.unit(178, "lb"),
  21515. name: "Front",
  21516. image: {
  21517. source: "./media/characters/shin/front.svg",
  21518. extra: 159 / 151,
  21519. bottom: 0.015
  21520. }
  21521. },
  21522. },
  21523. [
  21524. {
  21525. name: "Normal",
  21526. height: math.unit(5 + 9 / 12, "feet"),
  21527. default: true
  21528. },
  21529. ]
  21530. ))
  21531. characterMakers.push(() => makeCharacter(
  21532. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21533. {
  21534. front: {
  21535. height: math.unit(5 + 10 / 12, "feet"),
  21536. weight: math.unit(168, "lb"),
  21537. name: "Front",
  21538. image: {
  21539. source: "./media/characters/xerxes/front.svg",
  21540. extra: 282 / 260,
  21541. bottom: 0.045
  21542. }
  21543. },
  21544. },
  21545. [
  21546. {
  21547. name: "Normal",
  21548. height: math.unit(5 + 10 / 12, "feet"),
  21549. default: true
  21550. },
  21551. ]
  21552. ))
  21553. characterMakers.push(() => makeCharacter(
  21554. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21555. {
  21556. front: {
  21557. height: math.unit(6 + 7 / 12, "feet"),
  21558. weight: math.unit(208, "lb"),
  21559. name: "Front",
  21560. image: {
  21561. source: "./media/characters/chaska/front.svg",
  21562. extra: 332 / 319,
  21563. bottom: 0.015
  21564. }
  21565. },
  21566. },
  21567. [
  21568. {
  21569. name: "Normal",
  21570. height: math.unit(6 + 7 / 12, "feet"),
  21571. default: true
  21572. },
  21573. ]
  21574. ))
  21575. characterMakers.push(() => makeCharacter(
  21576. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21577. {
  21578. front: {
  21579. height: math.unit(5 + 8 / 12, "feet"),
  21580. weight: math.unit(208, "lb"),
  21581. name: "Front",
  21582. image: {
  21583. source: "./media/characters/enuk/front.svg",
  21584. extra: 437 / 406,
  21585. bottom: 0.02
  21586. }
  21587. },
  21588. },
  21589. [
  21590. {
  21591. name: "Normal",
  21592. height: math.unit(5 + 8 / 12, "feet"),
  21593. default: true
  21594. },
  21595. ]
  21596. ))
  21597. characterMakers.push(() => makeCharacter(
  21598. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21599. {
  21600. front: {
  21601. height: math.unit(5 + 10 / 12, "feet"),
  21602. weight: math.unit(252, "lb"),
  21603. name: "Front",
  21604. image: {
  21605. source: "./media/characters/bruun/front.svg",
  21606. extra: 197 / 187,
  21607. bottom: 0.012
  21608. }
  21609. },
  21610. },
  21611. [
  21612. {
  21613. name: "Normal",
  21614. height: math.unit(5 + 10 / 12, "feet"),
  21615. default: true
  21616. },
  21617. ]
  21618. ))
  21619. characterMakers.push(() => makeCharacter(
  21620. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21621. {
  21622. front: {
  21623. height: math.unit(6 + 10 / 12, "feet"),
  21624. weight: math.unit(255, "lb"),
  21625. name: "Front",
  21626. image: {
  21627. source: "./media/characters/alexeev/front.svg",
  21628. extra: 213 / 200,
  21629. bottom: 0.05
  21630. }
  21631. },
  21632. },
  21633. [
  21634. {
  21635. name: "Normal",
  21636. height: math.unit(6 + 10 / 12, "feet"),
  21637. default: true
  21638. },
  21639. ]
  21640. ))
  21641. characterMakers.push(() => makeCharacter(
  21642. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21643. {
  21644. front: {
  21645. height: math.unit(2 + 8 / 12, "feet"),
  21646. weight: math.unit(22, "lb"),
  21647. name: "Front",
  21648. image: {
  21649. source: "./media/characters/evelyn/front.svg",
  21650. extra: 208 / 180
  21651. }
  21652. },
  21653. },
  21654. [
  21655. {
  21656. name: "Normal",
  21657. height: math.unit(2 + 8 / 12, "feet"),
  21658. default: true
  21659. },
  21660. ]
  21661. ))
  21662. characterMakers.push(() => makeCharacter(
  21663. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21664. {
  21665. front: {
  21666. height: math.unit(5 + 9 / 12, "feet"),
  21667. weight: math.unit(139, "lb"),
  21668. name: "Front",
  21669. image: {
  21670. source: "./media/characters/inca/front.svg",
  21671. extra: 294 / 291,
  21672. bottom: 0.03
  21673. }
  21674. },
  21675. },
  21676. [
  21677. {
  21678. name: "Normal",
  21679. height: math.unit(5 + 9 / 12, "feet"),
  21680. default: true
  21681. },
  21682. ]
  21683. ))
  21684. characterMakers.push(() => makeCharacter(
  21685. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21686. {
  21687. front: {
  21688. height: math.unit(6 + 3 / 12, "feet"),
  21689. weight: math.unit(185, "lb"),
  21690. name: "Front",
  21691. image: {
  21692. source: "./media/characters/mera/front.svg",
  21693. extra: 291 / 277,
  21694. bottom: 0.03
  21695. }
  21696. },
  21697. },
  21698. [
  21699. {
  21700. name: "Normal",
  21701. height: math.unit(6 + 3 / 12, "feet"),
  21702. default: true
  21703. },
  21704. ]
  21705. ))
  21706. characterMakers.push(() => makeCharacter(
  21707. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21708. {
  21709. front: {
  21710. height: math.unit(6 + 7 / 12, "feet"),
  21711. weight: math.unit(160, "lb"),
  21712. name: "Front",
  21713. image: {
  21714. source: "./media/characters/ceres/front.svg",
  21715. extra: 1023 / 950,
  21716. bottom: 0.027
  21717. }
  21718. },
  21719. back: {
  21720. height: math.unit(6 + 7 / 12, "feet"),
  21721. weight: math.unit(160, "lb"),
  21722. name: "Back",
  21723. image: {
  21724. source: "./media/characters/ceres/back.svg",
  21725. extra: 1023 / 950
  21726. }
  21727. },
  21728. },
  21729. [
  21730. {
  21731. name: "Normal",
  21732. height: math.unit(6 + 7 / 12, "feet"),
  21733. default: true
  21734. },
  21735. ]
  21736. ))
  21737. characterMakers.push(() => makeCharacter(
  21738. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21739. {
  21740. front: {
  21741. height: math.unit(5 + 10 / 12, "feet"),
  21742. weight: math.unit(150, "lb"),
  21743. name: "Front",
  21744. image: {
  21745. source: "./media/characters/kris/front.svg",
  21746. extra: 885 / 803,
  21747. bottom: 0.03
  21748. }
  21749. },
  21750. },
  21751. [
  21752. {
  21753. name: "Normal",
  21754. height: math.unit(5 + 10 / 12, "feet"),
  21755. default: true
  21756. },
  21757. ]
  21758. ))
  21759. characterMakers.push(() => makeCharacter(
  21760. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21761. {
  21762. front: {
  21763. height: math.unit(7, "feet"),
  21764. weight: math.unit(120, "kg"),
  21765. name: "Front",
  21766. image: {
  21767. source: "./media/characters/taluthus/front.svg",
  21768. extra: 903 / 833,
  21769. bottom: 0.015
  21770. }
  21771. },
  21772. },
  21773. [
  21774. {
  21775. name: "Normal",
  21776. height: math.unit(7, "feet"),
  21777. default: true
  21778. },
  21779. {
  21780. name: "Macro",
  21781. height: math.unit(300, "feet")
  21782. },
  21783. ]
  21784. ))
  21785. characterMakers.push(() => makeCharacter(
  21786. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21787. {
  21788. front: {
  21789. height: math.unit(5 + 9 / 12, "feet"),
  21790. weight: math.unit(145, "lb"),
  21791. name: "Front",
  21792. image: {
  21793. source: "./media/characters/dawn/front.svg",
  21794. extra: 2094 / 2016,
  21795. bottom: 0.025
  21796. }
  21797. },
  21798. back: {
  21799. height: math.unit(5 + 9 / 12, "feet"),
  21800. weight: math.unit(160, "lb"),
  21801. name: "Back",
  21802. image: {
  21803. source: "./media/characters/dawn/back.svg",
  21804. extra: 2112 / 2080,
  21805. bottom: 0.005
  21806. }
  21807. },
  21808. },
  21809. [
  21810. {
  21811. name: "Normal",
  21812. height: math.unit(6 + 7 / 12, "feet"),
  21813. default: true
  21814. },
  21815. ]
  21816. ))
  21817. characterMakers.push(() => makeCharacter(
  21818. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21819. {
  21820. anthro: {
  21821. height: math.unit(8 + 3 / 12, "feet"),
  21822. weight: math.unit(450, "lb"),
  21823. name: "Anthro",
  21824. image: {
  21825. source: "./media/characters/arador/anthro.svg",
  21826. extra: 1835 / 1718,
  21827. bottom: 0.025
  21828. }
  21829. },
  21830. feral: {
  21831. height: math.unit(4, "feet"),
  21832. weight: math.unit(200, "lb"),
  21833. name: "Feral",
  21834. image: {
  21835. source: "./media/characters/arador/feral.svg",
  21836. extra: 1683 / 1514,
  21837. bottom: 0.07
  21838. }
  21839. },
  21840. },
  21841. [
  21842. {
  21843. name: "Normal",
  21844. height: math.unit(8 + 3 / 12, "feet")
  21845. },
  21846. {
  21847. name: "Macro",
  21848. height: math.unit(82.5, "feet"),
  21849. default: true
  21850. },
  21851. ]
  21852. ))
  21853. characterMakers.push(() => makeCharacter(
  21854. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21855. {
  21856. front: {
  21857. height: math.unit(5 + 10 / 12, "feet"),
  21858. weight: math.unit(125, "lb"),
  21859. name: "Front",
  21860. image: {
  21861. source: "./media/characters/dharsi/front.svg",
  21862. extra: 716 / 630,
  21863. bottom: 0.035
  21864. }
  21865. },
  21866. },
  21867. [
  21868. {
  21869. name: "Nano",
  21870. height: math.unit(100, "nm")
  21871. },
  21872. {
  21873. name: "Micro",
  21874. height: math.unit(2, "inches")
  21875. },
  21876. {
  21877. name: "Normal",
  21878. height: math.unit(5 + 10 / 12, "feet"),
  21879. default: true
  21880. },
  21881. {
  21882. name: "Macro",
  21883. height: math.unit(1000, "feet")
  21884. },
  21885. {
  21886. name: "Megamacro",
  21887. height: math.unit(10, "miles")
  21888. },
  21889. {
  21890. name: "Gigamacro",
  21891. height: math.unit(3000, "miles")
  21892. },
  21893. {
  21894. name: "Teramacro",
  21895. height: math.unit(500000, "miles")
  21896. },
  21897. {
  21898. name: "Teramacro+",
  21899. height: math.unit(30, "galaxies")
  21900. },
  21901. ]
  21902. ))
  21903. characterMakers.push(() => makeCharacter(
  21904. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21905. {
  21906. front: {
  21907. height: math.unit(6, "feet"),
  21908. weight: math.unit(150, "lb"),
  21909. name: "Front",
  21910. image: {
  21911. source: "./media/characters/deathy/front.svg",
  21912. extra: 1552 / 1463,
  21913. bottom: 0.025
  21914. }
  21915. },
  21916. side: {
  21917. height: math.unit(6, "feet"),
  21918. weight: math.unit(150, "lb"),
  21919. name: "Side",
  21920. image: {
  21921. source: "./media/characters/deathy/side.svg",
  21922. extra: 1604 / 1455,
  21923. bottom: 0.025
  21924. }
  21925. },
  21926. back: {
  21927. height: math.unit(6, "feet"),
  21928. weight: math.unit(150, "lb"),
  21929. name: "Back",
  21930. image: {
  21931. source: "./media/characters/deathy/back.svg",
  21932. extra: 1580 / 1463,
  21933. bottom: 0.005
  21934. }
  21935. },
  21936. },
  21937. [
  21938. {
  21939. name: "Micro",
  21940. height: math.unit(5, "millimeters")
  21941. },
  21942. {
  21943. name: "Normal",
  21944. height: math.unit(6 + 5 / 12, "feet"),
  21945. default: true
  21946. },
  21947. ]
  21948. ))
  21949. characterMakers.push(() => makeCharacter(
  21950. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21951. {
  21952. front: {
  21953. height: math.unit(16, "feet"),
  21954. weight: math.unit(4000, "lb"),
  21955. name: "Front",
  21956. image: {
  21957. source: "./media/characters/juniper/front.svg",
  21958. bottom: 0.04
  21959. }
  21960. },
  21961. },
  21962. [
  21963. {
  21964. name: "Normal",
  21965. height: math.unit(16, "feet"),
  21966. default: true
  21967. },
  21968. ]
  21969. ))
  21970. characterMakers.push(() => makeCharacter(
  21971. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21972. {
  21973. front: {
  21974. height: math.unit(6, "feet"),
  21975. weight: math.unit(150, "lb"),
  21976. name: "Front",
  21977. image: {
  21978. source: "./media/characters/hipster/front.svg",
  21979. extra: 1312 / 1209,
  21980. bottom: 0.025
  21981. }
  21982. },
  21983. back: {
  21984. height: math.unit(6, "feet"),
  21985. weight: math.unit(150, "lb"),
  21986. name: "Back",
  21987. image: {
  21988. source: "./media/characters/hipster/back.svg",
  21989. extra: 1281 / 1196,
  21990. bottom: 0.01
  21991. }
  21992. },
  21993. },
  21994. [
  21995. {
  21996. name: "Micro",
  21997. height: math.unit(1, "mm")
  21998. },
  21999. {
  22000. name: "Normal",
  22001. height: math.unit(4, "inches"),
  22002. default: true
  22003. },
  22004. {
  22005. name: "Macro",
  22006. height: math.unit(500, "feet")
  22007. },
  22008. {
  22009. name: "Megamacro",
  22010. height: math.unit(1000, "miles")
  22011. },
  22012. ]
  22013. ))
  22014. characterMakers.push(() => makeCharacter(
  22015. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22016. {
  22017. front: {
  22018. height: math.unit(6, "feet"),
  22019. weight: math.unit(150, "lb"),
  22020. name: "Front",
  22021. image: {
  22022. source: "./media/characters/tendirmuldr/front.svg",
  22023. extra: 1878 / 1772,
  22024. bottom: 0.015
  22025. }
  22026. },
  22027. },
  22028. [
  22029. {
  22030. name: "Megamacro",
  22031. height: math.unit(1500, "miles"),
  22032. default: true
  22033. },
  22034. ]
  22035. ))
  22036. characterMakers.push(() => makeCharacter(
  22037. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22038. {
  22039. front: {
  22040. height: math.unit(14, "feet"),
  22041. weight: math.unit(12000, "lb"),
  22042. name: "Front",
  22043. image: {
  22044. source: "./media/characters/mort/front.svg",
  22045. extra: 365 / 318,
  22046. bottom: 0.01
  22047. }
  22048. },
  22049. side: {
  22050. height: math.unit(14, "feet"),
  22051. weight: math.unit(12000, "lb"),
  22052. name: "Side",
  22053. image: {
  22054. source: "./media/characters/mort/side.svg",
  22055. extra: 365 / 318,
  22056. bottom: 0.052
  22057. },
  22058. default: true
  22059. },
  22060. back: {
  22061. height: math.unit(14, "feet"),
  22062. weight: math.unit(12000, "lb"),
  22063. name: "Back",
  22064. image: {
  22065. source: "./media/characters/mort/back.svg",
  22066. extra: 371 / 332,
  22067. bottom: 0.18
  22068. }
  22069. },
  22070. },
  22071. [
  22072. {
  22073. name: "Normal",
  22074. height: math.unit(14, "feet"),
  22075. default: true
  22076. },
  22077. ]
  22078. ))
  22079. characterMakers.push(() => makeCharacter(
  22080. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22081. {
  22082. front: {
  22083. height: math.unit(8, "feet"),
  22084. weight: math.unit(1, "ton"),
  22085. name: "Front",
  22086. image: {
  22087. source: "./media/characters/lycoa/front.svg",
  22088. extra: 1836/1728,
  22089. bottom: 81/1917
  22090. }
  22091. },
  22092. back: {
  22093. height: math.unit(8, "feet"),
  22094. weight: math.unit(1, "ton"),
  22095. name: "Back",
  22096. image: {
  22097. source: "./media/characters/lycoa/back.svg",
  22098. extra: 1785/1720,
  22099. bottom: 91/1876
  22100. }
  22101. },
  22102. head: {
  22103. height: math.unit(1.6243, "feet"),
  22104. name: "Head",
  22105. image: {
  22106. source: "./media/characters/lycoa/head.svg",
  22107. extra: 1011/782,
  22108. bottom: 0/1011
  22109. }
  22110. },
  22111. tailmaw: {
  22112. height: math.unit(1.9, "feet"),
  22113. name: "Tailmaw",
  22114. image: {
  22115. source: "./media/characters/lycoa/tailmaw.svg"
  22116. }
  22117. },
  22118. tentacles: {
  22119. height: math.unit(2.1, "feet"),
  22120. name: "Tentacles",
  22121. image: {
  22122. source: "./media/characters/lycoa/tentacles.svg"
  22123. }
  22124. },
  22125. dick: {
  22126. height: math.unit(1.73, "feet"),
  22127. name: "Dick",
  22128. image: {
  22129. source: "./media/characters/lycoa/dick.svg"
  22130. }
  22131. },
  22132. },
  22133. [
  22134. {
  22135. name: "Normal",
  22136. height: math.unit(8, "feet"),
  22137. default: true
  22138. },
  22139. {
  22140. name: "Macro",
  22141. height: math.unit(30, "feet")
  22142. },
  22143. ]
  22144. ))
  22145. characterMakers.push(() => makeCharacter(
  22146. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22147. {
  22148. front: {
  22149. height: math.unit(4 + 2 / 12, "feet"),
  22150. weight: math.unit(70, "lb"),
  22151. name: "Front",
  22152. image: {
  22153. source: "./media/characters/naldara/front.svg",
  22154. extra: 1664/1387,
  22155. bottom: 81/1745
  22156. },
  22157. form: "anthro",
  22158. default: true
  22159. },
  22160. naga: {
  22161. height: math.unit(20, "feet"),
  22162. weight: math.unit(15000, "kg"),
  22163. name: "Front",
  22164. image: {
  22165. source: "./media/characters/naldara/naga.svg",
  22166. extra: 1590/1396,
  22167. bottom: 285/1875
  22168. },
  22169. form: "naga",
  22170. default: true
  22171. },
  22172. },
  22173. [
  22174. {
  22175. name: "Normal",
  22176. height: math.unit(4 + 2 / 12, "feet"),
  22177. form: "anthro",
  22178. default: true
  22179. },
  22180. {
  22181. name: "Normal",
  22182. height: math.unit(20, "feet"),
  22183. form: "naga",
  22184. default: true
  22185. },
  22186. ],
  22187. {
  22188. "anthro": {
  22189. name: "Anthro",
  22190. default: true
  22191. },
  22192. "naga": {
  22193. name: "Naga"
  22194. }
  22195. }
  22196. ))
  22197. characterMakers.push(() => makeCharacter(
  22198. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22199. {
  22200. front: {
  22201. height: math.unit(13 + 7 / 12, "feet"),
  22202. weight: math.unit(1500, "lb"),
  22203. name: "Front",
  22204. image: {
  22205. source: "./media/characters/briar/front.svg",
  22206. extra: 1223/1157,
  22207. bottom: 123/1346
  22208. }
  22209. },
  22210. },
  22211. [
  22212. {
  22213. name: "Normal",
  22214. height: math.unit(13 + 7 / 12, "feet"),
  22215. default: true
  22216. },
  22217. ]
  22218. ))
  22219. characterMakers.push(() => makeCharacter(
  22220. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22221. {
  22222. side: {
  22223. height: math.unit(16, "feet"),
  22224. weight: math.unit(500, "lb"),
  22225. name: "Side",
  22226. image: {
  22227. source: "./media/characters/vanguard/side.svg",
  22228. extra: 1022/914,
  22229. bottom: 30/1052
  22230. }
  22231. },
  22232. sideAlt: {
  22233. height: math.unit(10, "feet"),
  22234. weight: math.unit(500, "lb"),
  22235. name: "Side (Alt)",
  22236. image: {
  22237. source: "./media/characters/vanguard/side-alt.svg",
  22238. extra: 502 / 425,
  22239. bottom: 0.087
  22240. }
  22241. },
  22242. },
  22243. [
  22244. {
  22245. name: "Normal",
  22246. height: math.unit(17.71, "feet"),
  22247. default: true
  22248. },
  22249. ]
  22250. ))
  22251. characterMakers.push(() => makeCharacter(
  22252. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22253. {
  22254. front: {
  22255. height: math.unit(7.5, "feet"),
  22256. weight: math.unit(2, "lb"),
  22257. name: "Front",
  22258. image: {
  22259. source: "./media/characters/artemis/work-safe-front.svg",
  22260. extra: 1192 / 1075,
  22261. bottom: 0.07
  22262. },
  22263. form: "work-safe",
  22264. default: true
  22265. },
  22266. frontNsfw: {
  22267. height: math.unit(7.5, "feet"),
  22268. weight: math.unit(2, "lb"),
  22269. name: "Front",
  22270. image: {
  22271. source: "./media/characters/artemis/calibrating-front.svg",
  22272. extra: 1192 / 1075,
  22273. bottom: 0.07
  22274. },
  22275. form: "calibrating",
  22276. default: true
  22277. },
  22278. frontNsfwer: {
  22279. height: math.unit(7.5, "feet"),
  22280. weight: math.unit(2, "lb"),
  22281. name: "Front",
  22282. image: {
  22283. source: "./media/characters/artemis/oversize-load-front.svg",
  22284. extra: 1192 / 1075,
  22285. bottom: 0.07
  22286. },
  22287. form: "oversize-load",
  22288. default: true
  22289. },
  22290. side: {
  22291. height: math.unit(7.5, "feet"),
  22292. weight: math.unit(2, "lb"),
  22293. name: "Side",
  22294. image: {
  22295. source: "./media/characters/artemis/work-safe-side.svg",
  22296. extra: 1192 / 1075,
  22297. bottom: 0.07
  22298. },
  22299. form: "work-safe"
  22300. },
  22301. sideNsfw: {
  22302. height: math.unit(7.5, "feet"),
  22303. weight: math.unit(2, "lb"),
  22304. name: "Side",
  22305. image: {
  22306. source: "./media/characters/artemis/calibrating-side.svg",
  22307. extra: 1192 / 1075,
  22308. bottom: 0.07
  22309. },
  22310. form: "calibrating"
  22311. },
  22312. sideNsfwer: {
  22313. height: math.unit(7.5, "feet"),
  22314. weight: math.unit(2, "lb"),
  22315. name: "Side",
  22316. image: {
  22317. source: "./media/characters/artemis/oversize-load-side.svg",
  22318. extra: 1192 / 1075,
  22319. bottom: 0.07
  22320. },
  22321. form: "oversize-load"
  22322. },
  22323. maw: {
  22324. height: math.unit(1.1, "feet"),
  22325. name: "Maw",
  22326. image: {
  22327. source: "./media/characters/artemis/maw.svg"
  22328. },
  22329. form: "work-safe"
  22330. },
  22331. stomach: {
  22332. height: math.unit(0.95, "feet"),
  22333. name: "Stomach",
  22334. image: {
  22335. source: "./media/characters/artemis/stomach.svg"
  22336. },
  22337. form: "work-safe"
  22338. },
  22339. dickCanine: {
  22340. height: math.unit(1, "feet"),
  22341. name: "Dick (Canine)",
  22342. image: {
  22343. source: "./media/characters/artemis/dick-canine.svg"
  22344. },
  22345. form: "calibrating"
  22346. },
  22347. dickEquine: {
  22348. height: math.unit(0.85, "feet"),
  22349. name: "Dick (Equine)",
  22350. image: {
  22351. source: "./media/characters/artemis/dick-equine.svg"
  22352. },
  22353. form: "calibrating"
  22354. },
  22355. dickExotic: {
  22356. height: math.unit(0.85, "feet"),
  22357. name: "Dick (Exotic)",
  22358. image: {
  22359. source: "./media/characters/artemis/dick-exotic.svg"
  22360. },
  22361. form: "calibrating"
  22362. },
  22363. dickCanineBigger: {
  22364. height: math.unit(1 * 1.33, "feet"),
  22365. name: "Dick (Canine)",
  22366. image: {
  22367. source: "./media/characters/artemis/dick-canine.svg"
  22368. },
  22369. form: "oversize-load"
  22370. },
  22371. dickEquineBigger: {
  22372. height: math.unit(0.85 * 1.33, "feet"),
  22373. name: "Dick (Equine)",
  22374. image: {
  22375. source: "./media/characters/artemis/dick-equine.svg"
  22376. },
  22377. form: "oversize-load"
  22378. },
  22379. dickExoticBigger: {
  22380. height: math.unit(0.85 * 1.33, "feet"),
  22381. name: "Dick (Exotic)",
  22382. image: {
  22383. source: "./media/characters/artemis/dick-exotic.svg"
  22384. },
  22385. form: "oversize-load"
  22386. },
  22387. },
  22388. [
  22389. {
  22390. name: "Normal",
  22391. height: math.unit(7.5, "feet"),
  22392. form: "work-safe",
  22393. default: true
  22394. },
  22395. {
  22396. name: "Normal",
  22397. height: math.unit(7.5, "feet"),
  22398. form: "calibrating",
  22399. default: true
  22400. },
  22401. {
  22402. name: "Normal",
  22403. height: math.unit(7.5, "feet"),
  22404. form: "oversize-load",
  22405. default: true
  22406. },
  22407. {
  22408. name: "Enlarged",
  22409. height: math.unit(12, "feet"),
  22410. form: "work-safe",
  22411. },
  22412. {
  22413. name: "Enlarged",
  22414. height: math.unit(12, "feet"),
  22415. form: "calibrating",
  22416. },
  22417. {
  22418. name: "Enlarged",
  22419. height: math.unit(12, "feet"),
  22420. form: "oversize-load",
  22421. },
  22422. ],
  22423. {
  22424. "work-safe": {
  22425. name: "Work-Safe",
  22426. default: true
  22427. },
  22428. "calibrating": {
  22429. name: "Calibrating"
  22430. },
  22431. "oversize-load": {
  22432. name: "Oversize Load"
  22433. }
  22434. }
  22435. ))
  22436. characterMakers.push(() => makeCharacter(
  22437. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22438. {
  22439. front: {
  22440. height: math.unit(5 + 3 / 12, "feet"),
  22441. weight: math.unit(160, "lb"),
  22442. name: "Front",
  22443. image: {
  22444. source: "./media/characters/kira/front.svg",
  22445. extra: 906 / 786,
  22446. bottom: 0.01
  22447. }
  22448. },
  22449. back: {
  22450. height: math.unit(5 + 3 / 12, "feet"),
  22451. weight: math.unit(160, "lb"),
  22452. name: "Back",
  22453. image: {
  22454. source: "./media/characters/kira/back.svg",
  22455. extra: 882 / 757,
  22456. bottom: 0.005
  22457. }
  22458. },
  22459. frontDressed: {
  22460. height: math.unit(5 + 3 / 12, "feet"),
  22461. weight: math.unit(160, "lb"),
  22462. name: "Front (Dressed)",
  22463. image: {
  22464. source: "./media/characters/kira/front-dressed.svg",
  22465. extra: 906 / 786,
  22466. bottom: 0.01
  22467. }
  22468. },
  22469. beans: {
  22470. height: math.unit(0.92, "feet"),
  22471. name: "Beans",
  22472. image: {
  22473. source: "./media/characters/kira/beans.svg"
  22474. }
  22475. },
  22476. },
  22477. [
  22478. {
  22479. name: "Normal",
  22480. height: math.unit(5 + 3 / 12, "feet"),
  22481. default: true
  22482. },
  22483. ]
  22484. ))
  22485. characterMakers.push(() => makeCharacter(
  22486. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22487. {
  22488. front: {
  22489. height: math.unit(5 + 4 / 12, "feet"),
  22490. weight: math.unit(145, "lb"),
  22491. name: "Front",
  22492. image: {
  22493. source: "./media/characters/scramble/front.svg",
  22494. extra: 763 / 727,
  22495. bottom: 0.05
  22496. }
  22497. },
  22498. back: {
  22499. height: math.unit(5 + 4 / 12, "feet"),
  22500. weight: math.unit(145, "lb"),
  22501. name: "Back",
  22502. image: {
  22503. source: "./media/characters/scramble/back.svg",
  22504. extra: 826 / 737,
  22505. bottom: 0.002
  22506. }
  22507. },
  22508. },
  22509. [
  22510. {
  22511. name: "Normal",
  22512. height: math.unit(5 + 4 / 12, "feet"),
  22513. default: true
  22514. },
  22515. ]
  22516. ))
  22517. characterMakers.push(() => makeCharacter(
  22518. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22519. {
  22520. side: {
  22521. height: math.unit(6 + 2 / 12, "feet"),
  22522. weight: math.unit(190, "lb"),
  22523. name: "Side",
  22524. image: {
  22525. source: "./media/characters/biscuit/side.svg",
  22526. extra: 858 / 791,
  22527. bottom: 0.044
  22528. }
  22529. },
  22530. },
  22531. [
  22532. {
  22533. name: "Normal",
  22534. height: math.unit(6 + 2 / 12, "feet"),
  22535. default: true
  22536. },
  22537. ]
  22538. ))
  22539. characterMakers.push(() => makeCharacter(
  22540. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22541. {
  22542. front: {
  22543. height: math.unit(5 + 2 / 12, "feet"),
  22544. weight: math.unit(120, "lb"),
  22545. name: "Front",
  22546. image: {
  22547. source: "./media/characters/poffin/front.svg",
  22548. extra: 786 / 680,
  22549. bottom: 0.005
  22550. }
  22551. },
  22552. },
  22553. [
  22554. {
  22555. name: "Normal",
  22556. height: math.unit(5 + 2 / 12, "feet"),
  22557. default: true
  22558. },
  22559. ]
  22560. ))
  22561. characterMakers.push(() => makeCharacter(
  22562. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22563. {
  22564. front: {
  22565. height: math.unit(6 + 3 / 12, "feet"),
  22566. weight: math.unit(519, "lb"),
  22567. name: "Front",
  22568. image: {
  22569. source: "./media/characters/dhari/front.svg",
  22570. extra: 1048 / 946,
  22571. bottom: 0.015
  22572. }
  22573. },
  22574. back: {
  22575. height: math.unit(6 + 3 / 12, "feet"),
  22576. weight: math.unit(519, "lb"),
  22577. name: "Back",
  22578. image: {
  22579. source: "./media/characters/dhari/back.svg",
  22580. extra: 1048 / 931,
  22581. bottom: 0.005
  22582. }
  22583. },
  22584. frontDressed: {
  22585. height: math.unit(6 + 3 / 12, "feet"),
  22586. weight: math.unit(519, "lb"),
  22587. name: "Front (Dressed)",
  22588. image: {
  22589. source: "./media/characters/dhari/front-dressed.svg",
  22590. extra: 1713 / 1546,
  22591. bottom: 0.02
  22592. }
  22593. },
  22594. backDressed: {
  22595. height: math.unit(6 + 3 / 12, "feet"),
  22596. weight: math.unit(519, "lb"),
  22597. name: "Back (Dressed)",
  22598. image: {
  22599. source: "./media/characters/dhari/back-dressed.svg",
  22600. extra: 1699 / 1537,
  22601. bottom: 0.01
  22602. }
  22603. },
  22604. maw: {
  22605. height: math.unit(0.95, "feet"),
  22606. name: "Maw",
  22607. image: {
  22608. source: "./media/characters/dhari/maw.svg"
  22609. }
  22610. },
  22611. wereFront: {
  22612. height: math.unit(12 + 8 / 12, "feet"),
  22613. weight: math.unit(4000, "lb"),
  22614. name: "Front (Were)",
  22615. image: {
  22616. source: "./media/characters/dhari/were-front.svg",
  22617. extra: 1065 / 969,
  22618. bottom: 0.015
  22619. }
  22620. },
  22621. wereBack: {
  22622. height: math.unit(12 + 8 / 12, "feet"),
  22623. weight: math.unit(4000, "lb"),
  22624. name: "Back (Were)",
  22625. image: {
  22626. source: "./media/characters/dhari/were-back.svg",
  22627. extra: 1065 / 969,
  22628. bottom: 0.012
  22629. }
  22630. },
  22631. wereMaw: {
  22632. height: math.unit(0.625, "meters"),
  22633. name: "Maw (Were)",
  22634. image: {
  22635. source: "./media/characters/dhari/were-maw.svg"
  22636. }
  22637. },
  22638. },
  22639. [
  22640. {
  22641. name: "Normal",
  22642. height: math.unit(6 + 3 / 12, "feet"),
  22643. default: true
  22644. },
  22645. ]
  22646. ))
  22647. characterMakers.push(() => makeCharacter(
  22648. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22649. {
  22650. anthro: {
  22651. height: math.unit(5 + 7 / 12, "feet"),
  22652. weight: math.unit(175, "lb"),
  22653. name: "Anthro",
  22654. image: {
  22655. source: "./media/characters/rena-dyne/anthro.svg",
  22656. extra: 1849 / 1785,
  22657. bottom: 0.005
  22658. }
  22659. },
  22660. taur: {
  22661. height: math.unit(15 + 6 / 12, "feet"),
  22662. weight: math.unit(8000, "lb"),
  22663. name: "Taur",
  22664. image: {
  22665. source: "./media/characters/rena-dyne/taur.svg",
  22666. extra: 2315 / 2234,
  22667. bottom: 0.033
  22668. }
  22669. },
  22670. },
  22671. [
  22672. {
  22673. name: "Normal",
  22674. height: math.unit(5 + 7 / 12, "feet"),
  22675. default: true
  22676. },
  22677. ]
  22678. ))
  22679. characterMakers.push(() => makeCharacter(
  22680. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22681. {
  22682. front: {
  22683. height: math.unit(8, "feet"),
  22684. weight: math.unit(600, "lb"),
  22685. name: "Front",
  22686. image: {
  22687. source: "./media/characters/weremeep/front.svg",
  22688. extra: 970/849,
  22689. bottom: 7/977
  22690. }
  22691. },
  22692. },
  22693. [
  22694. {
  22695. name: "Normal",
  22696. height: math.unit(8, "feet"),
  22697. default: true
  22698. },
  22699. {
  22700. name: "Lorg",
  22701. height: math.unit(12, "feet")
  22702. },
  22703. {
  22704. name: "Oh Lawd She Comin'",
  22705. height: math.unit(20, "feet")
  22706. },
  22707. ]
  22708. ))
  22709. characterMakers.push(() => makeCharacter(
  22710. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22711. {
  22712. front: {
  22713. height: math.unit(4, "feet"),
  22714. weight: math.unit(90, "lb"),
  22715. name: "Front",
  22716. image: {
  22717. source: "./media/characters/reza/front.svg",
  22718. extra: 1183 / 1111,
  22719. bottom: 0.017
  22720. }
  22721. },
  22722. back: {
  22723. height: math.unit(4, "feet"),
  22724. weight: math.unit(90, "lb"),
  22725. name: "Back",
  22726. image: {
  22727. source: "./media/characters/reza/back.svg",
  22728. extra: 1183 / 1111,
  22729. bottom: 0.01
  22730. }
  22731. },
  22732. drake: {
  22733. height: math.unit(30, "feet"),
  22734. weight: math.unit(246960, "lb"),
  22735. name: "Drake",
  22736. image: {
  22737. source: "./media/characters/reza/drake.svg",
  22738. extra: 2350 / 2024,
  22739. bottom: 60.7 / 2403
  22740. }
  22741. },
  22742. },
  22743. [
  22744. {
  22745. name: "Normal",
  22746. height: math.unit(4, "feet"),
  22747. default: true
  22748. },
  22749. ]
  22750. ))
  22751. characterMakers.push(() => makeCharacter(
  22752. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22753. {
  22754. side: {
  22755. height: math.unit(15, "feet"),
  22756. weight: math.unit(14, "tons"),
  22757. name: "Side",
  22758. image: {
  22759. source: "./media/characters/athea/side.svg",
  22760. extra: 960 / 540,
  22761. bottom: 0.003
  22762. }
  22763. },
  22764. sitting: {
  22765. height: math.unit(6 * 2.85, "feet"),
  22766. weight: math.unit(14, "tons"),
  22767. name: "Sitting",
  22768. image: {
  22769. source: "./media/characters/athea/sitting.svg",
  22770. extra: 621 / 581,
  22771. bottom: 0.075
  22772. }
  22773. },
  22774. maw: {
  22775. height: math.unit(7.59498031496063, "feet"),
  22776. name: "Maw",
  22777. image: {
  22778. source: "./media/characters/athea/maw.svg"
  22779. }
  22780. },
  22781. },
  22782. [
  22783. {
  22784. name: "Lap Cat",
  22785. height: math.unit(2.5, "feet")
  22786. },
  22787. {
  22788. name: "Minimacro",
  22789. height: math.unit(15, "feet"),
  22790. default: true
  22791. },
  22792. {
  22793. name: "Macro",
  22794. height: math.unit(120, "feet")
  22795. },
  22796. {
  22797. name: "Macro+",
  22798. height: math.unit(640, "feet")
  22799. },
  22800. {
  22801. name: "Colossus",
  22802. height: math.unit(2.2, "miles")
  22803. },
  22804. ]
  22805. ))
  22806. characterMakers.push(() => makeCharacter(
  22807. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22808. {
  22809. front: {
  22810. height: math.unit(8 + 8 / 12, "feet"),
  22811. weight: math.unit(130, "kg"),
  22812. name: "Front",
  22813. image: {
  22814. source: "./media/characters/seroko/front.svg",
  22815. extra: 1385 / 1280,
  22816. bottom: 0.025
  22817. }
  22818. },
  22819. back: {
  22820. height: math.unit(8 + 8 / 12, "feet"),
  22821. weight: math.unit(130, "kg"),
  22822. name: "Back",
  22823. image: {
  22824. source: "./media/characters/seroko/back.svg",
  22825. extra: 1369 / 1238,
  22826. bottom: 0.018
  22827. }
  22828. },
  22829. frontDressed: {
  22830. height: math.unit(8 + 8 / 12, "feet"),
  22831. weight: math.unit(130, "kg"),
  22832. name: "Front (Dressed)",
  22833. image: {
  22834. source: "./media/characters/seroko/front-dressed.svg",
  22835. extra: 1366 / 1275,
  22836. bottom: 0.03
  22837. }
  22838. },
  22839. },
  22840. [
  22841. {
  22842. name: "Normal",
  22843. height: math.unit(8 + 8 / 12, "feet"),
  22844. default: true
  22845. },
  22846. ]
  22847. ))
  22848. characterMakers.push(() => makeCharacter(
  22849. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22850. {
  22851. front: {
  22852. height: math.unit(5.5, "feet"),
  22853. weight: math.unit(160, "lb"),
  22854. name: "Front",
  22855. image: {
  22856. source: "./media/characters/quatzi/front.svg",
  22857. extra: 2346 / 2242,
  22858. bottom: 0.015
  22859. }
  22860. },
  22861. },
  22862. [
  22863. {
  22864. name: "Normal",
  22865. height: math.unit(5.5, "feet"),
  22866. default: true
  22867. },
  22868. {
  22869. name: "Big",
  22870. height: math.unit(7.7, "feet")
  22871. },
  22872. ]
  22873. ))
  22874. characterMakers.push(() => makeCharacter(
  22875. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22876. {
  22877. front: {
  22878. height: math.unit(5 + 11 / 12, "feet"),
  22879. weight: math.unit(180, "lb"),
  22880. name: "Front",
  22881. image: {
  22882. source: "./media/characters/sen/front.svg",
  22883. extra: 1321 / 1254,
  22884. bottom: 0.015
  22885. }
  22886. },
  22887. side: {
  22888. height: math.unit(5 + 11 / 12, "feet"),
  22889. weight: math.unit(180, "lb"),
  22890. name: "Side",
  22891. image: {
  22892. source: "./media/characters/sen/side.svg",
  22893. extra: 1321 / 1254,
  22894. bottom: 0.007
  22895. }
  22896. },
  22897. back: {
  22898. height: math.unit(5 + 11 / 12, "feet"),
  22899. weight: math.unit(180, "lb"),
  22900. name: "Back",
  22901. image: {
  22902. source: "./media/characters/sen/back.svg",
  22903. extra: 1321 / 1254
  22904. }
  22905. },
  22906. },
  22907. [
  22908. {
  22909. name: "Normal",
  22910. height: math.unit(5 + 11 / 12, "feet"),
  22911. default: true
  22912. },
  22913. ]
  22914. ))
  22915. characterMakers.push(() => makeCharacter(
  22916. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22917. {
  22918. front: {
  22919. height: math.unit(166.6, "cm"),
  22920. weight: math.unit(66.6, "kg"),
  22921. name: "Front",
  22922. image: {
  22923. source: "./media/characters/fruity/front.svg",
  22924. extra: 1510 / 1386,
  22925. bottom: 0.04
  22926. }
  22927. },
  22928. back: {
  22929. height: math.unit(166.6, "cm"),
  22930. weight: math.unit(66.6, "lb"),
  22931. name: "Back",
  22932. image: {
  22933. source: "./media/characters/fruity/back.svg",
  22934. extra: 1563 / 1435,
  22935. bottom: 0.005
  22936. }
  22937. },
  22938. },
  22939. [
  22940. {
  22941. name: "Normal",
  22942. height: math.unit(166.6, "cm"),
  22943. default: true
  22944. },
  22945. {
  22946. name: "Demonic",
  22947. height: math.unit(166.6, "feet")
  22948. },
  22949. ]
  22950. ))
  22951. characterMakers.push(() => makeCharacter(
  22952. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22953. {
  22954. side: {
  22955. height: math.unit(10, "feet"),
  22956. weight: math.unit(500, "lb"),
  22957. name: "Side",
  22958. image: {
  22959. source: "./media/characters/zost/side.svg",
  22960. extra: 2870/2533,
  22961. bottom: 252/3122
  22962. }
  22963. },
  22964. mawFront: {
  22965. height: math.unit(1.08, "meters"),
  22966. name: "Maw (Front)",
  22967. image: {
  22968. source: "./media/characters/zost/maw-front.svg"
  22969. }
  22970. },
  22971. mawSide: {
  22972. height: math.unit(2.66, "feet"),
  22973. name: "Maw (Side)",
  22974. image: {
  22975. source: "./media/characters/zost/maw-side.svg"
  22976. }
  22977. },
  22978. wingspan: {
  22979. height: math.unit(7.4, "feet"),
  22980. name: "Wingspan",
  22981. image: {
  22982. source: "./media/characters/zost/wingspan.svg"
  22983. }
  22984. },
  22985. },
  22986. [
  22987. {
  22988. name: "Normal",
  22989. height: math.unit(10, "feet"),
  22990. default: true
  22991. },
  22992. ]
  22993. ))
  22994. characterMakers.push(() => makeCharacter(
  22995. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22996. {
  22997. front: {
  22998. height: math.unit(5 + 4 / 12, "feet"),
  22999. weight: math.unit(120, "lb"),
  23000. name: "Front",
  23001. image: {
  23002. source: "./media/characters/luci/front.svg",
  23003. extra: 1985 / 1884,
  23004. bottom: 0.04
  23005. }
  23006. },
  23007. back: {
  23008. height: math.unit(5 + 4 / 12, "feet"),
  23009. weight: math.unit(120, "lb"),
  23010. name: "Back",
  23011. image: {
  23012. source: "./media/characters/luci/back.svg",
  23013. extra: 1892 / 1791,
  23014. bottom: 0.002
  23015. }
  23016. },
  23017. },
  23018. [
  23019. {
  23020. name: "Normal",
  23021. height: math.unit(5 + 4 / 12, "feet"),
  23022. default: true
  23023. },
  23024. ]
  23025. ))
  23026. characterMakers.push(() => makeCharacter(
  23027. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23028. {
  23029. front: {
  23030. height: math.unit(1500, "feet"),
  23031. weight: math.unit(3.8e6, "tons"),
  23032. name: "Front",
  23033. image: {
  23034. source: "./media/characters/2th/front.svg",
  23035. extra: 3489 / 3350,
  23036. bottom: 0.1
  23037. }
  23038. },
  23039. foot: {
  23040. height: math.unit(461, "feet"),
  23041. name: "Foot",
  23042. image: {
  23043. source: "./media/characters/2th/foot.svg"
  23044. }
  23045. },
  23046. },
  23047. [
  23048. {
  23049. name: "\"Micro\"",
  23050. height: math.unit(15 + 7 / 12, "feet")
  23051. },
  23052. {
  23053. name: "Normal",
  23054. height: math.unit(1500, "feet"),
  23055. default: true
  23056. },
  23057. {
  23058. name: "Macro",
  23059. height: math.unit(5000, "feet")
  23060. },
  23061. {
  23062. name: "Megamacro",
  23063. height: math.unit(15, "miles")
  23064. },
  23065. {
  23066. name: "Gigamacro",
  23067. height: math.unit(4000, "miles")
  23068. },
  23069. {
  23070. name: "Galactic",
  23071. height: math.unit(50, "AU")
  23072. },
  23073. ]
  23074. ))
  23075. characterMakers.push(() => makeCharacter(
  23076. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23077. {
  23078. front: {
  23079. height: math.unit(5 + 6 / 12, "feet"),
  23080. weight: math.unit(220, "lb"),
  23081. name: "Front",
  23082. image: {
  23083. source: "./media/characters/amethyst/front.svg",
  23084. extra: 2078 / 2040,
  23085. bottom: 0.045
  23086. }
  23087. },
  23088. back: {
  23089. height: math.unit(5 + 6 / 12, "feet"),
  23090. weight: math.unit(220, "lb"),
  23091. name: "Back",
  23092. image: {
  23093. source: "./media/characters/amethyst/back.svg",
  23094. extra: 2021 / 1989,
  23095. bottom: 0.02
  23096. }
  23097. },
  23098. },
  23099. [
  23100. {
  23101. name: "Normal",
  23102. height: math.unit(5 + 6 / 12, "feet"),
  23103. default: true
  23104. },
  23105. ]
  23106. ))
  23107. characterMakers.push(() => makeCharacter(
  23108. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23109. {
  23110. front: {
  23111. height: math.unit(4 + 11 / 12, "feet"),
  23112. weight: math.unit(120, "lb"),
  23113. name: "Front",
  23114. image: {
  23115. source: "./media/characters/yumi-akiyama/front.svg",
  23116. extra: 1327 / 1235,
  23117. bottom: 0.02
  23118. }
  23119. },
  23120. back: {
  23121. height: math.unit(4 + 11 / 12, "feet"),
  23122. weight: math.unit(120, "lb"),
  23123. name: "Back",
  23124. image: {
  23125. source: "./media/characters/yumi-akiyama/back.svg",
  23126. extra: 1287 / 1245,
  23127. bottom: 0.002
  23128. }
  23129. },
  23130. },
  23131. [
  23132. {
  23133. name: "Galactic",
  23134. height: math.unit(50, "galaxies"),
  23135. default: true
  23136. },
  23137. {
  23138. name: "Universal",
  23139. height: math.unit(100, "universes")
  23140. },
  23141. ]
  23142. ))
  23143. characterMakers.push(() => makeCharacter(
  23144. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23145. {
  23146. front: {
  23147. height: math.unit(8, "feet"),
  23148. weight: math.unit(500, "lb"),
  23149. name: "Front",
  23150. image: {
  23151. source: "./media/characters/rifter-yrmori/front.svg",
  23152. extra: 1180 / 1125,
  23153. bottom: 0.02
  23154. }
  23155. },
  23156. back: {
  23157. height: math.unit(8, "feet"),
  23158. weight: math.unit(500, "lb"),
  23159. name: "Back",
  23160. image: {
  23161. source: "./media/characters/rifter-yrmori/back.svg",
  23162. extra: 1190 / 1145,
  23163. bottom: 0.001
  23164. }
  23165. },
  23166. wings: {
  23167. height: math.unit(7.75, "feet"),
  23168. weight: math.unit(500, "lb"),
  23169. name: "Wings",
  23170. image: {
  23171. source: "./media/characters/rifter-yrmori/wings.svg",
  23172. extra: 1357 / 1285
  23173. }
  23174. },
  23175. maw: {
  23176. height: math.unit(0.8, "feet"),
  23177. name: "Maw",
  23178. image: {
  23179. source: "./media/characters/rifter-yrmori/maw.svg"
  23180. }
  23181. },
  23182. mawfront: {
  23183. height: math.unit(1.45, "feet"),
  23184. name: "Maw (Front)",
  23185. image: {
  23186. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23187. }
  23188. },
  23189. },
  23190. [
  23191. {
  23192. name: "Normal",
  23193. height: math.unit(8, "feet"),
  23194. default: true
  23195. },
  23196. {
  23197. name: "Macro",
  23198. height: math.unit(42, "meters")
  23199. },
  23200. ]
  23201. ))
  23202. characterMakers.push(() => makeCharacter(
  23203. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23204. {
  23205. were: {
  23206. height: math.unit(25 + 6 / 12, "feet"),
  23207. weight: math.unit(10000, "lb"),
  23208. name: "Were",
  23209. image: {
  23210. source: "./media/characters/tahajin/were.svg",
  23211. extra: 801 / 770,
  23212. bottom: 0.042
  23213. }
  23214. },
  23215. aquatic: {
  23216. height: math.unit(6 + 4 / 12, "feet"),
  23217. weight: math.unit(160, "lb"),
  23218. name: "Aquatic",
  23219. image: {
  23220. source: "./media/characters/tahajin/aquatic.svg",
  23221. extra: 572 / 542,
  23222. bottom: 0.04
  23223. }
  23224. },
  23225. chow: {
  23226. height: math.unit(8 + 11 / 12, "feet"),
  23227. weight: math.unit(450, "lb"),
  23228. name: "Chow",
  23229. image: {
  23230. source: "./media/characters/tahajin/chow.svg",
  23231. extra: 660 / 640,
  23232. bottom: 0.015
  23233. }
  23234. },
  23235. demiNaga: {
  23236. height: math.unit(6 + 8 / 12, "feet"),
  23237. weight: math.unit(300, "lb"),
  23238. name: "Demi Naga",
  23239. image: {
  23240. source: "./media/characters/tahajin/demi-naga.svg",
  23241. extra: 643 / 615,
  23242. bottom: 0.1
  23243. }
  23244. },
  23245. data: {
  23246. height: math.unit(5, "inches"),
  23247. weight: math.unit(0.1, "lb"),
  23248. name: "Data",
  23249. image: {
  23250. source: "./media/characters/tahajin/data.svg"
  23251. }
  23252. },
  23253. fluu: {
  23254. height: math.unit(5 + 7 / 12, "feet"),
  23255. weight: math.unit(140, "lb"),
  23256. name: "Fluu",
  23257. image: {
  23258. source: "./media/characters/tahajin/fluu.svg",
  23259. extra: 628 / 592,
  23260. bottom: 0.02
  23261. }
  23262. },
  23263. starWarrior: {
  23264. height: math.unit(4 + 5 / 12, "feet"),
  23265. weight: math.unit(50, "lb"),
  23266. name: "Star Warrior",
  23267. image: {
  23268. source: "./media/characters/tahajin/star-warrior.svg"
  23269. }
  23270. },
  23271. },
  23272. [
  23273. {
  23274. name: "Normal",
  23275. height: math.unit(25 + 6 / 12, "feet"),
  23276. default: true
  23277. },
  23278. ]
  23279. ))
  23280. characterMakers.push(() => makeCharacter(
  23281. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23282. {
  23283. front: {
  23284. height: math.unit(8, "feet"),
  23285. weight: math.unit(350, "lb"),
  23286. name: "Front",
  23287. image: {
  23288. source: "./media/characters/gabira/front.svg",
  23289. extra: 1261/1154,
  23290. bottom: 51/1312
  23291. }
  23292. },
  23293. back: {
  23294. height: math.unit(8, "feet"),
  23295. weight: math.unit(350, "lb"),
  23296. name: "Back",
  23297. image: {
  23298. source: "./media/characters/gabira/back.svg",
  23299. extra: 1265/1163,
  23300. bottom: 46/1311
  23301. }
  23302. },
  23303. head: {
  23304. height: math.unit(2.85, "feet"),
  23305. name: "Head",
  23306. image: {
  23307. source: "./media/characters/gabira/head.svg"
  23308. }
  23309. },
  23310. },
  23311. [
  23312. {
  23313. name: "Normal",
  23314. height: math.unit(8, "feet"),
  23315. default: true
  23316. },
  23317. ]
  23318. ))
  23319. characterMakers.push(() => makeCharacter(
  23320. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23321. {
  23322. front: {
  23323. height: math.unit(5 + 3 / 12, "feet"),
  23324. weight: math.unit(137, "lb"),
  23325. name: "Front",
  23326. image: {
  23327. source: "./media/characters/sasha-katraine/front.svg",
  23328. extra: 1745/1694,
  23329. bottom: 37/1782
  23330. }
  23331. },
  23332. back: {
  23333. height: math.unit(5 + 3 / 12, "feet"),
  23334. weight: math.unit(137, "lb"),
  23335. name: "Back",
  23336. image: {
  23337. source: "./media/characters/sasha-katraine/back.svg",
  23338. extra: 1776/1699,
  23339. bottom: 26/1802
  23340. }
  23341. },
  23342. },
  23343. [
  23344. {
  23345. name: "Micro",
  23346. height: math.unit(5, "inches")
  23347. },
  23348. {
  23349. name: "Normal",
  23350. height: math.unit(5 + 3 / 12, "feet"),
  23351. default: true
  23352. },
  23353. ]
  23354. ))
  23355. characterMakers.push(() => makeCharacter(
  23356. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23357. {
  23358. side: {
  23359. height: math.unit(4, "inches"),
  23360. weight: math.unit(200, "grams"),
  23361. name: "Side",
  23362. image: {
  23363. source: "./media/characters/der/side.svg",
  23364. extra: 719 / 400,
  23365. bottom: 30.6 / 749.9187
  23366. }
  23367. },
  23368. },
  23369. [
  23370. {
  23371. name: "Micro",
  23372. height: math.unit(4, "inches"),
  23373. default: true
  23374. },
  23375. ]
  23376. ))
  23377. characterMakers.push(() => makeCharacter(
  23378. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23379. {
  23380. side: {
  23381. height: math.unit(30, "meters"),
  23382. weight: math.unit(700, "tonnes"),
  23383. name: "Side",
  23384. image: {
  23385. source: "./media/characters/fixerdragon/side.svg",
  23386. extra: (1293.0514 - 116.03) / 1106.86,
  23387. bottom: 116.03 / 1293.0514
  23388. }
  23389. },
  23390. },
  23391. [
  23392. {
  23393. name: "Planck",
  23394. height: math.unit(1.6e-35, "meters")
  23395. },
  23396. {
  23397. name: "Micro",
  23398. height: math.unit(0.4, "meters")
  23399. },
  23400. {
  23401. name: "Normal",
  23402. height: math.unit(30, "meters"),
  23403. default: true
  23404. },
  23405. {
  23406. name: "Megamacro",
  23407. height: math.unit(1.2, "megameters")
  23408. },
  23409. {
  23410. name: "Teramacro",
  23411. height: math.unit(130, "terameters")
  23412. },
  23413. {
  23414. name: "Yottamacro",
  23415. height: math.unit(6200, "yottameters")
  23416. },
  23417. ]
  23418. ));
  23419. characterMakers.push(() => makeCharacter(
  23420. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23421. {
  23422. front: {
  23423. height: math.unit(8, "feet"),
  23424. weight: math.unit(250, "lb"),
  23425. name: "Front",
  23426. image: {
  23427. source: "./media/characters/kite/front.svg",
  23428. extra: 2796 / 2659,
  23429. bottom: 0.002
  23430. }
  23431. },
  23432. },
  23433. [
  23434. {
  23435. name: "Normal",
  23436. height: math.unit(8, "feet"),
  23437. default: true
  23438. },
  23439. {
  23440. name: "Macro",
  23441. height: math.unit(360, "feet")
  23442. },
  23443. {
  23444. name: "Megamacro",
  23445. height: math.unit(1500, "feet")
  23446. },
  23447. ]
  23448. ))
  23449. characterMakers.push(() => makeCharacter(
  23450. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23451. {
  23452. front: {
  23453. height: math.unit(5 + 11/12, "feet"),
  23454. weight: math.unit(170, "lb"),
  23455. name: "Front",
  23456. image: {
  23457. source: "./media/characters/poojawa-vynar/front.svg",
  23458. extra: 1735/1585,
  23459. bottom: 96/1831
  23460. }
  23461. },
  23462. back: {
  23463. height: math.unit(5 + 11/12, "feet"),
  23464. weight: math.unit(170, "lb"),
  23465. name: "Back",
  23466. image: {
  23467. source: "./media/characters/poojawa-vynar/back.svg",
  23468. extra: 1749/1607,
  23469. bottom: 28/1777
  23470. }
  23471. },
  23472. male: {
  23473. height: math.unit(5 + 11/12, "feet"),
  23474. weight: math.unit(170, "lb"),
  23475. name: "Male",
  23476. image: {
  23477. source: "./media/characters/poojawa-vynar/male.svg",
  23478. extra: 1855/1713,
  23479. bottom: 63/1918
  23480. }
  23481. },
  23482. taur: {
  23483. height: math.unit(5 + 11/12, "feet"),
  23484. weight: math.unit(170, "lb"),
  23485. name: "Taur",
  23486. image: {
  23487. source: "./media/characters/poojawa-vynar/taur.svg",
  23488. extra: 1151/1059,
  23489. bottom: 356/1507
  23490. }
  23491. },
  23492. frontDressed: {
  23493. height: math.unit(5 + 11/12, "feet"),
  23494. weight: math.unit(170, "lb"),
  23495. name: "Front (Dressed)",
  23496. image: {
  23497. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23498. extra: 1735/1585,
  23499. bottom: 96/1831
  23500. }
  23501. },
  23502. backDressed: {
  23503. height: math.unit(5 + 11/12, "feet"),
  23504. weight: math.unit(170, "lb"),
  23505. name: "Back (Dressed)",
  23506. image: {
  23507. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23508. extra: 1749/1607,
  23509. bottom: 28/1777
  23510. }
  23511. },
  23512. maleDressed: {
  23513. height: math.unit(5 + 11/12, "feet"),
  23514. weight: math.unit(170, "lb"),
  23515. name: "Male (Dressed)",
  23516. image: {
  23517. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23518. extra: 1855/1713,
  23519. bottom: 63/1918
  23520. }
  23521. },
  23522. taurDressed: {
  23523. height: math.unit(5 + 11/12, "feet"),
  23524. weight: math.unit(170, "lb"),
  23525. name: "Taur (Dressed)",
  23526. image: {
  23527. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23528. extra: 1151/1059,
  23529. bottom: 356/1507
  23530. }
  23531. },
  23532. maw: {
  23533. height: math.unit(1.46, "feet"),
  23534. name: "Maw",
  23535. image: {
  23536. source: "./media/characters/poojawa-vynar/maw.svg"
  23537. }
  23538. },
  23539. head: {
  23540. height: math.unit(2.34, "feet"),
  23541. name: "Head",
  23542. image: {
  23543. source: "./media/characters/poojawa-vynar/head.svg"
  23544. }
  23545. },
  23546. paw: {
  23547. height: math.unit(1.61, "feet"),
  23548. name: "Paw",
  23549. image: {
  23550. source: "./media/characters/poojawa-vynar/paw.svg"
  23551. }
  23552. },
  23553. pawToering: {
  23554. height: math.unit(1.72, "feet"),
  23555. name: "Paw (Toering)",
  23556. image: {
  23557. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23558. }
  23559. },
  23560. toering: {
  23561. height: math.unit(2.9, "inches"),
  23562. name: "Toering",
  23563. image: {
  23564. source: "./media/characters/poojawa-vynar/toering.svg"
  23565. }
  23566. },
  23567. shaft: {
  23568. height: math.unit(0.625, "feet"),
  23569. name: "Shaft",
  23570. image: {
  23571. source: "./media/characters/poojawa-vynar/shaft.svg"
  23572. }
  23573. },
  23574. spade: {
  23575. height: math.unit(0.42, "feet"),
  23576. name: "Spade",
  23577. image: {
  23578. source: "./media/characters/poojawa-vynar/spade.svg"
  23579. }
  23580. },
  23581. },
  23582. [
  23583. {
  23584. name: "Shortstack",
  23585. height: math.unit(4, "feet")
  23586. },
  23587. {
  23588. name: "Normal",
  23589. height: math.unit(5 + 11 / 12, "feet"),
  23590. default: true
  23591. },
  23592. {
  23593. name: "Tauric",
  23594. height: math.unit(4, "meters")
  23595. },
  23596. ]
  23597. ))
  23598. characterMakers.push(() => makeCharacter(
  23599. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23600. {
  23601. front: {
  23602. height: math.unit(293, "meters"),
  23603. weight: math.unit(70400, "tons"),
  23604. name: "Front",
  23605. image: {
  23606. source: "./media/characters/violette/front.svg",
  23607. extra: 1227 / 1180,
  23608. bottom: 0.005
  23609. }
  23610. },
  23611. back: {
  23612. height: math.unit(293, "meters"),
  23613. weight: math.unit(70400, "tons"),
  23614. name: "Back",
  23615. image: {
  23616. source: "./media/characters/violette/back.svg",
  23617. extra: 1227 / 1180,
  23618. bottom: 0.005
  23619. }
  23620. },
  23621. },
  23622. [
  23623. {
  23624. name: "Macro",
  23625. height: math.unit(293, "meters"),
  23626. default: true
  23627. },
  23628. ]
  23629. ))
  23630. characterMakers.push(() => makeCharacter(
  23631. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23632. {
  23633. front: {
  23634. height: math.unit(1050, "feet"),
  23635. weight: math.unit(200000, "tons"),
  23636. name: "Front",
  23637. image: {
  23638. source: "./media/characters/alessandra/front.svg",
  23639. extra: 960 / 912,
  23640. bottom: 0.06
  23641. }
  23642. },
  23643. },
  23644. [
  23645. {
  23646. name: "Macro",
  23647. height: math.unit(1050, "feet")
  23648. },
  23649. {
  23650. name: "Macro+",
  23651. height: math.unit(900, "meters"),
  23652. default: true
  23653. },
  23654. ]
  23655. ))
  23656. characterMakers.push(() => makeCharacter(
  23657. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23658. {
  23659. front: {
  23660. height: math.unit(5, "feet"),
  23661. weight: math.unit(187, "lb"),
  23662. name: "Front",
  23663. image: {
  23664. source: "./media/characters/person/front.svg",
  23665. extra: 3087 / 2945,
  23666. bottom: 91 / 3181
  23667. }
  23668. },
  23669. },
  23670. [
  23671. {
  23672. name: "Micro",
  23673. height: math.unit(3, "inches")
  23674. },
  23675. {
  23676. name: "Normal",
  23677. height: math.unit(5, "feet"),
  23678. default: true
  23679. },
  23680. {
  23681. name: "Macro",
  23682. height: math.unit(90, "feet")
  23683. },
  23684. {
  23685. name: "Max Size",
  23686. height: math.unit(280, "feet")
  23687. },
  23688. ]
  23689. ))
  23690. characterMakers.push(() => makeCharacter(
  23691. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23692. {
  23693. front: {
  23694. height: math.unit(4.5, "meters"),
  23695. weight: math.unit(3200, "lb"),
  23696. name: "Front",
  23697. image: {
  23698. source: "./media/characters/ty/front.svg",
  23699. extra: 1038 / 960,
  23700. bottom: 31.156 / 1068
  23701. }
  23702. },
  23703. back: {
  23704. height: math.unit(4.5, "meters"),
  23705. weight: math.unit(3200, "lb"),
  23706. name: "Back",
  23707. image: {
  23708. source: "./media/characters/ty/back.svg",
  23709. extra: 1044 / 966,
  23710. bottom: 7.48 / 1049
  23711. }
  23712. },
  23713. },
  23714. [
  23715. {
  23716. name: "Normal",
  23717. height: math.unit(4.5, "meters"),
  23718. default: true
  23719. },
  23720. ]
  23721. ))
  23722. characterMakers.push(() => makeCharacter(
  23723. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23724. {
  23725. front: {
  23726. height: math.unit(5 + 4 / 12, "feet"),
  23727. weight: math.unit(115, "lb"),
  23728. name: "Front",
  23729. image: {
  23730. source: "./media/characters/rocky/front.svg",
  23731. extra: 1012 / 975,
  23732. bottom: 54 / 1066
  23733. }
  23734. },
  23735. },
  23736. [
  23737. {
  23738. name: "Normal",
  23739. height: math.unit(5 + 4 / 12, "feet"),
  23740. default: true
  23741. },
  23742. ]
  23743. ))
  23744. characterMakers.push(() => makeCharacter(
  23745. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23746. {
  23747. upright: {
  23748. height: math.unit(6, "meters"),
  23749. weight: math.unit(4000, "kg"),
  23750. name: "Upright",
  23751. image: {
  23752. source: "./media/characters/ruin/upright.svg",
  23753. extra: 668 / 661,
  23754. bottom: 42 / 799.8396
  23755. }
  23756. },
  23757. },
  23758. [
  23759. {
  23760. name: "Normal",
  23761. height: math.unit(6, "meters"),
  23762. default: true
  23763. },
  23764. ]
  23765. ))
  23766. characterMakers.push(() => makeCharacter(
  23767. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23768. {
  23769. front: {
  23770. height: math.unit(5, "feet"),
  23771. weight: math.unit(106, "lb"),
  23772. name: "Front",
  23773. image: {
  23774. source: "./media/characters/robin/front.svg",
  23775. extra: 862 / 799,
  23776. bottom: 42.4 / 914.8856
  23777. }
  23778. },
  23779. },
  23780. [
  23781. {
  23782. name: "Normal",
  23783. height: math.unit(5, "feet"),
  23784. default: true
  23785. },
  23786. ]
  23787. ))
  23788. characterMakers.push(() => makeCharacter(
  23789. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23790. {
  23791. side: {
  23792. height: math.unit(3, "feet"),
  23793. weight: math.unit(225, "lb"),
  23794. name: "Side",
  23795. image: {
  23796. source: "./media/characters/saian/side.svg",
  23797. extra: 566 / 356,
  23798. bottom: 79.7 / 643
  23799. }
  23800. },
  23801. maw: {
  23802. height: math.unit(2.85, "feet"),
  23803. name: "Maw",
  23804. image: {
  23805. source: "./media/characters/saian/maw.svg"
  23806. }
  23807. },
  23808. },
  23809. [
  23810. {
  23811. name: "Normal",
  23812. height: math.unit(3, "feet"),
  23813. default: true
  23814. },
  23815. ]
  23816. ))
  23817. characterMakers.push(() => makeCharacter(
  23818. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23819. {
  23820. side: {
  23821. height: math.unit(8, "feet"),
  23822. weight: math.unit(300, "lb"),
  23823. name: "Side",
  23824. image: {
  23825. source: "./media/characters/equus-silvermane/side.svg",
  23826. extra: 2176 / 2050,
  23827. bottom: 65.7 / 2245
  23828. }
  23829. },
  23830. front: {
  23831. height: math.unit(8, "feet"),
  23832. weight: math.unit(300, "lb"),
  23833. name: "Front",
  23834. image: {
  23835. source: "./media/characters/equus-silvermane/front.svg",
  23836. extra: 4633 / 4400,
  23837. bottom: 71.3 / 4706.915
  23838. }
  23839. },
  23840. sideStepping: {
  23841. height: math.unit(8, "feet"),
  23842. weight: math.unit(300, "lb"),
  23843. name: "Side (Stepping)",
  23844. image: {
  23845. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23846. extra: 1968 / 1860,
  23847. bottom: 16.4 / 1989
  23848. }
  23849. },
  23850. },
  23851. [
  23852. {
  23853. name: "Normal",
  23854. height: math.unit(8, "feet")
  23855. },
  23856. {
  23857. name: "Minimacro",
  23858. height: math.unit(75, "feet"),
  23859. default: true
  23860. },
  23861. {
  23862. name: "Macro",
  23863. height: math.unit(150, "feet")
  23864. },
  23865. {
  23866. name: "Macro+",
  23867. height: math.unit(1000, "feet")
  23868. },
  23869. {
  23870. name: "Megamacro",
  23871. height: math.unit(1, "mile")
  23872. },
  23873. ]
  23874. ))
  23875. characterMakers.push(() => makeCharacter(
  23876. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23877. {
  23878. side: {
  23879. height: math.unit(20, "feet"),
  23880. weight: math.unit(30000, "kg"),
  23881. name: "Side",
  23882. image: {
  23883. source: "./media/characters/windar/side.svg",
  23884. extra: 1491 / 1248,
  23885. bottom: 82.56 / 1568
  23886. }
  23887. },
  23888. },
  23889. [
  23890. {
  23891. name: "Normal",
  23892. height: math.unit(20, "feet"),
  23893. default: true
  23894. },
  23895. ]
  23896. ))
  23897. characterMakers.push(() => makeCharacter(
  23898. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23899. {
  23900. side: {
  23901. height: math.unit(15.66, "feet"),
  23902. weight: math.unit(150, "lb"),
  23903. name: "Side",
  23904. image: {
  23905. source: "./media/characters/melody/side.svg",
  23906. extra: 1097 / 944,
  23907. bottom: 11.8 / 1109
  23908. }
  23909. },
  23910. sideOutfit: {
  23911. height: math.unit(15.66, "feet"),
  23912. weight: math.unit(150, "lb"),
  23913. name: "Side (Outfit)",
  23914. image: {
  23915. source: "./media/characters/melody/side-outfit.svg",
  23916. extra: 1097 / 944,
  23917. bottom: 11.8 / 1109
  23918. }
  23919. },
  23920. },
  23921. [
  23922. {
  23923. name: "Normal",
  23924. height: math.unit(15.66, "feet"),
  23925. default: true
  23926. },
  23927. ]
  23928. ))
  23929. characterMakers.push(() => makeCharacter(
  23930. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23931. {
  23932. armoredFront: {
  23933. height: math.unit(8, "feet"),
  23934. weight: math.unit(325, "lb"),
  23935. name: "Front",
  23936. image: {
  23937. source: "./media/characters/windera/armored-front.svg",
  23938. extra: 1830/1598,
  23939. bottom: 151/1981
  23940. },
  23941. form: "armored",
  23942. default: true
  23943. },
  23944. macroFront: {
  23945. height: math.unit(70, "feet"),
  23946. weight: math.unit(315453, "lb"),
  23947. name: "Front",
  23948. image: {
  23949. source: "./media/characters/windera/macro-front.svg",
  23950. extra: 963/883,
  23951. bottom: 23/986
  23952. },
  23953. form: "macro",
  23954. default: true
  23955. },
  23956. },
  23957. [
  23958. {
  23959. name: "Normal",
  23960. height: math.unit(8, "feet"),
  23961. default: true,
  23962. form: "armored"
  23963. },
  23964. {
  23965. name: "Normal",
  23966. height: math.unit(70, "feet"),
  23967. default: true,
  23968. form: "macro"
  23969. },
  23970. ],
  23971. {
  23972. "armored": {
  23973. name: "Armored",
  23974. default: true
  23975. },
  23976. "macro": {
  23977. name: "Macro",
  23978. },
  23979. }
  23980. ))
  23981. characterMakers.push(() => makeCharacter(
  23982. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23983. {
  23984. front: {
  23985. height: math.unit(28.75, "feet"),
  23986. weight: math.unit(2000, "kg"),
  23987. name: "Front",
  23988. image: {
  23989. source: "./media/characters/sonear/front.svg",
  23990. extra: 1041.1 / 964.9,
  23991. bottom: 53.7 / 1096.6
  23992. }
  23993. },
  23994. },
  23995. [
  23996. {
  23997. name: "Normal",
  23998. height: math.unit(28.75, "feet"),
  23999. default: true
  24000. },
  24001. ]
  24002. ))
  24003. characterMakers.push(() => makeCharacter(
  24004. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24005. {
  24006. side: {
  24007. height: math.unit(25.5, "feet"),
  24008. weight: math.unit(23000, "kg"),
  24009. name: "Side",
  24010. image: {
  24011. source: "./media/characters/kanara/side.svg"
  24012. }
  24013. },
  24014. },
  24015. [
  24016. {
  24017. name: "Normal",
  24018. height: math.unit(25.5, "feet"),
  24019. default: true
  24020. },
  24021. ]
  24022. ))
  24023. characterMakers.push(() => makeCharacter(
  24024. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24025. {
  24026. side: {
  24027. height: math.unit(10, "feet"),
  24028. weight: math.unit(1000, "kg"),
  24029. name: "Side",
  24030. image: {
  24031. source: "./media/characters/ereus/side.svg",
  24032. extra: 1157 / 959,
  24033. bottom: 153 / 1312.5
  24034. }
  24035. },
  24036. },
  24037. [
  24038. {
  24039. name: "Normal",
  24040. height: math.unit(10, "feet"),
  24041. default: true
  24042. },
  24043. ]
  24044. ))
  24045. characterMakers.push(() => makeCharacter(
  24046. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24047. {
  24048. side: {
  24049. height: math.unit(4.5, "feet"),
  24050. weight: math.unit(500, "lb"),
  24051. name: "Side",
  24052. image: {
  24053. source: "./media/characters/e-ter/side.svg",
  24054. extra: 1550 / 1248,
  24055. bottom: 146 / 1694
  24056. }
  24057. },
  24058. },
  24059. [
  24060. {
  24061. name: "Normal",
  24062. height: math.unit(4.5, "feet"),
  24063. default: true
  24064. },
  24065. ]
  24066. ))
  24067. characterMakers.push(() => makeCharacter(
  24068. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24069. {
  24070. side: {
  24071. height: math.unit(9.7, "feet"),
  24072. weight: math.unit(4000, "kg"),
  24073. name: "Side",
  24074. image: {
  24075. source: "./media/characters/yamie/side.svg"
  24076. }
  24077. },
  24078. },
  24079. [
  24080. {
  24081. name: "Normal",
  24082. height: math.unit(9.7, "feet"),
  24083. default: true
  24084. },
  24085. ]
  24086. ))
  24087. characterMakers.push(() => makeCharacter(
  24088. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24089. {
  24090. front: {
  24091. height: math.unit(50, "feet"),
  24092. weight: math.unit(50000, "kg"),
  24093. name: "Front",
  24094. image: {
  24095. source: "./media/characters/anders/front.svg",
  24096. extra: 570 / 539,
  24097. bottom: 14.7 / 586.7
  24098. }
  24099. },
  24100. },
  24101. [
  24102. {
  24103. name: "Large",
  24104. height: math.unit(50, "feet")
  24105. },
  24106. {
  24107. name: "Macro",
  24108. height: math.unit(2000, "feet"),
  24109. default: true
  24110. },
  24111. {
  24112. name: "Megamacro",
  24113. height: math.unit(12, "miles")
  24114. },
  24115. ]
  24116. ))
  24117. characterMakers.push(() => makeCharacter(
  24118. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24119. {
  24120. front: {
  24121. height: math.unit(7 + 2 / 12, "feet"),
  24122. weight: math.unit(300, "lb"),
  24123. name: "Front",
  24124. image: {
  24125. source: "./media/characters/reban/front.svg",
  24126. extra: 1287/1212,
  24127. bottom: 148/1435
  24128. }
  24129. },
  24130. head: {
  24131. height: math.unit(1.95, "feet"),
  24132. name: "Head",
  24133. image: {
  24134. source: "./media/characters/reban/head.svg"
  24135. }
  24136. },
  24137. maw: {
  24138. height: math.unit(0.95, "feet"),
  24139. name: "Maw",
  24140. image: {
  24141. source: "./media/characters/reban/maw.svg"
  24142. }
  24143. },
  24144. foot: {
  24145. height: math.unit(1.65, "feet"),
  24146. name: "Foot",
  24147. image: {
  24148. source: "./media/characters/reban/foot.svg"
  24149. }
  24150. },
  24151. dick: {
  24152. height: math.unit(7 / 5, "feet"),
  24153. name: "Dick",
  24154. image: {
  24155. source: "./media/characters/reban/dick.svg"
  24156. }
  24157. },
  24158. },
  24159. [
  24160. {
  24161. name: "Natural Height",
  24162. height: math.unit(7 + 2 / 12, "feet")
  24163. },
  24164. {
  24165. name: "Macro",
  24166. height: math.unit(500, "feet"),
  24167. default: true
  24168. },
  24169. {
  24170. name: "Canon Height",
  24171. height: math.unit(50, "AU")
  24172. },
  24173. ]
  24174. ))
  24175. characterMakers.push(() => makeCharacter(
  24176. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24177. {
  24178. front: {
  24179. height: math.unit(6, "feet"),
  24180. weight: math.unit(150, "lb"),
  24181. name: "Front",
  24182. image: {
  24183. source: "./media/characters/terrance-keayes/front.svg",
  24184. extra: 1.005,
  24185. bottom: 151 / 1615
  24186. }
  24187. },
  24188. side: {
  24189. height: math.unit(6, "feet"),
  24190. weight: math.unit(150, "lb"),
  24191. name: "Side",
  24192. image: {
  24193. source: "./media/characters/terrance-keayes/side.svg",
  24194. extra: 1.005,
  24195. bottom: 129.4 / 1544
  24196. }
  24197. },
  24198. back: {
  24199. height: math.unit(6, "feet"),
  24200. weight: math.unit(150, "lb"),
  24201. name: "Back",
  24202. image: {
  24203. source: "./media/characters/terrance-keayes/back.svg",
  24204. extra: 1.005,
  24205. bottom: 58.4 / 1557.3
  24206. }
  24207. },
  24208. dick: {
  24209. height: math.unit(6 * 0.208, "feet"),
  24210. name: "Dick",
  24211. image: {
  24212. source: "./media/characters/terrance-keayes/dick.svg"
  24213. }
  24214. },
  24215. },
  24216. [
  24217. {
  24218. name: "Canon Height",
  24219. height: math.unit(35, "miles"),
  24220. default: true
  24221. },
  24222. ]
  24223. ))
  24224. characterMakers.push(() => makeCharacter(
  24225. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24226. {
  24227. front: {
  24228. height: math.unit(6, "feet"),
  24229. weight: math.unit(150, "lb"),
  24230. name: "Front",
  24231. image: {
  24232. source: "./media/characters/ofelia/front.svg",
  24233. extra: 1130/1117,
  24234. bottom: 91/1221
  24235. }
  24236. },
  24237. back: {
  24238. height: math.unit(6, "feet"),
  24239. weight: math.unit(150, "lb"),
  24240. name: "Back",
  24241. image: {
  24242. source: "./media/characters/ofelia/back.svg",
  24243. extra: 1172/1159,
  24244. bottom: 28/1200
  24245. }
  24246. },
  24247. maw: {
  24248. height: math.unit(1, "feet"),
  24249. name: "Maw",
  24250. image: {
  24251. source: "./media/characters/ofelia/maw.svg"
  24252. }
  24253. },
  24254. foot: {
  24255. height: math.unit(1.949, "feet"),
  24256. name: "Foot",
  24257. image: {
  24258. source: "./media/characters/ofelia/foot.svg"
  24259. }
  24260. },
  24261. },
  24262. [
  24263. {
  24264. name: "Canon Height",
  24265. height: math.unit(2000, "miles"),
  24266. default: true
  24267. },
  24268. ]
  24269. ))
  24270. characterMakers.push(() => makeCharacter(
  24271. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24272. {
  24273. front: {
  24274. height: math.unit(6, "feet"),
  24275. weight: math.unit(150, "lb"),
  24276. name: "Front",
  24277. image: {
  24278. source: "./media/characters/samuel/front.svg",
  24279. extra: 265 / 258,
  24280. bottom: 2 / 266.1566
  24281. }
  24282. },
  24283. },
  24284. [
  24285. {
  24286. name: "Macro",
  24287. height: math.unit(100, "feet"),
  24288. default: true
  24289. },
  24290. {
  24291. name: "Full Size",
  24292. height: math.unit(1000, "miles")
  24293. },
  24294. ]
  24295. ))
  24296. characterMakers.push(() => makeCharacter(
  24297. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24298. {
  24299. front: {
  24300. height: math.unit(6, "feet"),
  24301. weight: math.unit(300, "lb"),
  24302. name: "Front",
  24303. image: {
  24304. source: "./media/characters/beishir-kiel/front.svg",
  24305. extra: 569 / 547,
  24306. bottom: 41.9 / 609
  24307. }
  24308. },
  24309. maw: {
  24310. height: math.unit(6 * 0.202, "feet"),
  24311. name: "Maw",
  24312. image: {
  24313. source: "./media/characters/beishir-kiel/maw.svg"
  24314. }
  24315. },
  24316. },
  24317. [
  24318. {
  24319. name: "Macro",
  24320. height: math.unit(300, "feet"),
  24321. default: true
  24322. },
  24323. ]
  24324. ))
  24325. characterMakers.push(() => makeCharacter(
  24326. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24327. {
  24328. front: {
  24329. height: math.unit(5 + 7/12, "feet"),
  24330. weight: math.unit(120, "lb"),
  24331. name: "Front",
  24332. image: {
  24333. source: "./media/characters/logan-grey/front.svg",
  24334. extra: 1836/1738,
  24335. bottom: 108/1944
  24336. }
  24337. },
  24338. back: {
  24339. height: math.unit(5 + 7/12, "feet"),
  24340. weight: math.unit(120, "lb"),
  24341. name: "Back",
  24342. image: {
  24343. source: "./media/characters/logan-grey/back.svg",
  24344. extra: 1880/1794,
  24345. bottom: 24/1904
  24346. }
  24347. },
  24348. frontSfw: {
  24349. height: math.unit(5 + 7/12, "feet"),
  24350. weight: math.unit(120, "lb"),
  24351. name: "Front (SFW)",
  24352. image: {
  24353. source: "./media/characters/logan-grey/front-sfw.svg",
  24354. extra: 1836/1738,
  24355. bottom: 108/1944
  24356. }
  24357. },
  24358. backSfw: {
  24359. height: math.unit(5 + 7/12, "feet"),
  24360. weight: math.unit(120, "lb"),
  24361. name: "Back (SFW)",
  24362. image: {
  24363. source: "./media/characters/logan-grey/back-sfw.svg",
  24364. extra: 1880/1794,
  24365. bottom: 24/1904
  24366. }
  24367. },
  24368. hands: {
  24369. height: math.unit(0.84, "feet"),
  24370. name: "Hands",
  24371. image: {
  24372. source: "./media/characters/logan-grey/hands.svg"
  24373. }
  24374. },
  24375. paws: {
  24376. height: math.unit(0.72, "feet"),
  24377. name: "Paws",
  24378. image: {
  24379. source: "./media/characters/logan-grey/paws.svg"
  24380. }
  24381. },
  24382. cock: {
  24383. height: math.unit(1.45, "feet"),
  24384. name: "Cock",
  24385. image: {
  24386. source: "./media/characters/logan-grey/cock.svg"
  24387. }
  24388. },
  24389. cockAlt: {
  24390. height: math.unit(1.437, "feet"),
  24391. name: "Cock (alt)",
  24392. image: {
  24393. source: "./media/characters/logan-grey/cock-alt.svg"
  24394. }
  24395. },
  24396. },
  24397. [
  24398. {
  24399. name: "Normal",
  24400. height: math.unit(5 + 8 / 12, "feet")
  24401. },
  24402. {
  24403. name: "The 500 Foot Femboy",
  24404. height: math.unit(500, "feet"),
  24405. default: true
  24406. },
  24407. {
  24408. name: "Megmacro",
  24409. height: math.unit(20, "miles")
  24410. },
  24411. ]
  24412. ))
  24413. characterMakers.push(() => makeCharacter(
  24414. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24415. {
  24416. front: {
  24417. height: math.unit(8 + 2 / 12, "feet"),
  24418. weight: math.unit(275, "lb"),
  24419. name: "Front",
  24420. image: {
  24421. source: "./media/characters/draganta/front.svg",
  24422. extra: 1177 / 1135,
  24423. bottom: 33.46 / 1212.1
  24424. }
  24425. },
  24426. },
  24427. [
  24428. {
  24429. name: "Normal",
  24430. height: math.unit(8 + 6 / 12, "feet"),
  24431. default: true
  24432. },
  24433. {
  24434. name: "Macro",
  24435. height: math.unit(150, "feet")
  24436. },
  24437. {
  24438. name: "Megamacro",
  24439. height: math.unit(1000, "miles")
  24440. },
  24441. ]
  24442. ))
  24443. characterMakers.push(() => makeCharacter(
  24444. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24445. {
  24446. front: {
  24447. height: math.unit(1.72, "m"),
  24448. weight: math.unit(80, "lb"),
  24449. name: "Front",
  24450. image: {
  24451. source: "./media/characters/voski/front.svg",
  24452. extra: 2076.22 / 2022.4,
  24453. bottom: 102.7 / 2177.3866
  24454. }
  24455. },
  24456. frontFlaccid: {
  24457. height: math.unit(1.72, "m"),
  24458. weight: math.unit(80, "lb"),
  24459. name: "Front (Flaccid)",
  24460. image: {
  24461. source: "./media/characters/voski/front-flaccid.svg",
  24462. extra: 2076.22 / 2022.4,
  24463. bottom: 102.7 / 2177.3866
  24464. }
  24465. },
  24466. frontErect: {
  24467. height: math.unit(1.72, "m"),
  24468. weight: math.unit(80, "lb"),
  24469. name: "Front (Erect)",
  24470. image: {
  24471. source: "./media/characters/voski/front-erect.svg",
  24472. extra: 2076.22 / 2022.4,
  24473. bottom: 102.7 / 2177.3866
  24474. }
  24475. },
  24476. back: {
  24477. height: math.unit(1.72, "m"),
  24478. weight: math.unit(80, "lb"),
  24479. name: "Back",
  24480. image: {
  24481. source: "./media/characters/voski/back.svg",
  24482. extra: 2104 / 2051,
  24483. bottom: 10.45 / 2113.63
  24484. }
  24485. },
  24486. },
  24487. [
  24488. {
  24489. name: "Normal",
  24490. height: math.unit(1.72, "m")
  24491. },
  24492. {
  24493. name: "Macro",
  24494. height: math.unit(55, "m"),
  24495. default: true
  24496. },
  24497. {
  24498. name: "Macro+",
  24499. height: math.unit(300, "m")
  24500. },
  24501. {
  24502. name: "Macro++",
  24503. height: math.unit(700, "m")
  24504. },
  24505. {
  24506. name: "Macro+++",
  24507. height: math.unit(4500, "m")
  24508. },
  24509. {
  24510. name: "Macro++++",
  24511. height: math.unit(45, "km")
  24512. },
  24513. {
  24514. name: "Macro+++++",
  24515. height: math.unit(1220, "km")
  24516. },
  24517. ]
  24518. ))
  24519. characterMakers.push(() => makeCharacter(
  24520. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24521. {
  24522. front: {
  24523. height: math.unit(2.3, "m"),
  24524. weight: math.unit(304, "kg"),
  24525. name: "Front",
  24526. image: {
  24527. source: "./media/characters/icowom-lee/front.svg",
  24528. extra: 985 / 955,
  24529. bottom: 25.4 / 1012
  24530. }
  24531. },
  24532. fronttentacles: {
  24533. height: math.unit(2.3, "m"),
  24534. weight: math.unit(304, "kg"),
  24535. name: "Front-tentacles",
  24536. image: {
  24537. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24538. extra: 985 / 955,
  24539. bottom: 25.4 / 1012
  24540. }
  24541. },
  24542. back: {
  24543. height: math.unit(2.3, "m"),
  24544. weight: math.unit(304, "kg"),
  24545. name: "Back",
  24546. image: {
  24547. source: "./media/characters/icowom-lee/back.svg",
  24548. extra: 975 / 954,
  24549. bottom: 9.5 / 985
  24550. }
  24551. },
  24552. backtentacles: {
  24553. height: math.unit(2.3, "m"),
  24554. weight: math.unit(304, "kg"),
  24555. name: "Back-tentacles",
  24556. image: {
  24557. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24558. extra: 975 / 954,
  24559. bottom: 9.5 / 985
  24560. }
  24561. },
  24562. frontDressed: {
  24563. height: math.unit(2.3, "m"),
  24564. weight: math.unit(304, "kg"),
  24565. name: "Front (Dressed)",
  24566. image: {
  24567. source: "./media/characters/icowom-lee/front-dressed.svg",
  24568. extra: 3076 / 2933,
  24569. bottom: 51.4 / 3125.1889
  24570. }
  24571. },
  24572. rump: {
  24573. height: math.unit(0.776, "meters"),
  24574. name: "Rump",
  24575. image: {
  24576. source: "./media/characters/icowom-lee/rump.svg"
  24577. }
  24578. },
  24579. genitals: {
  24580. height: math.unit(0.78, "meters"),
  24581. name: "Genitals",
  24582. image: {
  24583. source: "./media/characters/icowom-lee/genitals.svg"
  24584. }
  24585. },
  24586. },
  24587. [
  24588. {
  24589. name: "Normal",
  24590. height: math.unit(2.3, "meters"),
  24591. default: true
  24592. },
  24593. {
  24594. name: "Macro",
  24595. height: math.unit(94, "meters"),
  24596. default: true
  24597. },
  24598. ]
  24599. ))
  24600. characterMakers.push(() => makeCharacter(
  24601. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24602. {
  24603. front: {
  24604. height: math.unit(22, "meters"),
  24605. weight: math.unit(21000, "kg"),
  24606. name: "Front",
  24607. image: {
  24608. source: "./media/characters/shock-diamond/front.svg",
  24609. extra: 2204 / 2053,
  24610. bottom: 65 / 2239.47
  24611. }
  24612. },
  24613. frontNude: {
  24614. height: math.unit(22, "meters"),
  24615. weight: math.unit(21000, "kg"),
  24616. name: "Front (Nude)",
  24617. image: {
  24618. source: "./media/characters/shock-diamond/front-nude.svg",
  24619. extra: 2514 / 2285,
  24620. bottom: 13 / 2527.56
  24621. }
  24622. },
  24623. },
  24624. [
  24625. {
  24626. name: "Normal",
  24627. height: math.unit(3, "meters")
  24628. },
  24629. {
  24630. name: "Macro",
  24631. height: math.unit(22, "meters"),
  24632. default: true
  24633. },
  24634. ]
  24635. ))
  24636. characterMakers.push(() => makeCharacter(
  24637. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24638. {
  24639. front: {
  24640. height: math.unit(5 + 4/12, "feet"),
  24641. weight: math.unit(125, "lb"),
  24642. name: "Front",
  24643. image: {
  24644. source: "./media/characters/rory/front.svg",
  24645. extra: 1790/1681,
  24646. bottom: 66/1856
  24647. },
  24648. form: "normal",
  24649. default: true
  24650. },
  24651. back: {
  24652. height: math.unit(5 + 4/12, "feet"),
  24653. weight: math.unit(125, "lb"),
  24654. name: "Back",
  24655. image: {
  24656. source: "./media/characters/rory/back.svg",
  24657. extra: 1805/1690,
  24658. bottom: 56/1861
  24659. },
  24660. form: "normal"
  24661. },
  24662. frontDressed: {
  24663. height: math.unit(5 + 4/12, "feet"),
  24664. weight: math.unit(125, "lb"),
  24665. name: "Front (Dressed)",
  24666. image: {
  24667. source: "./media/characters/rory/front-dressed.svg",
  24668. extra: 1790/1681,
  24669. bottom: 66/1856
  24670. },
  24671. form: "normal"
  24672. },
  24673. backDressed: {
  24674. height: math.unit(5 + 4/12, "feet"),
  24675. weight: math.unit(125, "lb"),
  24676. name: "Back (Dressed)",
  24677. image: {
  24678. source: "./media/characters/rory/back-dressed.svg",
  24679. extra: 1805/1690,
  24680. bottom: 56/1861
  24681. },
  24682. form: "normal"
  24683. },
  24684. frontNsfw: {
  24685. height: math.unit(5 + 4/12, "feet"),
  24686. weight: math.unit(125, "lb"),
  24687. name: "Front (NSFW)",
  24688. image: {
  24689. source: "./media/characters/rory/front-nsfw.svg",
  24690. extra: 1790/1681,
  24691. bottom: 66/1856
  24692. },
  24693. form: "normal"
  24694. },
  24695. backNsfw: {
  24696. height: math.unit(5 + 4/12, "feet"),
  24697. weight: math.unit(125, "lb"),
  24698. name: "Back (NSFW)",
  24699. image: {
  24700. source: "./media/characters/rory/back-nsfw.svg",
  24701. extra: 1805/1690,
  24702. bottom: 56/1861
  24703. },
  24704. form: "normal"
  24705. },
  24706. dick: {
  24707. height: math.unit(0.8, "feet"),
  24708. name: "Dick",
  24709. image: {
  24710. source: "./media/characters/rory/dick.svg"
  24711. },
  24712. form: "normal"
  24713. },
  24714. thicc_front: {
  24715. height: math.unit(5 + 4/12, "feet"),
  24716. weight: math.unit(195, "lb"),
  24717. name: "Front",
  24718. image: {
  24719. source: "./media/characters/rory/thicc-front.svg",
  24720. extra: 1220/1100,
  24721. bottom: 103/1323
  24722. },
  24723. form: "thicc",
  24724. default: true
  24725. },
  24726. thicc_back: {
  24727. height: math.unit(5 + 4/12, "feet"),
  24728. weight: math.unit(195, "lb"),
  24729. name: "Back",
  24730. image: {
  24731. source: "./media/characters/rory/thicc-back.svg",
  24732. extra: 1166/1086,
  24733. bottom: 35/1201
  24734. },
  24735. form: "thicc"
  24736. },
  24737. },
  24738. [
  24739. {
  24740. name: "Micro",
  24741. height: math.unit(3, "inches"),
  24742. allForms: true
  24743. },
  24744. {
  24745. name: "Normal",
  24746. height: math.unit(5 + 4/12, "feet"),
  24747. allForms: true,
  24748. default: true
  24749. },
  24750. {
  24751. name: "Macro",
  24752. height: math.unit(90, "feet"),
  24753. allForms: true
  24754. },
  24755. {
  24756. name: "Supercharged",
  24757. height: math.unit(270, "feet"),
  24758. allForms: true
  24759. },
  24760. ],
  24761. {
  24762. "normal": {
  24763. name: "Normal",
  24764. default: true
  24765. },
  24766. "thicc": {
  24767. name: "Thicc",
  24768. },
  24769. }
  24770. ))
  24771. characterMakers.push(() => makeCharacter(
  24772. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24773. {
  24774. front: {
  24775. height: math.unit(5 + 9 / 12, "feet"),
  24776. weight: math.unit(190, "lb"),
  24777. name: "Front",
  24778. image: {
  24779. source: "./media/characters/sprisk/front.svg",
  24780. extra: 1225 / 1180,
  24781. bottom: 42.7 / 1266.4
  24782. }
  24783. },
  24784. frontNsfw: {
  24785. height: math.unit(5 + 9 / 12, "feet"),
  24786. weight: math.unit(190, "lb"),
  24787. name: "Front (NSFW)",
  24788. image: {
  24789. source: "./media/characters/sprisk/front-nsfw.svg",
  24790. extra: 1225 / 1180,
  24791. bottom: 42.7 / 1266.4
  24792. }
  24793. },
  24794. back: {
  24795. height: math.unit(5 + 9 / 12, "feet"),
  24796. weight: math.unit(190, "lb"),
  24797. name: "Back",
  24798. image: {
  24799. source: "./media/characters/sprisk/back.svg",
  24800. extra: 1247 / 1200,
  24801. bottom: 5.6 / 1253.04
  24802. }
  24803. },
  24804. },
  24805. [
  24806. {
  24807. name: "Tiny",
  24808. height: math.unit(2, "inches")
  24809. },
  24810. {
  24811. name: "Normal",
  24812. height: math.unit(5 + 9 / 12, "feet"),
  24813. default: true
  24814. },
  24815. {
  24816. name: "Mini Macro",
  24817. height: math.unit(18, "feet")
  24818. },
  24819. {
  24820. name: "Macro",
  24821. height: math.unit(100, "feet")
  24822. },
  24823. {
  24824. name: "MACRO",
  24825. height: math.unit(50, "miles")
  24826. },
  24827. {
  24828. name: "M A C R O",
  24829. height: math.unit(300, "miles")
  24830. },
  24831. ]
  24832. ))
  24833. characterMakers.push(() => makeCharacter(
  24834. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24835. {
  24836. side: {
  24837. height: math.unit(15.6, "meters"),
  24838. weight: math.unit(700000, "kg"),
  24839. name: "Side",
  24840. image: {
  24841. source: "./media/characters/bunsen/side.svg",
  24842. extra: 1644 / 358
  24843. }
  24844. },
  24845. foot: {
  24846. height: math.unit(1.611 * 1644 / 358, "meter"),
  24847. name: "Foot",
  24848. image: {
  24849. source: "./media/characters/bunsen/foot.svg"
  24850. }
  24851. },
  24852. },
  24853. [
  24854. {
  24855. name: "Small",
  24856. height: math.unit(10, "feet")
  24857. },
  24858. {
  24859. name: "Normal",
  24860. height: math.unit(15.6, "meters"),
  24861. default: true
  24862. },
  24863. ]
  24864. ))
  24865. characterMakers.push(() => makeCharacter(
  24866. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24867. {
  24868. front: {
  24869. height: math.unit(4 + 11 / 12, "feet"),
  24870. weight: math.unit(140, "lb"),
  24871. name: "Front",
  24872. image: {
  24873. source: "./media/characters/sesh/front.svg",
  24874. extra: 3420 / 3231,
  24875. bottom: 72 / 3949.5
  24876. }
  24877. },
  24878. },
  24879. [
  24880. {
  24881. name: "Normal",
  24882. height: math.unit(4 + 11 / 12, "feet")
  24883. },
  24884. {
  24885. name: "Grown",
  24886. height: math.unit(15, "feet"),
  24887. default: true
  24888. },
  24889. {
  24890. name: "Macro",
  24891. height: math.unit(1500, "feet")
  24892. },
  24893. {
  24894. name: "Megamacro",
  24895. height: math.unit(30, "miles")
  24896. },
  24897. {
  24898. name: "Continental",
  24899. height: math.unit(3000, "miles")
  24900. },
  24901. {
  24902. name: "Gravity Mass",
  24903. height: math.unit(300000, "miles")
  24904. },
  24905. {
  24906. name: "Planet Buster",
  24907. height: math.unit(30000000, "miles")
  24908. },
  24909. {
  24910. name: "Big",
  24911. height: math.unit(3000000000, "miles")
  24912. },
  24913. ]
  24914. ))
  24915. characterMakers.push(() => makeCharacter(
  24916. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24917. {
  24918. front: {
  24919. height: math.unit(9, "feet"),
  24920. weight: math.unit(350, "lb"),
  24921. name: "Front",
  24922. image: {
  24923. source: "./media/characters/pepper/front.svg",
  24924. extra: 1448 / 1312,
  24925. bottom: 9.4 / 1457.88
  24926. }
  24927. },
  24928. back: {
  24929. height: math.unit(9, "feet"),
  24930. weight: math.unit(350, "lb"),
  24931. name: "Back",
  24932. image: {
  24933. source: "./media/characters/pepper/back.svg",
  24934. extra: 1423 / 1300,
  24935. bottom: 4.6 / 1429
  24936. }
  24937. },
  24938. maw: {
  24939. height: math.unit(0.932, "feet"),
  24940. name: "Maw",
  24941. image: {
  24942. source: "./media/characters/pepper/maw.svg"
  24943. }
  24944. },
  24945. },
  24946. [
  24947. {
  24948. name: "Normal",
  24949. height: math.unit(9, "feet"),
  24950. default: true
  24951. },
  24952. ]
  24953. ))
  24954. characterMakers.push(() => makeCharacter(
  24955. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24956. {
  24957. front: {
  24958. height: math.unit(6, "feet"),
  24959. weight: math.unit(150, "lb"),
  24960. name: "Front",
  24961. image: {
  24962. source: "./media/characters/maelstrom/front.svg",
  24963. extra: 2100 / 1883,
  24964. bottom: 94 / 2196.7
  24965. }
  24966. },
  24967. },
  24968. [
  24969. {
  24970. name: "Less Kaiju",
  24971. height: math.unit(200, "feet")
  24972. },
  24973. {
  24974. name: "Kaiju",
  24975. height: math.unit(400, "feet"),
  24976. default: true
  24977. },
  24978. {
  24979. name: "Kaiju-er",
  24980. height: math.unit(600, "feet")
  24981. },
  24982. ]
  24983. ))
  24984. characterMakers.push(() => makeCharacter(
  24985. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24986. {
  24987. front: {
  24988. height: math.unit(6 + 5 / 12, "feet"),
  24989. weight: math.unit(180, "lb"),
  24990. name: "Front",
  24991. image: {
  24992. source: "./media/characters/lexir/front.svg",
  24993. extra: 180 / 172,
  24994. bottom: 12 / 192
  24995. }
  24996. },
  24997. back: {
  24998. height: math.unit(6 + 5 / 12, "feet"),
  24999. weight: math.unit(180, "lb"),
  25000. name: "Back",
  25001. image: {
  25002. source: "./media/characters/lexir/back.svg",
  25003. extra: 1273/1201,
  25004. bottom: 39/1312
  25005. }
  25006. },
  25007. },
  25008. [
  25009. {
  25010. name: "Very Smal",
  25011. height: math.unit(1, "nm")
  25012. },
  25013. {
  25014. name: "Normal",
  25015. height: math.unit(6 + 5 / 12, "feet"),
  25016. default: true
  25017. },
  25018. {
  25019. name: "Macro",
  25020. height: math.unit(1, "mile")
  25021. },
  25022. {
  25023. name: "Megamacro",
  25024. height: math.unit(50, "miles")
  25025. },
  25026. ]
  25027. ))
  25028. characterMakers.push(() => makeCharacter(
  25029. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25030. {
  25031. front: {
  25032. height: math.unit(1.5, "meters"),
  25033. weight: math.unit(100, "lb"),
  25034. name: "Front",
  25035. image: {
  25036. source: "./media/characters/maksio/front.svg",
  25037. extra: 1549 / 1531,
  25038. bottom: 123.7 / 1674.5429
  25039. }
  25040. },
  25041. back: {
  25042. height: math.unit(1.5, "meters"),
  25043. weight: math.unit(100, "lb"),
  25044. name: "Back",
  25045. image: {
  25046. source: "./media/characters/maksio/back.svg",
  25047. extra: 1541 / 1509,
  25048. bottom: 97 / 1639
  25049. }
  25050. },
  25051. hand: {
  25052. height: math.unit(0.621, "feet"),
  25053. name: "Hand",
  25054. image: {
  25055. source: "./media/characters/maksio/hand.svg"
  25056. }
  25057. },
  25058. foot: {
  25059. height: math.unit(1.611, "feet"),
  25060. name: "Foot",
  25061. image: {
  25062. source: "./media/characters/maksio/foot.svg"
  25063. }
  25064. },
  25065. },
  25066. [
  25067. {
  25068. name: "Shrunken",
  25069. height: math.unit(10, "cm")
  25070. },
  25071. {
  25072. name: "Normal",
  25073. height: math.unit(150, "cm"),
  25074. default: true
  25075. },
  25076. ]
  25077. ))
  25078. characterMakers.push(() => makeCharacter(
  25079. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25080. {
  25081. front: {
  25082. height: math.unit(100, "feet"),
  25083. name: "Front",
  25084. image: {
  25085. source: "./media/characters/erza-bear/front.svg",
  25086. extra: 2449 / 2390,
  25087. bottom: 46 / 2494
  25088. }
  25089. },
  25090. back: {
  25091. height: math.unit(100, "feet"),
  25092. name: "Back",
  25093. image: {
  25094. source: "./media/characters/erza-bear/back.svg",
  25095. extra: 2489 / 2430,
  25096. bottom: 85.4 / 2480
  25097. }
  25098. },
  25099. tail: {
  25100. height: math.unit(42, "feet"),
  25101. name: "Tail",
  25102. image: {
  25103. source: "./media/characters/erza-bear/tail.svg"
  25104. }
  25105. },
  25106. tongue: {
  25107. height: math.unit(8, "feet"),
  25108. name: "Tongue",
  25109. image: {
  25110. source: "./media/characters/erza-bear/tongue.svg"
  25111. }
  25112. },
  25113. dick: {
  25114. height: math.unit(10.5, "feet"),
  25115. name: "Dick",
  25116. image: {
  25117. source: "./media/characters/erza-bear/dick.svg"
  25118. }
  25119. },
  25120. dickVertical: {
  25121. height: math.unit(16.9, "feet"),
  25122. name: "Dick (Vertical)",
  25123. image: {
  25124. source: "./media/characters/erza-bear/dick-vertical.svg"
  25125. }
  25126. },
  25127. },
  25128. [
  25129. {
  25130. name: "Macro",
  25131. height: math.unit(100, "feet"),
  25132. default: true
  25133. },
  25134. ]
  25135. ))
  25136. characterMakers.push(() => makeCharacter(
  25137. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25138. {
  25139. front: {
  25140. height: math.unit(172, "cm"),
  25141. weight: math.unit(73, "kg"),
  25142. name: "Front",
  25143. image: {
  25144. source: "./media/characters/violet-flor/front.svg",
  25145. extra: 1530 / 1442,
  25146. bottom: 61.9 / 1588.8
  25147. }
  25148. },
  25149. back: {
  25150. height: math.unit(180, "cm"),
  25151. weight: math.unit(73, "kg"),
  25152. name: "Back",
  25153. image: {
  25154. source: "./media/characters/violet-flor/back.svg",
  25155. extra: 1692 / 1630,
  25156. bottom: 20 / 1712
  25157. }
  25158. },
  25159. },
  25160. [
  25161. {
  25162. name: "Normal",
  25163. height: math.unit(172, "cm"),
  25164. default: true
  25165. },
  25166. ]
  25167. ))
  25168. characterMakers.push(() => makeCharacter(
  25169. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25170. {
  25171. front: {
  25172. height: math.unit(6, "feet"),
  25173. weight: math.unit(220, "lb"),
  25174. name: "Front",
  25175. image: {
  25176. source: "./media/characters/lynn-rhea/front.svg",
  25177. extra: 310 / 273
  25178. }
  25179. },
  25180. back: {
  25181. height: math.unit(6, "feet"),
  25182. weight: math.unit(220, "lb"),
  25183. name: "Back",
  25184. image: {
  25185. source: "./media/characters/lynn-rhea/back.svg",
  25186. extra: 310 / 273
  25187. }
  25188. },
  25189. dicks: {
  25190. height: math.unit(0.9, "feet"),
  25191. name: "Dicks",
  25192. image: {
  25193. source: "./media/characters/lynn-rhea/dicks.svg"
  25194. }
  25195. },
  25196. slit: {
  25197. height: math.unit(0.4, "feet"),
  25198. name: "Slit",
  25199. image: {
  25200. source: "./media/characters/lynn-rhea/slit.svg"
  25201. }
  25202. },
  25203. },
  25204. [
  25205. {
  25206. name: "Micro",
  25207. height: math.unit(1, "inch")
  25208. },
  25209. {
  25210. name: "Macro",
  25211. height: math.unit(60, "feet"),
  25212. default: true
  25213. },
  25214. {
  25215. name: "Megamacro",
  25216. height: math.unit(2, "miles")
  25217. },
  25218. {
  25219. name: "Gigamacro",
  25220. height: math.unit(3, "earths")
  25221. },
  25222. {
  25223. name: "Galactic",
  25224. height: math.unit(0.8, "galaxies")
  25225. },
  25226. ]
  25227. ))
  25228. characterMakers.push(() => makeCharacter(
  25229. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25230. {
  25231. front: {
  25232. height: math.unit(1600, "feet"),
  25233. weight: math.unit(85758785169, "kg"),
  25234. name: "Front",
  25235. image: {
  25236. source: "./media/characters/valathos/front.svg",
  25237. extra: 1451 / 1339
  25238. }
  25239. },
  25240. },
  25241. [
  25242. {
  25243. name: "Macro",
  25244. height: math.unit(1600, "feet"),
  25245. default: true
  25246. },
  25247. ]
  25248. ))
  25249. characterMakers.push(() => makeCharacter(
  25250. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25251. {
  25252. front: {
  25253. height: math.unit(7 + 5 / 12, "feet"),
  25254. weight: math.unit(300, "lb"),
  25255. name: "Front",
  25256. image: {
  25257. source: "./media/characters/azula/front.svg",
  25258. extra: 3208 / 2880,
  25259. bottom: 80.2 / 3277
  25260. }
  25261. },
  25262. back: {
  25263. height: math.unit(7 + 5 / 12, "feet"),
  25264. weight: math.unit(300, "lb"),
  25265. name: "Back",
  25266. image: {
  25267. source: "./media/characters/azula/back.svg",
  25268. extra: 3169 / 2822,
  25269. bottom: 150.6 / 3321
  25270. }
  25271. },
  25272. },
  25273. [
  25274. {
  25275. name: "Normal",
  25276. height: math.unit(7 + 5 / 12, "feet"),
  25277. default: true
  25278. },
  25279. {
  25280. name: "Big",
  25281. height: math.unit(20, "feet")
  25282. },
  25283. ]
  25284. ))
  25285. characterMakers.push(() => makeCharacter(
  25286. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25287. {
  25288. front: {
  25289. height: math.unit(5 + 1 / 12, "feet"),
  25290. weight: math.unit(110, "lb"),
  25291. name: "Front",
  25292. image: {
  25293. source: "./media/characters/rupert/front.svg",
  25294. extra: 1549 / 1495,
  25295. bottom: 54.2 / 1604.4
  25296. }
  25297. },
  25298. },
  25299. [
  25300. {
  25301. name: "Normal",
  25302. height: math.unit(5 + 1 / 12, "feet"),
  25303. default: true
  25304. },
  25305. ]
  25306. ))
  25307. characterMakers.push(() => makeCharacter(
  25308. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25309. {
  25310. front: {
  25311. height: math.unit(8 + 4 / 12, "feet"),
  25312. weight: math.unit(350, "lb"),
  25313. name: "Front",
  25314. image: {
  25315. source: "./media/characters/sheera-castellar/front.svg",
  25316. extra: 1957 / 1894,
  25317. bottom: 26.97 / 1975.017
  25318. }
  25319. },
  25320. side: {
  25321. height: math.unit(8 + 4 / 12, "feet"),
  25322. weight: math.unit(350, "lb"),
  25323. name: "Side",
  25324. image: {
  25325. source: "./media/characters/sheera-castellar/side.svg",
  25326. extra: 1957 / 1894
  25327. }
  25328. },
  25329. back: {
  25330. height: math.unit(8 + 4 / 12, "feet"),
  25331. weight: math.unit(350, "lb"),
  25332. name: "Back",
  25333. image: {
  25334. source: "./media/characters/sheera-castellar/back.svg",
  25335. extra: 1957 / 1894
  25336. }
  25337. },
  25338. angled: {
  25339. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25340. weight: math.unit(350, "lb"),
  25341. name: "Angled",
  25342. image: {
  25343. source: "./media/characters/sheera-castellar/angled.svg",
  25344. extra: 1807 / 1707,
  25345. bottom: 68 / 1875
  25346. }
  25347. },
  25348. genitals: {
  25349. height: math.unit(2.2, "feet"),
  25350. name: "Genitals",
  25351. image: {
  25352. source: "./media/characters/sheera-castellar/genitals.svg"
  25353. }
  25354. },
  25355. taur: {
  25356. height: math.unit(10 + 6/12, "feet"),
  25357. name: "Taur",
  25358. image: {
  25359. source: "./media/characters/sheera-castellar/taur.svg",
  25360. extra: 2017/1909,
  25361. bottom: 185/2202
  25362. }
  25363. },
  25364. },
  25365. [
  25366. {
  25367. name: "Normal",
  25368. height: math.unit(8 + 4 / 12, "feet")
  25369. },
  25370. {
  25371. name: "Macro",
  25372. height: math.unit(150, "feet"),
  25373. default: true
  25374. },
  25375. {
  25376. name: "Macro+",
  25377. height: math.unit(800, "feet")
  25378. },
  25379. ]
  25380. ))
  25381. characterMakers.push(() => makeCharacter(
  25382. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25383. {
  25384. front: {
  25385. height: math.unit(6, "feet"),
  25386. weight: math.unit(150, "lb"),
  25387. name: "Front",
  25388. image: {
  25389. source: "./media/characters/jaipur/front.svg",
  25390. extra: 3860 / 3731,
  25391. bottom: 287 / 4140
  25392. }
  25393. },
  25394. back: {
  25395. height: math.unit(6, "feet"),
  25396. weight: math.unit(150, "lb"),
  25397. name: "Back",
  25398. image: {
  25399. source: "./media/characters/jaipur/back.svg",
  25400. extra: 1637/1561,
  25401. bottom: 154/1791
  25402. }
  25403. },
  25404. },
  25405. [
  25406. {
  25407. name: "Normal",
  25408. height: math.unit(1.85, "meters"),
  25409. default: true
  25410. },
  25411. {
  25412. name: "Macro",
  25413. height: math.unit(150, "meters")
  25414. },
  25415. {
  25416. name: "Macro+",
  25417. height: math.unit(0.5, "miles")
  25418. },
  25419. {
  25420. name: "Macro++",
  25421. height: math.unit(2.5, "miles")
  25422. },
  25423. {
  25424. name: "Macro+++",
  25425. height: math.unit(12, "miles")
  25426. },
  25427. {
  25428. name: "Macro++++",
  25429. height: math.unit(120, "miles")
  25430. },
  25431. {
  25432. name: "Macro+++++",
  25433. height: math.unit(1200, "miles")
  25434. },
  25435. ]
  25436. ))
  25437. characterMakers.push(() => makeCharacter(
  25438. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25439. {
  25440. front: {
  25441. height: math.unit(6, "feet"),
  25442. weight: math.unit(150, "lb"),
  25443. name: "Front",
  25444. image: {
  25445. source: "./media/characters/sheila-wolf/front.svg",
  25446. extra: 1931 / 1808,
  25447. bottom: 29.5 / 1960
  25448. }
  25449. },
  25450. dick: {
  25451. height: math.unit(1.464, "feet"),
  25452. name: "Dick",
  25453. image: {
  25454. source: "./media/characters/sheila-wolf/dick.svg"
  25455. }
  25456. },
  25457. muzzle: {
  25458. height: math.unit(0.513, "feet"),
  25459. name: "Muzzle",
  25460. image: {
  25461. source: "./media/characters/sheila-wolf/muzzle.svg"
  25462. }
  25463. },
  25464. },
  25465. [
  25466. {
  25467. name: "Macro",
  25468. height: math.unit(70, "feet"),
  25469. default: true
  25470. },
  25471. ]
  25472. ))
  25473. characterMakers.push(() => makeCharacter(
  25474. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25475. {
  25476. front: {
  25477. height: math.unit(32, "meters"),
  25478. weight: math.unit(300000, "kg"),
  25479. name: "Front",
  25480. image: {
  25481. source: "./media/characters/almor/front.svg",
  25482. extra: 1408 / 1322,
  25483. bottom: 94.6 / 1506.5
  25484. }
  25485. },
  25486. },
  25487. [
  25488. {
  25489. name: "Macro",
  25490. height: math.unit(32, "meters"),
  25491. default: true
  25492. },
  25493. ]
  25494. ))
  25495. characterMakers.push(() => makeCharacter(
  25496. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25497. {
  25498. front: {
  25499. height: math.unit(7, "feet"),
  25500. weight: math.unit(200, "lb"),
  25501. name: "Front",
  25502. image: {
  25503. source: "./media/characters/silver/front.svg",
  25504. extra: 472.1 / 450.5,
  25505. bottom: 26.5 / 499.424
  25506. }
  25507. },
  25508. },
  25509. [
  25510. {
  25511. name: "Normal",
  25512. height: math.unit(7, "feet"),
  25513. default: true
  25514. },
  25515. {
  25516. name: "Macro",
  25517. height: math.unit(800, "feet")
  25518. },
  25519. {
  25520. name: "Megamacro",
  25521. height: math.unit(250, "miles")
  25522. },
  25523. ]
  25524. ))
  25525. characterMakers.push(() => makeCharacter(
  25526. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25527. {
  25528. front: {
  25529. height: math.unit(6, "feet"),
  25530. weight: math.unit(150, "lb"),
  25531. name: "Front",
  25532. image: {
  25533. source: "./media/characters/pliskin/front.svg",
  25534. extra: 1469 / 1359,
  25535. bottom: 70 / 1540
  25536. }
  25537. },
  25538. },
  25539. [
  25540. {
  25541. name: "Micro",
  25542. height: math.unit(3, "inches")
  25543. },
  25544. {
  25545. name: "Normal",
  25546. height: math.unit(5 + 11 / 12, "feet"),
  25547. default: true
  25548. },
  25549. {
  25550. name: "Macro",
  25551. height: math.unit(120, "feet")
  25552. },
  25553. ]
  25554. ))
  25555. characterMakers.push(() => makeCharacter(
  25556. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25557. {
  25558. front: {
  25559. height: math.unit(6, "feet"),
  25560. weight: math.unit(150, "lb"),
  25561. name: "Front",
  25562. image: {
  25563. source: "./media/characters/sammy/front.svg",
  25564. extra: 1193 / 1089,
  25565. bottom: 30.5 / 1226
  25566. }
  25567. },
  25568. },
  25569. [
  25570. {
  25571. name: "Macro",
  25572. height: math.unit(1700, "feet"),
  25573. default: true
  25574. },
  25575. {
  25576. name: "Examacro",
  25577. height: math.unit(2.5e9, "lightyears")
  25578. },
  25579. ]
  25580. ))
  25581. characterMakers.push(() => makeCharacter(
  25582. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25583. {
  25584. front: {
  25585. height: math.unit(21, "meters"),
  25586. weight: math.unit(12, "tonnes"),
  25587. name: "Front",
  25588. image: {
  25589. source: "./media/characters/kuru/front.svg",
  25590. extra: 4301 / 3785,
  25591. bottom: 371.3 / 4691
  25592. }
  25593. },
  25594. },
  25595. [
  25596. {
  25597. name: "Macro",
  25598. height: math.unit(21, "meters"),
  25599. default: true
  25600. },
  25601. ]
  25602. ))
  25603. characterMakers.push(() => makeCharacter(
  25604. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25605. {
  25606. front: {
  25607. height: math.unit(23, "meters"),
  25608. weight: math.unit(12.2, "tonnes"),
  25609. name: "Front",
  25610. image: {
  25611. source: "./media/characters/rakka/front.svg",
  25612. extra: 4670 / 4169,
  25613. bottom: 301 / 4968.7
  25614. }
  25615. },
  25616. },
  25617. [
  25618. {
  25619. name: "Macro",
  25620. height: math.unit(23, "meters"),
  25621. default: true
  25622. },
  25623. ]
  25624. ))
  25625. characterMakers.push(() => makeCharacter(
  25626. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25627. {
  25628. front: {
  25629. height: math.unit(6, "feet"),
  25630. weight: math.unit(150, "lb"),
  25631. name: "Front",
  25632. image: {
  25633. source: "./media/characters/rhys-feline/front.svg",
  25634. extra: 2488 / 2308,
  25635. bottom: 35.67 / 2519.19
  25636. }
  25637. },
  25638. },
  25639. [
  25640. {
  25641. name: "Really Small",
  25642. height: math.unit(1, "nm")
  25643. },
  25644. {
  25645. name: "Micro",
  25646. height: math.unit(4, "inches")
  25647. },
  25648. {
  25649. name: "Normal",
  25650. height: math.unit(4 + 10 / 12, "feet"),
  25651. default: true
  25652. },
  25653. {
  25654. name: "Macro",
  25655. height: math.unit(100, "feet")
  25656. },
  25657. {
  25658. name: "Megamacto",
  25659. height: math.unit(50, "miles")
  25660. },
  25661. ]
  25662. ))
  25663. characterMakers.push(() => makeCharacter(
  25664. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25665. {
  25666. side: {
  25667. height: math.unit(30, "feet"),
  25668. weight: math.unit(35000, "kg"),
  25669. name: "Side",
  25670. image: {
  25671. source: "./media/characters/alydar/side.svg",
  25672. extra: 234 / 222,
  25673. bottom: 6.5 / 241
  25674. }
  25675. },
  25676. front: {
  25677. height: math.unit(30, "feet"),
  25678. weight: math.unit(35000, "kg"),
  25679. name: "Front",
  25680. image: {
  25681. source: "./media/characters/alydar/front.svg",
  25682. extra: 223.37 / 210.2,
  25683. bottom: 22.3 / 246.76
  25684. }
  25685. },
  25686. top: {
  25687. height: math.unit(64.54, "feet"),
  25688. weight: math.unit(35000, "kg"),
  25689. name: "Top",
  25690. image: {
  25691. source: "./media/characters/alydar/top.svg"
  25692. }
  25693. },
  25694. anthro: {
  25695. height: math.unit(30, "feet"),
  25696. weight: math.unit(9000, "kg"),
  25697. name: "Anthro",
  25698. image: {
  25699. source: "./media/characters/alydar/anthro.svg",
  25700. extra: 432 / 421,
  25701. bottom: 7.18 / 440
  25702. }
  25703. },
  25704. maw: {
  25705. height: math.unit(11.693, "feet"),
  25706. name: "Maw",
  25707. image: {
  25708. source: "./media/characters/alydar/maw.svg"
  25709. }
  25710. },
  25711. head: {
  25712. height: math.unit(11.693, "feet"),
  25713. name: "Head",
  25714. image: {
  25715. source: "./media/characters/alydar/head.svg"
  25716. }
  25717. },
  25718. headAlt: {
  25719. height: math.unit(12.861, "feet"),
  25720. name: "Head (Alt)",
  25721. image: {
  25722. source: "./media/characters/alydar/head-alt.svg"
  25723. }
  25724. },
  25725. wing: {
  25726. height: math.unit(20.712, "feet"),
  25727. name: "Wing",
  25728. image: {
  25729. source: "./media/characters/alydar/wing.svg"
  25730. }
  25731. },
  25732. wingFeather: {
  25733. height: math.unit(9.662, "feet"),
  25734. name: "Wing Feather",
  25735. image: {
  25736. source: "./media/characters/alydar/wing-feather.svg"
  25737. }
  25738. },
  25739. countourFeather: {
  25740. height: math.unit(4.154, "feet"),
  25741. name: "Contour Feather",
  25742. image: {
  25743. source: "./media/characters/alydar/contour-feather.svg"
  25744. }
  25745. },
  25746. },
  25747. [
  25748. {
  25749. name: "Diplomatic",
  25750. height: math.unit(13, "feet"),
  25751. default: true
  25752. },
  25753. {
  25754. name: "Small",
  25755. height: math.unit(30, "feet")
  25756. },
  25757. {
  25758. name: "Normal",
  25759. height: math.unit(95, "feet"),
  25760. default: true
  25761. },
  25762. {
  25763. name: "Large",
  25764. height: math.unit(285, "feet")
  25765. },
  25766. {
  25767. name: "Incomprehensible",
  25768. height: math.unit(450, "megameters")
  25769. },
  25770. ]
  25771. ))
  25772. characterMakers.push(() => makeCharacter(
  25773. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25774. {
  25775. side: {
  25776. height: math.unit(11, "feet"),
  25777. weight: math.unit(1750, "kg"),
  25778. name: "Side",
  25779. image: {
  25780. source: "./media/characters/selicia/side.svg",
  25781. extra: 440 / 396,
  25782. bottom: 24.8 / 465.979
  25783. }
  25784. },
  25785. maw: {
  25786. height: math.unit(4.665, "feet"),
  25787. name: "Maw",
  25788. image: {
  25789. source: "./media/characters/selicia/maw.svg"
  25790. }
  25791. },
  25792. },
  25793. [
  25794. {
  25795. name: "Normal",
  25796. height: math.unit(11, "feet"),
  25797. default: true
  25798. },
  25799. ]
  25800. ))
  25801. characterMakers.push(() => makeCharacter(
  25802. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25803. {
  25804. side: {
  25805. height: math.unit(2 + 6 / 12, "feet"),
  25806. weight: math.unit(30, "lb"),
  25807. name: "Side",
  25808. image: {
  25809. source: "./media/characters/layla/side.svg",
  25810. extra: 244 / 188,
  25811. bottom: 18.2 / 262.1
  25812. }
  25813. },
  25814. back: {
  25815. height: math.unit(2 + 6 / 12, "feet"),
  25816. weight: math.unit(30, "lb"),
  25817. name: "Back",
  25818. image: {
  25819. source: "./media/characters/layla/back.svg",
  25820. extra: 308 / 241.5,
  25821. bottom: 8.9 / 316.8
  25822. }
  25823. },
  25824. cumming: {
  25825. height: math.unit(2 + 6 / 12, "feet"),
  25826. weight: math.unit(30, "lb"),
  25827. name: "Cumming",
  25828. image: {
  25829. source: "./media/characters/layla/cumming.svg",
  25830. extra: 342 / 279,
  25831. bottom: 595 / 938
  25832. }
  25833. },
  25834. dickFlaccid: {
  25835. height: math.unit(2.595, "feet"),
  25836. name: "Flaccid Genitals",
  25837. image: {
  25838. source: "./media/characters/layla/dick-flaccid.svg"
  25839. }
  25840. },
  25841. dickErect: {
  25842. height: math.unit(2.359, "feet"),
  25843. name: "Erect Genitals",
  25844. image: {
  25845. source: "./media/characters/layla/dick-erect.svg"
  25846. }
  25847. },
  25848. dragon: {
  25849. height: math.unit(40, "feet"),
  25850. name: "Dragon",
  25851. image: {
  25852. source: "./media/characters/layla/dragon.svg",
  25853. extra: 610/535,
  25854. bottom: 367/977
  25855. }
  25856. },
  25857. taur: {
  25858. height: math.unit(30, "feet"),
  25859. name: "Taur",
  25860. image: {
  25861. source: "./media/characters/layla/taur.svg",
  25862. extra: 1268/1199,
  25863. bottom: 112/1380
  25864. }
  25865. },
  25866. },
  25867. [
  25868. {
  25869. name: "Micro",
  25870. height: math.unit(1, "inch")
  25871. },
  25872. {
  25873. name: "Small",
  25874. height: math.unit(1, "foot")
  25875. },
  25876. {
  25877. name: "Normal",
  25878. height: math.unit(2 + 6 / 12, "feet"),
  25879. default: true
  25880. },
  25881. {
  25882. name: "Macro",
  25883. height: math.unit(200, "feet")
  25884. },
  25885. {
  25886. name: "Megamacro",
  25887. height: math.unit(1000, "miles")
  25888. },
  25889. {
  25890. name: "Planetary",
  25891. height: math.unit(8000, "miles")
  25892. },
  25893. {
  25894. name: "True Layla",
  25895. height: math.unit(200000 * 7, "multiverses")
  25896. },
  25897. ]
  25898. ))
  25899. characterMakers.push(() => makeCharacter(
  25900. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25901. {
  25902. back: {
  25903. height: math.unit(10.5, "feet"),
  25904. weight: math.unit(800, "lb"),
  25905. name: "Back",
  25906. image: {
  25907. source: "./media/characters/knox/back.svg",
  25908. extra: 1486 / 1089,
  25909. bottom: 107 / 1601.4
  25910. }
  25911. },
  25912. side: {
  25913. height: math.unit(10.5, "feet"),
  25914. weight: math.unit(800, "lb"),
  25915. name: "Side",
  25916. image: {
  25917. source: "./media/characters/knox/side.svg",
  25918. extra: 244 / 218,
  25919. bottom: 14 / 260
  25920. }
  25921. },
  25922. },
  25923. [
  25924. {
  25925. name: "Compact",
  25926. height: math.unit(10.5, "feet"),
  25927. default: true
  25928. },
  25929. {
  25930. name: "Dynamax",
  25931. height: math.unit(210, "feet")
  25932. },
  25933. {
  25934. name: "Full Macro",
  25935. height: math.unit(850, "feet")
  25936. },
  25937. ]
  25938. ))
  25939. characterMakers.push(() => makeCharacter(
  25940. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25941. {
  25942. front: {
  25943. height: math.unit(28, "feet"),
  25944. weight: math.unit(10500, "lb"),
  25945. name: "Front",
  25946. image: {
  25947. source: "./media/characters/kayda/front.svg",
  25948. extra: 1536 / 1428,
  25949. bottom: 68.7 / 1603
  25950. }
  25951. },
  25952. back: {
  25953. height: math.unit(28, "feet"),
  25954. weight: math.unit(10500, "lb"),
  25955. name: "Back",
  25956. image: {
  25957. source: "./media/characters/kayda/back.svg",
  25958. extra: 1557 / 1464,
  25959. bottom: 39.5 / 1597.49
  25960. }
  25961. },
  25962. dick: {
  25963. height: math.unit(3.858, "feet"),
  25964. name: "Dick",
  25965. image: {
  25966. source: "./media/characters/kayda/dick.svg"
  25967. }
  25968. },
  25969. },
  25970. [
  25971. {
  25972. name: "Macro",
  25973. height: math.unit(28, "feet"),
  25974. default: true
  25975. },
  25976. ]
  25977. ))
  25978. characterMakers.push(() => makeCharacter(
  25979. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25980. {
  25981. front: {
  25982. height: math.unit(10 + 11 / 12, "feet"),
  25983. weight: math.unit(1400, "lb"),
  25984. name: "Front",
  25985. image: {
  25986. source: "./media/characters/brian/front.svg",
  25987. extra: 737 / 692,
  25988. bottom: 55.4 / 785
  25989. }
  25990. },
  25991. },
  25992. [
  25993. {
  25994. name: "Normal",
  25995. height: math.unit(10 + 11 / 12, "feet"),
  25996. default: true
  25997. },
  25998. ]
  25999. ))
  26000. characterMakers.push(() => makeCharacter(
  26001. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26002. {
  26003. front: {
  26004. height: math.unit(5 + 8 / 12, "feet"),
  26005. weight: math.unit(140, "lb"),
  26006. name: "Front",
  26007. image: {
  26008. source: "./media/characters/khemri/front.svg",
  26009. extra: 4780 / 4059,
  26010. bottom: 80.1 / 4859.25
  26011. }
  26012. },
  26013. },
  26014. [
  26015. {
  26016. name: "Micro",
  26017. height: math.unit(6, "inches")
  26018. },
  26019. {
  26020. name: "Normal",
  26021. height: math.unit(5 + 8 / 12, "feet"),
  26022. default: true
  26023. },
  26024. ]
  26025. ))
  26026. characterMakers.push(() => makeCharacter(
  26027. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26028. {
  26029. front: {
  26030. height: math.unit(13, "feet"),
  26031. weight: math.unit(1700, "lb"),
  26032. name: "Front",
  26033. image: {
  26034. source: "./media/characters/felix-braveheart/front.svg",
  26035. extra: 1222 / 1157,
  26036. bottom: 53.2 / 1280
  26037. }
  26038. },
  26039. back: {
  26040. height: math.unit(13, "feet"),
  26041. weight: math.unit(1700, "lb"),
  26042. name: "Back",
  26043. image: {
  26044. source: "./media/characters/felix-braveheart/back.svg",
  26045. extra: 1277 / 1203,
  26046. bottom: 50.2 / 1327
  26047. }
  26048. },
  26049. feral: {
  26050. height: math.unit(6, "feet"),
  26051. weight: math.unit(400, "lb"),
  26052. name: "Feral",
  26053. image: {
  26054. source: "./media/characters/felix-braveheart/feral.svg",
  26055. extra: 682 / 625,
  26056. bottom: 6.9 / 688
  26057. }
  26058. },
  26059. },
  26060. [
  26061. {
  26062. name: "Normal",
  26063. height: math.unit(13, "feet"),
  26064. default: true
  26065. },
  26066. ]
  26067. ))
  26068. characterMakers.push(() => makeCharacter(
  26069. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26070. {
  26071. side: {
  26072. height: math.unit(5 + 11 / 12, "feet"),
  26073. weight: math.unit(1400, "lb"),
  26074. name: "Side",
  26075. image: {
  26076. source: "./media/characters/shadow-blade/side.svg",
  26077. extra: 1726 / 1267,
  26078. bottom: 58.4 / 1785
  26079. }
  26080. },
  26081. },
  26082. [
  26083. {
  26084. name: "Normal",
  26085. height: math.unit(5 + 11 / 12, "feet"),
  26086. default: true
  26087. },
  26088. ]
  26089. ))
  26090. characterMakers.push(() => makeCharacter(
  26091. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26092. {
  26093. front: {
  26094. height: math.unit(1 + 6 / 12, "feet"),
  26095. weight: math.unit(25, "lb"),
  26096. name: "Front",
  26097. image: {
  26098. source: "./media/characters/karla-halldor/front.svg",
  26099. extra: 1459 / 1383,
  26100. bottom: 12 / 1472
  26101. }
  26102. },
  26103. },
  26104. [
  26105. {
  26106. name: "Normal",
  26107. height: math.unit(1 + 6 / 12, "feet"),
  26108. default: true
  26109. },
  26110. ]
  26111. ))
  26112. characterMakers.push(() => makeCharacter(
  26113. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26114. {
  26115. front: {
  26116. height: math.unit(6 + 2 / 12, "feet"),
  26117. weight: math.unit(160, "lb"),
  26118. name: "Front",
  26119. image: {
  26120. source: "./media/characters/ariam/front.svg",
  26121. extra: 1073/976,
  26122. bottom: 52/1125
  26123. }
  26124. },
  26125. back: {
  26126. height: math.unit(6 + 2/12, "feet"),
  26127. weight: math.unit(160, "lb"),
  26128. name: "Back",
  26129. image: {
  26130. source: "./media/characters/ariam/back.svg",
  26131. extra: 1103/1023,
  26132. bottom: 9/1112
  26133. }
  26134. },
  26135. dressed: {
  26136. height: math.unit(6 + 2/12, "feet"),
  26137. weight: math.unit(160, "lb"),
  26138. name: "Dressed",
  26139. image: {
  26140. source: "./media/characters/ariam/dressed.svg",
  26141. extra: 1099/1009,
  26142. bottom: 25/1124
  26143. }
  26144. },
  26145. squatting: {
  26146. height: math.unit(4.1, "feet"),
  26147. weight: math.unit(160, "lb"),
  26148. name: "Squatting",
  26149. image: {
  26150. source: "./media/characters/ariam/squatting.svg",
  26151. extra: 2617 / 2112,
  26152. bottom: 61.2 / 2681,
  26153. }
  26154. },
  26155. },
  26156. [
  26157. {
  26158. name: "Normal",
  26159. height: math.unit(6 + 2 / 12, "feet"),
  26160. default: true
  26161. },
  26162. {
  26163. name: "Normal+",
  26164. height: math.unit(4, "meters")
  26165. },
  26166. {
  26167. name: "Macro",
  26168. height: math.unit(50, "meters")
  26169. },
  26170. {
  26171. name: "Macro+",
  26172. height: math.unit(100, "meters")
  26173. },
  26174. {
  26175. name: "Megamacro",
  26176. height: math.unit(20, "km")
  26177. },
  26178. {
  26179. name: "Caretaker",
  26180. height: math.unit(444, "megameters")
  26181. },
  26182. ]
  26183. ))
  26184. characterMakers.push(() => makeCharacter(
  26185. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26186. {
  26187. front: {
  26188. height: math.unit(1.67, "meters"),
  26189. weight: math.unit(140, "lb"),
  26190. name: "Front",
  26191. image: {
  26192. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26193. extra: 438 / 410,
  26194. bottom: 0.75 / 439
  26195. }
  26196. },
  26197. },
  26198. [
  26199. {
  26200. name: "Shrunken",
  26201. height: math.unit(7.6, "cm")
  26202. },
  26203. {
  26204. name: "Human Scale",
  26205. height: math.unit(1.67, "meters")
  26206. },
  26207. {
  26208. name: "Wolxi Scale",
  26209. height: math.unit(36.7, "meters"),
  26210. default: true
  26211. },
  26212. ]
  26213. ))
  26214. characterMakers.push(() => makeCharacter(
  26215. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26216. {
  26217. front: {
  26218. height: math.unit(1.73, "meters"),
  26219. weight: math.unit(240, "lb"),
  26220. name: "Front",
  26221. image: {
  26222. source: "./media/characters/izue-two-mothers/front.svg",
  26223. extra: 469 / 437,
  26224. bottom: 1.24 / 470.6
  26225. }
  26226. },
  26227. },
  26228. [
  26229. {
  26230. name: "Shrunken",
  26231. height: math.unit(7.86, "cm")
  26232. },
  26233. {
  26234. name: "Human Scale",
  26235. height: math.unit(1.73, "meters")
  26236. },
  26237. {
  26238. name: "Wolxi Scale",
  26239. height: math.unit(38, "meters"),
  26240. default: true
  26241. },
  26242. ]
  26243. ))
  26244. characterMakers.push(() => makeCharacter(
  26245. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26246. {
  26247. front: {
  26248. height: math.unit(1.55, "meters"),
  26249. weight: math.unit(120, "lb"),
  26250. name: "Front",
  26251. image: {
  26252. source: "./media/characters/teeku-love-shack/front.svg",
  26253. extra: 387 / 362,
  26254. bottom: 1.51 / 388
  26255. }
  26256. },
  26257. },
  26258. [
  26259. {
  26260. name: "Shrunken",
  26261. height: math.unit(7, "cm")
  26262. },
  26263. {
  26264. name: "Human Scale",
  26265. height: math.unit(1.55, "meters")
  26266. },
  26267. {
  26268. name: "Wolxi Scale",
  26269. height: math.unit(34.1, "meters"),
  26270. default: true
  26271. },
  26272. ]
  26273. ))
  26274. characterMakers.push(() => makeCharacter(
  26275. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26276. {
  26277. front: {
  26278. height: math.unit(1.83, "meters"),
  26279. weight: math.unit(135, "lb"),
  26280. name: "Front",
  26281. image: {
  26282. source: "./media/characters/dejma-the-red/front.svg",
  26283. extra: 480 / 458,
  26284. bottom: 1.8 / 482
  26285. }
  26286. },
  26287. },
  26288. [
  26289. {
  26290. name: "Shrunken",
  26291. height: math.unit(8.3, "cm")
  26292. },
  26293. {
  26294. name: "Human Scale",
  26295. height: math.unit(1.83, "meters")
  26296. },
  26297. {
  26298. name: "Wolxi Scale",
  26299. height: math.unit(40, "meters"),
  26300. default: true
  26301. },
  26302. ]
  26303. ))
  26304. characterMakers.push(() => makeCharacter(
  26305. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26306. {
  26307. front: {
  26308. height: math.unit(1.78, "meters"),
  26309. weight: math.unit(65, "kg"),
  26310. name: "Front",
  26311. image: {
  26312. source: "./media/characters/aki/front.svg",
  26313. extra: 452 / 415
  26314. }
  26315. },
  26316. frontNsfw: {
  26317. height: math.unit(1.78, "meters"),
  26318. weight: math.unit(65, "kg"),
  26319. name: "Front (NSFW)",
  26320. image: {
  26321. source: "./media/characters/aki/front-nsfw.svg",
  26322. extra: 452 / 415
  26323. }
  26324. },
  26325. back: {
  26326. height: math.unit(1.78, "meters"),
  26327. weight: math.unit(65, "kg"),
  26328. name: "Back",
  26329. image: {
  26330. source: "./media/characters/aki/back.svg",
  26331. extra: 452 / 415
  26332. }
  26333. },
  26334. rump: {
  26335. height: math.unit(2.05, "feet"),
  26336. name: "Rump",
  26337. image: {
  26338. source: "./media/characters/aki/rump.svg"
  26339. }
  26340. },
  26341. dick: {
  26342. height: math.unit(0.95, "feet"),
  26343. name: "Dick",
  26344. image: {
  26345. source: "./media/characters/aki/dick.svg"
  26346. }
  26347. },
  26348. },
  26349. [
  26350. {
  26351. name: "Micro",
  26352. height: math.unit(15, "cm")
  26353. },
  26354. {
  26355. name: "Normal",
  26356. height: math.unit(178, "cm"),
  26357. default: true
  26358. },
  26359. {
  26360. name: "Macro",
  26361. height: math.unit(214, "m")
  26362. },
  26363. {
  26364. name: "Macro+",
  26365. height: math.unit(534, "m")
  26366. },
  26367. ]
  26368. ))
  26369. characterMakers.push(() => makeCharacter(
  26370. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26371. {
  26372. front: {
  26373. height: math.unit(5 + 5 / 12, "feet"),
  26374. weight: math.unit(120, "lb"),
  26375. name: "Front",
  26376. image: {
  26377. source: "./media/characters/ari/front.svg",
  26378. extra: 1550/1471,
  26379. bottom: 39/1589
  26380. }
  26381. },
  26382. },
  26383. [
  26384. {
  26385. name: "Normal",
  26386. height: math.unit(5 + 5 / 12, "feet")
  26387. },
  26388. {
  26389. name: "Macro",
  26390. height: math.unit(100, "feet"),
  26391. default: true
  26392. },
  26393. {
  26394. name: "Megamacro",
  26395. height: math.unit(100, "miles")
  26396. },
  26397. {
  26398. name: "Gigamacro",
  26399. height: math.unit(80000, "miles")
  26400. },
  26401. ]
  26402. ))
  26403. characterMakers.push(() => makeCharacter(
  26404. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26405. {
  26406. side: {
  26407. height: math.unit(9, "feet"),
  26408. weight: math.unit(400, "kg"),
  26409. name: "Side",
  26410. image: {
  26411. source: "./media/characters/bolt/side.svg",
  26412. extra: 1126 / 896,
  26413. bottom: 60 / 1187.3,
  26414. }
  26415. },
  26416. },
  26417. [
  26418. {
  26419. name: "Micro",
  26420. height: math.unit(5, "inches")
  26421. },
  26422. {
  26423. name: "Normal",
  26424. height: math.unit(9, "feet"),
  26425. default: true
  26426. },
  26427. {
  26428. name: "Macro",
  26429. height: math.unit(700, "feet")
  26430. },
  26431. {
  26432. name: "Max Size",
  26433. height: math.unit(1.52e22, "yottameters")
  26434. },
  26435. ]
  26436. ))
  26437. characterMakers.push(() => makeCharacter(
  26438. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26439. {
  26440. front: {
  26441. height: math.unit(4.3, "meters"),
  26442. weight: math.unit(3, "tons"),
  26443. name: "Front",
  26444. image: {
  26445. source: "./media/characters/draekon-sylviar/front.svg",
  26446. extra: 2072/1512,
  26447. bottom: 74/2146
  26448. }
  26449. },
  26450. back: {
  26451. height: math.unit(4.3, "meters"),
  26452. weight: math.unit(3, "tons"),
  26453. name: "Back",
  26454. image: {
  26455. source: "./media/characters/draekon-sylviar/back.svg",
  26456. extra: 1639/1483,
  26457. bottom: 41/1680
  26458. }
  26459. },
  26460. feral: {
  26461. height: math.unit(1.15, "meters"),
  26462. weight: math.unit(3, "tons"),
  26463. name: "Feral",
  26464. image: {
  26465. source: "./media/characters/draekon-sylviar/feral.svg",
  26466. extra: 1033/395,
  26467. bottom: 130/1163
  26468. }
  26469. },
  26470. maw: {
  26471. height: math.unit(1.3, "meters"),
  26472. name: "Maw",
  26473. image: {
  26474. source: "./media/characters/draekon-sylviar/maw.svg"
  26475. }
  26476. },
  26477. mawSeparated: {
  26478. height: math.unit(1.53, "meters"),
  26479. name: "Separated Maw",
  26480. image: {
  26481. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26482. }
  26483. },
  26484. tail: {
  26485. height: math.unit(1.15, "meters"),
  26486. name: "Tail",
  26487. image: {
  26488. source: "./media/characters/draekon-sylviar/tail.svg"
  26489. }
  26490. },
  26491. tailDick: {
  26492. height: math.unit(1.15, "meters"),
  26493. name: "Tail (Dick)",
  26494. image: {
  26495. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26496. }
  26497. },
  26498. tailDickSeparated: {
  26499. height: math.unit(1.19, "meters"),
  26500. name: "Tail (Separated Dick)",
  26501. image: {
  26502. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26503. }
  26504. },
  26505. slit: {
  26506. height: math.unit(1, "meters"),
  26507. name: "Slit",
  26508. image: {
  26509. source: "./media/characters/draekon-sylviar/slit.svg"
  26510. }
  26511. },
  26512. dick: {
  26513. height: math.unit(1.15, "meters"),
  26514. name: "Dick",
  26515. image: {
  26516. source: "./media/characters/draekon-sylviar/dick.svg"
  26517. }
  26518. },
  26519. dickSeparated: {
  26520. height: math.unit(1.1, "meters"),
  26521. name: "Separated Dick",
  26522. image: {
  26523. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26524. }
  26525. },
  26526. sheath: {
  26527. height: math.unit(1.15, "meters"),
  26528. name: "Sheath",
  26529. image: {
  26530. source: "./media/characters/draekon-sylviar/sheath.svg"
  26531. }
  26532. },
  26533. },
  26534. [
  26535. {
  26536. name: "Small",
  26537. height: math.unit(4.53 / 2, "meters"),
  26538. default: true
  26539. },
  26540. {
  26541. name: "Normal",
  26542. height: math.unit(4.53, "meters"),
  26543. default: true
  26544. },
  26545. {
  26546. name: "Large",
  26547. height: math.unit(4.53 * 2, "meters"),
  26548. },
  26549. ]
  26550. ))
  26551. characterMakers.push(() => makeCharacter(
  26552. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26553. {
  26554. front: {
  26555. height: math.unit(6 + 2 / 12, "feet"),
  26556. weight: math.unit(180, "lb"),
  26557. name: "Front",
  26558. image: {
  26559. source: "./media/characters/brawler/front.svg",
  26560. extra: 3301 / 3027,
  26561. bottom: 138 / 3439
  26562. }
  26563. },
  26564. },
  26565. [
  26566. {
  26567. name: "Normal",
  26568. height: math.unit(6 + 2 / 12, "feet"),
  26569. default: true
  26570. },
  26571. ]
  26572. ))
  26573. characterMakers.push(() => makeCharacter(
  26574. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26575. {
  26576. front: {
  26577. height: math.unit(11, "feet"),
  26578. weight: math.unit(1000, "lb"),
  26579. name: "Front",
  26580. image: {
  26581. source: "./media/characters/alex/front.svg",
  26582. bottom: 44.5 / 620
  26583. }
  26584. },
  26585. },
  26586. [
  26587. {
  26588. name: "Micro",
  26589. height: math.unit(5, "inches")
  26590. },
  26591. {
  26592. name: "Normal",
  26593. height: math.unit(11, "feet"),
  26594. default: true
  26595. },
  26596. {
  26597. name: "Macro",
  26598. height: math.unit(9.5e9, "feet")
  26599. },
  26600. {
  26601. name: "Max Size",
  26602. height: math.unit(1.4e283, "yottameters")
  26603. },
  26604. ]
  26605. ))
  26606. characterMakers.push(() => makeCharacter(
  26607. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26608. {
  26609. female: {
  26610. height: math.unit(29.9, "m"),
  26611. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26612. name: "Female",
  26613. image: {
  26614. source: "./media/characters/zenari/female.svg",
  26615. extra: 3281.6 / 3217,
  26616. bottom: 72.2 / 3353
  26617. }
  26618. },
  26619. male: {
  26620. height: math.unit(27.7, "m"),
  26621. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26622. name: "Male",
  26623. image: {
  26624. source: "./media/characters/zenari/male.svg",
  26625. extra: 3008 / 2991,
  26626. bottom: 54.6 / 3069
  26627. }
  26628. },
  26629. },
  26630. [
  26631. {
  26632. name: "Macro",
  26633. height: math.unit(29.7, "meters"),
  26634. default: true
  26635. },
  26636. ]
  26637. ))
  26638. characterMakers.push(() => makeCharacter(
  26639. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26640. {
  26641. female: {
  26642. height: math.unit(23.8, "m"),
  26643. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26644. name: "Female",
  26645. image: {
  26646. source: "./media/characters/mactarian/female.svg",
  26647. extra: 2662 / 2569,
  26648. bottom: 73 / 2736
  26649. }
  26650. },
  26651. male: {
  26652. height: math.unit(23.8, "m"),
  26653. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26654. name: "Male",
  26655. image: {
  26656. source: "./media/characters/mactarian/male.svg",
  26657. extra: 2673 / 2600,
  26658. bottom: 76 / 2750
  26659. }
  26660. },
  26661. },
  26662. [
  26663. {
  26664. name: "Macro",
  26665. height: math.unit(23.8, "meters"),
  26666. default: true
  26667. },
  26668. ]
  26669. ))
  26670. characterMakers.push(() => makeCharacter(
  26671. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26672. {
  26673. female: {
  26674. height: math.unit(19.3, "m"),
  26675. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26676. name: "Female",
  26677. image: {
  26678. source: "./media/characters/umok/female.svg",
  26679. extra: 2186 / 2078,
  26680. bottom: 87 / 2277
  26681. }
  26682. },
  26683. male: {
  26684. height: math.unit(19.5, "m"),
  26685. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26686. name: "Male",
  26687. image: {
  26688. source: "./media/characters/umok/male.svg",
  26689. extra: 2233 / 2140,
  26690. bottom: 24.4 / 2258
  26691. }
  26692. },
  26693. },
  26694. [
  26695. {
  26696. name: "Macro",
  26697. height: math.unit(19.3, "meters"),
  26698. default: true
  26699. },
  26700. ]
  26701. ))
  26702. characterMakers.push(() => makeCharacter(
  26703. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26704. {
  26705. female: {
  26706. height: math.unit(26.15, "m"),
  26707. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26708. name: "Female",
  26709. image: {
  26710. source: "./media/characters/joraxian/female.svg",
  26711. extra: 2912 / 2824,
  26712. bottom: 36 / 2956
  26713. }
  26714. },
  26715. male: {
  26716. height: math.unit(25.4, "m"),
  26717. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26718. name: "Male",
  26719. image: {
  26720. source: "./media/characters/joraxian/male.svg",
  26721. extra: 2877 / 2721,
  26722. bottom: 82 / 2967
  26723. }
  26724. },
  26725. },
  26726. [
  26727. {
  26728. name: "Macro",
  26729. height: math.unit(26.15, "meters"),
  26730. default: true
  26731. },
  26732. ]
  26733. ))
  26734. characterMakers.push(() => makeCharacter(
  26735. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26736. {
  26737. female: {
  26738. height: math.unit(21.6, "m"),
  26739. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26740. name: "Female",
  26741. image: {
  26742. source: "./media/characters/sthara/female.svg",
  26743. extra: 2516 / 2347,
  26744. bottom: 21.5 / 2537
  26745. }
  26746. },
  26747. male: {
  26748. height: math.unit(24, "m"),
  26749. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26750. name: "Male",
  26751. image: {
  26752. source: "./media/characters/sthara/male.svg",
  26753. extra: 2732 / 2607,
  26754. bottom: 23 / 2732
  26755. }
  26756. },
  26757. },
  26758. [
  26759. {
  26760. name: "Macro",
  26761. height: math.unit(21.6, "meters"),
  26762. default: true
  26763. },
  26764. ]
  26765. ))
  26766. characterMakers.push(() => makeCharacter(
  26767. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26768. {
  26769. front: {
  26770. height: math.unit(6 + 4 / 12, "feet"),
  26771. weight: math.unit(175, "lb"),
  26772. name: "Front",
  26773. image: {
  26774. source: "./media/characters/luka-bryzant/front.svg",
  26775. extra: 311 / 289,
  26776. bottom: 4 / 315
  26777. }
  26778. },
  26779. back: {
  26780. height: math.unit(6 + 4 / 12, "feet"),
  26781. weight: math.unit(175, "lb"),
  26782. name: "Back",
  26783. image: {
  26784. source: "./media/characters/luka-bryzant/back.svg",
  26785. extra: 311 / 289,
  26786. bottom: 3.8 / 313.7
  26787. }
  26788. },
  26789. },
  26790. [
  26791. {
  26792. name: "Micro",
  26793. height: math.unit(10, "inches")
  26794. },
  26795. {
  26796. name: "Normal",
  26797. height: math.unit(6 + 4 / 12, "feet"),
  26798. default: true
  26799. },
  26800. {
  26801. name: "Large",
  26802. height: math.unit(12, "feet")
  26803. },
  26804. ]
  26805. ))
  26806. characterMakers.push(() => makeCharacter(
  26807. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26808. {
  26809. front: {
  26810. height: math.unit(5 + 7 / 12, "feet"),
  26811. weight: math.unit(185, "lb"),
  26812. name: "Front",
  26813. image: {
  26814. source: "./media/characters/aman-aquila/front.svg",
  26815. extra: 1013 / 976,
  26816. bottom: 45.6 / 1057
  26817. }
  26818. },
  26819. side: {
  26820. height: math.unit(5 + 7 / 12, "feet"),
  26821. weight: math.unit(185, "lb"),
  26822. name: "Side",
  26823. image: {
  26824. source: "./media/characters/aman-aquila/side.svg",
  26825. extra: 1054 / 1011,
  26826. bottom: 15 / 1070
  26827. }
  26828. },
  26829. back: {
  26830. height: math.unit(5 + 7 / 12, "feet"),
  26831. weight: math.unit(185, "lb"),
  26832. name: "Back",
  26833. image: {
  26834. source: "./media/characters/aman-aquila/back.svg",
  26835. extra: 1026 / 970,
  26836. bottom: 12 / 1039
  26837. }
  26838. },
  26839. head: {
  26840. height: math.unit(1.211, "feet"),
  26841. name: "Head",
  26842. image: {
  26843. source: "./media/characters/aman-aquila/head.svg",
  26844. }
  26845. },
  26846. },
  26847. [
  26848. {
  26849. name: "Minimicro",
  26850. height: math.unit(0.057, "inches")
  26851. },
  26852. {
  26853. name: "Micro",
  26854. height: math.unit(7, "inches")
  26855. },
  26856. {
  26857. name: "Mini",
  26858. height: math.unit(3 + 7 / 12, "feet")
  26859. },
  26860. {
  26861. name: "Normal",
  26862. height: math.unit(5 + 7 / 12, "feet"),
  26863. default: true
  26864. },
  26865. {
  26866. name: "Macro",
  26867. height: math.unit(157 + 7 / 12, "feet")
  26868. },
  26869. {
  26870. name: "Megamacro",
  26871. height: math.unit(1557 + 7 / 12, "feet")
  26872. },
  26873. {
  26874. name: "Gigamacro",
  26875. height: math.unit(15557 + 7 / 12, "feet")
  26876. },
  26877. ]
  26878. ))
  26879. characterMakers.push(() => makeCharacter(
  26880. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26881. {
  26882. front: {
  26883. height: math.unit(3 + 2 / 12, "inches"),
  26884. weight: math.unit(0.3, "ounces"),
  26885. name: "Front",
  26886. image: {
  26887. source: "./media/characters/hiphae/front.svg",
  26888. extra: 1931 / 1683,
  26889. bottom: 24 / 1955
  26890. }
  26891. },
  26892. },
  26893. [
  26894. {
  26895. name: "Normal",
  26896. height: math.unit(3 + 1 / 2, "inches"),
  26897. default: true
  26898. },
  26899. ]
  26900. ))
  26901. characterMakers.push(() => makeCharacter(
  26902. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26903. {
  26904. front: {
  26905. height: math.unit(5 + 10 / 12, "feet"),
  26906. weight: math.unit(165, "lb"),
  26907. name: "Front",
  26908. image: {
  26909. source: "./media/characters/nicky/front.svg",
  26910. extra: 3144 / 2886,
  26911. bottom: 45.6 / 3192
  26912. }
  26913. },
  26914. back: {
  26915. height: math.unit(5 + 10 / 12, "feet"),
  26916. weight: math.unit(165, "lb"),
  26917. name: "Back",
  26918. image: {
  26919. source: "./media/characters/nicky/back.svg",
  26920. extra: 3055 / 2804,
  26921. bottom: 28.4 / 3087
  26922. }
  26923. },
  26924. frontclothed: {
  26925. height: math.unit(5 + 10 / 12, "feet"),
  26926. weight: math.unit(165, "lb"),
  26927. name: "Front-clothed",
  26928. image: {
  26929. source: "./media/characters/nicky/front-clothed.svg",
  26930. extra: 3184.9 / 2926.9,
  26931. bottom: 86.5 / 3239.9
  26932. }
  26933. },
  26934. foot: {
  26935. height: math.unit(1.16, "feet"),
  26936. name: "Foot",
  26937. image: {
  26938. source: "./media/characters/nicky/foot.svg"
  26939. }
  26940. },
  26941. feet: {
  26942. height: math.unit(1.34, "feet"),
  26943. name: "Feet",
  26944. image: {
  26945. source: "./media/characters/nicky/feet.svg"
  26946. }
  26947. },
  26948. maw: {
  26949. height: math.unit(0.9, "feet"),
  26950. name: "Maw",
  26951. image: {
  26952. source: "./media/characters/nicky/maw.svg"
  26953. }
  26954. },
  26955. },
  26956. [
  26957. {
  26958. name: "Normal",
  26959. height: math.unit(5 + 10 / 12, "feet"),
  26960. default: true
  26961. },
  26962. {
  26963. name: "Macro",
  26964. height: math.unit(60, "feet")
  26965. },
  26966. {
  26967. name: "Megamacro",
  26968. height: math.unit(1, "mile")
  26969. },
  26970. ]
  26971. ))
  26972. characterMakers.push(() => makeCharacter(
  26973. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26974. {
  26975. side: {
  26976. height: math.unit(10, "feet"),
  26977. weight: math.unit(600, "lb"),
  26978. name: "Side",
  26979. image: {
  26980. source: "./media/characters/blair/side.svg",
  26981. bottom: 16.6 / 475,
  26982. extra: 458 / 431
  26983. }
  26984. },
  26985. },
  26986. [
  26987. {
  26988. name: "Micro",
  26989. height: math.unit(8, "inches")
  26990. },
  26991. {
  26992. name: "Normal",
  26993. height: math.unit(10, "feet"),
  26994. default: true
  26995. },
  26996. {
  26997. name: "Macro",
  26998. height: math.unit(180, "feet")
  26999. },
  27000. ]
  27001. ))
  27002. characterMakers.push(() => makeCharacter(
  27003. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27004. {
  27005. front: {
  27006. height: math.unit(5 + 4 / 12, "feet"),
  27007. weight: math.unit(125, "lb"),
  27008. name: "Front",
  27009. image: {
  27010. source: "./media/characters/fisher/front.svg",
  27011. extra: 444 / 390,
  27012. bottom: 2 / 444.8
  27013. }
  27014. },
  27015. },
  27016. [
  27017. {
  27018. name: "Micro",
  27019. height: math.unit(4, "inches")
  27020. },
  27021. {
  27022. name: "Normal",
  27023. height: math.unit(5 + 4 / 12, "feet"),
  27024. default: true
  27025. },
  27026. {
  27027. name: "Macro",
  27028. height: math.unit(100, "feet")
  27029. },
  27030. ]
  27031. ))
  27032. characterMakers.push(() => makeCharacter(
  27033. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27034. {
  27035. front: {
  27036. height: math.unit(6.71, "feet"),
  27037. weight: math.unit(200, "lb"),
  27038. preyCapacity: math.unit(1000000, "people"),
  27039. name: "Front",
  27040. image: {
  27041. source: "./media/characters/gliss/front.svg",
  27042. extra: 2347 / 2231,
  27043. bottom: 113 / 2462
  27044. }
  27045. },
  27046. hammerspaceSize: {
  27047. height: math.unit(6.71 * 717, "feet"),
  27048. weight: math.unit(200, "lb"),
  27049. preyCapacity: math.unit(1000000, "people"),
  27050. name: "Hammerspace Size",
  27051. image: {
  27052. source: "./media/characters/gliss/front.svg",
  27053. extra: 2347 / 2231,
  27054. bottom: 113 / 2462
  27055. }
  27056. },
  27057. },
  27058. [
  27059. {
  27060. name: "Normal",
  27061. height: math.unit(6.71, "feet"),
  27062. default: true
  27063. },
  27064. ]
  27065. ))
  27066. characterMakers.push(() => makeCharacter(
  27067. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27068. {
  27069. side: {
  27070. height: math.unit(1.44, "m"),
  27071. weight: math.unit(80, "kg"),
  27072. name: "Side",
  27073. image: {
  27074. source: "./media/characters/dune-anderson/side.svg",
  27075. bottom: 49 / 1426
  27076. }
  27077. },
  27078. },
  27079. [
  27080. {
  27081. name: "Wolf-sized",
  27082. height: math.unit(1.44, "meters")
  27083. },
  27084. {
  27085. name: "Normal",
  27086. height: math.unit(5.05, "meters"),
  27087. default: true
  27088. },
  27089. {
  27090. name: "Big",
  27091. height: math.unit(14.4, "meters")
  27092. },
  27093. {
  27094. name: "Huge",
  27095. height: math.unit(144, "meters")
  27096. },
  27097. ]
  27098. ))
  27099. characterMakers.push(() => makeCharacter(
  27100. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27101. {
  27102. front: {
  27103. height: math.unit(7, "feet"),
  27104. weight: math.unit(425, "lb"),
  27105. name: "Front",
  27106. image: {
  27107. source: "./media/characters/hind/front.svg",
  27108. extra: 2091 / 1860,
  27109. bottom: 129 / 2220
  27110. }
  27111. },
  27112. back: {
  27113. height: math.unit(7, "feet"),
  27114. weight: math.unit(425, "lb"),
  27115. name: "Back",
  27116. image: {
  27117. source: "./media/characters/hind/back.svg",
  27118. extra: 2091 / 1860,
  27119. bottom: 24.6 / 2309
  27120. }
  27121. },
  27122. tail: {
  27123. height: math.unit(2.8, "feet"),
  27124. name: "Tail",
  27125. image: {
  27126. source: "./media/characters/hind/tail.svg"
  27127. }
  27128. },
  27129. head: {
  27130. height: math.unit(2.55, "feet"),
  27131. name: "Head",
  27132. image: {
  27133. source: "./media/characters/hind/head.svg"
  27134. }
  27135. },
  27136. },
  27137. [
  27138. {
  27139. name: "XS",
  27140. height: math.unit(0.7, "feet")
  27141. },
  27142. {
  27143. name: "Normal",
  27144. height: math.unit(7, "feet"),
  27145. default: true
  27146. },
  27147. {
  27148. name: "XL",
  27149. height: math.unit(70, "feet")
  27150. },
  27151. ]
  27152. ))
  27153. characterMakers.push(() => makeCharacter(
  27154. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27155. {
  27156. front: {
  27157. height: math.unit(2.1, "meters"),
  27158. weight: math.unit(150, "lb"),
  27159. name: "Front",
  27160. image: {
  27161. source: "./media/characters/tharquench-sizestealer/front.svg",
  27162. extra: 1605/1470,
  27163. bottom: 36/1641
  27164. }
  27165. },
  27166. frontAlt: {
  27167. height: math.unit(2.1, "meters"),
  27168. weight: math.unit(150, "lb"),
  27169. name: "Front (Alt)",
  27170. image: {
  27171. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27172. extra: 2318 / 2063,
  27173. bottom: 93.4 / 2410
  27174. }
  27175. },
  27176. },
  27177. [
  27178. {
  27179. name: "Nano",
  27180. height: math.unit(1, "mm")
  27181. },
  27182. {
  27183. name: "Micro",
  27184. height: math.unit(1, "cm")
  27185. },
  27186. {
  27187. name: "Normal",
  27188. height: math.unit(2.1, "meters"),
  27189. default: true
  27190. },
  27191. ]
  27192. ))
  27193. characterMakers.push(() => makeCharacter(
  27194. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27195. {
  27196. front: {
  27197. height: math.unit(7 + 5 / 12, "feet"),
  27198. weight: math.unit(357, "lb"),
  27199. name: "Front",
  27200. image: {
  27201. source: "./media/characters/solex-draconov/front.svg",
  27202. extra: 1993 / 1865,
  27203. bottom: 117 / 2111
  27204. }
  27205. },
  27206. },
  27207. [
  27208. {
  27209. name: "Natural Height",
  27210. height: math.unit(7 + 5 / 12, "feet"),
  27211. default: true
  27212. },
  27213. {
  27214. name: "Macro",
  27215. height: math.unit(350, "feet")
  27216. },
  27217. {
  27218. name: "Macro+",
  27219. height: math.unit(1000, "feet")
  27220. },
  27221. {
  27222. name: "Megamacro",
  27223. height: math.unit(20, "km")
  27224. },
  27225. {
  27226. name: "Megamacro+",
  27227. height: math.unit(1000, "km")
  27228. },
  27229. {
  27230. name: "Gigamacro",
  27231. height: math.unit(2.5, "Gm")
  27232. },
  27233. {
  27234. name: "Teramacro",
  27235. height: math.unit(15, "Tm")
  27236. },
  27237. {
  27238. name: "Galactic",
  27239. height: math.unit(30, "Zm")
  27240. },
  27241. {
  27242. name: "Universal",
  27243. height: math.unit(21000, "Ym")
  27244. },
  27245. {
  27246. name: "Omniversal",
  27247. height: math.unit(9.861e50, "Ym")
  27248. },
  27249. {
  27250. name: "Existential",
  27251. height: math.unit(1e300, "meters")
  27252. },
  27253. ]
  27254. ))
  27255. characterMakers.push(() => makeCharacter(
  27256. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27257. {
  27258. side: {
  27259. height: math.unit(25, "feet"),
  27260. weight: math.unit(90000, "lb"),
  27261. name: "Side",
  27262. image: {
  27263. source: "./media/characters/mandarax/side.svg",
  27264. extra: 614 / 332,
  27265. bottom: 55 / 630
  27266. }
  27267. },
  27268. lounging: {
  27269. height: math.unit(15.4, "feet"),
  27270. weight: math.unit(90000, "lb"),
  27271. name: "Lounging",
  27272. image: {
  27273. source: "./media/characters/mandarax/lounging.svg",
  27274. extra: 817/609,
  27275. bottom: 685/1502
  27276. }
  27277. },
  27278. head: {
  27279. height: math.unit(11.4, "feet"),
  27280. name: "Head",
  27281. image: {
  27282. source: "./media/characters/mandarax/head.svg"
  27283. }
  27284. },
  27285. belly: {
  27286. height: math.unit(33, "feet"),
  27287. name: "Belly",
  27288. preyCapacity: math.unit(500, "people"),
  27289. image: {
  27290. source: "./media/characters/mandarax/belly.svg"
  27291. }
  27292. },
  27293. dick: {
  27294. height: math.unit(8.46, "feet"),
  27295. name: "Dick",
  27296. image: {
  27297. source: "./media/characters/mandarax/dick.svg"
  27298. }
  27299. },
  27300. top: {
  27301. height: math.unit(28, "meters"),
  27302. name: "Top",
  27303. image: {
  27304. source: "./media/characters/mandarax/top.svg"
  27305. }
  27306. },
  27307. },
  27308. [
  27309. {
  27310. name: "Normal",
  27311. height: math.unit(25, "feet"),
  27312. default: true
  27313. },
  27314. ]
  27315. ))
  27316. characterMakers.push(() => makeCharacter(
  27317. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27318. {
  27319. front: {
  27320. height: math.unit(5, "feet"),
  27321. weight: math.unit(90, "lb"),
  27322. name: "Front",
  27323. image: {
  27324. source: "./media/characters/pixil/front.svg",
  27325. extra: 2000 / 1618,
  27326. bottom: 12.3 / 2011
  27327. }
  27328. },
  27329. },
  27330. [
  27331. {
  27332. name: "Normal",
  27333. height: math.unit(5, "feet"),
  27334. default: true
  27335. },
  27336. {
  27337. name: "Megamacro",
  27338. height: math.unit(10, "miles"),
  27339. },
  27340. ]
  27341. ))
  27342. characterMakers.push(() => makeCharacter(
  27343. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27344. {
  27345. front: {
  27346. height: math.unit(7 + 2 / 12, "feet"),
  27347. weight: math.unit(200, "lb"),
  27348. name: "Front",
  27349. image: {
  27350. source: "./media/characters/angel/front.svg",
  27351. extra: 1830 / 1737,
  27352. bottom: 22.6 / 1854,
  27353. }
  27354. },
  27355. },
  27356. [
  27357. {
  27358. name: "Normal",
  27359. height: math.unit(7 + 2 / 12, "feet"),
  27360. default: true
  27361. },
  27362. {
  27363. name: "Macro",
  27364. height: math.unit(1000, "feet")
  27365. },
  27366. {
  27367. name: "Megamacro",
  27368. height: math.unit(2, "miles")
  27369. },
  27370. {
  27371. name: "Gigamacro",
  27372. height: math.unit(20, "earths")
  27373. },
  27374. ]
  27375. ))
  27376. characterMakers.push(() => makeCharacter(
  27377. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27378. {
  27379. front: {
  27380. height: math.unit(5, "feet"),
  27381. weight: math.unit(180, "lb"),
  27382. name: "Front",
  27383. image: {
  27384. source: "./media/characters/mekana/front.svg",
  27385. extra: 1671 / 1605,
  27386. bottom: 3.5 / 1691
  27387. }
  27388. },
  27389. side: {
  27390. height: math.unit(5, "feet"),
  27391. weight: math.unit(180, "lb"),
  27392. name: "Side",
  27393. image: {
  27394. source: "./media/characters/mekana/side.svg",
  27395. extra: 1671 / 1605,
  27396. bottom: 3.5 / 1691
  27397. }
  27398. },
  27399. back: {
  27400. height: math.unit(5, "feet"),
  27401. weight: math.unit(180, "lb"),
  27402. name: "Back",
  27403. image: {
  27404. source: "./media/characters/mekana/back.svg",
  27405. extra: 1671 / 1605,
  27406. bottom: 3.5 / 1691
  27407. }
  27408. },
  27409. },
  27410. [
  27411. {
  27412. name: "Normal",
  27413. height: math.unit(5, "feet"),
  27414. default: true
  27415. },
  27416. ]
  27417. ))
  27418. characterMakers.push(() => makeCharacter(
  27419. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27420. {
  27421. front: {
  27422. height: math.unit(4 + 6 / 12, "feet"),
  27423. weight: math.unit(80, "lb"),
  27424. name: "Front",
  27425. image: {
  27426. source: "./media/characters/pixie/front.svg",
  27427. extra: 1924 / 1825,
  27428. bottom: 22.4 / 1946
  27429. }
  27430. },
  27431. },
  27432. [
  27433. {
  27434. name: "Normal",
  27435. height: math.unit(4 + 6 / 12, "feet"),
  27436. default: true
  27437. },
  27438. {
  27439. name: "Macro",
  27440. height: math.unit(40, "feet")
  27441. },
  27442. ]
  27443. ))
  27444. characterMakers.push(() => makeCharacter(
  27445. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27446. {
  27447. front: {
  27448. height: math.unit(2.1, "meters"),
  27449. weight: math.unit(200, "lb"),
  27450. name: "Front",
  27451. image: {
  27452. source: "./media/characters/the-lascivious/front.svg",
  27453. extra: 1 / 0.893,
  27454. bottom: 3.5 / 573.7
  27455. }
  27456. },
  27457. },
  27458. [
  27459. {
  27460. name: "Human Scale",
  27461. height: math.unit(2.1, "meters")
  27462. },
  27463. {
  27464. name: "Wolxi Scale",
  27465. height: math.unit(46.2, "m"),
  27466. default: true
  27467. },
  27468. {
  27469. name: "Boinker of Buildings",
  27470. height: math.unit(10, "km")
  27471. },
  27472. {
  27473. name: "Shagger of Skyscrapers",
  27474. height: math.unit(40, "km")
  27475. },
  27476. {
  27477. name: "Banger of Boroughs",
  27478. height: math.unit(4000, "km")
  27479. },
  27480. {
  27481. name: "Screwer of States",
  27482. height: math.unit(100000, "km")
  27483. },
  27484. {
  27485. name: "Pounder of Planets",
  27486. height: math.unit(2000000, "km")
  27487. },
  27488. ]
  27489. ))
  27490. characterMakers.push(() => makeCharacter(
  27491. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27492. {
  27493. front: {
  27494. height: math.unit(6, "feet"),
  27495. weight: math.unit(150, "lb"),
  27496. name: "Front",
  27497. image: {
  27498. source: "./media/characters/aj/front.svg",
  27499. extra: 2039 / 1562,
  27500. bottom: 40 / 2079
  27501. }
  27502. },
  27503. },
  27504. [
  27505. {
  27506. name: "Normal",
  27507. height: math.unit(11 + 6 / 12, "feet"),
  27508. default: true
  27509. },
  27510. {
  27511. name: "Megamacro",
  27512. height: math.unit(60, "megameters")
  27513. },
  27514. ]
  27515. ))
  27516. characterMakers.push(() => makeCharacter(
  27517. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27518. {
  27519. side: {
  27520. height: math.unit(31 + 8 / 12, "feet"),
  27521. weight: math.unit(75000, "kg"),
  27522. name: "Side",
  27523. image: {
  27524. source: "./media/characters/koros/side.svg",
  27525. extra: 1442 / 1297,
  27526. bottom: 122.7 / 1562
  27527. }
  27528. },
  27529. dicksKingsCrown: {
  27530. height: math.unit(6, "feet"),
  27531. name: "Dicks (King's Crown)",
  27532. image: {
  27533. source: "./media/characters/koros/dicks-kings-crown.svg"
  27534. }
  27535. },
  27536. dicksTailSet: {
  27537. height: math.unit(3, "feet"),
  27538. name: "Dicks (Tail Set)",
  27539. image: {
  27540. source: "./media/characters/koros/dicks-tail-set.svg"
  27541. }
  27542. },
  27543. dickCumming: {
  27544. height: math.unit(7.98, "feet"),
  27545. name: "Dick (Cumming)",
  27546. image: {
  27547. source: "./media/characters/koros/dick-cumming.svg"
  27548. }
  27549. },
  27550. dicksBack: {
  27551. height: math.unit(5.9, "feet"),
  27552. name: "Dicks (Back)",
  27553. image: {
  27554. source: "./media/characters/koros/dicks-back.svg"
  27555. }
  27556. },
  27557. dicksFront: {
  27558. height: math.unit(3.72, "feet"),
  27559. name: "Dicks (Front)",
  27560. image: {
  27561. source: "./media/characters/koros/dicks-front.svg"
  27562. }
  27563. },
  27564. dicksPeeking: {
  27565. height: math.unit(3.0, "feet"),
  27566. name: "Dicks (Peeking)",
  27567. image: {
  27568. source: "./media/characters/koros/dicks-peeking.svg"
  27569. }
  27570. },
  27571. eye: {
  27572. height: math.unit(1.7, "feet"),
  27573. name: "Eye",
  27574. image: {
  27575. source: "./media/characters/koros/eye.svg"
  27576. }
  27577. },
  27578. headFront: {
  27579. height: math.unit(11.69, "feet"),
  27580. name: "Head (Front)",
  27581. image: {
  27582. source: "./media/characters/koros/head-front.svg"
  27583. }
  27584. },
  27585. headSide: {
  27586. height: math.unit(14, "feet"),
  27587. name: "Head (Side)",
  27588. image: {
  27589. source: "./media/characters/koros/head-side.svg"
  27590. }
  27591. },
  27592. leg: {
  27593. height: math.unit(17, "feet"),
  27594. name: "Leg",
  27595. image: {
  27596. source: "./media/characters/koros/leg.svg"
  27597. }
  27598. },
  27599. mawSide: {
  27600. height: math.unit(12.8, "feet"),
  27601. name: "Maw (Side)",
  27602. image: {
  27603. source: "./media/characters/koros/maw-side.svg"
  27604. }
  27605. },
  27606. mawSpitting: {
  27607. height: math.unit(17, "feet"),
  27608. name: "Maw (Spitting)",
  27609. image: {
  27610. source: "./media/characters/koros/maw-spitting.svg"
  27611. }
  27612. },
  27613. slit: {
  27614. height: math.unit(2.8, "feet"),
  27615. name: "Slit",
  27616. image: {
  27617. source: "./media/characters/koros/slit.svg"
  27618. }
  27619. },
  27620. stomach: {
  27621. height: math.unit(6.8, "feet"),
  27622. preyCapacity: math.unit(20, "people"),
  27623. name: "Stomach",
  27624. image: {
  27625. source: "./media/characters/koros/stomach.svg"
  27626. }
  27627. },
  27628. wingspanBottom: {
  27629. height: math.unit(114, "feet"),
  27630. name: "Wingspan (Bottom)",
  27631. image: {
  27632. source: "./media/characters/koros/wingspan-bottom.svg"
  27633. }
  27634. },
  27635. wingspanTop: {
  27636. height: math.unit(104, "feet"),
  27637. name: "Wingspan (Top)",
  27638. image: {
  27639. source: "./media/characters/koros/wingspan-top.svg"
  27640. }
  27641. },
  27642. },
  27643. [
  27644. {
  27645. name: "Normal",
  27646. height: math.unit(31 + 8 / 12, "feet"),
  27647. default: true
  27648. },
  27649. ]
  27650. ))
  27651. characterMakers.push(() => makeCharacter(
  27652. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27653. {
  27654. front: {
  27655. height: math.unit(18 + 5 / 12, "feet"),
  27656. weight: math.unit(3750, "kg"),
  27657. name: "Front",
  27658. image: {
  27659. source: "./media/characters/vexx/front.svg",
  27660. extra: 426 / 396,
  27661. bottom: 31.5 / 458
  27662. }
  27663. },
  27664. maw: {
  27665. height: math.unit(6, "feet"),
  27666. name: "Maw",
  27667. image: {
  27668. source: "./media/characters/vexx/maw.svg"
  27669. }
  27670. },
  27671. },
  27672. [
  27673. {
  27674. name: "Normal",
  27675. height: math.unit(18 + 5 / 12, "feet"),
  27676. default: true
  27677. },
  27678. ]
  27679. ))
  27680. characterMakers.push(() => makeCharacter(
  27681. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27682. {
  27683. front: {
  27684. height: math.unit(17 + 6 / 12, "feet"),
  27685. weight: math.unit(150, "lb"),
  27686. name: "Front",
  27687. image: {
  27688. source: "./media/characters/baadra/front.svg",
  27689. extra: 1694/1553,
  27690. bottom: 179/1873
  27691. }
  27692. },
  27693. frontAlt: {
  27694. height: math.unit(17 + 6 / 12, "feet"),
  27695. weight: math.unit(150, "lb"),
  27696. name: "Front (Alt)",
  27697. image: {
  27698. source: "./media/characters/baadra/front-alt.svg",
  27699. extra: 3137 / 2890,
  27700. bottom: 168.4 / 3305
  27701. }
  27702. },
  27703. back: {
  27704. height: math.unit(17 + 6 / 12, "feet"),
  27705. weight: math.unit(150, "lb"),
  27706. name: "Back",
  27707. image: {
  27708. source: "./media/characters/baadra/back.svg",
  27709. extra: 3142 / 2890,
  27710. bottom: 220 / 3371
  27711. }
  27712. },
  27713. head: {
  27714. height: math.unit(5.45, "feet"),
  27715. name: "Head",
  27716. image: {
  27717. source: "./media/characters/baadra/head.svg"
  27718. }
  27719. },
  27720. headAngry: {
  27721. height: math.unit(4.95, "feet"),
  27722. name: "Head (Angry)",
  27723. image: {
  27724. source: "./media/characters/baadra/head-angry.svg"
  27725. }
  27726. },
  27727. headOpen: {
  27728. height: math.unit(6, "feet"),
  27729. name: "Head (Open)",
  27730. image: {
  27731. source: "./media/characters/baadra/head-open.svg"
  27732. }
  27733. },
  27734. },
  27735. [
  27736. {
  27737. name: "Normal",
  27738. height: math.unit(17 + 6 / 12, "feet"),
  27739. default: true
  27740. },
  27741. ]
  27742. ))
  27743. characterMakers.push(() => makeCharacter(
  27744. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27745. {
  27746. front: {
  27747. height: math.unit(7 + 3 / 12, "feet"),
  27748. weight: math.unit(180, "lb"),
  27749. name: "Front",
  27750. image: {
  27751. source: "./media/characters/juri/front.svg",
  27752. extra: 1401 / 1237,
  27753. bottom: 18.5 / 1418
  27754. }
  27755. },
  27756. side: {
  27757. height: math.unit(7 + 3 / 12, "feet"),
  27758. weight: math.unit(180, "lb"),
  27759. name: "Side",
  27760. image: {
  27761. source: "./media/characters/juri/side.svg",
  27762. extra: 1424 / 1242,
  27763. bottom: 18.5 / 1447
  27764. }
  27765. },
  27766. sitting: {
  27767. height: math.unit(6, "feet"),
  27768. weight: math.unit(180, "lb"),
  27769. name: "Sitting",
  27770. image: {
  27771. source: "./media/characters/juri/sitting.svg",
  27772. extra: 1270 / 1143,
  27773. bottom: 100 / 1343
  27774. }
  27775. },
  27776. back: {
  27777. height: math.unit(7 + 3 / 12, "feet"),
  27778. weight: math.unit(180, "lb"),
  27779. name: "Back",
  27780. image: {
  27781. source: "./media/characters/juri/back.svg",
  27782. extra: 1377 / 1240,
  27783. bottom: 23.7 / 1405
  27784. }
  27785. },
  27786. maw: {
  27787. height: math.unit(2.8, "feet"),
  27788. name: "Maw",
  27789. image: {
  27790. source: "./media/characters/juri/maw.svg"
  27791. }
  27792. },
  27793. stomach: {
  27794. height: math.unit(0.89, "feet"),
  27795. preyCapacity: math.unit(4, "liters"),
  27796. name: "Stomach",
  27797. image: {
  27798. source: "./media/characters/juri/stomach.svg"
  27799. }
  27800. },
  27801. },
  27802. [
  27803. {
  27804. name: "Normal",
  27805. height: math.unit(7 + 3 / 12, "feet"),
  27806. default: true
  27807. },
  27808. ]
  27809. ))
  27810. characterMakers.push(() => makeCharacter(
  27811. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27812. {
  27813. fox: {
  27814. height: math.unit(5 + 6 / 12, "feet"),
  27815. weight: math.unit(140, "lb"),
  27816. name: "Fox",
  27817. image: {
  27818. source: "./media/characters/maxene-sita/fox.svg",
  27819. extra: 146 / 138,
  27820. bottom: 2.1 / 148.19
  27821. }
  27822. },
  27823. foxLaying: {
  27824. height: math.unit(1.70, "feet"),
  27825. weight: math.unit(140, "lb"),
  27826. name: "Fox (Laying)",
  27827. image: {
  27828. source: "./media/characters/maxene-sita/fox-laying.svg",
  27829. extra: 910 / 572,
  27830. bottom: 71 / 981
  27831. }
  27832. },
  27833. kitsune: {
  27834. height: math.unit(10, "feet"),
  27835. weight: math.unit(800, "lb"),
  27836. name: "Kitsune",
  27837. image: {
  27838. source: "./media/characters/maxene-sita/kitsune.svg",
  27839. extra: 185 / 176,
  27840. bottom: 4.7 / 189.9
  27841. }
  27842. },
  27843. hellhound: {
  27844. height: math.unit(10, "feet"),
  27845. weight: math.unit(700, "lb"),
  27846. name: "Hellhound",
  27847. image: {
  27848. source: "./media/characters/maxene-sita/hellhound.svg",
  27849. extra: 1600 / 1545,
  27850. bottom: 81 / 1681
  27851. }
  27852. },
  27853. },
  27854. [
  27855. {
  27856. name: "Normal",
  27857. height: math.unit(5 + 6 / 12, "feet"),
  27858. default: true
  27859. },
  27860. ]
  27861. ))
  27862. characterMakers.push(() => makeCharacter(
  27863. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27864. {
  27865. front: {
  27866. height: math.unit(3 + 4 / 12, "feet"),
  27867. weight: math.unit(70, "lb"),
  27868. name: "Front",
  27869. image: {
  27870. source: "./media/characters/maia/front.svg",
  27871. extra: 227 / 219.5,
  27872. bottom: 40 / 267
  27873. }
  27874. },
  27875. back: {
  27876. height: math.unit(3 + 4 / 12, "feet"),
  27877. weight: math.unit(70, "lb"),
  27878. name: "Back",
  27879. image: {
  27880. source: "./media/characters/maia/back.svg",
  27881. extra: 237 / 225
  27882. }
  27883. },
  27884. },
  27885. [
  27886. {
  27887. name: "Normal",
  27888. height: math.unit(3 + 4 / 12, "feet"),
  27889. default: true
  27890. },
  27891. ]
  27892. ))
  27893. characterMakers.push(() => makeCharacter(
  27894. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27895. {
  27896. front: {
  27897. height: math.unit(5 + 10 / 12, "feet"),
  27898. weight: math.unit(197, "lb"),
  27899. name: "Front",
  27900. image: {
  27901. source: "./media/characters/jabaro/front.svg",
  27902. extra: 225 / 216,
  27903. bottom: 5.06 / 230
  27904. }
  27905. },
  27906. back: {
  27907. height: math.unit(5 + 10 / 12, "feet"),
  27908. weight: math.unit(197, "lb"),
  27909. name: "Back",
  27910. image: {
  27911. source: "./media/characters/jabaro/back.svg",
  27912. extra: 225 / 219,
  27913. bottom: 1.9 / 227
  27914. }
  27915. },
  27916. },
  27917. [
  27918. {
  27919. name: "Normal",
  27920. height: math.unit(5 + 10 / 12, "feet"),
  27921. default: true
  27922. },
  27923. ]
  27924. ))
  27925. characterMakers.push(() => makeCharacter(
  27926. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27927. {
  27928. front: {
  27929. height: math.unit(5 + 8 / 12, "feet"),
  27930. weight: math.unit(139, "lb"),
  27931. name: "Front",
  27932. image: {
  27933. source: "./media/characters/risa/front.svg",
  27934. extra: 270 / 260,
  27935. bottom: 11.2 / 282
  27936. }
  27937. },
  27938. back: {
  27939. height: math.unit(5 + 8 / 12, "feet"),
  27940. weight: math.unit(139, "lb"),
  27941. name: "Back",
  27942. image: {
  27943. source: "./media/characters/risa/back.svg",
  27944. extra: 264 / 255,
  27945. bottom: 4 / 268
  27946. }
  27947. },
  27948. },
  27949. [
  27950. {
  27951. name: "Normal",
  27952. height: math.unit(5 + 8 / 12, "feet"),
  27953. default: true
  27954. },
  27955. ]
  27956. ))
  27957. characterMakers.push(() => makeCharacter(
  27958. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27959. {
  27960. front: {
  27961. height: math.unit(2 + 11 / 12, "feet"),
  27962. weight: math.unit(30, "lb"),
  27963. name: "Front",
  27964. image: {
  27965. source: "./media/characters/weatley/front.svg",
  27966. bottom: 10.7 / 414,
  27967. extra: 403.5 / 362
  27968. }
  27969. },
  27970. back: {
  27971. height: math.unit(2 + 11 / 12, "feet"),
  27972. weight: math.unit(30, "lb"),
  27973. name: "Back",
  27974. image: {
  27975. source: "./media/characters/weatley/back.svg",
  27976. bottom: 10.7 / 414,
  27977. extra: 403.5 / 362
  27978. }
  27979. },
  27980. },
  27981. [
  27982. {
  27983. name: "Normal",
  27984. height: math.unit(2 + 11 / 12, "feet"),
  27985. default: true
  27986. },
  27987. ]
  27988. ))
  27989. characterMakers.push(() => makeCharacter(
  27990. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27991. {
  27992. front: {
  27993. height: math.unit(5 + 2 / 12, "feet"),
  27994. weight: math.unit(50, "kg"),
  27995. name: "Front",
  27996. image: {
  27997. source: "./media/characters/mercury-crescent/front.svg",
  27998. extra: 1088 / 1033,
  27999. bottom: 18.9 / 1109
  28000. }
  28001. },
  28002. },
  28003. [
  28004. {
  28005. name: "Normal",
  28006. height: math.unit(5 + 2 / 12, "feet"),
  28007. default: true
  28008. },
  28009. ]
  28010. ))
  28011. characterMakers.push(() => makeCharacter(
  28012. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28013. {
  28014. front: {
  28015. height: math.unit(2, "feet"),
  28016. weight: math.unit(15, "kg"),
  28017. name: "Front",
  28018. image: {
  28019. source: "./media/characters/diamond-jones/front.svg",
  28020. extra: 727/723,
  28021. bottom: 46/773
  28022. }
  28023. },
  28024. },
  28025. [
  28026. {
  28027. name: "Normal",
  28028. height: math.unit(2, "feet"),
  28029. default: true
  28030. },
  28031. ]
  28032. ))
  28033. characterMakers.push(() => makeCharacter(
  28034. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28035. {
  28036. front: {
  28037. height: math.unit(3, "feet"),
  28038. weight: math.unit(30, "kg"),
  28039. name: "Front",
  28040. image: {
  28041. source: "./media/characters/sweet-bit/front.svg",
  28042. extra: 675 / 567,
  28043. bottom: 27.7 / 703
  28044. }
  28045. },
  28046. },
  28047. [
  28048. {
  28049. name: "Normal",
  28050. height: math.unit(3, "feet"),
  28051. default: true
  28052. },
  28053. ]
  28054. ))
  28055. characterMakers.push(() => makeCharacter(
  28056. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28057. {
  28058. side: {
  28059. height: math.unit(9.178, "feet"),
  28060. weight: math.unit(500, "lb"),
  28061. name: "Side",
  28062. image: {
  28063. source: "./media/characters/umbrazen/side.svg",
  28064. extra: 1730 / 1473,
  28065. bottom: 34.6 / 1765
  28066. }
  28067. },
  28068. },
  28069. [
  28070. {
  28071. name: "Normal",
  28072. height: math.unit(9.178, "feet"),
  28073. default: true
  28074. },
  28075. ]
  28076. ))
  28077. characterMakers.push(() => makeCharacter(
  28078. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28079. {
  28080. front: {
  28081. height: math.unit(10, "feet"),
  28082. weight: math.unit(750, "lb"),
  28083. name: "Front",
  28084. image: {
  28085. source: "./media/characters/arlist/front.svg",
  28086. extra: 961 / 778,
  28087. bottom: 6.2 / 986
  28088. }
  28089. },
  28090. },
  28091. [
  28092. {
  28093. name: "Normal",
  28094. height: math.unit(10, "feet"),
  28095. default: true
  28096. },
  28097. ]
  28098. ))
  28099. characterMakers.push(() => makeCharacter(
  28100. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28101. {
  28102. front: {
  28103. height: math.unit(5 + 1 / 12, "feet"),
  28104. weight: math.unit(110, "lb"),
  28105. name: "Front",
  28106. image: {
  28107. source: "./media/characters/aradel/front.svg",
  28108. extra: 324 / 303,
  28109. bottom: 3.6 / 329.4
  28110. }
  28111. },
  28112. },
  28113. [
  28114. {
  28115. name: "Normal",
  28116. height: math.unit(5 + 1 / 12, "feet"),
  28117. default: true
  28118. },
  28119. ]
  28120. ))
  28121. characterMakers.push(() => makeCharacter(
  28122. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28123. {
  28124. dressed: {
  28125. height: math.unit(3 + 8 / 12, "feet"),
  28126. weight: math.unit(50, "lb"),
  28127. name: "Dressed",
  28128. image: {
  28129. source: "./media/characters/serryn/dressed.svg",
  28130. extra: 1792 / 1656,
  28131. bottom: 43.5 / 1840
  28132. }
  28133. },
  28134. nude: {
  28135. height: math.unit(3 + 8 / 12, "feet"),
  28136. weight: math.unit(50, "lb"),
  28137. name: "Nude",
  28138. image: {
  28139. source: "./media/characters/serryn/nude.svg",
  28140. extra: 1792 / 1656,
  28141. bottom: 43.5 / 1840
  28142. }
  28143. },
  28144. },
  28145. [
  28146. {
  28147. name: "Normal",
  28148. height: math.unit(3 + 8 / 12, "feet"),
  28149. default: true
  28150. },
  28151. ]
  28152. ))
  28153. characterMakers.push(() => makeCharacter(
  28154. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28155. {
  28156. front: {
  28157. height: math.unit(7 + 10 / 12, "feet"),
  28158. weight: math.unit(255, "lb"),
  28159. name: "Front",
  28160. image: {
  28161. source: "./media/characters/xavier-thyme/front.svg",
  28162. extra: 3733 / 3642,
  28163. bottom: 131 / 3869
  28164. }
  28165. },
  28166. frontRaven: {
  28167. height: math.unit(7 + 10 / 12, "feet"),
  28168. weight: math.unit(255, "lb"),
  28169. name: "Front (Raven)",
  28170. image: {
  28171. source: "./media/characters/xavier-thyme/front-raven.svg",
  28172. extra: 4385 / 3642,
  28173. bottom: 131 / 4517
  28174. }
  28175. },
  28176. },
  28177. [
  28178. {
  28179. name: "Normal",
  28180. height: math.unit(7 + 10 / 12, "feet"),
  28181. default: true
  28182. },
  28183. ]
  28184. ))
  28185. characterMakers.push(() => makeCharacter(
  28186. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28187. {
  28188. front: {
  28189. height: math.unit(1.6, "m"),
  28190. weight: math.unit(50, "kg"),
  28191. name: "Front",
  28192. image: {
  28193. source: "./media/characters/kiki/front.svg",
  28194. extra: 4682 / 3610,
  28195. bottom: 115 / 4777
  28196. }
  28197. },
  28198. },
  28199. [
  28200. {
  28201. name: "Normal",
  28202. height: math.unit(1.6, "meters"),
  28203. default: true
  28204. },
  28205. ]
  28206. ))
  28207. characterMakers.push(() => makeCharacter(
  28208. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28209. {
  28210. front: {
  28211. height: math.unit(50, "m"),
  28212. weight: math.unit(500, "tonnes"),
  28213. name: "Front",
  28214. image: {
  28215. source: "./media/characters/ryoko/front.svg",
  28216. extra: 4632 / 3926,
  28217. bottom: 193 / 4823
  28218. }
  28219. },
  28220. },
  28221. [
  28222. {
  28223. name: "Normal",
  28224. height: math.unit(50, "meters"),
  28225. default: true
  28226. },
  28227. ]
  28228. ))
  28229. characterMakers.push(() => makeCharacter(
  28230. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28231. {
  28232. front: {
  28233. height: math.unit(30, "m"),
  28234. weight: math.unit(22, "tonnes"),
  28235. name: "Front",
  28236. image: {
  28237. source: "./media/characters/elio/front.svg",
  28238. extra: 4582 / 3720,
  28239. bottom: 236 / 4828
  28240. }
  28241. },
  28242. },
  28243. [
  28244. {
  28245. name: "Normal",
  28246. height: math.unit(30, "meters"),
  28247. default: true
  28248. },
  28249. ]
  28250. ))
  28251. characterMakers.push(() => makeCharacter(
  28252. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28253. {
  28254. front: {
  28255. height: math.unit(6 + 3 / 12, "feet"),
  28256. weight: math.unit(120, "lb"),
  28257. name: "Front",
  28258. image: {
  28259. source: "./media/characters/azura/front.svg",
  28260. extra: 1149 / 1135,
  28261. bottom: 45 / 1194
  28262. }
  28263. },
  28264. frontClothed: {
  28265. height: math.unit(6 + 3 / 12, "feet"),
  28266. weight: math.unit(120, "lb"),
  28267. name: "Front (Clothed)",
  28268. image: {
  28269. source: "./media/characters/azura/front-clothed.svg",
  28270. extra: 1149 / 1135,
  28271. bottom: 45 / 1194
  28272. }
  28273. },
  28274. },
  28275. [
  28276. {
  28277. name: "Normal",
  28278. height: math.unit(6 + 3 / 12, "feet"),
  28279. default: true
  28280. },
  28281. {
  28282. name: "Macro",
  28283. height: math.unit(20 + 6 / 12, "feet")
  28284. },
  28285. {
  28286. name: "Megamacro",
  28287. height: math.unit(12, "miles")
  28288. },
  28289. {
  28290. name: "Gigamacro",
  28291. height: math.unit(10000, "miles")
  28292. },
  28293. {
  28294. name: "Teramacro",
  28295. height: math.unit(900000, "miles")
  28296. },
  28297. ]
  28298. ))
  28299. characterMakers.push(() => makeCharacter(
  28300. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28301. {
  28302. front: {
  28303. height: math.unit(12, "feet"),
  28304. weight: math.unit(1, "ton"),
  28305. capacity: math.unit(660000, "gallons"),
  28306. name: "Front",
  28307. image: {
  28308. source: "./media/characters/zeus/front.svg",
  28309. extra: 5005 / 4717,
  28310. bottom: 363 / 5388
  28311. }
  28312. },
  28313. },
  28314. [
  28315. {
  28316. name: "Normal",
  28317. height: math.unit(12, "feet")
  28318. },
  28319. {
  28320. name: "Preferred Size",
  28321. height: math.unit(0.5, "miles"),
  28322. default: true
  28323. },
  28324. {
  28325. name: "Giga Horse",
  28326. height: math.unit(300, "miles")
  28327. },
  28328. {
  28329. name: "Riding Planets",
  28330. height: math.unit(30, "megameters")
  28331. },
  28332. {
  28333. name: "Cosmic Giant",
  28334. height: math.unit(3, "zettameters")
  28335. },
  28336. {
  28337. name: "Breeding God",
  28338. height: math.unit(9.92e22, "yottameters")
  28339. },
  28340. ]
  28341. ))
  28342. characterMakers.push(() => makeCharacter(
  28343. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28344. {
  28345. side: {
  28346. height: math.unit(9, "feet"),
  28347. weight: math.unit(1500, "kg"),
  28348. name: "Side",
  28349. image: {
  28350. source: "./media/characters/fang/side.svg",
  28351. extra: 924 / 866,
  28352. bottom: 47.5 / 972.3
  28353. }
  28354. },
  28355. },
  28356. [
  28357. {
  28358. name: "Normal",
  28359. height: math.unit(9, "feet"),
  28360. default: true
  28361. },
  28362. {
  28363. name: "Macro",
  28364. height: math.unit(75 + 6 / 12, "feet")
  28365. },
  28366. {
  28367. name: "Teramacro",
  28368. height: math.unit(50000, "miles")
  28369. },
  28370. ]
  28371. ))
  28372. characterMakers.push(() => makeCharacter(
  28373. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28374. {
  28375. front: {
  28376. height: math.unit(10, "feet"),
  28377. weight: math.unit(2, "tons"),
  28378. name: "Front",
  28379. image: {
  28380. source: "./media/characters/rekhit/front.svg",
  28381. extra: 2796 / 2590,
  28382. bottom: 225 / 3022
  28383. }
  28384. },
  28385. },
  28386. [
  28387. {
  28388. name: "Normal",
  28389. height: math.unit(10, "feet"),
  28390. default: true
  28391. },
  28392. {
  28393. name: "Macro",
  28394. height: math.unit(500, "feet")
  28395. },
  28396. ]
  28397. ))
  28398. characterMakers.push(() => makeCharacter(
  28399. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28400. {
  28401. front: {
  28402. height: math.unit(7 + 6.451 / 12, "feet"),
  28403. weight: math.unit(310, "lb"),
  28404. name: "Front",
  28405. image: {
  28406. source: "./media/characters/dahlia-verrick/front.svg",
  28407. extra: 1488 / 1365,
  28408. bottom: 6.2 / 1495
  28409. }
  28410. },
  28411. back: {
  28412. height: math.unit(7 + 6.451 / 12, "feet"),
  28413. weight: math.unit(310, "lb"),
  28414. name: "Back",
  28415. image: {
  28416. source: "./media/characters/dahlia-verrick/back.svg",
  28417. extra: 1472 / 1351,
  28418. bottom: 5.28 / 1477
  28419. }
  28420. },
  28421. frontBusiness: {
  28422. height: math.unit(7 + 6.451 / 12, "feet"),
  28423. weight: math.unit(200, "lb"),
  28424. name: "Front (Business)",
  28425. image: {
  28426. source: "./media/characters/dahlia-verrick/front-business.svg",
  28427. extra: 1478 / 1381,
  28428. bottom: 5.5 / 1484
  28429. }
  28430. },
  28431. frontCasual: {
  28432. height: math.unit(7 + 6.451 / 12, "feet"),
  28433. weight: math.unit(200, "lb"),
  28434. name: "Front (Casual)",
  28435. image: {
  28436. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28437. extra: 1478 / 1381,
  28438. bottom: 5.5 / 1484
  28439. }
  28440. },
  28441. },
  28442. [
  28443. {
  28444. name: "Travel-Sized",
  28445. height: math.unit(7.45, "inches")
  28446. },
  28447. {
  28448. name: "Normal",
  28449. height: math.unit(7 + 6.451 / 12, "feet"),
  28450. default: true
  28451. },
  28452. {
  28453. name: "Hitting the Town",
  28454. height: math.unit(37 + 8 / 12, "feet")
  28455. },
  28456. {
  28457. name: "Stomp in the Suburbs",
  28458. height: math.unit(964 + 9.728 / 12, "feet")
  28459. },
  28460. {
  28461. name: "Sit on the City",
  28462. height: math.unit(61747 + 10.592 / 12, "feet")
  28463. },
  28464. {
  28465. name: "Glomp the Globe",
  28466. height: math.unit(252919327 + 4.832 / 12, "feet")
  28467. },
  28468. ]
  28469. ))
  28470. characterMakers.push(() => makeCharacter(
  28471. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28472. {
  28473. front: {
  28474. height: math.unit(6 + 4 / 12, "feet"),
  28475. weight: math.unit(320, "lb"),
  28476. name: "Front",
  28477. image: {
  28478. source: "./media/characters/balina-mahigan/front.svg",
  28479. extra: 447 / 428,
  28480. bottom: 18 / 466
  28481. }
  28482. },
  28483. back: {
  28484. height: math.unit(6 + 4 / 12, "feet"),
  28485. weight: math.unit(320, "lb"),
  28486. name: "Back",
  28487. image: {
  28488. source: "./media/characters/balina-mahigan/back.svg",
  28489. extra: 445 / 428,
  28490. bottom: 4.07 / 448
  28491. }
  28492. },
  28493. arm: {
  28494. height: math.unit(1.88, "feet"),
  28495. name: "Arm",
  28496. image: {
  28497. source: "./media/characters/balina-mahigan/arm.svg"
  28498. }
  28499. },
  28500. backPort: {
  28501. height: math.unit(0.685, "feet"),
  28502. name: "Back Port",
  28503. image: {
  28504. source: "./media/characters/balina-mahigan/back-port.svg"
  28505. }
  28506. },
  28507. hoofpaw: {
  28508. height: math.unit(1.41, "feet"),
  28509. name: "Hoofpaw",
  28510. image: {
  28511. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28512. }
  28513. },
  28514. leftHandBack: {
  28515. height: math.unit(0.938, "feet"),
  28516. name: "Left Hand (Back)",
  28517. image: {
  28518. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28519. }
  28520. },
  28521. leftHandFront: {
  28522. height: math.unit(0.938, "feet"),
  28523. name: "Left Hand (Front)",
  28524. image: {
  28525. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28526. }
  28527. },
  28528. rightHandBack: {
  28529. height: math.unit(0.95, "feet"),
  28530. name: "Right Hand (Back)",
  28531. image: {
  28532. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28533. }
  28534. },
  28535. rightHandFront: {
  28536. height: math.unit(0.95, "feet"),
  28537. name: "Right Hand (Front)",
  28538. image: {
  28539. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28540. }
  28541. },
  28542. },
  28543. [
  28544. {
  28545. name: "Normal",
  28546. height: math.unit(6 + 4 / 12, "feet"),
  28547. default: true
  28548. },
  28549. ]
  28550. ))
  28551. characterMakers.push(() => makeCharacter(
  28552. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28553. {
  28554. front: {
  28555. height: math.unit(6, "feet"),
  28556. weight: math.unit(320, "lb"),
  28557. name: "Front",
  28558. image: {
  28559. source: "./media/characters/balina-mejeri/front.svg",
  28560. extra: 517 / 488,
  28561. bottom: 44.2 / 561
  28562. }
  28563. },
  28564. },
  28565. [
  28566. {
  28567. name: "Normal",
  28568. height: math.unit(6 + 4 / 12, "feet")
  28569. },
  28570. {
  28571. name: "Business",
  28572. height: math.unit(155, "feet"),
  28573. default: true
  28574. },
  28575. ]
  28576. ))
  28577. characterMakers.push(() => makeCharacter(
  28578. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28579. {
  28580. kneeling: {
  28581. height: math.unit(6 + 4 / 12, "feet"),
  28582. weight: math.unit(300 * 20, "lb"),
  28583. name: "Kneeling",
  28584. image: {
  28585. source: "./media/characters/balbarian/kneeling.svg",
  28586. extra: 922 / 862,
  28587. bottom: 42.4 / 965
  28588. }
  28589. },
  28590. },
  28591. [
  28592. {
  28593. name: "Normal",
  28594. height: math.unit(6 + 4 / 12, "feet")
  28595. },
  28596. {
  28597. name: "Treasured",
  28598. height: math.unit(18 + 9 / 12, "feet"),
  28599. default: true
  28600. },
  28601. {
  28602. name: "Macro",
  28603. height: math.unit(900, "feet")
  28604. },
  28605. ]
  28606. ))
  28607. characterMakers.push(() => makeCharacter(
  28608. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28609. {
  28610. front: {
  28611. height: math.unit(6 + 4 / 12, "feet"),
  28612. weight: math.unit(325, "lb"),
  28613. name: "Front",
  28614. image: {
  28615. source: "./media/characters/balina-amarini/front.svg",
  28616. extra: 415 / 403,
  28617. bottom: 19 / 433.4
  28618. }
  28619. },
  28620. back: {
  28621. height: math.unit(6 + 4 / 12, "feet"),
  28622. weight: math.unit(325, "lb"),
  28623. name: "Back",
  28624. image: {
  28625. source: "./media/characters/balina-amarini/back.svg",
  28626. extra: 415 / 403,
  28627. bottom: 13.5 / 432
  28628. }
  28629. },
  28630. overdrive: {
  28631. height: math.unit(6 + 4 / 12, "feet"),
  28632. weight: math.unit(400, "lb"),
  28633. name: "Overdrive",
  28634. image: {
  28635. source: "./media/characters/balina-amarini/overdrive.svg",
  28636. extra: 269 / 259,
  28637. bottom: 12 / 282
  28638. }
  28639. },
  28640. },
  28641. [
  28642. {
  28643. name: "Boom",
  28644. height: math.unit(9 + 10 / 12, "feet"),
  28645. default: true
  28646. },
  28647. {
  28648. name: "Macro",
  28649. height: math.unit(280, "feet")
  28650. },
  28651. ]
  28652. ))
  28653. characterMakers.push(() => makeCharacter(
  28654. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28655. {
  28656. goddess: {
  28657. height: math.unit(600, "feet"),
  28658. weight: math.unit(2000000, "tons"),
  28659. name: "Goddess",
  28660. image: {
  28661. source: "./media/characters/lady-kubwa/goddess.svg",
  28662. extra: 1240.5 / 1223,
  28663. bottom: 22 / 1263
  28664. }
  28665. },
  28666. goddesser: {
  28667. height: math.unit(900, "feet"),
  28668. weight: math.unit(20000000, "lb"),
  28669. name: "Goddess-er",
  28670. image: {
  28671. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28672. extra: 899 / 888,
  28673. bottom: 12.6 / 912
  28674. }
  28675. },
  28676. },
  28677. [
  28678. {
  28679. name: "Macro",
  28680. height: math.unit(600, "feet"),
  28681. default: true
  28682. },
  28683. {
  28684. name: "Megamacro",
  28685. height: math.unit(250, "miles")
  28686. },
  28687. ]
  28688. ))
  28689. characterMakers.push(() => makeCharacter(
  28690. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28691. {
  28692. front: {
  28693. height: math.unit(7 + 7 / 12, "feet"),
  28694. weight: math.unit(250, "lb"),
  28695. name: "Front",
  28696. image: {
  28697. source: "./media/characters/tala-grovehorn/front.svg",
  28698. extra: 2636 / 2525,
  28699. bottom: 147 / 2781
  28700. }
  28701. },
  28702. back: {
  28703. height: math.unit(7 + 7 / 12, "feet"),
  28704. weight: math.unit(250, "lb"),
  28705. name: "Back",
  28706. image: {
  28707. source: "./media/characters/tala-grovehorn/back.svg",
  28708. extra: 2635 / 2539,
  28709. bottom: 100 / 2732.8
  28710. }
  28711. },
  28712. mouth: {
  28713. height: math.unit(1.15, "feet"),
  28714. name: "Mouth",
  28715. image: {
  28716. source: "./media/characters/tala-grovehorn/mouth.svg"
  28717. }
  28718. },
  28719. dick: {
  28720. height: math.unit(2.36, "feet"),
  28721. name: "Dick",
  28722. image: {
  28723. source: "./media/characters/tala-grovehorn/dick.svg"
  28724. }
  28725. },
  28726. slit: {
  28727. height: math.unit(0.61, "feet"),
  28728. name: "Slit",
  28729. image: {
  28730. source: "./media/characters/tala-grovehorn/slit.svg"
  28731. }
  28732. },
  28733. },
  28734. [
  28735. ]
  28736. ))
  28737. characterMakers.push(() => makeCharacter(
  28738. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28739. {
  28740. front: {
  28741. height: math.unit(7 + 7 / 12, "feet"),
  28742. weight: math.unit(225, "lb"),
  28743. name: "Front",
  28744. image: {
  28745. source: "./media/characters/epona/front.svg",
  28746. extra: 2445 / 2290,
  28747. bottom: 251 / 2696
  28748. }
  28749. },
  28750. back: {
  28751. height: math.unit(7 + 7 / 12, "feet"),
  28752. weight: math.unit(225, "lb"),
  28753. name: "Back",
  28754. image: {
  28755. source: "./media/characters/epona/back.svg",
  28756. extra: 2546 / 2408,
  28757. bottom: 44 / 2589
  28758. }
  28759. },
  28760. genitals: {
  28761. height: math.unit(1.5, "feet"),
  28762. name: "Genitals",
  28763. image: {
  28764. source: "./media/characters/epona/genitals.svg"
  28765. }
  28766. },
  28767. },
  28768. [
  28769. {
  28770. name: "Normal",
  28771. height: math.unit(7 + 7 / 12, "feet"),
  28772. default: true
  28773. },
  28774. ]
  28775. ))
  28776. characterMakers.push(() => makeCharacter(
  28777. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28778. {
  28779. front: {
  28780. height: math.unit(7, "feet"),
  28781. weight: math.unit(518, "lb"),
  28782. name: "Front",
  28783. image: {
  28784. source: "./media/characters/avia-bloodbourn/front.svg",
  28785. extra: 1466 / 1350,
  28786. bottom: 65 / 1527
  28787. }
  28788. },
  28789. },
  28790. [
  28791. ]
  28792. ))
  28793. characterMakers.push(() => makeCharacter(
  28794. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28795. {
  28796. front: {
  28797. height: math.unit(9.35, "feet"),
  28798. weight: math.unit(600, "lb"),
  28799. name: "Front",
  28800. image: {
  28801. source: "./media/characters/amera/front.svg",
  28802. extra: 891 / 818,
  28803. bottom: 30 / 922.7
  28804. }
  28805. },
  28806. back: {
  28807. height: math.unit(9.35, "feet"),
  28808. weight: math.unit(600, "lb"),
  28809. name: "Back",
  28810. image: {
  28811. source: "./media/characters/amera/back.svg",
  28812. extra: 876 / 824,
  28813. bottom: 6.8 / 884
  28814. }
  28815. },
  28816. dick: {
  28817. height: math.unit(2.14, "feet"),
  28818. name: "Dick",
  28819. image: {
  28820. source: "./media/characters/amera/dick.svg"
  28821. }
  28822. },
  28823. },
  28824. [
  28825. {
  28826. name: "Normal",
  28827. height: math.unit(9.35, "feet"),
  28828. default: true
  28829. },
  28830. ]
  28831. ))
  28832. characterMakers.push(() => makeCharacter(
  28833. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28834. {
  28835. kneeling: {
  28836. height: math.unit(3 + 4 / 12, "feet"),
  28837. weight: math.unit(90, "lb"),
  28838. name: "Kneeling",
  28839. image: {
  28840. source: "./media/characters/rosewen/kneeling.svg",
  28841. extra: 1835 / 1571,
  28842. bottom: 27.7 / 1862
  28843. }
  28844. },
  28845. },
  28846. [
  28847. {
  28848. name: "Normal",
  28849. height: math.unit(3 + 4 / 12, "feet"),
  28850. default: true
  28851. },
  28852. ]
  28853. ))
  28854. characterMakers.push(() => makeCharacter(
  28855. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28856. {
  28857. front: {
  28858. height: math.unit(5 + 10 / 12, "feet"),
  28859. weight: math.unit(200, "lb"),
  28860. name: "Front",
  28861. image: {
  28862. source: "./media/characters/sabah/front.svg",
  28863. extra: 849 / 763,
  28864. bottom: 33.9 / 881
  28865. }
  28866. },
  28867. },
  28868. [
  28869. {
  28870. name: "Normal",
  28871. height: math.unit(5 + 10 / 12, "feet"),
  28872. default: true
  28873. },
  28874. ]
  28875. ))
  28876. characterMakers.push(() => makeCharacter(
  28877. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28878. {
  28879. front: {
  28880. height: math.unit(3 + 5 / 12, "feet"),
  28881. weight: math.unit(40, "kg"),
  28882. name: "Front",
  28883. image: {
  28884. source: "./media/characters/purple-flame/front.svg",
  28885. extra: 1577 / 1412,
  28886. bottom: 97 / 1694
  28887. }
  28888. },
  28889. frontDressed: {
  28890. height: math.unit(3 + 5 / 12, "feet"),
  28891. weight: math.unit(40, "kg"),
  28892. name: "Front (Dressed)",
  28893. image: {
  28894. source: "./media/characters/purple-flame/front-dressed.svg",
  28895. extra: 1577 / 1412,
  28896. bottom: 97 / 1694
  28897. }
  28898. },
  28899. headphones: {
  28900. height: math.unit(0.85, "feet"),
  28901. name: "Headphones",
  28902. image: {
  28903. source: "./media/characters/purple-flame/headphones.svg"
  28904. }
  28905. },
  28906. },
  28907. [
  28908. {
  28909. name: "Really Small",
  28910. height: math.unit(5, "cm")
  28911. },
  28912. {
  28913. name: "Micro",
  28914. height: math.unit(1 + 5 / 12, "feet")
  28915. },
  28916. {
  28917. name: "Normal",
  28918. height: math.unit(3 + 5 / 12, "feet"),
  28919. default: true
  28920. },
  28921. {
  28922. name: "Minimacro",
  28923. height: math.unit(125, "feet")
  28924. },
  28925. {
  28926. name: "Macro",
  28927. height: math.unit(0.5, "miles")
  28928. },
  28929. {
  28930. name: "Megamacro",
  28931. height: math.unit(50, "miles")
  28932. },
  28933. {
  28934. name: "Gigantic",
  28935. height: math.unit(750, "miles")
  28936. },
  28937. {
  28938. name: "Planetary",
  28939. height: math.unit(15000, "miles")
  28940. },
  28941. ]
  28942. ))
  28943. characterMakers.push(() => makeCharacter(
  28944. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28945. {
  28946. front: {
  28947. height: math.unit(14, "feet"),
  28948. weight: math.unit(959, "lb"),
  28949. name: "Front",
  28950. image: {
  28951. source: "./media/characters/arsenal/front.svg",
  28952. extra: 2357 / 2157,
  28953. bottom: 93 / 2458
  28954. }
  28955. },
  28956. },
  28957. [
  28958. {
  28959. name: "Normal",
  28960. height: math.unit(14, "feet"),
  28961. default: true
  28962. },
  28963. ]
  28964. ))
  28965. characterMakers.push(() => makeCharacter(
  28966. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28967. {
  28968. front: {
  28969. height: math.unit(6, "feet"),
  28970. weight: math.unit(150, "lb"),
  28971. name: "Front",
  28972. image: {
  28973. source: "./media/characters/adira/front.svg",
  28974. extra: 1078 / 1029,
  28975. bottom: 87 / 1166
  28976. }
  28977. },
  28978. },
  28979. [
  28980. {
  28981. name: "Micro",
  28982. height: math.unit(4, "inches"),
  28983. default: true
  28984. },
  28985. {
  28986. name: "Macro",
  28987. height: math.unit(50, "feet")
  28988. },
  28989. ]
  28990. ))
  28991. characterMakers.push(() => makeCharacter(
  28992. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28993. {
  28994. front: {
  28995. height: math.unit(16, "feet"),
  28996. weight: math.unit(1000, "lb"),
  28997. name: "Front",
  28998. image: {
  28999. source: "./media/characters/grim/front.svg",
  29000. extra: 622 / 614,
  29001. bottom: 18.1 / 642
  29002. }
  29003. },
  29004. back: {
  29005. height: math.unit(16, "feet"),
  29006. weight: math.unit(1000, "lb"),
  29007. name: "Back",
  29008. image: {
  29009. source: "./media/characters/grim/back.svg",
  29010. extra: 610.6 / 602,
  29011. bottom: 40.8 / 652
  29012. }
  29013. },
  29014. hunched: {
  29015. height: math.unit(9.75, "feet"),
  29016. weight: math.unit(1000, "lb"),
  29017. name: "Hunched",
  29018. image: {
  29019. source: "./media/characters/grim/hunched.svg",
  29020. extra: 304 / 297,
  29021. bottom: 35.4 / 394
  29022. }
  29023. },
  29024. },
  29025. [
  29026. {
  29027. name: "Normal",
  29028. height: math.unit(16, "feet"),
  29029. default: true
  29030. },
  29031. ]
  29032. ))
  29033. characterMakers.push(() => makeCharacter(
  29034. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29035. {
  29036. front: {
  29037. height: math.unit(2.3, "meters"),
  29038. weight: math.unit(300, "lb"),
  29039. name: "Front",
  29040. image: {
  29041. source: "./media/characters/sinja/front-sfw.svg",
  29042. extra: 1393 / 1294,
  29043. bottom: 70 / 1463
  29044. }
  29045. },
  29046. frontNsfw: {
  29047. height: math.unit(2.3, "meters"),
  29048. weight: math.unit(300, "lb"),
  29049. name: "Front (NSFW)",
  29050. image: {
  29051. source: "./media/characters/sinja/front-nsfw.svg",
  29052. extra: 1393 / 1294,
  29053. bottom: 70 / 1463
  29054. }
  29055. },
  29056. back: {
  29057. height: math.unit(2.3, "meters"),
  29058. weight: math.unit(300, "lb"),
  29059. name: "Back",
  29060. image: {
  29061. source: "./media/characters/sinja/back.svg",
  29062. extra: 1393 / 1294,
  29063. bottom: 70 / 1463
  29064. }
  29065. },
  29066. head: {
  29067. height: math.unit(1.771, "feet"),
  29068. name: "Head",
  29069. image: {
  29070. source: "./media/characters/sinja/head.svg"
  29071. }
  29072. },
  29073. slit: {
  29074. height: math.unit(0.8, "feet"),
  29075. name: "Slit",
  29076. image: {
  29077. source: "./media/characters/sinja/slit.svg"
  29078. }
  29079. },
  29080. },
  29081. [
  29082. {
  29083. name: "Normal",
  29084. height: math.unit(2.3, "meters")
  29085. },
  29086. {
  29087. name: "Macro",
  29088. height: math.unit(91, "meters"),
  29089. default: true
  29090. },
  29091. {
  29092. name: "Megamacro",
  29093. height: math.unit(91440, "meters")
  29094. },
  29095. {
  29096. name: "Gigamacro",
  29097. height: math.unit(60960000, "meters")
  29098. },
  29099. {
  29100. name: "Teramacro",
  29101. height: math.unit(9144000000, "meters")
  29102. },
  29103. ]
  29104. ))
  29105. characterMakers.push(() => makeCharacter(
  29106. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29107. {
  29108. front: {
  29109. height: math.unit(1.7, "meters"),
  29110. weight: math.unit(130, "lb"),
  29111. name: "Front",
  29112. image: {
  29113. source: "./media/characters/kyu/front.svg",
  29114. extra: 415 / 395,
  29115. bottom: 5 / 420
  29116. }
  29117. },
  29118. head: {
  29119. height: math.unit(1.75, "feet"),
  29120. name: "Head",
  29121. image: {
  29122. source: "./media/characters/kyu/head.svg"
  29123. }
  29124. },
  29125. foot: {
  29126. height: math.unit(0.81, "feet"),
  29127. name: "Foot",
  29128. image: {
  29129. source: "./media/characters/kyu/foot.svg"
  29130. }
  29131. },
  29132. },
  29133. [
  29134. {
  29135. name: "Normal",
  29136. height: math.unit(1.7, "meters")
  29137. },
  29138. {
  29139. name: "Macro",
  29140. height: math.unit(131, "feet"),
  29141. default: true
  29142. },
  29143. {
  29144. name: "Megamacro",
  29145. height: math.unit(91440, "meters")
  29146. },
  29147. {
  29148. name: "Gigamacro",
  29149. height: math.unit(60960000, "meters")
  29150. },
  29151. {
  29152. name: "Teramacro",
  29153. height: math.unit(9144000000, "meters")
  29154. },
  29155. ]
  29156. ))
  29157. characterMakers.push(() => makeCharacter(
  29158. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29159. {
  29160. front: {
  29161. height: math.unit(7 + 1 / 12, "feet"),
  29162. weight: math.unit(250, "lb"),
  29163. name: "Front",
  29164. image: {
  29165. source: "./media/characters/joey/front.svg",
  29166. extra: 1791 / 1537,
  29167. bottom: 28 / 1816
  29168. }
  29169. },
  29170. },
  29171. [
  29172. {
  29173. name: "Micro",
  29174. height: math.unit(3, "inches")
  29175. },
  29176. {
  29177. name: "Normal",
  29178. height: math.unit(7 + 1 / 12, "feet"),
  29179. default: true
  29180. },
  29181. ]
  29182. ))
  29183. characterMakers.push(() => makeCharacter(
  29184. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29185. {
  29186. front: {
  29187. height: math.unit(165, "cm"),
  29188. weight: math.unit(140, "lb"),
  29189. name: "Front",
  29190. image: {
  29191. source: "./media/characters/sam-evans/front.svg",
  29192. extra: 3417 / 3230,
  29193. bottom: 41.3 / 3417
  29194. }
  29195. },
  29196. frontSixTails: {
  29197. height: math.unit(165, "cm"),
  29198. weight: math.unit(140, "lb"),
  29199. name: "Front-six-tails",
  29200. image: {
  29201. source: "./media/characters/sam-evans/front-six-tails.svg",
  29202. extra: 3417 / 3230,
  29203. bottom: 41.3 / 3417
  29204. }
  29205. },
  29206. back: {
  29207. height: math.unit(165, "cm"),
  29208. weight: math.unit(140, "lb"),
  29209. name: "Back",
  29210. image: {
  29211. source: "./media/characters/sam-evans/back.svg",
  29212. extra: 3227 / 3032,
  29213. bottom: 6.8 / 3234
  29214. }
  29215. },
  29216. face: {
  29217. height: math.unit(0.68, "feet"),
  29218. name: "Face",
  29219. image: {
  29220. source: "./media/characters/sam-evans/face.svg"
  29221. }
  29222. },
  29223. },
  29224. [
  29225. {
  29226. name: "Normal",
  29227. height: math.unit(165, "cm"),
  29228. default: true
  29229. },
  29230. {
  29231. name: "Macro",
  29232. height: math.unit(100, "meters")
  29233. },
  29234. {
  29235. name: "Macro+",
  29236. height: math.unit(800, "meters")
  29237. },
  29238. {
  29239. name: "Macro++",
  29240. height: math.unit(3, "km")
  29241. },
  29242. {
  29243. name: "Macro+++",
  29244. height: math.unit(30, "km")
  29245. },
  29246. ]
  29247. ))
  29248. characterMakers.push(() => makeCharacter(
  29249. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29250. {
  29251. front: {
  29252. height: math.unit(10, "feet"),
  29253. weight: math.unit(750, "lb"),
  29254. name: "Front",
  29255. image: {
  29256. source: "./media/characters/juliet-a/front.svg",
  29257. extra: 1766 / 1720,
  29258. bottom: 43 / 1809
  29259. }
  29260. },
  29261. back: {
  29262. height: math.unit(10, "feet"),
  29263. weight: math.unit(750, "lb"),
  29264. name: "Back",
  29265. image: {
  29266. source: "./media/characters/juliet-a/back.svg",
  29267. extra: 1781 / 1734,
  29268. bottom: 35 / 1810,
  29269. }
  29270. },
  29271. },
  29272. [
  29273. {
  29274. name: "Normal",
  29275. height: math.unit(10, "feet"),
  29276. default: true
  29277. },
  29278. {
  29279. name: "Dragon Form",
  29280. height: math.unit(250, "feet")
  29281. },
  29282. {
  29283. name: "Macro",
  29284. height: math.unit(1000, "feet")
  29285. },
  29286. {
  29287. name: "Megamacro",
  29288. height: math.unit(10000, "feet")
  29289. }
  29290. ]
  29291. ))
  29292. characterMakers.push(() => makeCharacter(
  29293. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29294. {
  29295. regular: {
  29296. height: math.unit(7 + 3 / 12, "feet"),
  29297. weight: math.unit(260, "lb"),
  29298. name: "Regular",
  29299. image: {
  29300. source: "./media/characters/wild/regular.svg",
  29301. extra: 97.45 / 92,
  29302. bottom: 6.8 / 104.3
  29303. }
  29304. },
  29305. biggums: {
  29306. height: math.unit(8 + 6 / 12, "feet"),
  29307. weight: math.unit(425, "lb"),
  29308. name: "Biggums",
  29309. image: {
  29310. source: "./media/characters/wild/biggums.svg",
  29311. extra: 97.45 / 92,
  29312. bottom: 7.5 / 132.34
  29313. }
  29314. },
  29315. mawRegular: {
  29316. height: math.unit(1.24, "feet"),
  29317. name: "Maw (Regular)",
  29318. image: {
  29319. source: "./media/characters/wild/maw.svg"
  29320. }
  29321. },
  29322. mawBiggums: {
  29323. height: math.unit(1.47, "feet"),
  29324. name: "Maw (Biggums)",
  29325. image: {
  29326. source: "./media/characters/wild/maw.svg"
  29327. }
  29328. },
  29329. },
  29330. [
  29331. {
  29332. name: "Normal",
  29333. height: math.unit(7 + 3 / 12, "feet"),
  29334. default: true
  29335. },
  29336. ]
  29337. ))
  29338. characterMakers.push(() => makeCharacter(
  29339. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29340. {
  29341. front: {
  29342. height: math.unit(2.5, "meters"),
  29343. weight: math.unit(200, "kg"),
  29344. name: "Front",
  29345. image: {
  29346. source: "./media/characters/vidar/front.svg",
  29347. extra: 2994 / 2795,
  29348. bottom: 56 / 3061
  29349. }
  29350. },
  29351. back: {
  29352. height: math.unit(2.5, "meters"),
  29353. weight: math.unit(200, "kg"),
  29354. name: "Back",
  29355. image: {
  29356. source: "./media/characters/vidar/back.svg",
  29357. extra: 3131 / 2928,
  29358. bottom: 13.5 / 3141.5
  29359. }
  29360. },
  29361. feral: {
  29362. height: math.unit(2.5, "meters"),
  29363. weight: math.unit(2000, "kg"),
  29364. name: "Feral",
  29365. image: {
  29366. source: "./media/characters/vidar/feral.svg",
  29367. extra: 2790 / 1765,
  29368. bottom: 6 / 2796
  29369. }
  29370. },
  29371. },
  29372. [
  29373. {
  29374. name: "Normal",
  29375. height: math.unit(2.5, "meters"),
  29376. default: true
  29377. },
  29378. {
  29379. name: "Macro",
  29380. height: math.unit(100, "meters")
  29381. },
  29382. ]
  29383. ))
  29384. characterMakers.push(() => makeCharacter(
  29385. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29386. {
  29387. front: {
  29388. height: math.unit(5 + 9 / 12, "feet"),
  29389. weight: math.unit(120, "lb"),
  29390. name: "Front",
  29391. image: {
  29392. source: "./media/characters/ash/front.svg",
  29393. extra: 2189 / 1961,
  29394. bottom: 5.2 / 2194
  29395. }
  29396. },
  29397. },
  29398. [
  29399. {
  29400. name: "Normal",
  29401. height: math.unit(5 + 9 / 12, "feet"),
  29402. default: true
  29403. },
  29404. ]
  29405. ))
  29406. characterMakers.push(() => makeCharacter(
  29407. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29408. {
  29409. front: {
  29410. height: math.unit(9, "feet"),
  29411. weight: math.unit(10000, "lb"),
  29412. name: "Front",
  29413. image: {
  29414. source: "./media/characters/gygabite/front.svg",
  29415. bottom: 31.7 / 537.8,
  29416. extra: 505 / 370
  29417. }
  29418. },
  29419. },
  29420. [
  29421. {
  29422. name: "Normal",
  29423. height: math.unit(9, "feet"),
  29424. default: true
  29425. },
  29426. ]
  29427. ))
  29428. characterMakers.push(() => makeCharacter(
  29429. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29430. {
  29431. front: {
  29432. height: math.unit(12, "feet"),
  29433. weight: math.unit(4000, "lb"),
  29434. name: "Front",
  29435. image: {
  29436. source: "./media/characters/p0tat0/front.svg",
  29437. extra: 1065 / 921,
  29438. bottom: 55.7 / 1121.25
  29439. }
  29440. },
  29441. },
  29442. [
  29443. {
  29444. name: "Normal",
  29445. height: math.unit(12, "feet"),
  29446. default: true
  29447. },
  29448. ]
  29449. ))
  29450. characterMakers.push(() => makeCharacter(
  29451. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29452. {
  29453. side: {
  29454. height: math.unit(6.5, "feet"),
  29455. weight: math.unit(800, "lb"),
  29456. name: "Side",
  29457. image: {
  29458. source: "./media/characters/dusk/side.svg",
  29459. extra: 615 / 373,
  29460. bottom: 53 / 664
  29461. }
  29462. },
  29463. sitting: {
  29464. height: math.unit(7, "feet"),
  29465. weight: math.unit(800, "lb"),
  29466. name: "Sitting",
  29467. image: {
  29468. source: "./media/characters/dusk/sitting.svg",
  29469. extra: 753 / 425,
  29470. bottom: 33 / 774
  29471. }
  29472. },
  29473. head: {
  29474. height: math.unit(6.1, "feet"),
  29475. name: "Head",
  29476. image: {
  29477. source: "./media/characters/dusk/head.svg"
  29478. }
  29479. },
  29480. },
  29481. [
  29482. {
  29483. name: "Normal",
  29484. height: math.unit(7, "feet"),
  29485. default: true
  29486. },
  29487. ]
  29488. ))
  29489. characterMakers.push(() => makeCharacter(
  29490. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29491. {
  29492. front: {
  29493. height: math.unit(15, "feet"),
  29494. weight: math.unit(7000, "lb"),
  29495. name: "Front",
  29496. image: {
  29497. source: "./media/characters/jay-direwolf/front.svg",
  29498. extra: 1810 / 1732,
  29499. bottom: 66 / 1892
  29500. }
  29501. },
  29502. },
  29503. [
  29504. {
  29505. name: "Normal",
  29506. height: math.unit(15, "feet"),
  29507. default: true
  29508. },
  29509. ]
  29510. ))
  29511. characterMakers.push(() => makeCharacter(
  29512. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29513. {
  29514. front: {
  29515. height: math.unit(4 + 9 / 12, "feet"),
  29516. weight: math.unit(130, "lb"),
  29517. name: "Front",
  29518. image: {
  29519. source: "./media/characters/anchovie/front.svg",
  29520. extra: 382 / 350,
  29521. bottom: 25 / 409
  29522. }
  29523. },
  29524. back: {
  29525. height: math.unit(4 + 9 / 12, "feet"),
  29526. weight: math.unit(130, "lb"),
  29527. name: "Back",
  29528. image: {
  29529. source: "./media/characters/anchovie/back.svg",
  29530. extra: 385 / 352,
  29531. bottom: 16.6 / 402
  29532. }
  29533. },
  29534. frontDressed: {
  29535. height: math.unit(4 + 9 / 12, "feet"),
  29536. weight: math.unit(130, "lb"),
  29537. name: "Front (Dressed)",
  29538. image: {
  29539. source: "./media/characters/anchovie/front-dressed.svg",
  29540. extra: 382 / 350,
  29541. bottom: 25 / 409
  29542. }
  29543. },
  29544. backDressed: {
  29545. height: math.unit(4 + 9 / 12, "feet"),
  29546. weight: math.unit(130, "lb"),
  29547. name: "Back (Dressed)",
  29548. image: {
  29549. source: "./media/characters/anchovie/back-dressed.svg",
  29550. extra: 385 / 352,
  29551. bottom: 16.6 / 402
  29552. }
  29553. },
  29554. },
  29555. [
  29556. {
  29557. name: "Micro",
  29558. height: math.unit(6.4, "inches")
  29559. },
  29560. {
  29561. name: "Normal",
  29562. height: math.unit(4 + 9 / 12, "feet"),
  29563. default: true
  29564. },
  29565. ]
  29566. ))
  29567. characterMakers.push(() => makeCharacter(
  29568. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29569. {
  29570. front: {
  29571. height: math.unit(2, "meters"),
  29572. weight: math.unit(180, "lb"),
  29573. name: "Front",
  29574. image: {
  29575. source: "./media/characters/acidrenamon/front.svg",
  29576. extra: 987 / 890,
  29577. bottom: 22.8 / 1009
  29578. }
  29579. },
  29580. back: {
  29581. height: math.unit(2, "meters"),
  29582. weight: math.unit(180, "lb"),
  29583. name: "Back",
  29584. image: {
  29585. source: "./media/characters/acidrenamon/back.svg",
  29586. extra: 983 / 891,
  29587. bottom: 8.4 / 992
  29588. }
  29589. },
  29590. head: {
  29591. height: math.unit(1.92, "feet"),
  29592. name: "Head",
  29593. image: {
  29594. source: "./media/characters/acidrenamon/head.svg"
  29595. }
  29596. },
  29597. rump: {
  29598. height: math.unit(1.72, "feet"),
  29599. name: "Rump",
  29600. image: {
  29601. source: "./media/characters/acidrenamon/rump.svg"
  29602. }
  29603. },
  29604. tail: {
  29605. height: math.unit(4.2, "feet"),
  29606. name: "Tail",
  29607. image: {
  29608. source: "./media/characters/acidrenamon/tail.svg"
  29609. }
  29610. },
  29611. },
  29612. [
  29613. {
  29614. name: "Normal",
  29615. height: math.unit(2, "meters"),
  29616. default: true
  29617. },
  29618. {
  29619. name: "Minimacro",
  29620. height: math.unit(7, "meters")
  29621. },
  29622. {
  29623. name: "Macro",
  29624. height: math.unit(200, "meters")
  29625. },
  29626. {
  29627. name: "Gigamacro",
  29628. height: math.unit(0.2, "earths")
  29629. },
  29630. ]
  29631. ))
  29632. characterMakers.push(() => makeCharacter(
  29633. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29634. {
  29635. front: {
  29636. height: math.unit(152, "feet"),
  29637. name: "Front",
  29638. image: {
  29639. source: "./media/characters/kenzie-lee/front.svg",
  29640. extra: 1869/1774,
  29641. bottom: 128/1997
  29642. }
  29643. },
  29644. side: {
  29645. height: math.unit(86, "feet"),
  29646. name: "Side",
  29647. image: {
  29648. source: "./media/characters/kenzie-lee/side.svg",
  29649. extra: 930/815,
  29650. bottom: 177/1107
  29651. }
  29652. },
  29653. paw: {
  29654. height: math.unit(15, "feet"),
  29655. name: "Paw",
  29656. image: {
  29657. source: "./media/characters/kenzie-lee/paw.svg"
  29658. }
  29659. },
  29660. },
  29661. [
  29662. {
  29663. name: "Kenzie Flea",
  29664. height: math.unit(2, "mm"),
  29665. default: true
  29666. },
  29667. {
  29668. name: "Micro",
  29669. height: math.unit(2, "inches")
  29670. },
  29671. {
  29672. name: "Normal",
  29673. height: math.unit(152, "feet")
  29674. },
  29675. {
  29676. name: "Megamacro",
  29677. height: math.unit(7, "miles")
  29678. },
  29679. {
  29680. name: "Gigamacro",
  29681. height: math.unit(8000, "miles")
  29682. },
  29683. ]
  29684. ))
  29685. characterMakers.push(() => makeCharacter(
  29686. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29687. {
  29688. front: {
  29689. height: math.unit(6, "feet"),
  29690. name: "Front",
  29691. image: {
  29692. source: "./media/characters/withers/front.svg",
  29693. extra: 1935/1760,
  29694. bottom: 72/2007
  29695. }
  29696. },
  29697. back: {
  29698. height: math.unit(6, "feet"),
  29699. name: "Back",
  29700. image: {
  29701. source: "./media/characters/withers/back.svg",
  29702. extra: 1944/1792,
  29703. bottom: 12/1956
  29704. }
  29705. },
  29706. dressed: {
  29707. height: math.unit(6, "feet"),
  29708. name: "Dressed",
  29709. image: {
  29710. source: "./media/characters/withers/dressed.svg",
  29711. extra: 1937/1765,
  29712. bottom: 73/2010
  29713. }
  29714. },
  29715. phase1: {
  29716. height: math.unit(1.1, "feet"),
  29717. name: "Phase 1",
  29718. image: {
  29719. source: "./media/characters/withers/phase-1.svg",
  29720. extra: 1885/1232,
  29721. bottom: 0/1885
  29722. }
  29723. },
  29724. phase2: {
  29725. height: math.unit(1.05, "feet"),
  29726. name: "Phase 2",
  29727. image: {
  29728. source: "./media/characters/withers/phase-2.svg",
  29729. extra: 1792/1090,
  29730. bottom: 0/1792
  29731. }
  29732. },
  29733. partyWipe: {
  29734. height: math.unit(1.1, "feet"),
  29735. name: "Party Wipe",
  29736. image: {
  29737. source: "./media/characters/withers/party-wipe.svg",
  29738. extra: 1864/1207,
  29739. bottom: 0/1864
  29740. }
  29741. },
  29742. },
  29743. [
  29744. {
  29745. name: "Macro",
  29746. height: math.unit(167, "feet"),
  29747. default: true
  29748. },
  29749. {
  29750. name: "Megamacro",
  29751. height: math.unit(15, "miles")
  29752. }
  29753. ]
  29754. ))
  29755. characterMakers.push(() => makeCharacter(
  29756. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29757. {
  29758. front: {
  29759. height: math.unit(6 + 7 / 12, "feet"),
  29760. weight: math.unit(250, "lb"),
  29761. name: "Front",
  29762. image: {
  29763. source: "./media/characters/nemoskii/front.svg",
  29764. extra: 2270 / 1734,
  29765. bottom: 86 / 2354
  29766. }
  29767. },
  29768. back: {
  29769. height: math.unit(6 + 7 / 12, "feet"),
  29770. weight: math.unit(250, "lb"),
  29771. name: "Back",
  29772. image: {
  29773. source: "./media/characters/nemoskii/back.svg",
  29774. extra: 1845 / 1788,
  29775. bottom: 10.5 / 1852
  29776. }
  29777. },
  29778. head: {
  29779. height: math.unit(1.31, "feet"),
  29780. name: "Head",
  29781. image: {
  29782. source: "./media/characters/nemoskii/head.svg"
  29783. }
  29784. },
  29785. },
  29786. [
  29787. {
  29788. name: "Micro",
  29789. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29790. },
  29791. {
  29792. name: "Normal",
  29793. height: math.unit(6 + 7 / 12, "feet"),
  29794. default: true
  29795. },
  29796. {
  29797. name: "Macro",
  29798. height: math.unit((6 + 7 / 12) * 150, "feet")
  29799. },
  29800. {
  29801. name: "Macro+",
  29802. height: math.unit((6 + 7 / 12) * 500, "feet")
  29803. },
  29804. {
  29805. name: "Megamacro",
  29806. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29807. },
  29808. ]
  29809. ))
  29810. characterMakers.push(() => makeCharacter(
  29811. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29812. {
  29813. front: {
  29814. height: math.unit(1, "mile"),
  29815. weight: math.unit(265261.9, "lb"),
  29816. name: "Front",
  29817. image: {
  29818. source: "./media/characters/shui/front.svg",
  29819. extra: 1633 / 1564,
  29820. bottom: 91.5 / 1726
  29821. }
  29822. },
  29823. },
  29824. [
  29825. {
  29826. name: "Macro",
  29827. height: math.unit(1, "mile"),
  29828. default: true
  29829. },
  29830. ]
  29831. ))
  29832. characterMakers.push(() => makeCharacter(
  29833. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29834. {
  29835. front: {
  29836. height: math.unit(12 + 6 / 12, "feet"),
  29837. weight: math.unit(1342, "lb"),
  29838. name: "Front",
  29839. image: {
  29840. source: "./media/characters/arokh-takakura/front.svg",
  29841. extra: 1089 / 1043,
  29842. bottom: 77.4 / 1176.7
  29843. }
  29844. },
  29845. back: {
  29846. height: math.unit(12 + 6 / 12, "feet"),
  29847. weight: math.unit(1342, "lb"),
  29848. name: "Back",
  29849. image: {
  29850. source: "./media/characters/arokh-takakura/back.svg",
  29851. extra: 1046 / 1019,
  29852. bottom: 102 / 1150
  29853. }
  29854. },
  29855. },
  29856. [
  29857. {
  29858. name: "Big",
  29859. height: math.unit(12 + 6 / 12, "feet"),
  29860. default: true
  29861. },
  29862. ]
  29863. ))
  29864. characterMakers.push(() => makeCharacter(
  29865. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29866. {
  29867. front: {
  29868. height: math.unit(5 + 6 / 12, "feet"),
  29869. weight: math.unit(150, "lb"),
  29870. name: "Front",
  29871. image: {
  29872. source: "./media/characters/theo/front.svg",
  29873. extra: 1184 / 1131,
  29874. bottom: 7.4 / 1191
  29875. }
  29876. },
  29877. },
  29878. [
  29879. {
  29880. name: "Micro",
  29881. height: math.unit(5, "inches")
  29882. },
  29883. {
  29884. name: "Normal",
  29885. height: math.unit(5 + 6 / 12, "feet"),
  29886. default: true
  29887. },
  29888. ]
  29889. ))
  29890. characterMakers.push(() => makeCharacter(
  29891. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29892. {
  29893. front: {
  29894. height: math.unit(5 + 9 / 12, "feet"),
  29895. weight: math.unit(130, "lb"),
  29896. name: "Front",
  29897. image: {
  29898. source: "./media/characters/cecelia-swift/front.svg",
  29899. extra: 502 / 484,
  29900. bottom: 23 / 523
  29901. }
  29902. },
  29903. back: {
  29904. height: math.unit(5 + 9 / 12, "feet"),
  29905. weight: math.unit(130, "lb"),
  29906. name: "Back",
  29907. image: {
  29908. source: "./media/characters/cecelia-swift/back.svg",
  29909. extra: 499 / 485,
  29910. bottom: 12 / 511
  29911. }
  29912. },
  29913. head: {
  29914. height: math.unit(0.90, "feet"),
  29915. name: "Head",
  29916. image: {
  29917. source: "./media/characters/cecelia-swift/head.svg"
  29918. }
  29919. },
  29920. rump: {
  29921. height: math.unit(1.75, "feet"),
  29922. name: "Rump",
  29923. image: {
  29924. source: "./media/characters/cecelia-swift/rump.svg"
  29925. }
  29926. },
  29927. },
  29928. [
  29929. {
  29930. name: "Normal",
  29931. height: math.unit(5 + 9 / 12, "feet"),
  29932. default: true
  29933. },
  29934. {
  29935. name: "Big",
  29936. height: math.unit(50, "feet")
  29937. },
  29938. {
  29939. name: "Macro",
  29940. height: math.unit(100, "feet")
  29941. },
  29942. {
  29943. name: "Macro+",
  29944. height: math.unit(500, "feet")
  29945. },
  29946. {
  29947. name: "Macro++",
  29948. height: math.unit(1000, "feet")
  29949. },
  29950. ]
  29951. ))
  29952. characterMakers.push(() => makeCharacter(
  29953. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29954. {
  29955. front: {
  29956. height: math.unit(6, "feet"),
  29957. weight: math.unit(150, "lb"),
  29958. name: "Front",
  29959. image: {
  29960. source: "./media/characters/kaunan/front.svg",
  29961. extra: 2890 / 2523,
  29962. bottom: 49 / 2939
  29963. }
  29964. },
  29965. },
  29966. [
  29967. {
  29968. name: "Macro",
  29969. height: math.unit(150, "feet"),
  29970. default: true
  29971. },
  29972. ]
  29973. ))
  29974. characterMakers.push(() => makeCharacter(
  29975. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29976. {
  29977. dressed: {
  29978. height: math.unit(175, "cm"),
  29979. weight: math.unit(60, "kg"),
  29980. name: "Dressed",
  29981. image: {
  29982. source: "./media/characters/fei/dressed.svg",
  29983. extra: 1402/1278,
  29984. bottom: 27/1429
  29985. }
  29986. },
  29987. nude: {
  29988. height: math.unit(175, "cm"),
  29989. weight: math.unit(60, "kg"),
  29990. name: "Nude",
  29991. image: {
  29992. source: "./media/characters/fei/nude.svg",
  29993. extra: 1402/1278,
  29994. bottom: 27/1429
  29995. }
  29996. },
  29997. heels: {
  29998. height: math.unit(0.466, "feet"),
  29999. name: "Heels",
  30000. image: {
  30001. source: "./media/characters/fei/heels.svg",
  30002. extra: 156/152,
  30003. bottom: 28/184
  30004. }
  30005. },
  30006. },
  30007. [
  30008. {
  30009. name: "Mortal",
  30010. height: math.unit(175, "cm")
  30011. },
  30012. {
  30013. name: "Normal",
  30014. height: math.unit(3500, "m")
  30015. },
  30016. {
  30017. name: "Stroll",
  30018. height: math.unit(18.4, "km"),
  30019. default: true
  30020. },
  30021. {
  30022. name: "Showoff",
  30023. height: math.unit(175, "km")
  30024. },
  30025. ]
  30026. ))
  30027. characterMakers.push(() => makeCharacter(
  30028. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30029. {
  30030. front: {
  30031. height: math.unit(7, "feet"),
  30032. weight: math.unit(1000, "kg"),
  30033. name: "Front",
  30034. image: {
  30035. source: "./media/characters/edrax/front.svg",
  30036. extra: 2838 / 2550,
  30037. bottom: 130 / 2968
  30038. }
  30039. },
  30040. },
  30041. [
  30042. {
  30043. name: "Small",
  30044. height: math.unit(7, "feet")
  30045. },
  30046. {
  30047. name: "Normal",
  30048. height: math.unit(1500, "meters")
  30049. },
  30050. {
  30051. name: "Mega",
  30052. height: math.unit(12000000, "km"),
  30053. default: true
  30054. },
  30055. {
  30056. name: "Megamacro",
  30057. height: math.unit(10600000, "lightyears")
  30058. },
  30059. {
  30060. name: "Hypermacro",
  30061. height: math.unit(256, "yottameters")
  30062. },
  30063. ]
  30064. ))
  30065. characterMakers.push(() => makeCharacter(
  30066. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30067. {
  30068. front: {
  30069. height: math.unit(10, "feet"),
  30070. weight: math.unit(750, "lb"),
  30071. name: "Front",
  30072. image: {
  30073. source: "./media/characters/clove/front.svg",
  30074. extra: 1918/1751,
  30075. bottom: 52/1970
  30076. }
  30077. },
  30078. back: {
  30079. height: math.unit(10, "feet"),
  30080. weight: math.unit(750, "lb"),
  30081. name: "Back",
  30082. image: {
  30083. source: "./media/characters/clove/back.svg",
  30084. extra: 1912/1747,
  30085. bottom: 50/1962
  30086. }
  30087. },
  30088. },
  30089. [
  30090. {
  30091. name: "Normal",
  30092. height: math.unit(10, "feet"),
  30093. default: true
  30094. },
  30095. ]
  30096. ))
  30097. characterMakers.push(() => makeCharacter(
  30098. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30099. {
  30100. front: {
  30101. height: math.unit(4, "feet"),
  30102. weight: math.unit(50, "lb"),
  30103. name: "Front",
  30104. image: {
  30105. source: "./media/characters/alex-rabbit/front.svg",
  30106. extra: 507 / 458,
  30107. bottom: 18.5 / 527
  30108. }
  30109. },
  30110. back: {
  30111. height: math.unit(4, "feet"),
  30112. weight: math.unit(50, "lb"),
  30113. name: "Back",
  30114. image: {
  30115. source: "./media/characters/alex-rabbit/back.svg",
  30116. extra: 502 / 460,
  30117. bottom: 18.9 / 521
  30118. }
  30119. },
  30120. },
  30121. [
  30122. {
  30123. name: "Normal",
  30124. height: math.unit(4, "feet"),
  30125. default: true
  30126. },
  30127. ]
  30128. ))
  30129. characterMakers.push(() => makeCharacter(
  30130. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30131. {
  30132. front: {
  30133. height: math.unit(1 + 3 / 12, "feet"),
  30134. weight: math.unit(80, "lb"),
  30135. name: "Front",
  30136. image: {
  30137. source: "./media/characters/zander-rose/front.svg",
  30138. extra: 916 / 797,
  30139. bottom: 17 / 933
  30140. }
  30141. },
  30142. back: {
  30143. height: math.unit(1 + 3 / 12, "feet"),
  30144. weight: math.unit(80, "lb"),
  30145. name: "Back",
  30146. image: {
  30147. source: "./media/characters/zander-rose/back.svg",
  30148. extra: 903 / 779,
  30149. bottom: 31 / 934
  30150. }
  30151. },
  30152. },
  30153. [
  30154. {
  30155. name: "Normal",
  30156. height: math.unit(1 + 3 / 12, "feet"),
  30157. default: true
  30158. },
  30159. ]
  30160. ))
  30161. characterMakers.push(() => makeCharacter(
  30162. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30163. {
  30164. anthro: {
  30165. height: math.unit(6, "feet"),
  30166. weight: math.unit(150, "lb"),
  30167. name: "Anthro",
  30168. image: {
  30169. source: "./media/characters/razz/anthro.svg",
  30170. extra: 1437 / 1343,
  30171. bottom: 48 / 1485
  30172. }
  30173. },
  30174. feral: {
  30175. height: math.unit(6, "feet"),
  30176. weight: math.unit(150, "lb"),
  30177. name: "Feral",
  30178. image: {
  30179. source: "./media/characters/razz/feral.svg",
  30180. extra: 2569 / 1385,
  30181. bottom: 95 / 2664
  30182. }
  30183. },
  30184. },
  30185. [
  30186. {
  30187. name: "Normal",
  30188. height: math.unit(6, "feet"),
  30189. default: true
  30190. },
  30191. ]
  30192. ))
  30193. characterMakers.push(() => makeCharacter(
  30194. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30195. {
  30196. front: {
  30197. height: math.unit(9 + 4 / 12, "feet"),
  30198. weight: math.unit(500, "lb"),
  30199. name: "Front",
  30200. image: {
  30201. source: "./media/characters/morrigan/front.svg",
  30202. extra: 2707 / 2579,
  30203. bottom: 156 / 2863
  30204. }
  30205. },
  30206. },
  30207. [
  30208. {
  30209. name: "Normal",
  30210. height: math.unit(9 + 4 / 12, "feet"),
  30211. default: true
  30212. },
  30213. ]
  30214. ))
  30215. characterMakers.push(() => makeCharacter(
  30216. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30217. {
  30218. front: {
  30219. height: math.unit(5, "stories"),
  30220. weight: math.unit(4000, "lb"),
  30221. name: "Front",
  30222. image: {
  30223. source: "./media/characters/jenene/front.svg",
  30224. extra: 1780 / 1710,
  30225. bottom: 57 / 1837
  30226. }
  30227. },
  30228. },
  30229. [
  30230. {
  30231. name: "Normal",
  30232. height: math.unit(5, "stories"),
  30233. default: true
  30234. },
  30235. ]
  30236. ))
  30237. characterMakers.push(() => makeCharacter(
  30238. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30239. {
  30240. taurSfw: {
  30241. height: math.unit(10, "meters"),
  30242. weight: math.unit(17500, "kg"),
  30243. name: "Taur",
  30244. image: {
  30245. source: "./media/characters/faey/taur-sfw.svg",
  30246. extra: 1200 / 968,
  30247. bottom: 41 / 1241
  30248. }
  30249. },
  30250. chestmaw: {
  30251. height: math.unit(2.01, "meters"),
  30252. name: "Chestmaw",
  30253. image: {
  30254. source: "./media/characters/faey/chestmaw.svg"
  30255. }
  30256. },
  30257. foot: {
  30258. height: math.unit(2.43, "meters"),
  30259. name: "Foot",
  30260. image: {
  30261. source: "./media/characters/faey/foot.svg"
  30262. }
  30263. },
  30264. jaws: {
  30265. height: math.unit(1.66, "meters"),
  30266. name: "Jaws",
  30267. image: {
  30268. source: "./media/characters/faey/jaws.svg"
  30269. }
  30270. },
  30271. tongues: {
  30272. height: math.unit(2.01, "meters"),
  30273. name: "Tongues",
  30274. image: {
  30275. source: "./media/characters/faey/tongues.svg"
  30276. }
  30277. },
  30278. },
  30279. [
  30280. {
  30281. name: "Small",
  30282. height: math.unit(10, "meters"),
  30283. default: true
  30284. },
  30285. {
  30286. name: "Big",
  30287. height: math.unit(500000, "km")
  30288. },
  30289. ]
  30290. ))
  30291. characterMakers.push(() => makeCharacter(
  30292. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30293. {
  30294. front: {
  30295. height: math.unit(7, "feet"),
  30296. weight: math.unit(275, "lb"),
  30297. name: "Front",
  30298. image: {
  30299. source: "./media/characters/roku/front.svg",
  30300. extra: 903 / 878,
  30301. bottom: 37 / 940
  30302. }
  30303. },
  30304. },
  30305. [
  30306. {
  30307. name: "Normal",
  30308. height: math.unit(7, "feet"),
  30309. default: true
  30310. },
  30311. {
  30312. name: "Macro",
  30313. height: math.unit(500, "feet")
  30314. },
  30315. {
  30316. name: "Megamacro",
  30317. height: math.unit(200, "miles")
  30318. },
  30319. ]
  30320. ))
  30321. characterMakers.push(() => makeCharacter(
  30322. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30323. {
  30324. front: {
  30325. height: math.unit(6 + 2 / 12, "feet"),
  30326. weight: math.unit(150, "lb"),
  30327. name: "Front",
  30328. image: {
  30329. source: "./media/characters/lira/front.svg",
  30330. extra: 1727 / 1605,
  30331. bottom: 26 / 1753
  30332. }
  30333. },
  30334. back: {
  30335. height: math.unit(6 + 2 / 12, "feet"),
  30336. weight: math.unit(150, "lb"),
  30337. name: "Back",
  30338. image: {
  30339. source: "./media/characters/lira/back.svg",
  30340. extra: 1713/1621,
  30341. bottom: 20/1733
  30342. }
  30343. },
  30344. hand: {
  30345. height: math.unit(0.75, "feet"),
  30346. name: "Hand",
  30347. image: {
  30348. source: "./media/characters/lira/hand.svg"
  30349. }
  30350. },
  30351. maw: {
  30352. height: math.unit(0.65, "feet"),
  30353. name: "Maw",
  30354. image: {
  30355. source: "./media/characters/lira/maw.svg"
  30356. }
  30357. },
  30358. pawDigi: {
  30359. height: math.unit(1.6, "feet"),
  30360. name: "Paw Digi",
  30361. image: {
  30362. source: "./media/characters/lira/paw-digi.svg"
  30363. }
  30364. },
  30365. pawPlanti: {
  30366. height: math.unit(1.4, "feet"),
  30367. name: "Paw Planti",
  30368. image: {
  30369. source: "./media/characters/lira/paw-planti.svg"
  30370. }
  30371. },
  30372. },
  30373. [
  30374. {
  30375. name: "Normal",
  30376. height: math.unit(6 + 2 / 12, "feet"),
  30377. default: true
  30378. },
  30379. {
  30380. name: "Macro",
  30381. height: math.unit(100, "feet")
  30382. },
  30383. {
  30384. name: "Macro²",
  30385. height: math.unit(1600, "feet")
  30386. },
  30387. {
  30388. name: "Planetary",
  30389. height: math.unit(20, "earths")
  30390. },
  30391. ]
  30392. ))
  30393. characterMakers.push(() => makeCharacter(
  30394. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30395. {
  30396. front: {
  30397. height: math.unit(6, "feet"),
  30398. weight: math.unit(150, "lb"),
  30399. name: "Front",
  30400. image: {
  30401. source: "./media/characters/hadjet/front.svg",
  30402. extra: 1480 / 1346,
  30403. bottom: 26 / 1506
  30404. }
  30405. },
  30406. frontNsfw: {
  30407. height: math.unit(6, "feet"),
  30408. weight: math.unit(150, "lb"),
  30409. name: "Front (NSFW)",
  30410. image: {
  30411. source: "./media/characters/hadjet/front-nsfw.svg",
  30412. extra: 1440 / 1358,
  30413. bottom: 52 / 1492
  30414. }
  30415. },
  30416. },
  30417. [
  30418. {
  30419. name: "Macro",
  30420. height: math.unit(10, "stories"),
  30421. default: true
  30422. },
  30423. {
  30424. name: "Megamacro",
  30425. height: math.unit(1.5, "miles")
  30426. },
  30427. {
  30428. name: "Megamacro+",
  30429. height: math.unit(5, "miles")
  30430. },
  30431. ]
  30432. ))
  30433. characterMakers.push(() => makeCharacter(
  30434. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30435. {
  30436. side: {
  30437. height: math.unit(106, "feet"),
  30438. weight: math.unit(500, "tonnes"),
  30439. name: "Side",
  30440. image: {
  30441. source: "./media/characters/kodran/side.svg",
  30442. extra: 553 / 480,
  30443. bottom: 33 / 586
  30444. }
  30445. },
  30446. front: {
  30447. height: math.unit(132, "feet"),
  30448. weight: math.unit(500, "tonnes"),
  30449. name: "Front",
  30450. image: {
  30451. source: "./media/characters/kodran/front.svg",
  30452. extra: 667 / 643,
  30453. bottom: 42 / 709
  30454. }
  30455. },
  30456. flying: {
  30457. height: math.unit(350, "feet"),
  30458. weight: math.unit(500, "tonnes"),
  30459. name: "Flying",
  30460. image: {
  30461. source: "./media/characters/kodran/flying.svg"
  30462. }
  30463. },
  30464. foot: {
  30465. height: math.unit(33, "feet"),
  30466. name: "Foot",
  30467. image: {
  30468. source: "./media/characters/kodran/foot.svg"
  30469. }
  30470. },
  30471. footFront: {
  30472. height: math.unit(19, "feet"),
  30473. name: "Foot (Front)",
  30474. image: {
  30475. source: "./media/characters/kodran/foot-front.svg",
  30476. extra: 261 / 261,
  30477. bottom: 91 / 352
  30478. }
  30479. },
  30480. headFront: {
  30481. height: math.unit(53, "feet"),
  30482. name: "Head (Front)",
  30483. image: {
  30484. source: "./media/characters/kodran/head-front.svg"
  30485. }
  30486. },
  30487. headSide: {
  30488. height: math.unit(65, "feet"),
  30489. name: "Head (Side)",
  30490. image: {
  30491. source: "./media/characters/kodran/head-side.svg"
  30492. }
  30493. },
  30494. throat: {
  30495. height: math.unit(79, "feet"),
  30496. name: "Throat",
  30497. image: {
  30498. source: "./media/characters/kodran/throat.svg"
  30499. }
  30500. },
  30501. },
  30502. [
  30503. {
  30504. name: "Large",
  30505. height: math.unit(106, "feet"),
  30506. default: true
  30507. },
  30508. ]
  30509. ))
  30510. characterMakers.push(() => makeCharacter(
  30511. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30512. {
  30513. side: {
  30514. height: math.unit(11, "feet"),
  30515. weight: math.unit(150, "lb"),
  30516. name: "Side",
  30517. image: {
  30518. source: "./media/characters/pyxaron/side.svg",
  30519. extra: 305 / 195,
  30520. bottom: 17 / 322
  30521. }
  30522. },
  30523. },
  30524. [
  30525. {
  30526. name: "Normal",
  30527. height: math.unit(11, "feet"),
  30528. default: true
  30529. },
  30530. ]
  30531. ))
  30532. characterMakers.push(() => makeCharacter(
  30533. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30534. {
  30535. front: {
  30536. height: math.unit(6, "feet"),
  30537. weight: math.unit(150, "lb"),
  30538. name: "Front",
  30539. image: {
  30540. source: "./media/characters/meep/front.svg",
  30541. extra: 88 / 80,
  30542. bottom: 6 / 94
  30543. }
  30544. },
  30545. },
  30546. [
  30547. {
  30548. name: "Fun Sized",
  30549. height: math.unit(2, "inches"),
  30550. default: true
  30551. },
  30552. {
  30553. name: "Friend Sized",
  30554. height: math.unit(8, "inches")
  30555. },
  30556. ]
  30557. ))
  30558. characterMakers.push(() => makeCharacter(
  30559. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30560. {
  30561. front: {
  30562. height: math.unit(15, "feet"),
  30563. weight: math.unit(2500, "lb"),
  30564. name: "Front",
  30565. image: {
  30566. source: "./media/characters/holly-rabbit/front.svg",
  30567. extra: 1433 / 1233,
  30568. bottom: 125 / 1558
  30569. }
  30570. },
  30571. dick: {
  30572. height: math.unit(4.6, "feet"),
  30573. name: "Dick",
  30574. image: {
  30575. source: "./media/characters/holly-rabbit/dick.svg"
  30576. }
  30577. },
  30578. },
  30579. [
  30580. {
  30581. name: "Normal",
  30582. height: math.unit(15, "feet"),
  30583. default: true
  30584. },
  30585. {
  30586. name: "Macro",
  30587. height: math.unit(250, "feet")
  30588. },
  30589. {
  30590. name: "Macro+",
  30591. height: math.unit(2500, "feet")
  30592. },
  30593. ]
  30594. ))
  30595. characterMakers.push(() => makeCharacter(
  30596. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30597. {
  30598. front: {
  30599. height: math.unit(3.02, "meters"),
  30600. weight: math.unit(500, "kg"),
  30601. name: "Front",
  30602. image: {
  30603. source: "./media/characters/drena/front.svg",
  30604. extra: 282 / 243,
  30605. bottom: 8 / 290
  30606. }
  30607. },
  30608. side: {
  30609. height: math.unit(3.02, "meters"),
  30610. weight: math.unit(500, "kg"),
  30611. name: "Side",
  30612. image: {
  30613. source: "./media/characters/drena/side.svg",
  30614. extra: 280 / 245,
  30615. bottom: 10 / 290
  30616. }
  30617. },
  30618. back: {
  30619. height: math.unit(3.02, "meters"),
  30620. weight: math.unit(500, "kg"),
  30621. name: "Back",
  30622. image: {
  30623. source: "./media/characters/drena/back.svg",
  30624. extra: 278 / 243,
  30625. bottom: 2 / 280
  30626. }
  30627. },
  30628. foot: {
  30629. height: math.unit(0.75, "meters"),
  30630. name: "Foot",
  30631. image: {
  30632. source: "./media/characters/drena/foot.svg"
  30633. }
  30634. },
  30635. maw: {
  30636. height: math.unit(0.82, "meters"),
  30637. name: "Maw",
  30638. image: {
  30639. source: "./media/characters/drena/maw.svg"
  30640. }
  30641. },
  30642. eating: {
  30643. height: math.unit(0.75, "meters"),
  30644. name: "Eating",
  30645. image: {
  30646. source: "./media/characters/drena/eating.svg"
  30647. }
  30648. },
  30649. rump: {
  30650. height: math.unit(0.93, "meters"),
  30651. name: "Rump",
  30652. image: {
  30653. source: "./media/characters/drena/rump.svg"
  30654. }
  30655. },
  30656. },
  30657. [
  30658. {
  30659. name: "Normal",
  30660. height: math.unit(3.02, "meters"),
  30661. default: true
  30662. },
  30663. ]
  30664. ))
  30665. characterMakers.push(() => makeCharacter(
  30666. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30667. {
  30668. front: {
  30669. height: math.unit(6 + 4 / 12, "feet"),
  30670. weight: math.unit(250, "lb"),
  30671. name: "Front",
  30672. image: {
  30673. source: "./media/characters/remmyzilla/front.svg",
  30674. extra: 4033 / 3588,
  30675. bottom: 123 / 4156
  30676. }
  30677. },
  30678. back: {
  30679. height: math.unit(6 + 4 / 12, "feet"),
  30680. weight: math.unit(250, "lb"),
  30681. name: "Back",
  30682. image: {
  30683. source: "./media/characters/remmyzilla/back.svg",
  30684. extra: 2687 / 2555,
  30685. bottom: 48 / 2735
  30686. }
  30687. },
  30688. paw: {
  30689. height: math.unit(1.73, "feet"),
  30690. name: "Paw",
  30691. image: {
  30692. source: "./media/characters/remmyzilla/paw.svg"
  30693. },
  30694. extraAttributes: {
  30695. "toeSize": {
  30696. name: "Toe Size",
  30697. power: 2,
  30698. type: "area",
  30699. base: math.unit(0.0035, "m^2")
  30700. },
  30701. "padSize": {
  30702. name: "Pad Size",
  30703. power: 2,
  30704. type: "area",
  30705. base: math.unit(0.015, "m^2")
  30706. },
  30707. "pawsize": {
  30708. name: "Paw Size",
  30709. power: 2,
  30710. type: "area",
  30711. base: math.unit(0.072, "m^2")
  30712. },
  30713. }
  30714. },
  30715. maw: {
  30716. height: math.unit(1.73, "feet"),
  30717. name: "Maw",
  30718. image: {
  30719. source: "./media/characters/remmyzilla/maw.svg"
  30720. }
  30721. },
  30722. },
  30723. [
  30724. {
  30725. name: "Normal",
  30726. height: math.unit(6 + 4 / 12, "feet")
  30727. },
  30728. {
  30729. name: "Minimacro",
  30730. height: math.unit(12 + 8 / 12, "feet")
  30731. },
  30732. {
  30733. name: "Normal",
  30734. height: math.unit(640, "feet"),
  30735. default: true
  30736. },
  30737. {
  30738. name: "Megamacro",
  30739. height: math.unit(6400, "feet")
  30740. },
  30741. {
  30742. name: "Gigamacro",
  30743. height: math.unit(64000, "miles")
  30744. },
  30745. ]
  30746. ))
  30747. characterMakers.push(() => makeCharacter(
  30748. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30749. {
  30750. front: {
  30751. height: math.unit(2.5, "meters"),
  30752. weight: math.unit(300, "lb"),
  30753. name: "Front",
  30754. image: {
  30755. source: "./media/characters/lawrence/front.svg",
  30756. extra: 357 / 335,
  30757. bottom: 30 / 387
  30758. }
  30759. },
  30760. back: {
  30761. height: math.unit(2.5, "meters"),
  30762. weight: math.unit(300, "lb"),
  30763. name: "Back",
  30764. image: {
  30765. source: "./media/characters/lawrence/back.svg",
  30766. extra: 357 / 338,
  30767. bottom: 16 / 373
  30768. }
  30769. },
  30770. head: {
  30771. height: math.unit(0.9, "meter"),
  30772. name: "Head",
  30773. image: {
  30774. source: "./media/characters/lawrence/head.svg"
  30775. }
  30776. },
  30777. maw: {
  30778. height: math.unit(0.7, "meter"),
  30779. name: "Maw",
  30780. image: {
  30781. source: "./media/characters/lawrence/maw.svg"
  30782. }
  30783. },
  30784. footBottom: {
  30785. height: math.unit(0.5, "meter"),
  30786. name: "Foot (Bottom)",
  30787. image: {
  30788. source: "./media/characters/lawrence/foot-bottom.svg"
  30789. }
  30790. },
  30791. footTop: {
  30792. height: math.unit(0.5, "meter"),
  30793. name: "Foot (Top)",
  30794. image: {
  30795. source: "./media/characters/lawrence/foot-top.svg"
  30796. }
  30797. },
  30798. },
  30799. [
  30800. {
  30801. name: "Normal",
  30802. height: math.unit(2.5, "meters"),
  30803. default: true
  30804. },
  30805. {
  30806. name: "Macro",
  30807. height: math.unit(95, "meters")
  30808. },
  30809. {
  30810. name: "Megamacro",
  30811. height: math.unit(150, "km")
  30812. },
  30813. ]
  30814. ))
  30815. characterMakers.push(() => makeCharacter(
  30816. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30817. {
  30818. front: {
  30819. height: math.unit(4.2, "meters"),
  30820. preyCapacity: math.unit(50, "m^3"),
  30821. weight: math.unit(30, "tonnes"),
  30822. name: "Front",
  30823. image: {
  30824. source: "./media/characters/sydney/front.svg",
  30825. extra: 1177/1129,
  30826. bottom: 197/1374
  30827. },
  30828. extraAttributes: {
  30829. "length": {
  30830. name: "Length",
  30831. power: 1,
  30832. type: "length",
  30833. base: math.unit(21, "meters")
  30834. },
  30835. }
  30836. },
  30837. },
  30838. [
  30839. {
  30840. name: "Normal",
  30841. height: math.unit(4.2, "meters"),
  30842. default: true
  30843. },
  30844. ]
  30845. ))
  30846. characterMakers.push(() => makeCharacter(
  30847. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30848. {
  30849. back: {
  30850. height: math.unit(201, "feet"),
  30851. name: "Back",
  30852. image: {
  30853. source: "./media/characters/jessica/back.svg",
  30854. extra: 273 / 259,
  30855. bottom: 7 / 280
  30856. }
  30857. },
  30858. },
  30859. [
  30860. {
  30861. name: "Normal",
  30862. height: math.unit(201, "feet"),
  30863. default: true
  30864. },
  30865. {
  30866. name: "Megamacro",
  30867. height: math.unit(8, "miles")
  30868. },
  30869. ]
  30870. ))
  30871. characterMakers.push(() => makeCharacter(
  30872. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30873. {
  30874. side: {
  30875. height: math.unit(5.6, "m"),
  30876. weight: math.unit(8000, "kg"),
  30877. name: "Side",
  30878. image: {
  30879. source: "./media/characters/victoria/side.svg",
  30880. extra: 1542/1229,
  30881. bottom: 124/1666
  30882. }
  30883. },
  30884. maw: {
  30885. height: math.unit(7.14, "feet"),
  30886. name: "Maw",
  30887. image: {
  30888. source: "./media/characters/victoria/maw.svg"
  30889. }
  30890. },
  30891. },
  30892. [
  30893. {
  30894. name: "Normal",
  30895. height: math.unit(5.6, "m"),
  30896. default: true
  30897. },
  30898. ]
  30899. ))
  30900. characterMakers.push(() => makeCharacter(
  30901. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30902. {
  30903. front: {
  30904. height: math.unit(5 + 6 / 12, "feet"),
  30905. name: "Front",
  30906. image: {
  30907. source: "./media/characters/cat/front.svg",
  30908. extra: 1449/1295,
  30909. bottom: 34/1483
  30910. },
  30911. form: "cat",
  30912. default: true
  30913. },
  30914. back: {
  30915. height: math.unit(5 + 6 / 12, "feet"),
  30916. name: "Back",
  30917. image: {
  30918. source: "./media/characters/cat/back.svg",
  30919. extra: 1466/1301,
  30920. bottom: 19/1485
  30921. },
  30922. form: "cat"
  30923. },
  30924. taur: {
  30925. height: math.unit(7, "feet"),
  30926. name: "Taur",
  30927. image: {
  30928. source: "./media/characters/cat/taur.svg",
  30929. extra: 1389/1233,
  30930. bottom: 83/1472
  30931. },
  30932. form: "taur",
  30933. default: true
  30934. },
  30935. lucarioFront: {
  30936. height: math.unit(4, "feet"),
  30937. name: "Lucario (Front)",
  30938. image: {
  30939. source: "./media/characters/cat/lucario-front.svg",
  30940. extra: 1149/1019,
  30941. bottom: 84/1233
  30942. },
  30943. form: "lucario",
  30944. default: true
  30945. },
  30946. lucarioBack: {
  30947. height: math.unit(4, "feet"),
  30948. name: "Lucario (Back)",
  30949. image: {
  30950. source: "./media/characters/cat/lucario-back.svg",
  30951. extra: 1190/1059,
  30952. bottom: 33/1223
  30953. },
  30954. form: "lucario"
  30955. },
  30956. megaLucario: {
  30957. height: math.unit(4, "feet"),
  30958. name: "Mega Lucario",
  30959. image: {
  30960. source: "./media/characters/cat/mega-lucario.svg",
  30961. extra: 1515 / 1319,
  30962. bottom: 63 / 1578
  30963. },
  30964. form: "lucario"
  30965. },
  30966. nickit: {
  30967. height: math.unit(2, "feet"),
  30968. name: "Nickit",
  30969. image: {
  30970. source: "./media/characters/cat/nickit.svg",
  30971. extra: 1980 / 1585,
  30972. bottom: 102 / 2082
  30973. },
  30974. form: "nickit",
  30975. default: true
  30976. },
  30977. lopunnyFront: {
  30978. height: math.unit(5, "feet"),
  30979. name: "Lopunny (Front)",
  30980. image: {
  30981. source: "./media/characters/cat/lopunny-front.svg",
  30982. extra: 1782 / 1469,
  30983. bottom: 38 / 1820
  30984. },
  30985. form: "lopunny",
  30986. default: true
  30987. },
  30988. lopunnyBack: {
  30989. height: math.unit(5, "feet"),
  30990. name: "Lopunny (Back)",
  30991. image: {
  30992. source: "./media/characters/cat/lopunny-back.svg",
  30993. extra: 1660 / 1490,
  30994. bottom: 25 / 1685
  30995. },
  30996. form: "lopunny"
  30997. },
  30998. },
  30999. [
  31000. {
  31001. name: "Really small",
  31002. height: math.unit(1, "nm")
  31003. },
  31004. {
  31005. name: "Micro",
  31006. height: math.unit(5, "inches")
  31007. },
  31008. {
  31009. name: "Normal",
  31010. height: math.unit(5 + 6 / 12, "feet"),
  31011. default: true
  31012. },
  31013. {
  31014. name: "Macro",
  31015. height: math.unit(50, "feet")
  31016. },
  31017. {
  31018. name: "Macro+",
  31019. height: math.unit(150, "feet")
  31020. },
  31021. {
  31022. name: "Megamacro",
  31023. height: math.unit(100, "miles")
  31024. },
  31025. ]
  31026. ))
  31027. characterMakers.push(() => makeCharacter(
  31028. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31029. {
  31030. front: {
  31031. height: math.unit(63.4, "meters"),
  31032. weight: math.unit(3.28349e+6, "kilograms"),
  31033. name: "Front",
  31034. image: {
  31035. source: "./media/characters/kirina-violet/front.svg",
  31036. extra: 2812 / 2725,
  31037. bottom: 0 / 2812
  31038. }
  31039. },
  31040. back: {
  31041. height: math.unit(63.4, "meters"),
  31042. weight: math.unit(3.28349e+6, "kilograms"),
  31043. name: "Back",
  31044. image: {
  31045. source: "./media/characters/kirina-violet/back.svg",
  31046. extra: 2812 / 2725,
  31047. bottom: 0 / 2812
  31048. }
  31049. },
  31050. mouth: {
  31051. height: math.unit(4.35, "meters"),
  31052. name: "Mouth",
  31053. image: {
  31054. source: "./media/characters/kirina-violet/mouth.svg"
  31055. }
  31056. },
  31057. paw: {
  31058. height: math.unit(5.6, "meters"),
  31059. name: "Paw",
  31060. image: {
  31061. source: "./media/characters/kirina-violet/paw.svg"
  31062. }
  31063. },
  31064. tail: {
  31065. height: math.unit(18, "meters"),
  31066. name: "Tail",
  31067. image: {
  31068. source: "./media/characters/kirina-violet/tail.svg"
  31069. }
  31070. },
  31071. },
  31072. [
  31073. {
  31074. name: "Macro",
  31075. height: math.unit(63.4, "meters"),
  31076. default: true
  31077. },
  31078. ]
  31079. ))
  31080. characterMakers.push(() => makeCharacter(
  31081. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31082. {
  31083. front: {
  31084. height: math.unit(75, "feet"),
  31085. name: "Front",
  31086. image: {
  31087. source: "./media/characters/cat-gigachu/front.svg",
  31088. extra: 1239/1027,
  31089. bottom: 32/1271
  31090. }
  31091. },
  31092. back: {
  31093. height: math.unit(75, "feet"),
  31094. name: "Back",
  31095. image: {
  31096. source: "./media/characters/cat-gigachu/back.svg",
  31097. extra: 1229/1030,
  31098. bottom: 9/1238
  31099. }
  31100. },
  31101. },
  31102. [
  31103. {
  31104. name: "Dynamax",
  31105. height: math.unit(75, "feet"),
  31106. default: true
  31107. },
  31108. ]
  31109. ))
  31110. characterMakers.push(() => makeCharacter(
  31111. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31112. {
  31113. front: {
  31114. height: math.unit(6, "feet"),
  31115. weight: math.unit(150, "lb"),
  31116. name: "Front",
  31117. image: {
  31118. source: "./media/characters/sfaiyan/front.svg",
  31119. extra: 999 / 978,
  31120. bottom: 5 / 1004
  31121. }
  31122. },
  31123. },
  31124. [
  31125. {
  31126. name: "Normal",
  31127. height: math.unit(1.82, "meters")
  31128. },
  31129. {
  31130. name: "Giant",
  31131. height: math.unit(2.27, "km"),
  31132. default: true
  31133. },
  31134. ]
  31135. ))
  31136. characterMakers.push(() => makeCharacter(
  31137. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31138. {
  31139. front: {
  31140. height: math.unit(179, "cm"),
  31141. weight: math.unit(100, "kg"),
  31142. name: "Front",
  31143. image: {
  31144. source: "./media/characters/raunehkeli/front.svg",
  31145. extra: 1934 / 1926,
  31146. bottom: 0 / 1934
  31147. }
  31148. },
  31149. },
  31150. [
  31151. {
  31152. name: "Normal",
  31153. height: math.unit(179, "cm")
  31154. },
  31155. {
  31156. name: "Maximum",
  31157. height: math.unit(575, "meters"),
  31158. default: true
  31159. },
  31160. ]
  31161. ))
  31162. characterMakers.push(() => makeCharacter(
  31163. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31164. {
  31165. front: {
  31166. height: math.unit(6, "feet"),
  31167. weight: math.unit(150, "lb"),
  31168. name: "Front",
  31169. image: {
  31170. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31171. extra: 2625 / 2518,
  31172. bottom: 60 / 2685
  31173. }
  31174. },
  31175. },
  31176. [
  31177. {
  31178. name: "Normal",
  31179. height: math.unit(6 + 2 / 12, "feet")
  31180. },
  31181. {
  31182. name: "Macro",
  31183. height: math.unit(1180, "feet"),
  31184. default: true
  31185. },
  31186. ]
  31187. ))
  31188. characterMakers.push(() => makeCharacter(
  31189. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31190. {
  31191. front: {
  31192. height: math.unit(5 + 6 / 12, "feet"),
  31193. weight: math.unit(108, "lb"),
  31194. name: "Front",
  31195. image: {
  31196. source: "./media/characters/lilith-zott/front.svg",
  31197. extra: 2510 / 2238,
  31198. bottom: 100 / 2610
  31199. }
  31200. },
  31201. frontDressed: {
  31202. height: math.unit(5 + 6 / 12, "feet"),
  31203. weight: math.unit(108, "lb"),
  31204. name: "Front (Dressed)",
  31205. image: {
  31206. source: "./media/characters/lilith-zott/front-dressed.svg",
  31207. extra: 2510 / 2238,
  31208. bottom: 100 / 2610
  31209. }
  31210. },
  31211. },
  31212. [
  31213. {
  31214. name: "Normal",
  31215. height: math.unit(5 + 6 / 12, "feet")
  31216. },
  31217. {
  31218. name: "Macro",
  31219. height: math.unit(1030, "feet"),
  31220. default: true
  31221. },
  31222. ]
  31223. ))
  31224. characterMakers.push(() => makeCharacter(
  31225. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31226. {
  31227. front: {
  31228. height: math.unit(6, "feet"),
  31229. weight: math.unit(150, "lb"),
  31230. name: "Front",
  31231. image: {
  31232. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31233. extra: 2567 / 2435,
  31234. bottom: 39 / 2606
  31235. }
  31236. },
  31237. frontSuper: {
  31238. height: math.unit(6, "feet"),
  31239. name: "Front (Super)",
  31240. image: {
  31241. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31242. extra: 2567 / 2435,
  31243. bottom: 39 / 2606
  31244. }
  31245. },
  31246. },
  31247. [
  31248. {
  31249. name: "Normal",
  31250. height: math.unit(5 + 10 / 12, "feet")
  31251. },
  31252. {
  31253. name: "Macro",
  31254. height: math.unit(1100, "feet"),
  31255. default: true
  31256. },
  31257. ]
  31258. ))
  31259. characterMakers.push(() => makeCharacter(
  31260. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31261. {
  31262. front: {
  31263. height: math.unit(100, "miles"),
  31264. name: "Front",
  31265. image: {
  31266. source: "./media/characters/sona/front.svg",
  31267. extra: 2433 / 2201,
  31268. bottom: 53 / 2486
  31269. }
  31270. },
  31271. foot: {
  31272. height: math.unit(16.1, "miles"),
  31273. name: "Foot",
  31274. image: {
  31275. source: "./media/characters/sona/foot.svg"
  31276. }
  31277. },
  31278. },
  31279. [
  31280. {
  31281. name: "Macro",
  31282. height: math.unit(100, "miles"),
  31283. default: true
  31284. },
  31285. ]
  31286. ))
  31287. characterMakers.push(() => makeCharacter(
  31288. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31289. {
  31290. front: {
  31291. height: math.unit(6, "feet"),
  31292. weight: math.unit(150, "lb"),
  31293. name: "Front",
  31294. image: {
  31295. source: "./media/characters/bailey/front.svg",
  31296. extra: 1778 / 1724,
  31297. bottom: 30 / 1808
  31298. }
  31299. },
  31300. },
  31301. [
  31302. {
  31303. name: "Micro",
  31304. height: math.unit(4, "inches")
  31305. },
  31306. {
  31307. name: "Normal",
  31308. height: math.unit(5 + 5 / 12, "feet"),
  31309. default: true
  31310. },
  31311. {
  31312. name: "Macro",
  31313. height: math.unit(250, "feet")
  31314. },
  31315. {
  31316. name: "Megamacro",
  31317. height: math.unit(100, "miles")
  31318. },
  31319. ]
  31320. ))
  31321. characterMakers.push(() => makeCharacter(
  31322. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31323. {
  31324. front: {
  31325. height: math.unit(5 + 2 / 12, "feet"),
  31326. weight: math.unit(120, "lb"),
  31327. name: "Front",
  31328. image: {
  31329. source: "./media/characters/snaps/front.svg",
  31330. extra: 2370 / 2177,
  31331. bottom: 48 / 2418
  31332. }
  31333. },
  31334. back: {
  31335. height: math.unit(5 + 2 / 12, "feet"),
  31336. weight: math.unit(120, "lb"),
  31337. name: "Back",
  31338. image: {
  31339. source: "./media/characters/snaps/back.svg",
  31340. extra: 2408 / 2258,
  31341. bottom: 15 / 2423
  31342. }
  31343. },
  31344. },
  31345. [
  31346. {
  31347. name: "Micro",
  31348. height: math.unit(9, "inches")
  31349. },
  31350. {
  31351. name: "Normal",
  31352. height: math.unit(5 + 2 / 12, "feet"),
  31353. default: true
  31354. },
  31355. {
  31356. name: "Mini Macro",
  31357. height: math.unit(10, "feet")
  31358. },
  31359. ]
  31360. ))
  31361. characterMakers.push(() => makeCharacter(
  31362. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31363. {
  31364. front: {
  31365. height: math.unit(1.8, "meters"),
  31366. weight: math.unit(85, "kg"),
  31367. name: "Front",
  31368. image: {
  31369. source: "./media/characters/azteck/front.svg",
  31370. extra: 2815 / 2625,
  31371. bottom: 89 / 2904
  31372. }
  31373. },
  31374. back: {
  31375. height: math.unit(1.8, "meters"),
  31376. weight: math.unit(85, "kg"),
  31377. name: "Back",
  31378. image: {
  31379. source: "./media/characters/azteck/back.svg",
  31380. extra: 2856 / 2648,
  31381. bottom: 85 / 2941
  31382. }
  31383. },
  31384. frontDressed: {
  31385. height: math.unit(1.8, "meters"),
  31386. weight: math.unit(85, "kg"),
  31387. name: "Front (Dressed)",
  31388. image: {
  31389. source: "./media/characters/azteck/front-dressed.svg",
  31390. extra: 2147 / 2003,
  31391. bottom: 68 / 2215
  31392. }
  31393. },
  31394. head: {
  31395. height: math.unit(0.47, "meters"),
  31396. weight: math.unit(85, "kg"),
  31397. name: "Head",
  31398. image: {
  31399. source: "./media/characters/azteck/head.svg"
  31400. }
  31401. },
  31402. },
  31403. [
  31404. {
  31405. name: "Bite sized",
  31406. height: math.unit(16, "cm")
  31407. },
  31408. {
  31409. name: "Normal",
  31410. height: math.unit(1.8, "meters"),
  31411. default: true
  31412. },
  31413. ]
  31414. ))
  31415. characterMakers.push(() => makeCharacter(
  31416. { name: "Pidge", species: ["hellhound"], 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/pidge/front.svg",
  31424. extra: 1936/1820,
  31425. bottom: 0/1936
  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/pidge/back.svg",
  31434. extra: 1938/1843,
  31435. bottom: 0/1938
  31436. }
  31437. },
  31438. casual: {
  31439. height: math.unit(6, "feet"),
  31440. weight: math.unit(150, "lb"),
  31441. name: "Casual",
  31442. image: {
  31443. source: "./media/characters/pidge/casual.svg",
  31444. extra: 1936/1820,
  31445. bottom: 0/1936
  31446. }
  31447. },
  31448. tech: {
  31449. height: math.unit(6, "feet"),
  31450. weight: math.unit(150, "lb"),
  31451. name: "Tech",
  31452. image: {
  31453. source: "./media/characters/pidge/tech.svg",
  31454. extra: 1802/1682,
  31455. bottom: 0/1802
  31456. }
  31457. },
  31458. head: {
  31459. height: math.unit(1.61, "feet"),
  31460. name: "Head",
  31461. image: {
  31462. source: "./media/characters/pidge/head.svg"
  31463. }
  31464. },
  31465. collar: {
  31466. height: math.unit(0.82, "feet"),
  31467. name: "Collar",
  31468. image: {
  31469. source: "./media/characters/pidge/collar.svg"
  31470. }
  31471. },
  31472. },
  31473. [
  31474. {
  31475. name: "Macro",
  31476. height: math.unit(2, "mile"),
  31477. default: true
  31478. },
  31479. {
  31480. name: "PUPPY",
  31481. height: math.unit(20, "miles")
  31482. },
  31483. ]
  31484. ))
  31485. characterMakers.push(() => makeCharacter(
  31486. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31487. {
  31488. front: {
  31489. height: math.unit(6, "feet"),
  31490. weight: math.unit(150, "lb"),
  31491. name: "Front",
  31492. image: {
  31493. source: "./media/characters/en/front.svg",
  31494. extra: 1697 / 1563,
  31495. bottom: 103 / 1800
  31496. }
  31497. },
  31498. back: {
  31499. height: math.unit(6, "feet"),
  31500. weight: math.unit(150, "lb"),
  31501. name: "Back",
  31502. image: {
  31503. source: "./media/characters/en/back.svg",
  31504. extra: 1700 / 1570,
  31505. bottom: 51 / 1751
  31506. }
  31507. },
  31508. frontDressed: {
  31509. height: math.unit(6, "feet"),
  31510. weight: math.unit(150, "lb"),
  31511. name: "Front (Dressed)",
  31512. image: {
  31513. source: "./media/characters/en/front-dressed.svg",
  31514. extra: 1697 / 1563,
  31515. bottom: 103 / 1800
  31516. }
  31517. },
  31518. backDressed: {
  31519. height: math.unit(6, "feet"),
  31520. weight: math.unit(150, "lb"),
  31521. name: "Back (Dressed)",
  31522. image: {
  31523. source: "./media/characters/en/back-dressed.svg",
  31524. extra: 1700 / 1570,
  31525. bottom: 51 / 1751
  31526. }
  31527. },
  31528. },
  31529. [
  31530. {
  31531. name: "Macro",
  31532. height: math.unit(210, "feet"),
  31533. default: true
  31534. },
  31535. ]
  31536. ))
  31537. characterMakers.push(() => makeCharacter(
  31538. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31539. {
  31540. front: {
  31541. height: math.unit(6, "feet"),
  31542. weight: math.unit(150, "lb"),
  31543. name: "Front",
  31544. image: {
  31545. source: "./media/characters/haze-orris/front.svg",
  31546. extra: 3975 / 3525,
  31547. bottom: 137 / 4112
  31548. }
  31549. },
  31550. },
  31551. [
  31552. {
  31553. name: "Micro",
  31554. height: math.unit(150, "mm"),
  31555. default: true
  31556. },
  31557. ]
  31558. ))
  31559. characterMakers.push(() => makeCharacter(
  31560. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31561. {
  31562. front: {
  31563. height: math.unit(6, "feet"),
  31564. weight: math.unit(150, "lb"),
  31565. name: "Front",
  31566. image: {
  31567. source: "./media/characters/casselene-yaro/front.svg",
  31568. extra: 4721 / 4541,
  31569. bottom: 82 / 4803
  31570. }
  31571. },
  31572. back: {
  31573. height: math.unit(6, "feet"),
  31574. weight: math.unit(150, "lb"),
  31575. name: "Back",
  31576. image: {
  31577. source: "./media/characters/casselene-yaro/back.svg",
  31578. extra: 4569 / 4377,
  31579. bottom: 69 / 4638
  31580. }
  31581. },
  31582. dressed: {
  31583. height: math.unit(6, "feet"),
  31584. weight: math.unit(150, "lb"),
  31585. name: "Dressed",
  31586. image: {
  31587. source: "./media/characters/casselene-yaro/dressed.svg",
  31588. extra: 4721 / 4541,
  31589. bottom: 82 / 4803
  31590. }
  31591. },
  31592. maw: {
  31593. height: math.unit(1, "feet"),
  31594. name: "Maw",
  31595. image: {
  31596. source: "./media/characters/casselene-yaro/maw.svg"
  31597. }
  31598. },
  31599. },
  31600. [
  31601. {
  31602. name: "Macro",
  31603. height: math.unit(190, "feet"),
  31604. default: true
  31605. },
  31606. ]
  31607. ))
  31608. characterMakers.push(() => makeCharacter(
  31609. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31610. {
  31611. front: {
  31612. height: math.unit(10, "feet"),
  31613. weight: math.unit(15015, "lb"),
  31614. name: "Front",
  31615. image: {
  31616. source: "./media/characters/platine/front.svg",
  31617. extra: 1741/1650,
  31618. bottom: 84/1825
  31619. }
  31620. },
  31621. side: {
  31622. height: math.unit(10, "feet"),
  31623. weight: math.unit(15015, "lb"),
  31624. name: "Side",
  31625. image: {
  31626. source: "./media/characters/platine/side.svg",
  31627. extra: 1790/1705,
  31628. bottom: 29/1819
  31629. }
  31630. },
  31631. },
  31632. [
  31633. {
  31634. name: "Normal",
  31635. height: math.unit(10, "feet"),
  31636. default: true
  31637. },
  31638. {
  31639. name: "Macro",
  31640. height: math.unit(100, "feet")
  31641. },
  31642. {
  31643. name: "Megamacro",
  31644. height: math.unit(1000, "feet")
  31645. },
  31646. ]
  31647. ))
  31648. characterMakers.push(() => makeCharacter(
  31649. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31650. {
  31651. front: {
  31652. height: math.unit(15 + 5 / 12, "feet"),
  31653. weight: math.unit(4600, "lb"),
  31654. name: "Front",
  31655. image: {
  31656. source: "./media/characters/neapolitan-ananassa/front.svg",
  31657. extra: 2903 / 2736,
  31658. bottom: 0 / 2903
  31659. }
  31660. },
  31661. side: {
  31662. height: math.unit(15 + 5 / 12, "feet"),
  31663. weight: math.unit(4600, "lb"),
  31664. name: "Side",
  31665. image: {
  31666. source: "./media/characters/neapolitan-ananassa/side.svg",
  31667. extra: 2925 / 2719,
  31668. bottom: 0 / 2925
  31669. }
  31670. },
  31671. back: {
  31672. height: math.unit(15 + 5 / 12, "feet"),
  31673. weight: math.unit(4600, "lb"),
  31674. name: "Back",
  31675. image: {
  31676. source: "./media/characters/neapolitan-ananassa/back.svg",
  31677. extra: 2903 / 2736,
  31678. bottom: 0 / 2903
  31679. }
  31680. },
  31681. },
  31682. [
  31683. {
  31684. name: "Normal",
  31685. height: math.unit(15 + 5 / 12, "feet"),
  31686. default: true
  31687. },
  31688. {
  31689. name: "Post-Millenium",
  31690. height: math.unit(35 + 5 / 12, "feet")
  31691. },
  31692. {
  31693. name: "Post-Era",
  31694. height: math.unit(450 + 5 / 12, "feet")
  31695. },
  31696. ]
  31697. ))
  31698. characterMakers.push(() => makeCharacter(
  31699. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31700. {
  31701. front: {
  31702. height: math.unit(300, "meters"),
  31703. weight: math.unit(125000, "tonnes"),
  31704. name: "Front",
  31705. image: {
  31706. source: "./media/characters/pazuzu/front.svg",
  31707. extra: 877 / 794,
  31708. bottom: 47 / 924
  31709. }
  31710. },
  31711. },
  31712. [
  31713. {
  31714. name: "Macro",
  31715. height: math.unit(300, "meters"),
  31716. default: true
  31717. },
  31718. ]
  31719. ))
  31720. characterMakers.push(() => makeCharacter(
  31721. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31722. {
  31723. side: {
  31724. height: math.unit(10 + 7 / 12, "feet"),
  31725. weight: math.unit(2.5, "tons"),
  31726. name: "Side",
  31727. image: {
  31728. source: "./media/characters/aasha/side.svg",
  31729. extra: 1345 / 1245,
  31730. bottom: 111 / 1456
  31731. }
  31732. },
  31733. back: {
  31734. height: math.unit(10 + 7 / 12, "feet"),
  31735. weight: math.unit(2.5, "tons"),
  31736. name: "Back",
  31737. image: {
  31738. source: "./media/characters/aasha/back.svg",
  31739. extra: 1133 / 1057,
  31740. bottom: 257 / 1390
  31741. }
  31742. },
  31743. },
  31744. [
  31745. {
  31746. name: "Normal",
  31747. height: math.unit(10 + 7 / 12, "feet"),
  31748. default: true
  31749. },
  31750. ]
  31751. ))
  31752. characterMakers.push(() => makeCharacter(
  31753. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31754. {
  31755. front: {
  31756. height: math.unit(6 + 3 / 12, "feet"),
  31757. name: "Front",
  31758. image: {
  31759. source: "./media/characters/nevan/front.svg",
  31760. extra: 704 / 704,
  31761. bottom: 28 / 732
  31762. }
  31763. },
  31764. back: {
  31765. height: math.unit(6 + 3 / 12, "feet"),
  31766. name: "Back",
  31767. image: {
  31768. source: "./media/characters/nevan/back.svg",
  31769. extra: 714 / 714,
  31770. bottom: 21 / 735
  31771. }
  31772. },
  31773. frontFlaccid: {
  31774. height: math.unit(6 + 3 / 12, "feet"),
  31775. name: "Front (Flaccid)",
  31776. image: {
  31777. source: "./media/characters/nevan/front-flaccid.svg",
  31778. extra: 704 / 704,
  31779. bottom: 28 / 732
  31780. }
  31781. },
  31782. frontErect: {
  31783. height: math.unit(6 + 3 / 12, "feet"),
  31784. name: "Front (Erect)",
  31785. image: {
  31786. source: "./media/characters/nevan/front-erect.svg",
  31787. extra: 704 / 704,
  31788. bottom: 28 / 732
  31789. }
  31790. },
  31791. backFlaccid: {
  31792. height: math.unit(6 + 3 / 12, "feet"),
  31793. name: "Back (Flaccid)",
  31794. image: {
  31795. source: "./media/characters/nevan/back-flaccid.svg",
  31796. extra: 714 / 714,
  31797. bottom: 21 / 735
  31798. }
  31799. },
  31800. },
  31801. [
  31802. {
  31803. name: "Normal",
  31804. height: math.unit(6 + 3 / 12, "feet"),
  31805. default: true
  31806. },
  31807. ]
  31808. ))
  31809. characterMakers.push(() => makeCharacter(
  31810. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31811. {
  31812. front: {
  31813. height: math.unit(4, "feet"),
  31814. name: "Front",
  31815. image: {
  31816. source: "./media/characters/arhan/front.svg",
  31817. extra: 3368 / 3133,
  31818. bottom: 0 / 3368
  31819. }
  31820. },
  31821. side: {
  31822. height: math.unit(4, "feet"),
  31823. name: "Side",
  31824. image: {
  31825. source: "./media/characters/arhan/side.svg",
  31826. extra: 3347 / 3105,
  31827. bottom: 0 / 3347
  31828. }
  31829. },
  31830. tongue: {
  31831. height: math.unit(1.42, "feet"),
  31832. name: "Tongue",
  31833. image: {
  31834. source: "./media/characters/arhan/tongue.svg"
  31835. }
  31836. },
  31837. head: {
  31838. height: math.unit(0.85, "feet"),
  31839. name: "Head",
  31840. image: {
  31841. source: "./media/characters/arhan/head.svg"
  31842. }
  31843. },
  31844. },
  31845. [
  31846. {
  31847. name: "Normal",
  31848. height: math.unit(4, "feet"),
  31849. default: true
  31850. },
  31851. ]
  31852. ))
  31853. characterMakers.push(() => makeCharacter(
  31854. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31855. {
  31856. front: {
  31857. height: math.unit(5 + 7.5 / 12, "feet"),
  31858. weight: math.unit(120, "lb"),
  31859. name: "Front",
  31860. image: {
  31861. source: "./media/characters/digi-duncan/front.svg",
  31862. extra: 330 / 326,
  31863. bottom: 16 / 346
  31864. }
  31865. },
  31866. side: {
  31867. height: math.unit(5 + 7.5 / 12, "feet"),
  31868. weight: math.unit(120, "lb"),
  31869. name: "Side",
  31870. image: {
  31871. source: "./media/characters/digi-duncan/side.svg",
  31872. extra: 341 / 337,
  31873. bottom: 1 / 342
  31874. }
  31875. },
  31876. back: {
  31877. height: math.unit(5 + 7.5 / 12, "feet"),
  31878. weight: math.unit(120, "lb"),
  31879. name: "Back",
  31880. image: {
  31881. source: "./media/characters/digi-duncan/back.svg",
  31882. extra: 330 / 326,
  31883. bottom: 12 / 342
  31884. }
  31885. },
  31886. },
  31887. [
  31888. {
  31889. name: "Speck",
  31890. height: math.unit(0.25, "mm")
  31891. },
  31892. {
  31893. name: "Micro",
  31894. height: math.unit(5, "mm")
  31895. },
  31896. {
  31897. name: "Tiny",
  31898. height: math.unit(0.5, "inches"),
  31899. default: true
  31900. },
  31901. {
  31902. name: "Human",
  31903. height: math.unit(5 + 7.5 / 12, "feet")
  31904. },
  31905. {
  31906. name: "Minigiant",
  31907. height: math.unit(8 + 5.25, "feet")
  31908. },
  31909. {
  31910. name: "Giant",
  31911. height: math.unit(2000, "feet")
  31912. },
  31913. {
  31914. name: "Mega",
  31915. height: math.unit(371.1, "miles")
  31916. },
  31917. ]
  31918. ))
  31919. characterMakers.push(() => makeCharacter(
  31920. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31921. {
  31922. front: {
  31923. height: math.unit(2, "meters"),
  31924. weight: math.unit(350, "kg"),
  31925. name: "Front",
  31926. image: {
  31927. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31928. extra: 898 / 838,
  31929. bottom: 9 / 907
  31930. }
  31931. },
  31932. },
  31933. [
  31934. {
  31935. name: "Micro",
  31936. height: math.unit(8, "meters")
  31937. },
  31938. {
  31939. name: "Normal",
  31940. height: math.unit(50, "meters"),
  31941. default: true
  31942. },
  31943. {
  31944. name: "Macro",
  31945. height: math.unit(500, "meters")
  31946. },
  31947. ]
  31948. ))
  31949. characterMakers.push(() => makeCharacter(
  31950. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31951. {
  31952. front: {
  31953. height: math.unit(6 + 6 / 12, "feet"),
  31954. name: "Front",
  31955. image: {
  31956. source: "./media/characters/khardesh/front.svg",
  31957. extra: 1788/1596,
  31958. bottom: 66/1854
  31959. }
  31960. },
  31961. back: {
  31962. height: math.unit(6 + 6 / 12, "feet"),
  31963. name: "Back",
  31964. image: {
  31965. source: "./media/characters/khardesh/back.svg",
  31966. extra: 1781/1584,
  31967. bottom: 68/1849
  31968. }
  31969. },
  31970. },
  31971. [
  31972. {
  31973. name: "Normal",
  31974. height: math.unit(6 + 6 / 12, "feet"),
  31975. default: true
  31976. },
  31977. {
  31978. name: "Normal+",
  31979. height: math.unit(4, "meters")
  31980. },
  31981. {
  31982. name: "Macro",
  31983. height: math.unit(50, "meters")
  31984. },
  31985. {
  31986. name: "Macro+",
  31987. height: math.unit(100, "meters")
  31988. },
  31989. {
  31990. name: "Megamacro",
  31991. height: math.unit(20, "km")
  31992. },
  31993. ]
  31994. ))
  31995. characterMakers.push(() => makeCharacter(
  31996. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31997. {
  31998. front: {
  31999. height: math.unit(6, "feet"),
  32000. weight: math.unit(150, "lb"),
  32001. name: "Front",
  32002. image: {
  32003. source: "./media/characters/kosho/front.svg",
  32004. extra: 1847 / 1847,
  32005. bottom: 86 / 1933
  32006. }
  32007. },
  32008. },
  32009. [
  32010. {
  32011. name: "Second-stage micro",
  32012. height: math.unit(0.5, "inches")
  32013. },
  32014. {
  32015. name: "First-stage micro",
  32016. height: math.unit(6, "inches")
  32017. },
  32018. {
  32019. name: "Normal",
  32020. height: math.unit(6, "feet"),
  32021. default: true
  32022. },
  32023. {
  32024. name: "First-stage macro",
  32025. height: math.unit(72, "feet")
  32026. },
  32027. {
  32028. name: "Second-stage macro",
  32029. height: math.unit(864, "feet")
  32030. },
  32031. ]
  32032. ))
  32033. characterMakers.push(() => makeCharacter(
  32034. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32035. {
  32036. normal: {
  32037. height: math.unit(4 + 6 / 12, "feet"),
  32038. name: "Normal",
  32039. image: {
  32040. source: "./media/characters/hydra/normal.svg",
  32041. extra: 2833 / 2634,
  32042. bottom: 68 / 2901
  32043. }
  32044. },
  32045. smol: {
  32046. height: math.unit(0.705, "inches"),
  32047. name: "Smol",
  32048. image: {
  32049. source: "./media/characters/hydra/smol.svg",
  32050. extra: 2715 / 2540,
  32051. bottom: 0 / 2715
  32052. }
  32053. },
  32054. },
  32055. [
  32056. {
  32057. name: "Normal",
  32058. height: math.unit(4 + 6 / 12, "feet"),
  32059. default: true
  32060. }
  32061. ]
  32062. ))
  32063. characterMakers.push(() => makeCharacter(
  32064. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32065. {
  32066. front: {
  32067. height: math.unit(0.6, "cm"),
  32068. name: "Front",
  32069. image: {
  32070. source: "./media/characters/daz/front.svg",
  32071. extra: 1682 / 1164,
  32072. bottom: 42 / 1724
  32073. }
  32074. },
  32075. },
  32076. [
  32077. {
  32078. name: "Normal",
  32079. height: math.unit(0.6, "cm"),
  32080. default: true
  32081. },
  32082. ]
  32083. ))
  32084. characterMakers.push(() => makeCharacter(
  32085. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32086. {
  32087. front: {
  32088. height: math.unit(6, "feet"),
  32089. weight: math.unit(235, "lb"),
  32090. name: "Front",
  32091. image: {
  32092. source: "./media/characters/theo-pangolin/front.svg",
  32093. extra: 1996 / 1969,
  32094. bottom: 115 / 2111
  32095. }
  32096. },
  32097. back: {
  32098. height: math.unit(6, "feet"),
  32099. weight: math.unit(235, "lb"),
  32100. name: "Back",
  32101. image: {
  32102. source: "./media/characters/theo-pangolin/back.svg",
  32103. extra: 1979 / 1979,
  32104. bottom: 40 / 2019
  32105. }
  32106. },
  32107. feral: {
  32108. height: math.unit(2, "feet"),
  32109. weight: math.unit(30, "lb"),
  32110. name: "Feral",
  32111. image: {
  32112. source: "./media/characters/theo-pangolin/feral.svg",
  32113. extra: 803 / 791,
  32114. bottom: 181 / 984
  32115. }
  32116. },
  32117. footFive: {
  32118. height: math.unit(1.43, "feet"),
  32119. name: "Foot (Five Toes)",
  32120. image: {
  32121. source: "./media/characters/theo-pangolin/foot-five.svg"
  32122. }
  32123. },
  32124. footFour: {
  32125. height: math.unit(1.43, "feet"),
  32126. name: "Foot (Four Toes)",
  32127. image: {
  32128. source: "./media/characters/theo-pangolin/foot-four.svg"
  32129. }
  32130. },
  32131. handFour: {
  32132. height: math.unit(0.81, "feet"),
  32133. name: "Hand (Four Fingers)",
  32134. image: {
  32135. source: "./media/characters/theo-pangolin/hand-four.svg"
  32136. }
  32137. },
  32138. handThree: {
  32139. height: math.unit(0.81, "feet"),
  32140. name: "Hand (Three Fingers)",
  32141. image: {
  32142. source: "./media/characters/theo-pangolin/hand-three.svg"
  32143. }
  32144. },
  32145. headFront: {
  32146. height: math.unit(1.37, "feet"),
  32147. name: "Head (Front)",
  32148. image: {
  32149. source: "./media/characters/theo-pangolin/head-front.svg"
  32150. }
  32151. },
  32152. headSide: {
  32153. height: math.unit(1.43, "feet"),
  32154. name: "Head (Side)",
  32155. image: {
  32156. source: "./media/characters/theo-pangolin/head-side.svg"
  32157. }
  32158. },
  32159. tongue: {
  32160. height: math.unit(2.29, "feet"),
  32161. name: "Tongue",
  32162. image: {
  32163. source: "./media/characters/theo-pangolin/tongue.svg"
  32164. }
  32165. },
  32166. },
  32167. [
  32168. {
  32169. name: "Normal",
  32170. height: math.unit(6, "feet")
  32171. },
  32172. {
  32173. name: "Macro",
  32174. height: math.unit(400, "feet"),
  32175. default: true
  32176. },
  32177. ]
  32178. ))
  32179. characterMakers.push(() => makeCharacter(
  32180. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32181. {
  32182. front: {
  32183. height: math.unit(6, "inches"),
  32184. weight: math.unit(0.036, "kg"),
  32185. name: "Front",
  32186. image: {
  32187. source: "./media/characters/renée/front.svg",
  32188. extra: 900 / 886,
  32189. bottom: 8 / 908
  32190. }
  32191. },
  32192. },
  32193. [
  32194. {
  32195. name: "Nano",
  32196. height: math.unit(1, "nm")
  32197. },
  32198. {
  32199. name: "Micro",
  32200. height: math.unit(1, "mm")
  32201. },
  32202. {
  32203. name: "Normal",
  32204. height: math.unit(6, "inches")
  32205. },
  32206. {
  32207. name: "Macro",
  32208. height: math.unit(2000, "feet"),
  32209. default: true
  32210. },
  32211. {
  32212. name: "Megamacro",
  32213. height: math.unit(2, "km")
  32214. },
  32215. {
  32216. name: "Gigamacro",
  32217. height: math.unit(2000, "km")
  32218. },
  32219. {
  32220. name: "Teramacro",
  32221. height: math.unit(250000, "km")
  32222. },
  32223. ]
  32224. ))
  32225. characterMakers.push(() => makeCharacter(
  32226. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32227. {
  32228. front: {
  32229. height: math.unit(4, "meters"),
  32230. weight: math.unit(150, "kg"),
  32231. name: "Front",
  32232. image: {
  32233. source: "./media/characters/caledvwlch/front.svg",
  32234. extra: 1757/1537,
  32235. bottom: 31/1788
  32236. }
  32237. },
  32238. side: {
  32239. height: math.unit(4, "meters"),
  32240. weight: math.unit(150, "kg"),
  32241. name: "Side",
  32242. image: {
  32243. source: "./media/characters/caledvwlch/side.svg",
  32244. extra: 1605 / 1536,
  32245. bottom: 31 / 1636
  32246. }
  32247. },
  32248. back: {
  32249. height: math.unit(4, "meters"),
  32250. weight: math.unit(150, "kg"),
  32251. name: "Back",
  32252. image: {
  32253. source: "./media/characters/caledvwlch/back.svg",
  32254. extra: 1635 / 1565,
  32255. bottom: 27 / 1662
  32256. }
  32257. },
  32258. },
  32259. [
  32260. {
  32261. name: "\"Incognito\"",
  32262. height: math.unit(4, "meters")
  32263. },
  32264. {
  32265. name: "Small rampage",
  32266. height: math.unit(600, "meters")
  32267. },
  32268. {
  32269. name: "Mega",
  32270. height: math.unit(30, "km")
  32271. },
  32272. {
  32273. name: "Home-size",
  32274. height: math.unit(50, "km"),
  32275. default: true
  32276. },
  32277. {
  32278. name: "Giga",
  32279. height: math.unit(300, "km")
  32280. },
  32281. {
  32282. name: "Lounging",
  32283. height: math.unit(11000, "km")
  32284. },
  32285. {
  32286. name: "Planet snacking",
  32287. height: math.unit(2000000, "km")
  32288. },
  32289. ]
  32290. ))
  32291. characterMakers.push(() => makeCharacter(
  32292. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32293. {
  32294. front: {
  32295. height: math.unit(6, "feet"),
  32296. weight: math.unit(215, "lb"),
  32297. name: "Front",
  32298. image: {
  32299. source: "./media/characters/sapphire-svell/front.svg",
  32300. extra: 495 / 455,
  32301. bottom: 20 / 515
  32302. }
  32303. },
  32304. back: {
  32305. height: math.unit(6, "feet"),
  32306. weight: math.unit(216, "lb"),
  32307. name: "Back",
  32308. image: {
  32309. source: "./media/characters/sapphire-svell/back.svg",
  32310. extra: 497 / 477,
  32311. bottom: 7 / 504
  32312. }
  32313. },
  32314. maw: {
  32315. height: math.unit(1.57, "feet"),
  32316. name: "Maw",
  32317. image: {
  32318. source: "./media/characters/sapphire-svell/maw.svg"
  32319. }
  32320. },
  32321. foot: {
  32322. height: math.unit(1.07, "feet"),
  32323. name: "Foot",
  32324. image: {
  32325. source: "./media/characters/sapphire-svell/foot.svg"
  32326. }
  32327. },
  32328. toering: {
  32329. height: math.unit(1.7, "inch"),
  32330. name: "Toering",
  32331. image: {
  32332. source: "./media/characters/sapphire-svell/toering.svg"
  32333. }
  32334. },
  32335. },
  32336. [
  32337. {
  32338. name: "Normal",
  32339. height: math.unit(300, "feet"),
  32340. default: true
  32341. },
  32342. {
  32343. name: "Augmented",
  32344. height: math.unit(1250, "feet")
  32345. },
  32346. {
  32347. name: "Unleashed",
  32348. height: math.unit(3000, "feet")
  32349. },
  32350. ]
  32351. ))
  32352. characterMakers.push(() => makeCharacter(
  32353. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32354. {
  32355. side: {
  32356. height: math.unit(2 + 3 / 12, "feet"),
  32357. weight: math.unit(110, "lb"),
  32358. name: "Side",
  32359. image: {
  32360. source: "./media/characters/glitch-flux/side.svg",
  32361. extra: 997 / 805,
  32362. bottom: 20 / 1017
  32363. }
  32364. },
  32365. },
  32366. [
  32367. {
  32368. name: "Normal",
  32369. height: math.unit(2 + 3 / 12, "feet"),
  32370. default: true
  32371. },
  32372. ]
  32373. ))
  32374. characterMakers.push(() => makeCharacter(
  32375. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32376. {
  32377. front: {
  32378. height: math.unit(4, "meters"),
  32379. name: "Front",
  32380. image: {
  32381. source: "./media/characters/mid/front.svg",
  32382. extra: 507 / 476,
  32383. bottom: 17 / 524
  32384. }
  32385. },
  32386. back: {
  32387. height: math.unit(4, "meters"),
  32388. name: "Back",
  32389. image: {
  32390. source: "./media/characters/mid/back.svg",
  32391. extra: 519 / 487,
  32392. bottom: 7 / 526
  32393. }
  32394. },
  32395. stuck: {
  32396. height: math.unit(2.2, "meters"),
  32397. name: "Stuck",
  32398. image: {
  32399. source: "./media/characters/mid/stuck.svg",
  32400. extra: 1951 / 1869,
  32401. bottom: 88 / 2039
  32402. }
  32403. }
  32404. },
  32405. [
  32406. {
  32407. name: "Normal",
  32408. height: math.unit(4, "meters"),
  32409. default: true
  32410. },
  32411. {
  32412. name: "Big",
  32413. height: math.unit(10, "meters")
  32414. },
  32415. {
  32416. name: "Macro",
  32417. height: math.unit(800, "meters")
  32418. },
  32419. {
  32420. name: "Megamacro",
  32421. height: math.unit(100, "km")
  32422. },
  32423. {
  32424. name: "Overgrown",
  32425. height: math.unit(1, "parsec")
  32426. },
  32427. ]
  32428. ))
  32429. characterMakers.push(() => makeCharacter(
  32430. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32431. {
  32432. front: {
  32433. height: math.unit(2.5, "meters"),
  32434. weight: math.unit(225, "kg"),
  32435. name: "Front",
  32436. image: {
  32437. source: "./media/characters/iris/front.svg",
  32438. extra: 3348 / 3251,
  32439. bottom: 205 / 3553
  32440. }
  32441. },
  32442. maw: {
  32443. height: math.unit(0.56, "meter"),
  32444. name: "Maw",
  32445. image: {
  32446. source: "./media/characters/iris/maw.svg"
  32447. }
  32448. },
  32449. },
  32450. [
  32451. {
  32452. name: "Mewter cat",
  32453. height: math.unit(1.2, "meters")
  32454. },
  32455. {
  32456. name: "Normal",
  32457. height: math.unit(2.5, "meters"),
  32458. default: true
  32459. },
  32460. {
  32461. name: "Minimacro",
  32462. height: math.unit(18, "feet")
  32463. },
  32464. {
  32465. name: "Macro",
  32466. height: math.unit(140, "feet")
  32467. },
  32468. {
  32469. name: "Macro+",
  32470. height: math.unit(180, "meters")
  32471. },
  32472. {
  32473. name: "Megamacro",
  32474. height: math.unit(2746, "meters")
  32475. },
  32476. ]
  32477. ))
  32478. characterMakers.push(() => makeCharacter(
  32479. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32480. {
  32481. front: {
  32482. height: math.unit(6, "feet"),
  32483. weight: math.unit(135, "lb"),
  32484. name: "Front",
  32485. image: {
  32486. source: "./media/characters/axel/front.svg",
  32487. extra: 908 / 908,
  32488. bottom: 58 / 966
  32489. }
  32490. },
  32491. side: {
  32492. height: math.unit(6, "feet"),
  32493. weight: math.unit(135, "lb"),
  32494. name: "Side",
  32495. image: {
  32496. source: "./media/characters/axel/side.svg",
  32497. extra: 958 / 958,
  32498. bottom: 11 / 969
  32499. }
  32500. },
  32501. back: {
  32502. height: math.unit(6, "feet"),
  32503. weight: math.unit(135, "lb"),
  32504. name: "Back",
  32505. image: {
  32506. source: "./media/characters/axel/back.svg",
  32507. extra: 887 / 887,
  32508. bottom: 34 / 921
  32509. }
  32510. },
  32511. head: {
  32512. height: math.unit(1.07, "feet"),
  32513. name: "Head",
  32514. image: {
  32515. source: "./media/characters/axel/head.svg"
  32516. }
  32517. },
  32518. beak: {
  32519. height: math.unit(1.4, "feet"),
  32520. name: "Beak",
  32521. image: {
  32522. source: "./media/characters/axel/beak.svg"
  32523. }
  32524. },
  32525. beakSide: {
  32526. height: math.unit(1.4, "feet"),
  32527. name: "Beak Side",
  32528. image: {
  32529. source: "./media/characters/axel/beak-side.svg"
  32530. }
  32531. },
  32532. sheath: {
  32533. height: math.unit(0.5, "feet"),
  32534. name: "Sheath",
  32535. image: {
  32536. source: "./media/characters/axel/sheath.svg"
  32537. }
  32538. },
  32539. dick: {
  32540. height: math.unit(0.98, "feet"),
  32541. name: "Dick",
  32542. image: {
  32543. source: "./media/characters/axel/dick.svg"
  32544. }
  32545. },
  32546. },
  32547. [
  32548. {
  32549. name: "Macro",
  32550. height: math.unit(68, "meters"),
  32551. default: true
  32552. },
  32553. ]
  32554. ))
  32555. characterMakers.push(() => makeCharacter(
  32556. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32557. {
  32558. front: {
  32559. height: math.unit(3.5, "meters"),
  32560. weight: math.unit(1200, "kg"),
  32561. name: "Front",
  32562. image: {
  32563. source: "./media/characters/joanna/front.svg",
  32564. extra: 1596 / 1488,
  32565. bottom: 29 / 1625
  32566. }
  32567. },
  32568. back: {
  32569. height: math.unit(3.5, "meters"),
  32570. weight: math.unit(1200, "kg"),
  32571. name: "Back",
  32572. image: {
  32573. source: "./media/characters/joanna/back.svg",
  32574. extra: 1594 / 1495,
  32575. bottom: 26 / 1620
  32576. }
  32577. },
  32578. frontShorts: {
  32579. height: math.unit(3.5, "meters"),
  32580. weight: math.unit(1200, "kg"),
  32581. name: "Front (Shorts)",
  32582. image: {
  32583. source: "./media/characters/joanna/front-shorts.svg",
  32584. extra: 1596 / 1488,
  32585. bottom: 29 / 1625
  32586. }
  32587. },
  32588. frontBiker: {
  32589. height: math.unit(3.5, "meters"),
  32590. weight: math.unit(1200, "kg"),
  32591. name: "Front (Biker)",
  32592. image: {
  32593. source: "./media/characters/joanna/front-biker.svg",
  32594. extra: 1596 / 1488,
  32595. bottom: 29 / 1625
  32596. }
  32597. },
  32598. backBiker: {
  32599. height: math.unit(3.5, "meters"),
  32600. weight: math.unit(1200, "kg"),
  32601. name: "Back (Biker)",
  32602. image: {
  32603. source: "./media/characters/joanna/back-biker.svg",
  32604. extra: 1594 / 1495,
  32605. bottom: 88 / 1682
  32606. }
  32607. },
  32608. bikeLeft: {
  32609. height: math.unit(2.4, "meters"),
  32610. weight: math.unit(1600, "kg"),
  32611. name: "Bike (Left)",
  32612. image: {
  32613. source: "./media/characters/joanna/bike-left.svg",
  32614. extra: 720 / 720,
  32615. bottom: 8 / 728
  32616. }
  32617. },
  32618. bikeRight: {
  32619. height: math.unit(2.4, "meters"),
  32620. weight: math.unit(1600, "kg"),
  32621. name: "Bike (Right)",
  32622. image: {
  32623. source: "./media/characters/joanna/bike-right.svg",
  32624. extra: 720 / 720,
  32625. bottom: 8 / 728
  32626. }
  32627. },
  32628. },
  32629. [
  32630. {
  32631. name: "Incognito",
  32632. height: math.unit(3.5, "meters")
  32633. },
  32634. {
  32635. name: "Casual Big",
  32636. height: math.unit(200, "meters")
  32637. },
  32638. {
  32639. name: "Macro",
  32640. height: math.unit(600, "meters")
  32641. },
  32642. {
  32643. name: "Original",
  32644. height: math.unit(20, "km"),
  32645. default: true
  32646. },
  32647. {
  32648. name: "Giga",
  32649. height: math.unit(400, "km")
  32650. },
  32651. {
  32652. name: "Lounging",
  32653. height: math.unit(1500, "km")
  32654. },
  32655. {
  32656. name: "Planetary",
  32657. height: math.unit(200000, "km")
  32658. },
  32659. ]
  32660. ))
  32661. characterMakers.push(() => makeCharacter(
  32662. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32663. {
  32664. front: {
  32665. height: math.unit(6, "feet"),
  32666. weight: math.unit(150, "lb"),
  32667. name: "Front",
  32668. image: {
  32669. source: "./media/characters/hugo-sigil/front.svg",
  32670. extra: 522 / 500,
  32671. bottom: 2 / 524
  32672. }
  32673. },
  32674. back: {
  32675. height: math.unit(6, "feet"),
  32676. weight: math.unit(150, "lb"),
  32677. name: "Back",
  32678. image: {
  32679. source: "./media/characters/hugo-sigil/back.svg",
  32680. extra: 519 / 495,
  32681. bottom: 5 / 524
  32682. }
  32683. },
  32684. maw: {
  32685. height: math.unit(1.4, "feet"),
  32686. weight: math.unit(150, "lb"),
  32687. name: "Maw",
  32688. image: {
  32689. source: "./media/characters/hugo-sigil/maw.svg"
  32690. }
  32691. },
  32692. feet: {
  32693. height: math.unit(1.56, "feet"),
  32694. weight: math.unit(150, "lb"),
  32695. name: "Feet",
  32696. image: {
  32697. source: "./media/characters/hugo-sigil/feet.svg",
  32698. extra: 177 / 177,
  32699. bottom: 12 / 189
  32700. }
  32701. },
  32702. },
  32703. [
  32704. {
  32705. name: "Normal",
  32706. height: math.unit(6, "feet")
  32707. },
  32708. {
  32709. name: "Macro",
  32710. height: math.unit(200, "feet"),
  32711. default: true
  32712. },
  32713. ]
  32714. ))
  32715. characterMakers.push(() => makeCharacter(
  32716. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32717. {
  32718. front: {
  32719. height: math.unit(6, "feet"),
  32720. weight: math.unit(150, "lb"),
  32721. name: "Front",
  32722. image: {
  32723. source: "./media/characters/peri/front.svg",
  32724. extra: 2354 / 2233,
  32725. bottom: 49 / 2403
  32726. }
  32727. },
  32728. },
  32729. [
  32730. {
  32731. name: "Really Small",
  32732. height: math.unit(1, "nm")
  32733. },
  32734. {
  32735. name: "Micro",
  32736. height: math.unit(4, "inches")
  32737. },
  32738. {
  32739. name: "Normal",
  32740. height: math.unit(7, "inches"),
  32741. default: true
  32742. },
  32743. {
  32744. name: "Macro",
  32745. height: math.unit(400, "feet")
  32746. },
  32747. {
  32748. name: "Megamacro",
  32749. height: math.unit(100, "miles")
  32750. },
  32751. ]
  32752. ))
  32753. characterMakers.push(() => makeCharacter(
  32754. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32755. {
  32756. frontSlim: {
  32757. height: math.unit(7, "feet"),
  32758. name: "Front (Slim)",
  32759. image: {
  32760. source: "./media/characters/issilora/front-slim.svg",
  32761. extra: 529 / 449,
  32762. bottom: 53 / 582
  32763. }
  32764. },
  32765. sideSlim: {
  32766. height: math.unit(7, "feet"),
  32767. name: "Side (Slim)",
  32768. image: {
  32769. source: "./media/characters/issilora/side-slim.svg",
  32770. extra: 570 / 480,
  32771. bottom: 30 / 600
  32772. }
  32773. },
  32774. backSlim: {
  32775. height: math.unit(7, "feet"),
  32776. name: "Back (Slim)",
  32777. image: {
  32778. source: "./media/characters/issilora/back-slim.svg",
  32779. extra: 537 / 455,
  32780. bottom: 46 / 583
  32781. }
  32782. },
  32783. frontBuff: {
  32784. height: math.unit(7, "feet"),
  32785. name: "Front (Buff)",
  32786. image: {
  32787. source: "./media/characters/issilora/front-buff.svg",
  32788. extra: 2310 / 2035,
  32789. bottom: 335 / 2645
  32790. }
  32791. },
  32792. head: {
  32793. height: math.unit(1.94, "feet"),
  32794. name: "Head",
  32795. image: {
  32796. source: "./media/characters/issilora/head.svg"
  32797. }
  32798. },
  32799. },
  32800. [
  32801. {
  32802. name: "Minimum",
  32803. height: math.unit(7, "feet")
  32804. },
  32805. {
  32806. name: "Comfortable",
  32807. height: math.unit(17, "feet")
  32808. },
  32809. {
  32810. name: "Fun Size",
  32811. height: math.unit(47, "feet")
  32812. },
  32813. {
  32814. name: "Natural Macro",
  32815. height: math.unit(137, "feet"),
  32816. default: true
  32817. },
  32818. {
  32819. name: "Maximum Kaiju",
  32820. height: math.unit(397, "feet")
  32821. },
  32822. ]
  32823. ))
  32824. characterMakers.push(() => makeCharacter(
  32825. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32826. {
  32827. front: {
  32828. height: math.unit(50 + 9/12, "feet"),
  32829. weight: math.unit(32.8, "tons"),
  32830. name: "Front",
  32831. image: {
  32832. source: "./media/characters/irb'iiritaahn/front.svg",
  32833. extra: 1878/1826,
  32834. bottom: 326/2204
  32835. }
  32836. },
  32837. back: {
  32838. height: math.unit(50 + 9/12, "feet"),
  32839. weight: math.unit(32.8, "tons"),
  32840. name: "Back",
  32841. image: {
  32842. source: "./media/characters/irb'iiritaahn/back.svg",
  32843. extra: 2052/2018,
  32844. bottom: 152/2204
  32845. }
  32846. },
  32847. head: {
  32848. height: math.unit(12.86, "feet"),
  32849. name: "Head",
  32850. image: {
  32851. source: "./media/characters/irb'iiritaahn/head.svg"
  32852. }
  32853. },
  32854. maw: {
  32855. height: math.unit(9.66, "feet"),
  32856. name: "Maw",
  32857. image: {
  32858. source: "./media/characters/irb'iiritaahn/maw.svg"
  32859. }
  32860. },
  32861. frontDick: {
  32862. height: math.unit(8.78461, "feet"),
  32863. name: "Front Dick",
  32864. image: {
  32865. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32866. }
  32867. },
  32868. rearDick: {
  32869. height: math.unit(8.78461, "feet"),
  32870. name: "Rear Dick",
  32871. image: {
  32872. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32873. }
  32874. },
  32875. rearDickUnfolded: {
  32876. height: math.unit(8.78, "feet"),
  32877. name: "Rear Dick (Unfolded)",
  32878. image: {
  32879. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32880. }
  32881. },
  32882. wings: {
  32883. height: math.unit(43, "feet"),
  32884. name: "Wings",
  32885. image: {
  32886. source: "./media/characters/irb'iiritaahn/wings.svg"
  32887. }
  32888. },
  32889. },
  32890. [
  32891. {
  32892. name: "Macro",
  32893. height: math.unit(50 + 9/12, "feet"),
  32894. default: true
  32895. },
  32896. ]
  32897. ))
  32898. characterMakers.push(() => makeCharacter(
  32899. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32900. {
  32901. front: {
  32902. height: math.unit(205, "cm"),
  32903. weight: math.unit(102, "kg"),
  32904. name: "Front",
  32905. image: {
  32906. source: "./media/characters/irbisgreif/front.svg",
  32907. extra: 785/706,
  32908. bottom: 13/798
  32909. }
  32910. },
  32911. back: {
  32912. height: math.unit(205, "cm"),
  32913. weight: math.unit(102, "kg"),
  32914. name: "Back",
  32915. image: {
  32916. source: "./media/characters/irbisgreif/back.svg",
  32917. extra: 713/701,
  32918. bottom: 26/739
  32919. }
  32920. },
  32921. frontDressed: {
  32922. height: math.unit(216, "cm"),
  32923. weight: math.unit(102, "kg"),
  32924. name: "Front-dressed",
  32925. image: {
  32926. source: "./media/characters/irbisgreif/front-dressed.svg",
  32927. extra: 902/776,
  32928. bottom: 14/916
  32929. }
  32930. },
  32931. sideDressed: {
  32932. height: math.unit(195, "cm"),
  32933. weight: math.unit(102, "kg"),
  32934. name: "Side-dressed",
  32935. image: {
  32936. source: "./media/characters/irbisgreif/side-dressed.svg",
  32937. extra: 788/688,
  32938. bottom: 21/809
  32939. }
  32940. },
  32941. backDressed: {
  32942. height: math.unit(216, "cm"),
  32943. weight: math.unit(102, "kg"),
  32944. name: "Back-dressed",
  32945. image: {
  32946. source: "./media/characters/irbisgreif/back-dressed.svg",
  32947. extra: 901/783,
  32948. bottom: 10/911
  32949. }
  32950. },
  32951. dick: {
  32952. height: math.unit(0.49, "feet"),
  32953. name: "Dick",
  32954. image: {
  32955. source: "./media/characters/irbisgreif/dick.svg"
  32956. }
  32957. },
  32958. wingTop: {
  32959. height: math.unit(1.93 , "feet"),
  32960. name: "Wing-top",
  32961. image: {
  32962. source: "./media/characters/irbisgreif/wing-top.svg"
  32963. }
  32964. },
  32965. wingBottom: {
  32966. height: math.unit(1.93 , "feet"),
  32967. name: "Wing-bottom",
  32968. image: {
  32969. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32970. }
  32971. },
  32972. },
  32973. [
  32974. {
  32975. name: "Normal",
  32976. height: math.unit(216, "cm"),
  32977. default: true
  32978. },
  32979. ]
  32980. ))
  32981. characterMakers.push(() => makeCharacter(
  32982. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32983. {
  32984. front: {
  32985. height: math.unit(6, "feet"),
  32986. weight: math.unit(150, "lb"),
  32987. name: "Front",
  32988. image: {
  32989. source: "./media/characters/pride/front.svg",
  32990. extra: 1299/1230,
  32991. bottom: 18/1317
  32992. }
  32993. },
  32994. },
  32995. [
  32996. {
  32997. name: "Normal",
  32998. height: math.unit(7, "feet")
  32999. },
  33000. {
  33001. name: "Mini-macro",
  33002. height: math.unit(11, "feet")
  33003. },
  33004. {
  33005. name: "Macro",
  33006. height: math.unit(15, "meters"),
  33007. default: true
  33008. },
  33009. {
  33010. name: "Macro+",
  33011. height: math.unit(40, "meters")
  33012. },
  33013. ]
  33014. ))
  33015. characterMakers.push(() => makeCharacter(
  33016. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33017. {
  33018. front: {
  33019. height: math.unit(4 + 2 / 12, "feet"),
  33020. weight: math.unit(95, "lb"),
  33021. name: "Front",
  33022. image: {
  33023. source: "./media/characters/vaelophis-nyx/front.svg",
  33024. extra: 2532/2330,
  33025. bottom: 0/2532
  33026. }
  33027. },
  33028. back: {
  33029. height: math.unit(4 + 2 / 12, "feet"),
  33030. weight: math.unit(95, "lb"),
  33031. name: "Back",
  33032. image: {
  33033. source: "./media/characters/vaelophis-nyx/back.svg",
  33034. extra: 2484/2361,
  33035. bottom: 0/2484
  33036. }
  33037. },
  33038. feralSide: {
  33039. height: math.unit(2 + 1/12, "feet"),
  33040. weight: math.unit(20, "lb"),
  33041. name: "Feral (Side)",
  33042. image: {
  33043. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33044. extra: 1721/1581,
  33045. bottom: 70/1791
  33046. }
  33047. },
  33048. feralLazing: {
  33049. height: math.unit(1.08, "feet"),
  33050. weight: math.unit(20, "lb"),
  33051. name: "Feral (Lazing)",
  33052. image: {
  33053. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33054. extra: 822/822,
  33055. bottom: 248/1070
  33056. }
  33057. },
  33058. ear: {
  33059. height: math.unit(0.416, "feet"),
  33060. name: "Ear",
  33061. image: {
  33062. source: "./media/characters/vaelophis-nyx/ear.svg"
  33063. }
  33064. },
  33065. eye: {
  33066. height: math.unit(0.0748, "feet"),
  33067. name: "Eye",
  33068. image: {
  33069. source: "./media/characters/vaelophis-nyx/eye.svg"
  33070. }
  33071. },
  33072. mouth: {
  33073. height: math.unit(0.378, "feet"),
  33074. name: "Mouth",
  33075. image: {
  33076. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33077. }
  33078. },
  33079. spade: {
  33080. height: math.unit(0.55, "feet"),
  33081. name: "Spade",
  33082. image: {
  33083. source: "./media/characters/vaelophis-nyx/spade.svg"
  33084. }
  33085. },
  33086. },
  33087. [
  33088. {
  33089. name: "Normal",
  33090. height: math.unit(4 + 2/12, "feet"),
  33091. default: true
  33092. },
  33093. ]
  33094. ))
  33095. characterMakers.push(() => makeCharacter(
  33096. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33097. {
  33098. front: {
  33099. height: math.unit(7, "feet"),
  33100. weight: math.unit(231, "lb"),
  33101. name: "Front",
  33102. image: {
  33103. source: "./media/characters/flux/front.svg",
  33104. extra: 919/871,
  33105. bottom: 0/919
  33106. }
  33107. },
  33108. back: {
  33109. height: math.unit(7, "feet"),
  33110. weight: math.unit(231, "lb"),
  33111. name: "Back",
  33112. image: {
  33113. source: "./media/characters/flux/back.svg",
  33114. extra: 1040/992,
  33115. bottom: 0/1040
  33116. }
  33117. },
  33118. frontDressed: {
  33119. height: math.unit(7, "feet"),
  33120. weight: math.unit(231, "lb"),
  33121. name: "Front (Dressed)",
  33122. image: {
  33123. source: "./media/characters/flux/front-dressed.svg",
  33124. extra: 919/871,
  33125. bottom: 0/919
  33126. }
  33127. },
  33128. feralSide: {
  33129. height: math.unit(5, "feet"),
  33130. weight: math.unit(150, "lb"),
  33131. name: "Feral (Side)",
  33132. image: {
  33133. source: "./media/characters/flux/feral-side.svg",
  33134. extra: 598/528,
  33135. bottom: 28/626
  33136. }
  33137. },
  33138. head: {
  33139. height: math.unit(1.585, "feet"),
  33140. name: "Head",
  33141. image: {
  33142. source: "./media/characters/flux/head.svg"
  33143. }
  33144. },
  33145. headSide: {
  33146. height: math.unit(1.74, "feet"),
  33147. name: "Head (Side)",
  33148. image: {
  33149. source: "./media/characters/flux/head-side.svg"
  33150. }
  33151. },
  33152. headSideFire: {
  33153. height: math.unit(1.76, "feet"),
  33154. name: "Head (Side, Fire)",
  33155. image: {
  33156. source: "./media/characters/flux/head-side-fire.svg"
  33157. }
  33158. },
  33159. },
  33160. [
  33161. {
  33162. name: "Normal",
  33163. height: math.unit(7, "feet"),
  33164. default: true
  33165. },
  33166. ]
  33167. ))
  33168. characterMakers.push(() => makeCharacter(
  33169. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33170. {
  33171. front: {
  33172. height: math.unit(9, "feet"),
  33173. weight: math.unit(1012, "lb"),
  33174. name: "Front",
  33175. image: {
  33176. source: "./media/characters/ulfra-lupae/front.svg",
  33177. extra: 1083/1011,
  33178. bottom: 67/1150
  33179. }
  33180. },
  33181. },
  33182. [
  33183. {
  33184. name: "Micro",
  33185. height: math.unit(6, "inches")
  33186. },
  33187. {
  33188. name: "Socializing",
  33189. height: math.unit(6 + 5/12, "feet")
  33190. },
  33191. {
  33192. name: "Normal",
  33193. height: math.unit(9, "feet"),
  33194. default: true
  33195. },
  33196. {
  33197. name: "Macro",
  33198. height: math.unit(150, "feet")
  33199. },
  33200. ]
  33201. ))
  33202. characterMakers.push(() => makeCharacter(
  33203. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33204. {
  33205. front: {
  33206. height: math.unit(5 + 2/12, "feet"),
  33207. weight: math.unit(120, "lb"),
  33208. name: "Front",
  33209. image: {
  33210. source: "./media/characters/timber/front.svg",
  33211. extra: 2814/2705,
  33212. bottom: 181/2995
  33213. }
  33214. },
  33215. },
  33216. [
  33217. {
  33218. name: "Normal",
  33219. height: math.unit(5 + 2/12, "feet"),
  33220. default: true
  33221. },
  33222. ]
  33223. ))
  33224. characterMakers.push(() => makeCharacter(
  33225. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33226. {
  33227. front: {
  33228. height: math.unit(9, "feet"),
  33229. name: "Front",
  33230. image: {
  33231. source: "./media/characters/nicki/front.svg",
  33232. extra: 1240/990,
  33233. bottom: 45/1285
  33234. },
  33235. form: "anthro",
  33236. default: true
  33237. },
  33238. side: {
  33239. height: math.unit(9, "feet"),
  33240. name: "Side",
  33241. image: {
  33242. source: "./media/characters/nicki/side.svg",
  33243. extra: 1047/973,
  33244. bottom: 61/1108
  33245. },
  33246. form: "anthro"
  33247. },
  33248. back: {
  33249. height: math.unit(9, "feet"),
  33250. name: "Back",
  33251. image: {
  33252. source: "./media/characters/nicki/back.svg",
  33253. extra: 1006/965,
  33254. bottom: 39/1045
  33255. },
  33256. form: "anthro"
  33257. },
  33258. taur: {
  33259. height: math.unit(15, "feet"),
  33260. name: "Taur",
  33261. image: {
  33262. source: "./media/characters/nicki/taur.svg",
  33263. extra: 1592/1347,
  33264. bottom: 0/1592
  33265. },
  33266. form: "taur",
  33267. default: true
  33268. },
  33269. },
  33270. [
  33271. {
  33272. name: "Normal",
  33273. height: math.unit(9, "feet"),
  33274. form: "anthro",
  33275. default: true
  33276. },
  33277. {
  33278. name: "Normal",
  33279. height: math.unit(15, "feet"),
  33280. form: "taur",
  33281. default: true
  33282. }
  33283. ],
  33284. {
  33285. "anthro": {
  33286. name: "Anthro",
  33287. default: true
  33288. },
  33289. "taur": {
  33290. name: "Taur"
  33291. }
  33292. }
  33293. ))
  33294. characterMakers.push(() => makeCharacter(
  33295. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33296. {
  33297. front: {
  33298. height: math.unit(7 + 10/12, "feet"),
  33299. weight: math.unit(3.5, "tons"),
  33300. name: "Front",
  33301. image: {
  33302. source: "./media/characters/lee/front.svg",
  33303. extra: 1773/1615,
  33304. bottom: 86/1859
  33305. }
  33306. },
  33307. hand: {
  33308. height: math.unit(1.78, "feet"),
  33309. name: "Hand",
  33310. image: {
  33311. source: "./media/characters/lee/hand.svg"
  33312. }
  33313. },
  33314. maw: {
  33315. height: math.unit(1.18, "feet"),
  33316. name: "Maw",
  33317. image: {
  33318. source: "./media/characters/lee/maw.svg"
  33319. }
  33320. },
  33321. },
  33322. [
  33323. {
  33324. name: "Normal",
  33325. height: math.unit(7 + 10/12, "feet"),
  33326. default: true
  33327. },
  33328. ]
  33329. ))
  33330. characterMakers.push(() => makeCharacter(
  33331. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33332. {
  33333. front: {
  33334. height: math.unit(9, "feet"),
  33335. name: "Front",
  33336. image: {
  33337. source: "./media/characters/guti/front.svg",
  33338. extra: 4551/4355,
  33339. bottom: 123/4674
  33340. }
  33341. },
  33342. tongue: {
  33343. height: math.unit(1, "feet"),
  33344. name: "Tongue",
  33345. image: {
  33346. source: "./media/characters/guti/tongue.svg"
  33347. }
  33348. },
  33349. paw: {
  33350. height: math.unit(1.18, "feet"),
  33351. name: "Paw",
  33352. image: {
  33353. source: "./media/characters/guti/paw.svg"
  33354. }
  33355. },
  33356. },
  33357. [
  33358. {
  33359. name: "Normal",
  33360. height: math.unit(9, "feet"),
  33361. default: true
  33362. },
  33363. ]
  33364. ))
  33365. characterMakers.push(() => makeCharacter(
  33366. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33367. {
  33368. side: {
  33369. height: math.unit(5, "meters"),
  33370. name: "Side",
  33371. image: {
  33372. source: "./media/characters/vesper/side.svg",
  33373. extra: 1605/1518,
  33374. bottom: 0/1605
  33375. }
  33376. },
  33377. },
  33378. [
  33379. {
  33380. name: "Small",
  33381. height: math.unit(5, "meters")
  33382. },
  33383. {
  33384. name: "Sage",
  33385. height: math.unit(100, "meters"),
  33386. default: true
  33387. },
  33388. {
  33389. name: "Fun Size",
  33390. height: math.unit(600, "meters")
  33391. },
  33392. {
  33393. name: "Goddess",
  33394. height: math.unit(20000, "km")
  33395. },
  33396. {
  33397. name: "Maximum",
  33398. height: math.unit(5, "galaxies")
  33399. },
  33400. ]
  33401. ))
  33402. characterMakers.push(() => makeCharacter(
  33403. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33404. {
  33405. front: {
  33406. height: math.unit(6 + 3/12, "feet"),
  33407. weight: math.unit(190, "lb"),
  33408. name: "Front",
  33409. image: {
  33410. source: "./media/characters/gawain/front.svg",
  33411. extra: 2222/2139,
  33412. bottom: 90/2312
  33413. }
  33414. },
  33415. back: {
  33416. height: math.unit(6 + 3/12, "feet"),
  33417. weight: math.unit(190, "lb"),
  33418. name: "Back",
  33419. image: {
  33420. source: "./media/characters/gawain/back.svg",
  33421. extra: 2199/2111,
  33422. bottom: 73/2272
  33423. }
  33424. },
  33425. },
  33426. [
  33427. {
  33428. name: "Normal",
  33429. height: math.unit(6 + 3/12, "feet"),
  33430. default: true
  33431. },
  33432. ]
  33433. ))
  33434. characterMakers.push(() => makeCharacter(
  33435. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33436. {
  33437. side: {
  33438. height: math.unit(3.5, "meters"),
  33439. weight: math.unit(16000, "lb"),
  33440. name: "Side",
  33441. image: {
  33442. source: "./media/characters/dascalti/side.svg",
  33443. extra: 392/273,
  33444. bottom: 47/439
  33445. }
  33446. },
  33447. breath: {
  33448. height: math.unit(7.4, "feet"),
  33449. name: "Breath",
  33450. image: {
  33451. source: "./media/characters/dascalti/breath.svg"
  33452. }
  33453. },
  33454. fed: {
  33455. height: math.unit(3.6, "meters"),
  33456. weight: math.unit(16000, "lb"),
  33457. name: "Fed",
  33458. image: {
  33459. source: "./media/characters/dascalti/fed.svg",
  33460. extra: 1419/820,
  33461. bottom: 95/1514
  33462. }
  33463. },
  33464. },
  33465. [
  33466. {
  33467. name: "Normal",
  33468. height: math.unit(3.5, "meters"),
  33469. default: true
  33470. },
  33471. ]
  33472. ))
  33473. characterMakers.push(() => makeCharacter(
  33474. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33475. {
  33476. front: {
  33477. height: math.unit(3 + 5/12, "feet"),
  33478. name: "Front",
  33479. image: {
  33480. source: "./media/characters/mauve/front.svg",
  33481. extra: 1126/1033,
  33482. bottom: 65/1191
  33483. }
  33484. },
  33485. side: {
  33486. height: math.unit(3 + 5/12, "feet"),
  33487. name: "Side",
  33488. image: {
  33489. source: "./media/characters/mauve/side.svg",
  33490. extra: 1089/1001,
  33491. bottom: 29/1118
  33492. }
  33493. },
  33494. back: {
  33495. height: math.unit(3 + 5/12, "feet"),
  33496. name: "Back",
  33497. image: {
  33498. source: "./media/characters/mauve/back.svg",
  33499. extra: 1173/1053,
  33500. bottom: 109/1282
  33501. }
  33502. },
  33503. },
  33504. [
  33505. {
  33506. name: "Normal",
  33507. height: math.unit(3 + 5/12, "feet"),
  33508. default: true
  33509. },
  33510. ]
  33511. ))
  33512. characterMakers.push(() => makeCharacter(
  33513. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33514. {
  33515. front: {
  33516. height: math.unit(6 + 3/12, "feet"),
  33517. weight: math.unit(430, "lb"),
  33518. name: "Front",
  33519. image: {
  33520. source: "./media/characters/carlos/front.svg",
  33521. extra: 1964/1913,
  33522. bottom: 70/2034
  33523. }
  33524. },
  33525. },
  33526. [
  33527. {
  33528. name: "Normal",
  33529. height: math.unit(6 + 3/12, "feet"),
  33530. default: true
  33531. },
  33532. ]
  33533. ))
  33534. characterMakers.push(() => makeCharacter(
  33535. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33536. {
  33537. back: {
  33538. height: math.unit(5 + 10/12, "feet"),
  33539. weight: math.unit(200, "lb"),
  33540. name: "Back",
  33541. image: {
  33542. source: "./media/characters/jax/back.svg",
  33543. extra: 764/739,
  33544. bottom: 25/789
  33545. }
  33546. },
  33547. },
  33548. [
  33549. {
  33550. name: "Normal",
  33551. height: math.unit(5 + 10/12, "feet"),
  33552. default: true
  33553. },
  33554. ]
  33555. ))
  33556. characterMakers.push(() => makeCharacter(
  33557. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33558. {
  33559. front: {
  33560. height: math.unit(8, "feet"),
  33561. weight: math.unit(250, "lb"),
  33562. name: "Front",
  33563. image: {
  33564. source: "./media/characters/eikthynir/front.svg",
  33565. extra: 1332/1166,
  33566. bottom: 82/1414
  33567. }
  33568. },
  33569. back: {
  33570. height: math.unit(8, "feet"),
  33571. weight: math.unit(250, "lb"),
  33572. name: "Back",
  33573. image: {
  33574. source: "./media/characters/eikthynir/back.svg",
  33575. extra: 1342/1190,
  33576. bottom: 19/1361
  33577. }
  33578. },
  33579. dick: {
  33580. height: math.unit(2.35, "feet"),
  33581. name: "Dick",
  33582. image: {
  33583. source: "./media/characters/eikthynir/dick.svg"
  33584. }
  33585. },
  33586. },
  33587. [
  33588. {
  33589. name: "Normal",
  33590. height: math.unit(8, "feet"),
  33591. default: true
  33592. },
  33593. ]
  33594. ))
  33595. characterMakers.push(() => makeCharacter(
  33596. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33597. {
  33598. front: {
  33599. height: math.unit(99, "meters"),
  33600. weight: math.unit(13000, "tons"),
  33601. name: "Front",
  33602. image: {
  33603. source: "./media/characters/zlmos/front.svg",
  33604. extra: 2202/1992,
  33605. bottom: 315/2517
  33606. }
  33607. },
  33608. },
  33609. [
  33610. {
  33611. name: "Macro",
  33612. height: math.unit(99, "meters"),
  33613. default: true
  33614. },
  33615. ]
  33616. ))
  33617. characterMakers.push(() => makeCharacter(
  33618. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33619. {
  33620. front: {
  33621. height: math.unit(6 + 5/12, "feet"),
  33622. name: "Front",
  33623. image: {
  33624. source: "./media/characters/purri/front.svg",
  33625. extra: 1698/1610,
  33626. bottom: 32/1730
  33627. }
  33628. },
  33629. frontAlt: {
  33630. height: math.unit(6 + 5/12, "feet"),
  33631. name: "Front (Alt)",
  33632. image: {
  33633. source: "./media/characters/purri/front-alt.svg",
  33634. extra: 450/420,
  33635. bottom: 26/476
  33636. }
  33637. },
  33638. boots: {
  33639. height: math.unit(5.5, "feet"),
  33640. name: "Boots",
  33641. image: {
  33642. source: "./media/characters/purri/boots.svg",
  33643. extra: 905/853,
  33644. bottom: 18/923
  33645. }
  33646. },
  33647. lying: {
  33648. height: math.unit(2, "feet"),
  33649. name: "Lying",
  33650. image: {
  33651. source: "./media/characters/purri/lying.svg",
  33652. extra: 940/843,
  33653. bottom: 146/1086
  33654. }
  33655. },
  33656. devious: {
  33657. height: math.unit(1.77, "feet"),
  33658. name: "Devious",
  33659. image: {
  33660. source: "./media/characters/purri/devious.svg",
  33661. extra: 1440/1155,
  33662. bottom: 147/1587
  33663. }
  33664. },
  33665. bean: {
  33666. height: math.unit(1.94, "feet"),
  33667. name: "Bean",
  33668. image: {
  33669. source: "./media/characters/purri/bean.svg"
  33670. }
  33671. },
  33672. },
  33673. [
  33674. {
  33675. name: "Micro",
  33676. height: math.unit(1, "mm")
  33677. },
  33678. {
  33679. name: "Normal",
  33680. height: math.unit(6 + 5/12, "feet"),
  33681. default: true
  33682. },
  33683. {
  33684. name: "Macro :3c",
  33685. height: math.unit(2, "miles")
  33686. },
  33687. ]
  33688. ))
  33689. characterMakers.push(() => makeCharacter(
  33690. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33691. {
  33692. front: {
  33693. height: math.unit(6 + 2/12, "feet"),
  33694. weight: math.unit(250, "lb"),
  33695. name: "Front",
  33696. image: {
  33697. source: "./media/characters/moonlight/front.svg",
  33698. extra: 1044/908,
  33699. bottom: 56/1100
  33700. }
  33701. },
  33702. feral: {
  33703. height: math.unit(3 + 1/12, "feet"),
  33704. weight: math.unit(50, "kg"),
  33705. name: "Feral",
  33706. image: {
  33707. source: "./media/characters/moonlight/feral.svg",
  33708. extra: 3705/2791,
  33709. bottom: 145/3850
  33710. }
  33711. },
  33712. paw: {
  33713. height: math.unit(1, "feet"),
  33714. name: "Paw",
  33715. image: {
  33716. source: "./media/characters/moonlight/paw.svg"
  33717. }
  33718. },
  33719. paws: {
  33720. height: math.unit(0.98, "feet"),
  33721. name: "Paws",
  33722. image: {
  33723. source: "./media/characters/moonlight/paws.svg",
  33724. extra: 939/939,
  33725. bottom: 50/989
  33726. }
  33727. },
  33728. mouth: {
  33729. height: math.unit(0.48, "feet"),
  33730. name: "Mouth",
  33731. image: {
  33732. source: "./media/characters/moonlight/mouth.svg"
  33733. }
  33734. },
  33735. dick: {
  33736. height: math.unit(1.46, "feet"),
  33737. name: "Dick",
  33738. image: {
  33739. source: "./media/characters/moonlight/dick.svg"
  33740. }
  33741. },
  33742. },
  33743. [
  33744. {
  33745. name: "Normal",
  33746. height: math.unit(6 + 2/12, "feet"),
  33747. default: true
  33748. },
  33749. {
  33750. name: "Macro",
  33751. height: math.unit(300, "feet")
  33752. },
  33753. {
  33754. name: "Macro+",
  33755. height: math.unit(1, "mile")
  33756. },
  33757. {
  33758. name: "Mt. Moon",
  33759. height: math.unit(5, "miles")
  33760. },
  33761. {
  33762. name: "Megamacro",
  33763. height: math.unit(15, "miles")
  33764. },
  33765. ]
  33766. ))
  33767. characterMakers.push(() => makeCharacter(
  33768. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33769. {
  33770. back: {
  33771. height: math.unit(6, "feet"),
  33772. weight: math.unit(150, "lb"),
  33773. name: "Back",
  33774. image: {
  33775. source: "./media/characters/sylen/back.svg",
  33776. extra: 1335/1273,
  33777. bottom: 107/1442
  33778. }
  33779. },
  33780. },
  33781. [
  33782. {
  33783. name: "Normal",
  33784. height: math.unit(5 + 5/12, "feet")
  33785. },
  33786. {
  33787. name: "Megamacro",
  33788. height: math.unit(3, "miles"),
  33789. default: true
  33790. },
  33791. ]
  33792. ))
  33793. characterMakers.push(() => makeCharacter(
  33794. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33795. {
  33796. front: {
  33797. height: math.unit(6, "feet"),
  33798. weight: math.unit(190, "lb"),
  33799. name: "Front",
  33800. image: {
  33801. source: "./media/characters/huttser/front.svg",
  33802. extra: 1152/1058,
  33803. bottom: 23/1175
  33804. }
  33805. },
  33806. side: {
  33807. height: math.unit(6, "feet"),
  33808. weight: math.unit(190, "lb"),
  33809. name: "Side",
  33810. image: {
  33811. source: "./media/characters/huttser/side.svg",
  33812. extra: 1174/1065,
  33813. bottom: 18/1192
  33814. }
  33815. },
  33816. back: {
  33817. height: math.unit(6, "feet"),
  33818. weight: math.unit(190, "lb"),
  33819. name: "Back",
  33820. image: {
  33821. source: "./media/characters/huttser/back.svg",
  33822. extra: 1158/1056,
  33823. bottom: 12/1170
  33824. }
  33825. },
  33826. },
  33827. [
  33828. ]
  33829. ))
  33830. characterMakers.push(() => makeCharacter(
  33831. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33832. {
  33833. side: {
  33834. height: math.unit(12 + 9/12, "feet"),
  33835. weight: math.unit(15000, "lb"),
  33836. name: "Side",
  33837. image: {
  33838. source: "./media/characters/faan/side.svg",
  33839. extra: 2747/2697,
  33840. bottom: 0/2747
  33841. }
  33842. },
  33843. front: {
  33844. height: math.unit(12 + 9/12, "feet"),
  33845. weight: math.unit(15000, "lb"),
  33846. name: "Front",
  33847. image: {
  33848. source: "./media/characters/faan/front.svg",
  33849. extra: 607/571,
  33850. bottom: 24/631
  33851. }
  33852. },
  33853. head: {
  33854. height: math.unit(2.85, "feet"),
  33855. name: "Head",
  33856. image: {
  33857. source: "./media/characters/faan/head.svg"
  33858. }
  33859. },
  33860. headAlt: {
  33861. height: math.unit(3.13, "feet"),
  33862. name: "Head-alt",
  33863. image: {
  33864. source: "./media/characters/faan/head-alt.svg"
  33865. }
  33866. },
  33867. },
  33868. [
  33869. {
  33870. name: "Normal",
  33871. height: math.unit(12 + 9/12, "feet"),
  33872. default: true
  33873. },
  33874. ]
  33875. ))
  33876. characterMakers.push(() => makeCharacter(
  33877. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33878. {
  33879. front: {
  33880. height: math.unit(6, "feet"),
  33881. weight: math.unit(300, "lb"),
  33882. name: "Front",
  33883. image: {
  33884. source: "./media/characters/tanio/front.svg",
  33885. extra: 711/673,
  33886. bottom: 25/736
  33887. }
  33888. },
  33889. },
  33890. [
  33891. {
  33892. name: "Normal",
  33893. height: math.unit(6, "feet"),
  33894. default: true
  33895. },
  33896. ]
  33897. ))
  33898. characterMakers.push(() => makeCharacter(
  33899. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33900. {
  33901. front: {
  33902. height: math.unit(3, "inches"),
  33903. name: "Front",
  33904. image: {
  33905. source: "./media/characters/noboru/front.svg",
  33906. extra: 1039/932,
  33907. bottom: 18/1057
  33908. }
  33909. },
  33910. },
  33911. [
  33912. {
  33913. name: "Micro",
  33914. height: math.unit(3, "inches"),
  33915. default: true
  33916. },
  33917. ]
  33918. ))
  33919. characterMakers.push(() => makeCharacter(
  33920. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33921. {
  33922. front: {
  33923. height: math.unit(1.85, "meters"),
  33924. weight: math.unit(80, "kg"),
  33925. name: "Front",
  33926. image: {
  33927. source: "./media/characters/daniel-barrett/front.svg",
  33928. extra: 355/337,
  33929. bottom: 9/364
  33930. }
  33931. },
  33932. },
  33933. [
  33934. {
  33935. name: "Pico",
  33936. height: math.unit(0.0433, "mm")
  33937. },
  33938. {
  33939. name: "Nano",
  33940. height: math.unit(1.5, "mm")
  33941. },
  33942. {
  33943. name: "Micro",
  33944. height: math.unit(5.3, "cm"),
  33945. default: true
  33946. },
  33947. {
  33948. name: "Normal",
  33949. height: math.unit(1.85, "meters")
  33950. },
  33951. {
  33952. name: "Macro",
  33953. height: math.unit(64.7, "meters")
  33954. },
  33955. {
  33956. name: "Megamacro",
  33957. height: math.unit(2.26, "km")
  33958. },
  33959. {
  33960. name: "Gigamacro",
  33961. height: math.unit(79, "km")
  33962. },
  33963. {
  33964. name: "Teramacro",
  33965. height: math.unit(2765, "km")
  33966. },
  33967. {
  33968. name: "Petamacro",
  33969. height: math.unit(96678, "km")
  33970. },
  33971. ]
  33972. ))
  33973. characterMakers.push(() => makeCharacter(
  33974. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33975. {
  33976. front: {
  33977. height: math.unit(30, "meters"),
  33978. weight: math.unit(400, "tons"),
  33979. name: "Front",
  33980. image: {
  33981. source: "./media/characters/zeel/front.svg",
  33982. extra: 2599/2599,
  33983. bottom: 226/2825
  33984. }
  33985. },
  33986. },
  33987. [
  33988. {
  33989. name: "Macro",
  33990. height: math.unit(30, "meters"),
  33991. default: true
  33992. },
  33993. ]
  33994. ))
  33995. characterMakers.push(() => makeCharacter(
  33996. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33997. {
  33998. front: {
  33999. height: math.unit(6 + 7/12, "feet"),
  34000. weight: math.unit(210, "lb"),
  34001. name: "Front",
  34002. image: {
  34003. source: "./media/characters/tarn/front.svg",
  34004. extra: 3517/3220,
  34005. bottom: 91/3608
  34006. }
  34007. },
  34008. back: {
  34009. height: math.unit(6 + 7/12, "feet"),
  34010. weight: math.unit(210, "lb"),
  34011. name: "Back",
  34012. image: {
  34013. source: "./media/characters/tarn/back.svg",
  34014. extra: 3566/3241,
  34015. bottom: 34/3600
  34016. }
  34017. },
  34018. dick: {
  34019. height: math.unit(1.65, "feet"),
  34020. name: "Dick",
  34021. image: {
  34022. source: "./media/characters/tarn/dick.svg"
  34023. }
  34024. },
  34025. paw: {
  34026. height: math.unit(1.80, "feet"),
  34027. name: "Paw",
  34028. image: {
  34029. source: "./media/characters/tarn/paw.svg"
  34030. }
  34031. },
  34032. tongue: {
  34033. height: math.unit(0.97, "feet"),
  34034. name: "Tongue",
  34035. image: {
  34036. source: "./media/characters/tarn/tongue.svg"
  34037. }
  34038. },
  34039. },
  34040. [
  34041. {
  34042. name: "Micro",
  34043. height: math.unit(4, "inches")
  34044. },
  34045. {
  34046. name: "Normal",
  34047. height: math.unit(6 + 7/12, "feet"),
  34048. default: true
  34049. },
  34050. {
  34051. name: "Macro",
  34052. height: math.unit(300, "feet")
  34053. },
  34054. ]
  34055. ))
  34056. characterMakers.push(() => makeCharacter(
  34057. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34058. {
  34059. front: {
  34060. height: math.unit(5 + 7/12, "feet"),
  34061. weight: math.unit(80, "kg"),
  34062. name: "Front",
  34063. image: {
  34064. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34065. extra: 3023/2865,
  34066. bottom: 33/3056
  34067. }
  34068. },
  34069. back: {
  34070. height: math.unit(5 + 7/12, "feet"),
  34071. weight: math.unit(80, "kg"),
  34072. name: "Back",
  34073. image: {
  34074. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34075. extra: 3020/2886,
  34076. bottom: 30/3050
  34077. }
  34078. },
  34079. dick: {
  34080. height: math.unit(0.98, "feet"),
  34081. name: "Dick",
  34082. image: {
  34083. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34084. }
  34085. },
  34086. anatomy: {
  34087. height: math.unit(2.86, "feet"),
  34088. name: "Anatomy",
  34089. image: {
  34090. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34091. }
  34092. },
  34093. },
  34094. [
  34095. {
  34096. name: "Really Small",
  34097. height: math.unit(2, "inches")
  34098. },
  34099. {
  34100. name: "Micro",
  34101. height: math.unit(5.583, "inches")
  34102. },
  34103. {
  34104. name: "Normal",
  34105. height: math.unit(5 + 7/12, "feet"),
  34106. default: true
  34107. },
  34108. {
  34109. name: "Macro",
  34110. height: math.unit(67, "feet")
  34111. },
  34112. {
  34113. name: "Megamacro",
  34114. height: math.unit(134, "feet")
  34115. },
  34116. ]
  34117. ))
  34118. characterMakers.push(() => makeCharacter(
  34119. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34120. {
  34121. front: {
  34122. height: math.unit(9, "feet"),
  34123. weight: math.unit(120, "lb"),
  34124. name: "Front",
  34125. image: {
  34126. source: "./media/characters/sally/front.svg",
  34127. extra: 1506/1349,
  34128. bottom: 66/1572
  34129. }
  34130. },
  34131. },
  34132. [
  34133. {
  34134. name: "Normal",
  34135. height: math.unit(9, "feet"),
  34136. default: true
  34137. },
  34138. ]
  34139. ))
  34140. characterMakers.push(() => makeCharacter(
  34141. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34142. {
  34143. front: {
  34144. height: math.unit(8, "feet"),
  34145. weight: math.unit(900, "lb"),
  34146. name: "Front",
  34147. image: {
  34148. source: "./media/characters/owen/front.svg",
  34149. extra: 1761/1657,
  34150. bottom: 74/1835
  34151. }
  34152. },
  34153. side: {
  34154. height: math.unit(8, "feet"),
  34155. weight: math.unit(900, "lb"),
  34156. name: "Side",
  34157. image: {
  34158. source: "./media/characters/owen/side.svg",
  34159. extra: 1797/1734,
  34160. bottom: 30/1827
  34161. }
  34162. },
  34163. back: {
  34164. height: math.unit(8, "feet"),
  34165. weight: math.unit(900, "lb"),
  34166. name: "Back",
  34167. image: {
  34168. source: "./media/characters/owen/back.svg",
  34169. extra: 1796/1706,
  34170. bottom: 59/1855
  34171. }
  34172. },
  34173. maw: {
  34174. height: math.unit(1.76, "feet"),
  34175. name: "Maw",
  34176. image: {
  34177. source: "./media/characters/owen/maw.svg"
  34178. }
  34179. },
  34180. },
  34181. [
  34182. {
  34183. name: "Normal",
  34184. height: math.unit(8, "feet"),
  34185. default: true
  34186. },
  34187. ]
  34188. ))
  34189. characterMakers.push(() => makeCharacter(
  34190. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34191. {
  34192. front: {
  34193. height: math.unit(4, "feet"),
  34194. weight: math.unit(400, "lb"),
  34195. name: "Front",
  34196. image: {
  34197. source: "./media/characters/ryth/front.svg",
  34198. extra: 1920/1748,
  34199. bottom: 42/1962
  34200. }
  34201. },
  34202. back: {
  34203. height: math.unit(4, "feet"),
  34204. weight: math.unit(400, "lb"),
  34205. name: "Back",
  34206. image: {
  34207. source: "./media/characters/ryth/back.svg",
  34208. extra: 1897/1690,
  34209. bottom: 89/1986
  34210. }
  34211. },
  34212. mouth: {
  34213. height: math.unit(1.39, "feet"),
  34214. name: "Mouth",
  34215. image: {
  34216. source: "./media/characters/ryth/mouth.svg"
  34217. }
  34218. },
  34219. tailmaw: {
  34220. height: math.unit(1.23, "feet"),
  34221. name: "Tailmaw",
  34222. image: {
  34223. source: "./media/characters/ryth/tailmaw.svg"
  34224. }
  34225. },
  34226. goia: {
  34227. height: math.unit(4, "meters"),
  34228. weight: math.unit(10800, "lb"),
  34229. name: "Goia",
  34230. image: {
  34231. source: "./media/characters/ryth/goia.svg",
  34232. extra: 745/640,
  34233. bottom: 107/852
  34234. }
  34235. },
  34236. goiaFront: {
  34237. height: math.unit(4, "meters"),
  34238. weight: math.unit(10800, "lb"),
  34239. name: "Goia (Front)",
  34240. image: {
  34241. source: "./media/characters/ryth/goia-front.svg",
  34242. extra: 750/586,
  34243. bottom: 114/864
  34244. }
  34245. },
  34246. goiaMaw: {
  34247. height: math.unit(5.55, "feet"),
  34248. name: "Goia Maw",
  34249. image: {
  34250. source: "./media/characters/ryth/goia-maw.svg"
  34251. }
  34252. },
  34253. goiaForepaw: {
  34254. height: math.unit(3.5, "feet"),
  34255. name: "Goia Forepaw",
  34256. image: {
  34257. source: "./media/characters/ryth/goia-forepaw.svg"
  34258. }
  34259. },
  34260. goiaHindpaw: {
  34261. height: math.unit(5.55, "feet"),
  34262. name: "Goia Hindpaw",
  34263. image: {
  34264. source: "./media/characters/ryth/goia-hindpaw.svg"
  34265. }
  34266. },
  34267. },
  34268. [
  34269. {
  34270. name: "Normal",
  34271. height: math.unit(4, "feet"),
  34272. default: true
  34273. },
  34274. ]
  34275. ))
  34276. characterMakers.push(() => makeCharacter(
  34277. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34278. {
  34279. front: {
  34280. height: math.unit(7, "feet"),
  34281. weight: math.unit(180, "lb"),
  34282. name: "Front",
  34283. image: {
  34284. source: "./media/characters/necrolance/front.svg",
  34285. extra: 1062/947,
  34286. bottom: 41/1103
  34287. }
  34288. },
  34289. back: {
  34290. height: math.unit(7, "feet"),
  34291. weight: math.unit(180, "lb"),
  34292. name: "Back",
  34293. image: {
  34294. source: "./media/characters/necrolance/back.svg",
  34295. extra: 1045/984,
  34296. bottom: 14/1059
  34297. }
  34298. },
  34299. wing: {
  34300. height: math.unit(2.67, "feet"),
  34301. name: "Wing",
  34302. image: {
  34303. source: "./media/characters/necrolance/wing.svg"
  34304. }
  34305. },
  34306. },
  34307. [
  34308. {
  34309. name: "Normal",
  34310. height: math.unit(7, "feet"),
  34311. default: true
  34312. },
  34313. ]
  34314. ))
  34315. characterMakers.push(() => makeCharacter(
  34316. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34317. {
  34318. front: {
  34319. height: math.unit(76, "meters"),
  34320. weight: math.unit(30000, "tons"),
  34321. name: "Front",
  34322. image: {
  34323. source: "./media/characters/tyler/front.svg",
  34324. extra: 1640/1640,
  34325. bottom: 114/1754
  34326. }
  34327. },
  34328. },
  34329. [
  34330. {
  34331. name: "Macro",
  34332. height: math.unit(76, "meters"),
  34333. default: true
  34334. },
  34335. ]
  34336. ))
  34337. characterMakers.push(() => makeCharacter(
  34338. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34339. {
  34340. front: {
  34341. height: math.unit(4 + 11/12, "feet"),
  34342. weight: math.unit(132, "lb"),
  34343. name: "Front",
  34344. image: {
  34345. source: "./media/characters/icey/front.svg",
  34346. extra: 2750/2550,
  34347. bottom: 33/2783
  34348. }
  34349. },
  34350. back: {
  34351. height: math.unit(4 + 11/12, "feet"),
  34352. weight: math.unit(132, "lb"),
  34353. name: "Back",
  34354. image: {
  34355. source: "./media/characters/icey/back.svg",
  34356. extra: 2624/2481,
  34357. bottom: 35/2659
  34358. }
  34359. },
  34360. },
  34361. [
  34362. {
  34363. name: "Normal",
  34364. height: math.unit(4 + 11/12, "feet"),
  34365. default: true
  34366. },
  34367. ]
  34368. ))
  34369. characterMakers.push(() => makeCharacter(
  34370. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34371. {
  34372. front: {
  34373. height: math.unit(100, "feet"),
  34374. weight: math.unit(0, "lb"),
  34375. name: "Front",
  34376. image: {
  34377. source: "./media/characters/smile/front.svg",
  34378. extra: 2983/2912,
  34379. bottom: 162/3145
  34380. }
  34381. },
  34382. back: {
  34383. height: math.unit(100, "feet"),
  34384. weight: math.unit(0, "lb"),
  34385. name: "Back",
  34386. image: {
  34387. source: "./media/characters/smile/back.svg",
  34388. extra: 3143/3031,
  34389. bottom: 91/3234
  34390. }
  34391. },
  34392. head: {
  34393. height: math.unit(26.3, "feet"),
  34394. weight: math.unit(0, "lb"),
  34395. name: "Head",
  34396. image: {
  34397. source: "./media/characters/smile/head.svg"
  34398. }
  34399. },
  34400. collar: {
  34401. height: math.unit(5.3, "feet"),
  34402. weight: math.unit(0, "lb"),
  34403. name: "Collar",
  34404. image: {
  34405. source: "./media/characters/smile/collar.svg"
  34406. }
  34407. },
  34408. },
  34409. [
  34410. {
  34411. name: "Macro",
  34412. height: math.unit(100, "feet"),
  34413. default: true
  34414. },
  34415. ]
  34416. ))
  34417. characterMakers.push(() => makeCharacter(
  34418. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34419. {
  34420. dragon: {
  34421. height: math.unit(26, "feet"),
  34422. weight: math.unit(36, "tons"),
  34423. name: "Dragon",
  34424. image: {
  34425. source: "./media/characters/arimphae/dragon.svg",
  34426. extra: 1574/983,
  34427. bottom: 357/1931
  34428. }
  34429. },
  34430. drake: {
  34431. height: math.unit(9, "feet"),
  34432. weight: math.unit(1.5, "tons"),
  34433. name: "Drake",
  34434. image: {
  34435. source: "./media/characters/arimphae/drake.svg",
  34436. extra: 1120/925,
  34437. bottom: 435/1555
  34438. }
  34439. },
  34440. },
  34441. [
  34442. {
  34443. name: "Small",
  34444. height: math.unit(26*5/9, "feet")
  34445. },
  34446. {
  34447. name: "Normal",
  34448. height: math.unit(26, "feet"),
  34449. default: true
  34450. },
  34451. ]
  34452. ))
  34453. characterMakers.push(() => makeCharacter(
  34454. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34455. {
  34456. front: {
  34457. height: math.unit(8 + 9/12, "feet"),
  34458. name: "Front",
  34459. image: {
  34460. source: "./media/characters/xander/front.svg",
  34461. extra: 1237/974,
  34462. bottom: 94/1331
  34463. }
  34464. },
  34465. },
  34466. [
  34467. {
  34468. name: "Normal",
  34469. height: math.unit(8 + 9/12, "feet"),
  34470. default: true
  34471. },
  34472. {
  34473. name: "Gaze Grabber",
  34474. height: math.unit(13 + 8/12, "feet")
  34475. },
  34476. {
  34477. name: "Jaw Dropper",
  34478. height: math.unit(27, "feet")
  34479. },
  34480. {
  34481. name: "Show Stopper",
  34482. height: math.unit(136, "feet")
  34483. },
  34484. {
  34485. name: "Superstar",
  34486. height: math.unit(1.9e6, "miles")
  34487. },
  34488. ]
  34489. ))
  34490. characterMakers.push(() => makeCharacter(
  34491. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34492. {
  34493. side: {
  34494. height: math.unit(2100, "feet"),
  34495. name: "Side",
  34496. image: {
  34497. source: "./media/characters/osiris/side.svg",
  34498. extra: 1105/939,
  34499. bottom: 167/1272
  34500. }
  34501. },
  34502. },
  34503. [
  34504. {
  34505. name: "Macro",
  34506. height: math.unit(2100, "feet"),
  34507. default: true
  34508. },
  34509. ]
  34510. ))
  34511. characterMakers.push(() => makeCharacter(
  34512. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34513. {
  34514. front: {
  34515. height: math.unit(6 + 8/12, "feet"),
  34516. weight: math.unit(225, "lb"),
  34517. name: "Front",
  34518. image: {
  34519. source: "./media/characters/rhys-londe/front.svg",
  34520. extra: 2258/2141,
  34521. bottom: 188/2446
  34522. }
  34523. },
  34524. back: {
  34525. height: math.unit(6 + 8/12, "feet"),
  34526. weight: math.unit(225, "lb"),
  34527. name: "Back",
  34528. image: {
  34529. source: "./media/characters/rhys-londe/back.svg",
  34530. extra: 2237/2137,
  34531. bottom: 63/2300
  34532. }
  34533. },
  34534. frontNsfw: {
  34535. height: math.unit(6 + 8/12, "feet"),
  34536. weight: math.unit(225, "lb"),
  34537. name: "Front (NSFW)",
  34538. image: {
  34539. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34540. extra: 2258/2141,
  34541. bottom: 188/2446
  34542. }
  34543. },
  34544. backNsfw: {
  34545. height: math.unit(6 + 8/12, "feet"),
  34546. weight: math.unit(225, "lb"),
  34547. name: "Back (NSFW)",
  34548. image: {
  34549. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34550. extra: 2237/2137,
  34551. bottom: 63/2300
  34552. }
  34553. },
  34554. dick: {
  34555. height: math.unit(30, "inches"),
  34556. name: "Dick",
  34557. image: {
  34558. source: "./media/characters/rhys-londe/dick.svg"
  34559. }
  34560. },
  34561. maw: {
  34562. height: math.unit(1.6, "feet"),
  34563. name: "Maw",
  34564. image: {
  34565. source: "./media/characters/rhys-londe/maw.svg"
  34566. }
  34567. },
  34568. },
  34569. [
  34570. {
  34571. name: "Normal",
  34572. height: math.unit(6 + 8/12, "feet"),
  34573. default: true
  34574. },
  34575. ]
  34576. ))
  34577. characterMakers.push(() => makeCharacter(
  34578. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34579. {
  34580. front: {
  34581. height: math.unit(3 + 10/12, "feet"),
  34582. weight: math.unit(90, "lb"),
  34583. name: "Front",
  34584. image: {
  34585. source: "./media/characters/taivas-ensim/front.svg",
  34586. extra: 1327/1216,
  34587. bottom: 96/1423
  34588. }
  34589. },
  34590. back: {
  34591. height: math.unit(3 + 10/12, "feet"),
  34592. weight: math.unit(90, "lb"),
  34593. name: "Back",
  34594. image: {
  34595. source: "./media/characters/taivas-ensim/back.svg",
  34596. extra: 1355/1247,
  34597. bottom: 11/1366
  34598. }
  34599. },
  34600. frontNsfw: {
  34601. height: math.unit(3 + 10/12, "feet"),
  34602. weight: math.unit(90, "lb"),
  34603. name: "Front (NSFW)",
  34604. image: {
  34605. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34606. extra: 1327/1216,
  34607. bottom: 96/1423
  34608. }
  34609. },
  34610. backNsfw: {
  34611. height: math.unit(3 + 10/12, "feet"),
  34612. weight: math.unit(90, "lb"),
  34613. name: "Back (NSFW)",
  34614. image: {
  34615. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34616. extra: 1355/1247,
  34617. bottom: 11/1366
  34618. }
  34619. },
  34620. },
  34621. [
  34622. {
  34623. name: "Normal",
  34624. height: math.unit(3 + 10/12, "feet"),
  34625. default: true
  34626. },
  34627. ]
  34628. ))
  34629. characterMakers.push(() => makeCharacter(
  34630. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34631. {
  34632. front: {
  34633. height: math.unit(9 + 6/12, "feet"),
  34634. weight: math.unit(940, "lb"),
  34635. name: "Front",
  34636. image: {
  34637. source: "./media/characters/byliss/front.svg",
  34638. extra: 1327/1290,
  34639. bottom: 82/1409
  34640. }
  34641. },
  34642. back: {
  34643. height: math.unit(9 + 6/12, "feet"),
  34644. weight: math.unit(940, "lb"),
  34645. name: "Back",
  34646. image: {
  34647. source: "./media/characters/byliss/back.svg",
  34648. extra: 1376/1349,
  34649. bottom: 9/1385
  34650. }
  34651. },
  34652. frontNsfw: {
  34653. height: math.unit(9 + 6/12, "feet"),
  34654. weight: math.unit(940, "lb"),
  34655. name: "Front (NSFW)",
  34656. image: {
  34657. source: "./media/characters/byliss/front-nsfw.svg",
  34658. extra: 1327/1290,
  34659. bottom: 82/1409
  34660. }
  34661. },
  34662. backNsfw: {
  34663. height: math.unit(9 + 6/12, "feet"),
  34664. weight: math.unit(940, "lb"),
  34665. name: "Back (NSFW)",
  34666. image: {
  34667. source: "./media/characters/byliss/back-nsfw.svg",
  34668. extra: 1376/1349,
  34669. bottom: 9/1385
  34670. }
  34671. },
  34672. },
  34673. [
  34674. {
  34675. name: "Normal",
  34676. height: math.unit(9 + 6/12, "feet"),
  34677. default: true
  34678. },
  34679. ]
  34680. ))
  34681. characterMakers.push(() => makeCharacter(
  34682. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34683. {
  34684. front: {
  34685. height: math.unit(5 + 2/12, "feet"),
  34686. weight: math.unit(200, "lb"),
  34687. name: "Front",
  34688. image: {
  34689. source: "./media/characters/noraly/front.svg",
  34690. extra: 4985/4773,
  34691. bottom: 150/5135
  34692. }
  34693. },
  34694. full: {
  34695. height: math.unit(5 + 2/12, "feet"),
  34696. weight: math.unit(164, "lb"),
  34697. name: "Full",
  34698. image: {
  34699. source: "./media/characters/noraly/full.svg",
  34700. extra: 1114/1059,
  34701. bottom: 35/1149
  34702. }
  34703. },
  34704. fuller: {
  34705. height: math.unit(5 + 2/12, "feet"),
  34706. weight: math.unit(230, "lb"),
  34707. name: "Fuller",
  34708. image: {
  34709. source: "./media/characters/noraly/fuller.svg",
  34710. extra: 1114/1059,
  34711. bottom: 35/1149
  34712. }
  34713. },
  34714. fullest: {
  34715. height: math.unit(5 + 2/12, "feet"),
  34716. weight: math.unit(300, "lb"),
  34717. name: "Fullest",
  34718. image: {
  34719. source: "./media/characters/noraly/fullest.svg",
  34720. extra: 1114/1059,
  34721. bottom: 35/1149
  34722. }
  34723. },
  34724. },
  34725. [
  34726. {
  34727. name: "Normal",
  34728. height: math.unit(5 + 2/12, "feet"),
  34729. default: true
  34730. },
  34731. ]
  34732. ))
  34733. characterMakers.push(() => makeCharacter(
  34734. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34735. {
  34736. front: {
  34737. height: math.unit(5 + 2/12, "feet"),
  34738. weight: math.unit(210, "lb"),
  34739. name: "Front",
  34740. image: {
  34741. source: "./media/characters/pera/front.svg",
  34742. extra: 1560/1531,
  34743. bottom: 165/1725
  34744. }
  34745. },
  34746. back: {
  34747. height: math.unit(5 + 2/12, "feet"),
  34748. weight: math.unit(210, "lb"),
  34749. name: "Back",
  34750. image: {
  34751. source: "./media/characters/pera/back.svg",
  34752. extra: 1523/1493,
  34753. bottom: 152/1675
  34754. }
  34755. },
  34756. dick: {
  34757. height: math.unit(2.4, "feet"),
  34758. name: "Dick",
  34759. image: {
  34760. source: "./media/characters/pera/dick.svg"
  34761. }
  34762. },
  34763. },
  34764. [
  34765. {
  34766. name: "Normal",
  34767. height: math.unit(5 + 2/12, "feet"),
  34768. default: true
  34769. },
  34770. ]
  34771. ))
  34772. characterMakers.push(() => makeCharacter(
  34773. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34774. {
  34775. front: {
  34776. height: math.unit(12, "feet"),
  34777. weight: math.unit(3200, "lb"),
  34778. name: "Front",
  34779. image: {
  34780. source: "./media/characters/julian/front.svg",
  34781. extra: 2962/2701,
  34782. bottom: 184/3146
  34783. }
  34784. },
  34785. maw: {
  34786. height: math.unit(5.35, "feet"),
  34787. name: "Maw",
  34788. image: {
  34789. source: "./media/characters/julian/maw.svg"
  34790. }
  34791. },
  34792. paw: {
  34793. height: math.unit(3.07, "feet"),
  34794. name: "Paw",
  34795. image: {
  34796. source: "./media/characters/julian/paw.svg"
  34797. }
  34798. },
  34799. },
  34800. [
  34801. {
  34802. name: "Default",
  34803. height: math.unit(12, "feet"),
  34804. default: true
  34805. },
  34806. {
  34807. name: "Big",
  34808. height: math.unit(50, "feet")
  34809. },
  34810. {
  34811. name: "Really Big",
  34812. height: math.unit(1, "mile")
  34813. },
  34814. {
  34815. name: "Extremely Big",
  34816. height: math.unit(100, "miles")
  34817. },
  34818. {
  34819. name: "Planet Hugger",
  34820. height: math.unit(200, "megameters")
  34821. },
  34822. {
  34823. name: "Unreasonably Big",
  34824. height: math.unit(1e300, "meters")
  34825. },
  34826. ]
  34827. ))
  34828. characterMakers.push(() => makeCharacter(
  34829. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34830. {
  34831. solgooleo: {
  34832. height: math.unit(4, "meters"),
  34833. weight: math.unit(6000*1.5, "kg"),
  34834. volume: math.unit(6000, "liters"),
  34835. name: "Solgooleo",
  34836. image: {
  34837. source: "./media/characters/pi/solgooleo.svg",
  34838. extra: 388/331,
  34839. bottom: 29/417
  34840. }
  34841. },
  34842. },
  34843. [
  34844. {
  34845. name: "Normal",
  34846. height: math.unit(4, "meters"),
  34847. default: true
  34848. },
  34849. ]
  34850. ))
  34851. characterMakers.push(() => makeCharacter(
  34852. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34853. {
  34854. front: {
  34855. height: math.unit(8, "feet"),
  34856. weight: math.unit(4, "tons"),
  34857. name: "Front",
  34858. image: {
  34859. source: "./media/characters/shaun/front.svg",
  34860. extra: 503/495,
  34861. bottom: 20/523
  34862. }
  34863. },
  34864. back: {
  34865. height: math.unit(8, "feet"),
  34866. weight: math.unit(4, "tons"),
  34867. name: "Back",
  34868. image: {
  34869. source: "./media/characters/shaun/back.svg",
  34870. extra: 487/480,
  34871. bottom: 20/507
  34872. }
  34873. },
  34874. },
  34875. [
  34876. {
  34877. name: "Lorg",
  34878. height: math.unit(8, "feet"),
  34879. default: true
  34880. },
  34881. ]
  34882. ))
  34883. characterMakers.push(() => makeCharacter(
  34884. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34885. {
  34886. frontAnthro: {
  34887. height: math.unit(7, "feet"),
  34888. name: "Front",
  34889. image: {
  34890. source: "./media/characters/sini/front-anthro.svg",
  34891. extra: 726/678,
  34892. bottom: 35/761
  34893. },
  34894. form: "anthro",
  34895. default: true
  34896. },
  34897. backAnthro: {
  34898. height: math.unit(7, "feet"),
  34899. name: "Back",
  34900. image: {
  34901. source: "./media/characters/sini/back-anthro.svg",
  34902. extra: 743/701,
  34903. bottom: 12/755
  34904. },
  34905. form: "anthro",
  34906. },
  34907. frontAnthroNsfw: {
  34908. height: math.unit(7, "feet"),
  34909. name: "Front (NSFW)",
  34910. image: {
  34911. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34912. extra: 726/678,
  34913. bottom: 35/761
  34914. },
  34915. form: "anthro"
  34916. },
  34917. backAnthroNsfw: {
  34918. height: math.unit(7, "feet"),
  34919. name: "Back (NSFW)",
  34920. image: {
  34921. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34922. extra: 743/701,
  34923. bottom: 12/755
  34924. },
  34925. form: "anthro",
  34926. },
  34927. mawAnthro: {
  34928. height: math.unit(2.14, "feet"),
  34929. name: "Maw",
  34930. image: {
  34931. source: "./media/characters/sini/maw-anthro.svg"
  34932. },
  34933. form: "anthro"
  34934. },
  34935. dick: {
  34936. height: math.unit(1.45, "feet"),
  34937. name: "Dick",
  34938. image: {
  34939. source: "./media/characters/sini/dick-anthro.svg"
  34940. },
  34941. form: "anthro"
  34942. },
  34943. feral: {
  34944. height: math.unit(16, "feet"),
  34945. name: "Feral",
  34946. image: {
  34947. source: "./media/characters/sini/feral.svg",
  34948. extra: 814/605,
  34949. bottom: 11/825
  34950. },
  34951. form: "feral",
  34952. default: true
  34953. },
  34954. feralNsfw: {
  34955. height: math.unit(16, "feet"),
  34956. name: "Feral (NSFW)",
  34957. image: {
  34958. source: "./media/characters/sini/feral-nsfw.svg",
  34959. extra: 814/605,
  34960. bottom: 11/825
  34961. },
  34962. form: "feral"
  34963. },
  34964. mawFeral: {
  34965. height: math.unit(5.66, "feet"),
  34966. name: "Maw",
  34967. image: {
  34968. source: "./media/characters/sini/maw-feral.svg"
  34969. },
  34970. form: "feral",
  34971. },
  34972. pawFeral: {
  34973. height: math.unit(5.17, "feet"),
  34974. name: "Paw",
  34975. image: {
  34976. source: "./media/characters/sini/paw-feral.svg"
  34977. },
  34978. form: "feral",
  34979. },
  34980. rumpFeral: {
  34981. height: math.unit(13.11, "feet"),
  34982. name: "Rump",
  34983. image: {
  34984. source: "./media/characters/sini/rump-feral.svg"
  34985. },
  34986. form: "feral",
  34987. },
  34988. dickFeral: {
  34989. height: math.unit(1, "feet"),
  34990. name: "Dick",
  34991. image: {
  34992. source: "./media/characters/sini/dick-feral.svg"
  34993. },
  34994. form: "feral",
  34995. },
  34996. eyeFeral: {
  34997. height: math.unit(1.23, "feet"),
  34998. name: "Eye",
  34999. image: {
  35000. source: "./media/characters/sini/eye-feral.svg"
  35001. },
  35002. form: "feral",
  35003. },
  35004. },
  35005. [
  35006. {
  35007. name: "Normal",
  35008. height: math.unit(7, "feet"),
  35009. default: true,
  35010. form: "anthro"
  35011. },
  35012. {
  35013. name: "Normal",
  35014. height: math.unit(16, "feet"),
  35015. default: true,
  35016. form: "feral"
  35017. },
  35018. ],
  35019. {
  35020. "anthro": {
  35021. name: "Anthro",
  35022. default: true
  35023. },
  35024. "feral": {
  35025. name: "Feral",
  35026. }
  35027. }
  35028. ))
  35029. characterMakers.push(() => makeCharacter(
  35030. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35031. {
  35032. side: {
  35033. height: math.unit(47.2, "meters"),
  35034. weight: math.unit(10000, "tons"),
  35035. name: "Side",
  35036. image: {
  35037. source: "./media/characters/raylldo/side.svg",
  35038. extra: 2363/642,
  35039. bottom: 221/2584
  35040. }
  35041. },
  35042. top: {
  35043. height: math.unit(240, "meters"),
  35044. weight: math.unit(10000, "tons"),
  35045. name: "Top",
  35046. image: {
  35047. source: "./media/characters/raylldo/top.svg"
  35048. }
  35049. },
  35050. bottom: {
  35051. height: math.unit(240, "meters"),
  35052. weight: math.unit(10000, "tons"),
  35053. name: "Bottom",
  35054. image: {
  35055. source: "./media/characters/raylldo/bottom.svg"
  35056. }
  35057. },
  35058. head: {
  35059. height: math.unit(38.6, "meters"),
  35060. name: "Head",
  35061. image: {
  35062. source: "./media/characters/raylldo/head.svg",
  35063. extra: 1335/1112,
  35064. bottom: 0/1335
  35065. }
  35066. },
  35067. maw: {
  35068. height: math.unit(16.37, "meters"),
  35069. name: "Maw",
  35070. image: {
  35071. source: "./media/characters/raylldo/maw.svg",
  35072. extra: 883/660,
  35073. bottom: 0/883
  35074. },
  35075. extraAttributes: {
  35076. preyCapacity: {
  35077. name: "Capacity",
  35078. power: 3,
  35079. type: "volume",
  35080. base: math.unit(1000, "people")
  35081. },
  35082. tongueSize: {
  35083. name: "Tongue Size",
  35084. power: 2,
  35085. type: "area",
  35086. base: math.unit(21, "m^2")
  35087. }
  35088. }
  35089. },
  35090. forepaw: {
  35091. height: math.unit(18, "meters"),
  35092. name: "Forepaw",
  35093. image: {
  35094. source: "./media/characters/raylldo/forepaw.svg"
  35095. }
  35096. },
  35097. hindpaw: {
  35098. height: math.unit(23, "meters"),
  35099. name: "Hindpaw",
  35100. image: {
  35101. source: "./media/characters/raylldo/hindpaw.svg"
  35102. }
  35103. },
  35104. genitals: {
  35105. height: math.unit(42, "meters"),
  35106. name: "Genitals",
  35107. image: {
  35108. source: "./media/characters/raylldo/genitals.svg"
  35109. }
  35110. },
  35111. },
  35112. [
  35113. {
  35114. name: "Normal",
  35115. height: math.unit(47.2, "meters"),
  35116. default: true
  35117. },
  35118. ]
  35119. ))
  35120. characterMakers.push(() => makeCharacter(
  35121. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35122. {
  35123. anthroFront: {
  35124. height: math.unit(9, "feet"),
  35125. weight: math.unit(600, "lb"),
  35126. name: "Anthro (Front)",
  35127. image: {
  35128. source: "./media/characters/glint/anthro-front.svg",
  35129. extra: 1097/1018,
  35130. bottom: 28/1125
  35131. }
  35132. },
  35133. anthroBack: {
  35134. height: math.unit(9, "feet"),
  35135. weight: math.unit(600, "lb"),
  35136. name: "Anthro (Back)",
  35137. image: {
  35138. source: "./media/characters/glint/anthro-back.svg",
  35139. extra: 1154/997,
  35140. bottom: 36/1190
  35141. }
  35142. },
  35143. feral: {
  35144. height: math.unit(11, "feet"),
  35145. weight: math.unit(50000, "lb"),
  35146. name: "Feral",
  35147. image: {
  35148. source: "./media/characters/glint/feral.svg",
  35149. extra: 3035/1585,
  35150. bottom: 1169/4204
  35151. }
  35152. },
  35153. dickAnthro: {
  35154. height: math.unit(0.7, "meters"),
  35155. name: "Dick (Anthro)",
  35156. image: {
  35157. source: "./media/characters/glint/dick-anthro.svg"
  35158. }
  35159. },
  35160. dickFeral: {
  35161. height: math.unit(2.65, "meters"),
  35162. name: "Dick (Feral)",
  35163. image: {
  35164. source: "./media/characters/glint/dick-feral.svg"
  35165. }
  35166. },
  35167. slitHidden: {
  35168. height: math.unit(5.85, "meters"),
  35169. name: "Slit (Hidden)",
  35170. image: {
  35171. source: "./media/characters/glint/slit-hidden.svg"
  35172. }
  35173. },
  35174. slitErect: {
  35175. height: math.unit(5.85, "meters"),
  35176. name: "Slit (Erect)",
  35177. image: {
  35178. source: "./media/characters/glint/slit-erect.svg"
  35179. }
  35180. },
  35181. mawAnthro: {
  35182. height: math.unit(0.63, "meters"),
  35183. name: "Maw (Anthro)",
  35184. image: {
  35185. source: "./media/characters/glint/maw.svg"
  35186. }
  35187. },
  35188. mawFeral: {
  35189. height: math.unit(2.89, "meters"),
  35190. name: "Maw (Feral)",
  35191. image: {
  35192. source: "./media/characters/glint/maw.svg"
  35193. }
  35194. },
  35195. },
  35196. [
  35197. {
  35198. name: "Normal",
  35199. height: math.unit(9, "feet"),
  35200. default: true
  35201. },
  35202. ]
  35203. ))
  35204. characterMakers.push(() => makeCharacter(
  35205. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35206. {
  35207. side: {
  35208. height: math.unit(15, "feet"),
  35209. weight: math.unit(5000, "kg"),
  35210. name: "Side",
  35211. image: {
  35212. source: "./media/characters/kairne/side.svg",
  35213. extra: 979/811,
  35214. bottom: 13/992
  35215. }
  35216. },
  35217. front: {
  35218. height: math.unit(15, "feet"),
  35219. weight: math.unit(5000, "kg"),
  35220. name: "Front",
  35221. image: {
  35222. source: "./media/characters/kairne/front.svg",
  35223. extra: 908/814,
  35224. bottom: 26/934
  35225. }
  35226. },
  35227. sideNsfw: {
  35228. height: math.unit(15, "feet"),
  35229. weight: math.unit(5000, "kg"),
  35230. name: "Side (NSFW)",
  35231. image: {
  35232. source: "./media/characters/kairne/side-nsfw.svg",
  35233. extra: 979/811,
  35234. bottom: 13/992
  35235. }
  35236. },
  35237. frontNsfw: {
  35238. height: math.unit(15, "feet"),
  35239. weight: math.unit(5000, "kg"),
  35240. name: "Front (NSFW)",
  35241. image: {
  35242. source: "./media/characters/kairne/front-nsfw.svg",
  35243. extra: 908/814,
  35244. bottom: 26/934
  35245. }
  35246. },
  35247. dickCaged: {
  35248. height: math.unit(0.65, "meters"),
  35249. name: "Dick-caged",
  35250. image: {
  35251. source: "./media/characters/kairne/dick-caged.svg"
  35252. }
  35253. },
  35254. dick: {
  35255. height: math.unit(0.79, "meters"),
  35256. name: "Dick",
  35257. image: {
  35258. source: "./media/characters/kairne/dick.svg"
  35259. }
  35260. },
  35261. genitals: {
  35262. height: math.unit(1.29, "meters"),
  35263. name: "Genitals",
  35264. image: {
  35265. source: "./media/characters/kairne/genitals.svg"
  35266. }
  35267. },
  35268. maw: {
  35269. height: math.unit(1.73, "meters"),
  35270. name: "Maw",
  35271. image: {
  35272. source: "./media/characters/kairne/maw.svg"
  35273. }
  35274. },
  35275. },
  35276. [
  35277. {
  35278. name: "Normal",
  35279. height: math.unit(15, "feet"),
  35280. default: true
  35281. },
  35282. ]
  35283. ))
  35284. characterMakers.push(() => makeCharacter(
  35285. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35286. {
  35287. front: {
  35288. height: math.unit(5 + 8/12, "feet"),
  35289. weight: math.unit(139, "lb"),
  35290. name: "Front",
  35291. image: {
  35292. source: "./media/characters/biscuit-jackal/front.svg",
  35293. extra: 2106/1961,
  35294. bottom: 58/2164
  35295. }
  35296. },
  35297. back: {
  35298. height: math.unit(5 + 8/12, "feet"),
  35299. weight: math.unit(139, "lb"),
  35300. name: "Back",
  35301. image: {
  35302. source: "./media/characters/biscuit-jackal/back.svg",
  35303. extra: 2132/1976,
  35304. bottom: 57/2189
  35305. }
  35306. },
  35307. werejackal: {
  35308. height: math.unit(6 + 3/12, "feet"),
  35309. weight: math.unit(188, "lb"),
  35310. name: "Werejackal",
  35311. image: {
  35312. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35313. extra: 2373/2178,
  35314. bottom: 53/2426
  35315. }
  35316. },
  35317. },
  35318. [
  35319. {
  35320. name: "Normal",
  35321. height: math.unit(5 + 8/12, "feet"),
  35322. default: true
  35323. },
  35324. ]
  35325. ))
  35326. characterMakers.push(() => makeCharacter(
  35327. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35328. {
  35329. front: {
  35330. height: math.unit(140, "cm"),
  35331. weight: math.unit(45, "kg"),
  35332. name: "Front",
  35333. image: {
  35334. source: "./media/characters/tayra-white/front.svg",
  35335. extra: 2229/2192,
  35336. bottom: 75/2304
  35337. }
  35338. },
  35339. },
  35340. [
  35341. {
  35342. name: "Normal",
  35343. height: math.unit(140, "cm"),
  35344. default: true
  35345. },
  35346. ]
  35347. ))
  35348. characterMakers.push(() => makeCharacter(
  35349. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35350. {
  35351. front: {
  35352. height: math.unit(4 + 5/12, "feet"),
  35353. name: "Front",
  35354. image: {
  35355. source: "./media/characters/scoop/front.svg",
  35356. extra: 1257/1136,
  35357. bottom: 69/1326
  35358. }
  35359. },
  35360. back: {
  35361. height: math.unit(4 + 5/12, "feet"),
  35362. name: "Back",
  35363. image: {
  35364. source: "./media/characters/scoop/back.svg",
  35365. extra: 1321/1152,
  35366. bottom: 32/1353
  35367. }
  35368. },
  35369. maw: {
  35370. height: math.unit(0.68, "feet"),
  35371. name: "Maw",
  35372. image: {
  35373. source: "./media/characters/scoop/maw.svg"
  35374. }
  35375. },
  35376. },
  35377. [
  35378. {
  35379. name: "Really Small",
  35380. height: math.unit(1, "mm")
  35381. },
  35382. {
  35383. name: "Micro",
  35384. height: math.unit(1, "inch")
  35385. },
  35386. {
  35387. name: "Normal",
  35388. height: math.unit(4 + 5/12, "feet"),
  35389. default: true
  35390. },
  35391. {
  35392. name: "Macro",
  35393. height: math.unit(200, "feet")
  35394. },
  35395. {
  35396. name: "Megamacro",
  35397. height: math.unit(3240, "feet")
  35398. },
  35399. {
  35400. name: "Teramacro",
  35401. height: math.unit(2500, "miles")
  35402. },
  35403. ]
  35404. ))
  35405. characterMakers.push(() => makeCharacter(
  35406. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35407. {
  35408. front: {
  35409. height: math.unit(15 + 7/12, "feet"),
  35410. weight: math.unit(1150, "tons"),
  35411. name: "Front",
  35412. image: {
  35413. source: "./media/characters/saphinara/front.svg",
  35414. extra: 1837/1643,
  35415. bottom: 84/1921
  35416. },
  35417. form: "normal",
  35418. default: true
  35419. },
  35420. side: {
  35421. height: math.unit(15 + 7/12, "feet"),
  35422. weight: math.unit(1150, "tons"),
  35423. name: "Side",
  35424. image: {
  35425. source: "./media/characters/saphinara/side.svg",
  35426. extra: 605/547,
  35427. bottom: 6/611
  35428. },
  35429. form: "normal"
  35430. },
  35431. back: {
  35432. height: math.unit(15 + 7/12, "feet"),
  35433. weight: math.unit(1150, "tons"),
  35434. name: "Back",
  35435. image: {
  35436. source: "./media/characters/saphinara/back.svg",
  35437. extra: 591/531,
  35438. bottom: 13/604
  35439. },
  35440. form: "normal"
  35441. },
  35442. frontTail: {
  35443. height: math.unit(15 + 7/12, "feet"),
  35444. weight: math.unit(1150, "tons"),
  35445. name: "Front (Full Tail)",
  35446. image: {
  35447. source: "./media/characters/saphinara/front-tail.svg",
  35448. extra: 2256/1630,
  35449. bottom: 261/2517
  35450. },
  35451. form: "normal"
  35452. },
  35453. insides: {
  35454. height: math.unit(11.92, "feet"),
  35455. name: "Insides",
  35456. image: {
  35457. source: "./media/characters/saphinara/insides.svg"
  35458. },
  35459. form: "normal"
  35460. },
  35461. head: {
  35462. height: math.unit(4.17, "feet"),
  35463. name: "Head",
  35464. image: {
  35465. source: "./media/characters/saphinara/head.svg"
  35466. },
  35467. form: "normal"
  35468. },
  35469. tongue: {
  35470. height: math.unit(4.60, "feet"),
  35471. name: "Tongue",
  35472. image: {
  35473. source: "./media/characters/saphinara/tongue.svg"
  35474. },
  35475. form: "normal"
  35476. },
  35477. headEnraged: {
  35478. height: math.unit(5.55, "feet"),
  35479. name: "Head (Enraged)",
  35480. image: {
  35481. source: "./media/characters/saphinara/head-enraged.svg"
  35482. },
  35483. form: "normal"
  35484. },
  35485. wings: {
  35486. height: math.unit(11.95, "feet"),
  35487. name: "Wings",
  35488. image: {
  35489. source: "./media/characters/saphinara/wings.svg"
  35490. },
  35491. form: "normal"
  35492. },
  35493. feathers: {
  35494. height: math.unit(8.92, "feet"),
  35495. name: "Feathers",
  35496. image: {
  35497. source: "./media/characters/saphinara/feathers.svg"
  35498. },
  35499. form: "normal"
  35500. },
  35501. shackles: {
  35502. height: math.unit(2, "feet"),
  35503. name: "Shackles",
  35504. image: {
  35505. source: "./media/characters/saphinara/shackles.svg"
  35506. },
  35507. form: "normal"
  35508. },
  35509. eyes: {
  35510. height: math.unit(1.331, "feet"),
  35511. name: "Eyes",
  35512. image: {
  35513. source: "./media/characters/saphinara/eyes.svg"
  35514. },
  35515. form: "normal"
  35516. },
  35517. eyesEnraged: {
  35518. height: math.unit(1.331, "feet"),
  35519. name: "Eyes (Enraged)",
  35520. image: {
  35521. source: "./media/characters/saphinara/eyes-enraged.svg"
  35522. },
  35523. form: "normal"
  35524. },
  35525. trueFormSide: {
  35526. height: math.unit(200, "feet"),
  35527. weight: math.unit(1e7, "tons"),
  35528. name: "Side",
  35529. image: {
  35530. source: "./media/characters/saphinara/true-form-side.svg",
  35531. extra: 1399/770,
  35532. bottom: 97/1496
  35533. },
  35534. form: "true-form",
  35535. default: true
  35536. },
  35537. trueFormMaw: {
  35538. height: math.unit(71.5, "feet"),
  35539. name: "Maw",
  35540. image: {
  35541. source: "./media/characters/saphinara/true-form-maw.svg",
  35542. extra: 2302/1453,
  35543. bottom: 0/2302
  35544. },
  35545. form: "true-form"
  35546. },
  35547. meowberusSide: {
  35548. height: math.unit(75, "feet"),
  35549. weight: math.unit(180000, "kg"),
  35550. preyCapacity: math.unit(50000, "people"),
  35551. name: "Side",
  35552. image: {
  35553. source: "./media/characters/saphinara/meowberus-side.svg",
  35554. extra: 1400/711,
  35555. bottom: 126/1526
  35556. },
  35557. form: "meowberus",
  35558. extraAttributes: {
  35559. "pawArea": {
  35560. name: "Paw Size",
  35561. power: 2,
  35562. type: "area",
  35563. base: math.unit(35, "m^2")
  35564. }
  35565. }
  35566. },
  35567. },
  35568. [
  35569. {
  35570. name: "Normal",
  35571. height: math.unit(15 + 7/12, "feet"),
  35572. default: true,
  35573. form: "normal"
  35574. },
  35575. {
  35576. name: "Angry",
  35577. height: math.unit(30 + 6/12, "feet"),
  35578. form: "normal"
  35579. },
  35580. {
  35581. name: "Enraged",
  35582. height: math.unit(102 + 1/12, "feet"),
  35583. form: "normal"
  35584. },
  35585. {
  35586. name: "True",
  35587. height: math.unit(200, "feet"),
  35588. default: true,
  35589. form: "true-form"
  35590. },
  35591. {
  35592. name: "Normal",
  35593. height: math.unit(75, "feet"),
  35594. default: true,
  35595. form: "meowberus"
  35596. },
  35597. ],
  35598. {
  35599. "normal": {
  35600. name: "Normal",
  35601. default: true
  35602. },
  35603. "true-form": {
  35604. name: "True Form"
  35605. },
  35606. "meowberus": {
  35607. name: "Meowberus",
  35608. },
  35609. }
  35610. ))
  35611. characterMakers.push(() => makeCharacter(
  35612. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35613. {
  35614. front: {
  35615. height: math.unit(6 + 8/12, "feet"),
  35616. weight: math.unit(300, "lb"),
  35617. name: "Front",
  35618. image: {
  35619. source: "./media/characters/jrain/front.svg",
  35620. extra: 3039/2865,
  35621. bottom: 399/3438
  35622. }
  35623. },
  35624. back: {
  35625. height: math.unit(6 + 8/12, "feet"),
  35626. weight: math.unit(300, "lb"),
  35627. name: "Back",
  35628. image: {
  35629. source: "./media/characters/jrain/back.svg",
  35630. extra: 3089/2938,
  35631. bottom: 172/3261
  35632. }
  35633. },
  35634. head: {
  35635. height: math.unit(2.14, "feet"),
  35636. name: "Head",
  35637. image: {
  35638. source: "./media/characters/jrain/head.svg"
  35639. }
  35640. },
  35641. maw: {
  35642. height: math.unit(1.77, "feet"),
  35643. name: "Maw",
  35644. image: {
  35645. source: "./media/characters/jrain/maw.svg"
  35646. }
  35647. },
  35648. leftHand: {
  35649. height: math.unit(1.1, "feet"),
  35650. name: "Left Hand",
  35651. image: {
  35652. source: "./media/characters/jrain/left-hand.svg"
  35653. }
  35654. },
  35655. rightHand: {
  35656. height: math.unit(1.1, "feet"),
  35657. name: "Right Hand",
  35658. image: {
  35659. source: "./media/characters/jrain/right-hand.svg"
  35660. }
  35661. },
  35662. eye: {
  35663. height: math.unit(0.35, "feet"),
  35664. name: "Eye",
  35665. image: {
  35666. source: "./media/characters/jrain/eye.svg"
  35667. }
  35668. },
  35669. },
  35670. [
  35671. {
  35672. name: "Normal",
  35673. height: math.unit(6 + 8/12, "feet"),
  35674. default: true
  35675. },
  35676. {
  35677. name: "Casually Large",
  35678. height: math.unit(25, "feet")
  35679. },
  35680. {
  35681. name: "Giant",
  35682. height: math.unit(100, "feet")
  35683. },
  35684. {
  35685. name: "Kaiju",
  35686. height: math.unit(300, "feet")
  35687. },
  35688. ]
  35689. ))
  35690. characterMakers.push(() => makeCharacter(
  35691. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35692. {
  35693. dragon: {
  35694. height: math.unit(5, "meters"),
  35695. name: "Dragon",
  35696. image: {
  35697. source: "./media/characters/sabrina/dragon.svg",
  35698. extra: 3670 / 2365,
  35699. bottom: 333 / 4003
  35700. }
  35701. },
  35702. gryphon: {
  35703. height: math.unit(3, "meters"),
  35704. name: "Gryphon",
  35705. image: {
  35706. source: "./media/characters/sabrina/gryphon.svg",
  35707. extra: 1576 / 945,
  35708. bottom: 71 / 1647
  35709. }
  35710. },
  35711. snake: {
  35712. height: math.unit(12, "meters"),
  35713. name: "Snake",
  35714. image: {
  35715. source: "./media/characters/sabrina/snake.svg",
  35716. extra: 1758 / 1320,
  35717. bottom: 186 / 1944
  35718. }
  35719. },
  35720. collar: {
  35721. height: math.unit(1.86, "meters"),
  35722. name: "Collar",
  35723. image: {
  35724. source: "./media/characters/sabrina/collar.svg"
  35725. }
  35726. },
  35727. eye: {
  35728. height: math.unit(0.53, "meters"),
  35729. name: "Eye",
  35730. image: {
  35731. source: "./media/characters/sabrina/eye.svg"
  35732. }
  35733. },
  35734. foot: {
  35735. height: math.unit(1.86, "meters"),
  35736. name: "Foot",
  35737. image: {
  35738. source: "./media/characters/sabrina/foot.svg"
  35739. }
  35740. },
  35741. hand: {
  35742. height: math.unit(1.32, "meters"),
  35743. name: "Hand",
  35744. image: {
  35745. source: "./media/characters/sabrina/hand.svg"
  35746. }
  35747. },
  35748. head: {
  35749. height: math.unit(2.44, "meters"),
  35750. name: "Head",
  35751. image: {
  35752. source: "./media/characters/sabrina/head.svg"
  35753. }
  35754. },
  35755. headAngry: {
  35756. height: math.unit(2.44, "meters"),
  35757. name: "Head (Angry))",
  35758. image: {
  35759. source: "./media/characters/sabrina/head-angry.svg"
  35760. }
  35761. },
  35762. maw: {
  35763. height: math.unit(1.65, "meters"),
  35764. name: "Maw",
  35765. image: {
  35766. source: "./media/characters/sabrina/maw.svg"
  35767. }
  35768. },
  35769. spikes: {
  35770. height: math.unit(1.69, "meters"),
  35771. name: "Spikes",
  35772. image: {
  35773. source: "./media/characters/sabrina/spikes.svg"
  35774. }
  35775. },
  35776. stomach: {
  35777. height: math.unit(1.15, "meters"),
  35778. name: "Stomach",
  35779. image: {
  35780. source: "./media/characters/sabrina/stomach.svg"
  35781. }
  35782. },
  35783. tongue: {
  35784. height: math.unit(1.27, "meters"),
  35785. name: "Tongue",
  35786. image: {
  35787. source: "./media/characters/sabrina/tongue.svg"
  35788. }
  35789. },
  35790. wingDorsal: {
  35791. height: math.unit(4.85, "meters"),
  35792. name: "Wing (Dorsal)",
  35793. image: {
  35794. source: "./media/characters/sabrina/wing-dorsal.svg"
  35795. }
  35796. },
  35797. wingVentral: {
  35798. height: math.unit(4.85, "meters"),
  35799. name: "Wing (Ventral)",
  35800. image: {
  35801. source: "./media/characters/sabrina/wing-ventral.svg"
  35802. }
  35803. },
  35804. },
  35805. [
  35806. {
  35807. name: "Normal",
  35808. height: math.unit(5, "meters"),
  35809. default: true
  35810. },
  35811. ]
  35812. ))
  35813. characterMakers.push(() => makeCharacter(
  35814. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35815. {
  35816. frontMaid: {
  35817. height: math.unit(5 + 5/12, "feet"),
  35818. weight: math.unit(130, "lb"),
  35819. name: "Front (Maid)",
  35820. image: {
  35821. source: "./media/characters/midnight-tales/front-maid.svg",
  35822. extra: 489/454,
  35823. bottom: 61/550
  35824. }
  35825. },
  35826. frontFormal: {
  35827. height: math.unit(5 + 5/12, "feet"),
  35828. weight: math.unit(130, "lb"),
  35829. name: "Front (Formal)",
  35830. image: {
  35831. source: "./media/characters/midnight-tales/front-formal.svg",
  35832. extra: 489/454,
  35833. bottom: 61/550
  35834. }
  35835. },
  35836. back: {
  35837. height: math.unit(5 + 5/12, "feet"),
  35838. weight: math.unit(130, "lb"),
  35839. name: "Back",
  35840. image: {
  35841. source: "./media/characters/midnight-tales/back.svg",
  35842. extra: 498/456,
  35843. bottom: 33/531
  35844. }
  35845. },
  35846. frontBeast: {
  35847. height: math.unit(40, "feet"),
  35848. weight: math.unit(64000, "lb"),
  35849. name: "Front (Beast)",
  35850. image: {
  35851. source: "./media/characters/midnight-tales/front-beast.svg",
  35852. extra: 927/860,
  35853. bottom: 53/980
  35854. }
  35855. },
  35856. backBeast: {
  35857. height: math.unit(40, "feet"),
  35858. weight: math.unit(64000, "lb"),
  35859. name: "Back (Beast)",
  35860. image: {
  35861. source: "./media/characters/midnight-tales/back-beast.svg",
  35862. extra: 929/855,
  35863. bottom: 16/945
  35864. }
  35865. },
  35866. footBeast: {
  35867. height: math.unit(6.7, "feet"),
  35868. name: "Foot (Beast)",
  35869. image: {
  35870. source: "./media/characters/midnight-tales/foot-beast.svg"
  35871. }
  35872. },
  35873. headBeast: {
  35874. height: math.unit(8, "feet"),
  35875. name: "Head (Beast)",
  35876. image: {
  35877. source: "./media/characters/midnight-tales/head-beast.svg"
  35878. }
  35879. },
  35880. },
  35881. [
  35882. {
  35883. name: "Normal",
  35884. height: math.unit(5 + 5 / 12, "feet"),
  35885. default: true
  35886. },
  35887. {
  35888. name: "Macro",
  35889. height: math.unit(25, "feet")
  35890. },
  35891. ]
  35892. ))
  35893. characterMakers.push(() => makeCharacter(
  35894. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35895. {
  35896. front: {
  35897. height: math.unit(5 + 10/12, "feet"),
  35898. name: "Front",
  35899. image: {
  35900. source: "./media/characters/argon/front.svg",
  35901. extra: 2009/1935,
  35902. bottom: 118/2127
  35903. }
  35904. },
  35905. back: {
  35906. height: math.unit(5 + 10/12, "feet"),
  35907. name: "Back",
  35908. image: {
  35909. source: "./media/characters/argon/back.svg",
  35910. extra: 2047/1992,
  35911. bottom: 20/2067
  35912. }
  35913. },
  35914. frontDressed: {
  35915. height: math.unit(5 + 10/12, "feet"),
  35916. name: "Front (Dressed)",
  35917. image: {
  35918. source: "./media/characters/argon/front-dressed.svg",
  35919. extra: 2009/1935,
  35920. bottom: 118/2127
  35921. }
  35922. },
  35923. },
  35924. [
  35925. {
  35926. name: "Normal",
  35927. height: math.unit(5 + 10/12, "feet"),
  35928. default: true
  35929. },
  35930. ]
  35931. ))
  35932. characterMakers.push(() => makeCharacter(
  35933. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35934. {
  35935. front: {
  35936. height: math.unit(8 + 6/12, "feet"),
  35937. weight: math.unit(1150, "lb"),
  35938. name: "Front",
  35939. image: {
  35940. source: "./media/characters/kichi/front.svg",
  35941. extra: 1267/1164,
  35942. bottom: 61/1328
  35943. }
  35944. },
  35945. back: {
  35946. height: math.unit(8 + 6/12, "feet"),
  35947. weight: math.unit(1150, "lb"),
  35948. name: "Back",
  35949. image: {
  35950. source: "./media/characters/kichi/back.svg",
  35951. extra: 1273/1166,
  35952. bottom: 33/1306
  35953. }
  35954. },
  35955. },
  35956. [
  35957. {
  35958. name: "Normal",
  35959. height: math.unit(8 + 6/12, "feet"),
  35960. default: true
  35961. },
  35962. ]
  35963. ))
  35964. characterMakers.push(() => makeCharacter(
  35965. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35966. {
  35967. front: {
  35968. height: math.unit(6, "feet"),
  35969. weight: math.unit(210, "lb"),
  35970. name: "Front",
  35971. image: {
  35972. source: "./media/characters/manetel-greyscale/front.svg",
  35973. extra: 350/312,
  35974. bottom: 8/358
  35975. }
  35976. },
  35977. },
  35978. [
  35979. {
  35980. name: "Micro",
  35981. height: math.unit(2, "inches")
  35982. },
  35983. {
  35984. name: "Normal",
  35985. height: math.unit(6, "feet"),
  35986. default: true
  35987. },
  35988. {
  35989. name: "Minimacro",
  35990. height: math.unit(17, "feet")
  35991. },
  35992. {
  35993. name: "Macro",
  35994. height: math.unit(117, "feet")
  35995. },
  35996. ]
  35997. ))
  35998. characterMakers.push(() => makeCharacter(
  35999. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36000. {
  36001. side: {
  36002. height: math.unit(5 + 1/12, "feet"),
  36003. weight: math.unit(418, "lb"),
  36004. name: "Side",
  36005. image: {
  36006. source: "./media/characters/softpurr/side.svg",
  36007. extra: 1993/1945,
  36008. bottom: 134/2127
  36009. }
  36010. },
  36011. front: {
  36012. height: math.unit(5 + 1/12, "feet"),
  36013. weight: math.unit(418, "lb"),
  36014. name: "Front",
  36015. image: {
  36016. source: "./media/characters/softpurr/front.svg",
  36017. extra: 1950/1856,
  36018. bottom: 174/2124
  36019. }
  36020. },
  36021. paw: {
  36022. height: math.unit(1, "feet"),
  36023. name: "Paw",
  36024. image: {
  36025. source: "./media/characters/softpurr/paw.svg"
  36026. }
  36027. },
  36028. },
  36029. [
  36030. {
  36031. name: "Normal",
  36032. height: math.unit(5 + 1/12, "feet"),
  36033. default: true
  36034. },
  36035. ]
  36036. ))
  36037. characterMakers.push(() => makeCharacter(
  36038. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36039. {
  36040. front: {
  36041. height: math.unit(260, "meters"),
  36042. name: "Front",
  36043. image: {
  36044. source: "./media/characters/anahita/front.svg",
  36045. extra: 665/635,
  36046. bottom: 89/754
  36047. }
  36048. },
  36049. },
  36050. [
  36051. {
  36052. name: "Macro",
  36053. height: math.unit(260, "meters"),
  36054. default: true
  36055. },
  36056. ]
  36057. ))
  36058. characterMakers.push(() => makeCharacter(
  36059. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36060. {
  36061. front: {
  36062. height: math.unit(4 + 10/12, "feet"),
  36063. weight: math.unit(160, "lb"),
  36064. name: "Front",
  36065. image: {
  36066. source: "./media/characters/chip-mouse/front.svg",
  36067. extra: 3528/3408,
  36068. bottom: 0/3528
  36069. }
  36070. },
  36071. frontNsfw: {
  36072. height: math.unit(4 + 10/12, "feet"),
  36073. weight: math.unit(160, "lb"),
  36074. name: "Front (NSFW)",
  36075. image: {
  36076. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36077. extra: 3528/3408,
  36078. bottom: 0/3528
  36079. }
  36080. },
  36081. },
  36082. [
  36083. {
  36084. name: "Normal",
  36085. height: math.unit(4 + 10/12, "feet"),
  36086. default: true
  36087. },
  36088. ]
  36089. ))
  36090. characterMakers.push(() => makeCharacter(
  36091. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36092. {
  36093. side: {
  36094. height: math.unit(10, "feet"),
  36095. weight: math.unit(14000, "lb"),
  36096. name: "Side",
  36097. image: {
  36098. source: "./media/characters/kremm/side.svg",
  36099. extra: 1390/1053,
  36100. bottom: 90/1480
  36101. }
  36102. },
  36103. gut: {
  36104. height: math.unit(5.8, "feet"),
  36105. name: "Gut",
  36106. image: {
  36107. source: "./media/characters/kremm/gut.svg"
  36108. }
  36109. },
  36110. ass: {
  36111. height: math.unit(6.1, "feet"),
  36112. name: "Ass",
  36113. image: {
  36114. source: "./media/characters/kremm/ass.svg"
  36115. }
  36116. },
  36117. jaws: {
  36118. height: math.unit(2.2, "feet"),
  36119. name: "Jaws",
  36120. image: {
  36121. source: "./media/characters/kremm/jaws.svg"
  36122. }
  36123. },
  36124. dick: {
  36125. height: math.unit(4.26, "feet"),
  36126. name: "Dick",
  36127. image: {
  36128. source: "./media/characters/kremm/dick.svg"
  36129. }
  36130. },
  36131. },
  36132. [
  36133. {
  36134. name: "Normal",
  36135. height: math.unit(10, "feet"),
  36136. default: true
  36137. },
  36138. ]
  36139. ))
  36140. characterMakers.push(() => makeCharacter(
  36141. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36142. {
  36143. front: {
  36144. height: math.unit(30, "stories"),
  36145. name: "Front",
  36146. image: {
  36147. source: "./media/characters/kai/front.svg",
  36148. extra: 1892/1718,
  36149. bottom: 162/2054
  36150. }
  36151. },
  36152. },
  36153. [
  36154. {
  36155. name: "Macro",
  36156. height: math.unit(30, "stories"),
  36157. default: true
  36158. },
  36159. ]
  36160. ))
  36161. characterMakers.push(() => makeCharacter(
  36162. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36163. {
  36164. front: {
  36165. height: math.unit(6 + 4/12, "feet"),
  36166. weight: math.unit(145, "lb"),
  36167. name: "Front",
  36168. image: {
  36169. source: "./media/characters/sykes/front.svg",
  36170. extra: 1321 / 1187,
  36171. bottom: 66 / 1387
  36172. }
  36173. },
  36174. back: {
  36175. height: math.unit(6 + 4/12, "feet"),
  36176. weight: math.unit(145, "lb"),
  36177. name: "Back",
  36178. image: {
  36179. source: "./media/characters/sykes/back.svg",
  36180. extra: 1326/1181,
  36181. bottom: 31/1357
  36182. }
  36183. },
  36184. traditionalOutfit: {
  36185. height: math.unit(6 + 4/12, "feet"),
  36186. weight: math.unit(145, "lb"),
  36187. name: "Traditional Outfit",
  36188. image: {
  36189. source: "./media/characters/sykes/traditional-outfit.svg",
  36190. extra: 1321 / 1187,
  36191. bottom: 66 / 1387
  36192. }
  36193. },
  36194. adventureOutfit: {
  36195. height: math.unit(6 + 4/12, "feet"),
  36196. weight: math.unit(145, "lb"),
  36197. name: "Adventure Outfit",
  36198. image: {
  36199. source: "./media/characters/sykes/adventure-outfit.svg",
  36200. extra: 1321 / 1187,
  36201. bottom: 66 / 1387
  36202. }
  36203. },
  36204. handLeft: {
  36205. height: math.unit(0.9, "feet"),
  36206. name: "Hand (Left)",
  36207. image: {
  36208. source: "./media/characters/sykes/hand-left.svg"
  36209. }
  36210. },
  36211. handRight: {
  36212. height: math.unit(0.839, "feet"),
  36213. name: "Hand (Right)",
  36214. image: {
  36215. source: "./media/characters/sykes/hand-right.svg"
  36216. }
  36217. },
  36218. leftFoot: {
  36219. height: math.unit(1.2, "feet"),
  36220. name: "Foot (Left)",
  36221. image: {
  36222. source: "./media/characters/sykes/foot-left.svg"
  36223. }
  36224. },
  36225. rightFoot: {
  36226. height: math.unit(1.2, "feet"),
  36227. name: "Foot (Right)",
  36228. image: {
  36229. source: "./media/characters/sykes/foot-right.svg"
  36230. }
  36231. },
  36232. maw: {
  36233. height: math.unit(1.93, "feet"),
  36234. name: "Maw",
  36235. image: {
  36236. source: "./media/characters/sykes/maw.svg"
  36237. }
  36238. },
  36239. teeth: {
  36240. height: math.unit(0.51, "feet"),
  36241. name: "Teeth",
  36242. image: {
  36243. source: "./media/characters/sykes/teeth.svg"
  36244. }
  36245. },
  36246. tongue: {
  36247. height: math.unit(2.13, "feet"),
  36248. name: "Tongue",
  36249. image: {
  36250. source: "./media/characters/sykes/tongue.svg"
  36251. }
  36252. },
  36253. uvula: {
  36254. height: math.unit(0.16, "feet"),
  36255. name: "Uvula",
  36256. image: {
  36257. source: "./media/characters/sykes/uvula.svg"
  36258. }
  36259. },
  36260. collar: {
  36261. height: math.unit(0.287, "feet"),
  36262. name: "Collar",
  36263. image: {
  36264. source: "./media/characters/sykes/collar.svg"
  36265. }
  36266. },
  36267. tail: {
  36268. height: math.unit(3.8, "feet"),
  36269. name: "Tail",
  36270. image: {
  36271. source: "./media/characters/sykes/tail.svg"
  36272. }
  36273. },
  36274. },
  36275. [
  36276. {
  36277. name: "Shrunken",
  36278. height: math.unit(5, "inches")
  36279. },
  36280. {
  36281. name: "Normal",
  36282. height: math.unit(6 + 4 / 12, "feet"),
  36283. default: true
  36284. },
  36285. {
  36286. name: "Big",
  36287. height: math.unit(15, "feet")
  36288. },
  36289. ]
  36290. ))
  36291. characterMakers.push(() => makeCharacter(
  36292. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36293. {
  36294. front: {
  36295. height: math.unit(5 + 8/12, "feet"),
  36296. weight: math.unit(190, "lb"),
  36297. name: "Front",
  36298. image: {
  36299. source: "./media/characters/oven-otter/front.svg",
  36300. extra: 1809/1740,
  36301. bottom: 181/1990
  36302. }
  36303. },
  36304. back: {
  36305. height: math.unit(5 + 8/12, "feet"),
  36306. weight: math.unit(190, "lb"),
  36307. name: "Back",
  36308. image: {
  36309. source: "./media/characters/oven-otter/back.svg",
  36310. extra: 1709/1635,
  36311. bottom: 118/1827
  36312. }
  36313. },
  36314. hand: {
  36315. height: math.unit(1.07, "feet"),
  36316. name: "Hand",
  36317. image: {
  36318. source: "./media/characters/oven-otter/hand.svg"
  36319. }
  36320. },
  36321. beans: {
  36322. height: math.unit(1.74, "feet"),
  36323. name: "Beans",
  36324. image: {
  36325. source: "./media/characters/oven-otter/beans.svg"
  36326. }
  36327. },
  36328. },
  36329. [
  36330. {
  36331. name: "Micro",
  36332. height: math.unit(0.5, "inches")
  36333. },
  36334. {
  36335. name: "Normal",
  36336. height: math.unit(5 + 8/12, "feet"),
  36337. default: true
  36338. },
  36339. {
  36340. name: "Macro",
  36341. height: math.unit(250, "feet")
  36342. },
  36343. {
  36344. name: "Really High",
  36345. height: math.unit(420, "feet")
  36346. },
  36347. ]
  36348. ))
  36349. characterMakers.push(() => makeCharacter(
  36350. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36351. {
  36352. front: {
  36353. height: math.unit(5, "meters"),
  36354. weight: math.unit(292000000000000, "kg"),
  36355. name: "Front",
  36356. image: {
  36357. source: "./media/characters/devourer/front.svg",
  36358. extra: 1800/1733,
  36359. bottom: 211/2011
  36360. }
  36361. },
  36362. maw: {
  36363. height: math.unit(1.1, "meter"),
  36364. name: "Maw",
  36365. image: {
  36366. source: "./media/characters/devourer/maw.svg"
  36367. }
  36368. },
  36369. },
  36370. [
  36371. {
  36372. name: "Small",
  36373. height: math.unit(3, "meters")
  36374. },
  36375. {
  36376. name: "Large",
  36377. height: math.unit(5, "meters"),
  36378. default: true
  36379. },
  36380. ]
  36381. ))
  36382. characterMakers.push(() => makeCharacter(
  36383. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36384. {
  36385. front: {
  36386. height: math.unit(6, "feet"),
  36387. weight: math.unit(400, "lb"),
  36388. name: "Front",
  36389. image: {
  36390. source: "./media/characters/ellarby/front.svg",
  36391. extra: 1909/1763,
  36392. bottom: 80/1989
  36393. }
  36394. },
  36395. back: {
  36396. height: math.unit(6, "feet"),
  36397. weight: math.unit(400, "lb"),
  36398. name: "Back",
  36399. image: {
  36400. source: "./media/characters/ellarby/back.svg",
  36401. extra: 1914/1784,
  36402. bottom: 172/2086
  36403. }
  36404. },
  36405. },
  36406. [
  36407. {
  36408. name: "Mischief",
  36409. height: math.unit(18, "inches")
  36410. },
  36411. {
  36412. name: "Trouble",
  36413. height: math.unit(12, "feet")
  36414. },
  36415. {
  36416. name: "Havoc",
  36417. height: math.unit(200, "feet"),
  36418. default: true
  36419. },
  36420. {
  36421. name: "Pandemonium",
  36422. height: math.unit(1, "mile")
  36423. },
  36424. {
  36425. name: "Catastrophe",
  36426. height: math.unit(100, "miles")
  36427. },
  36428. ]
  36429. ))
  36430. characterMakers.push(() => makeCharacter(
  36431. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36432. {
  36433. front: {
  36434. height: math.unit(4.7, "meters"),
  36435. weight: math.unit(6500, "kg"),
  36436. name: "Front",
  36437. image: {
  36438. source: "./media/characters/vex/front.svg",
  36439. extra: 1288/1140,
  36440. bottom: 100/1388
  36441. }
  36442. },
  36443. },
  36444. [
  36445. {
  36446. name: "Normal",
  36447. height: math.unit(4.7, "meters"),
  36448. default: true
  36449. },
  36450. ]
  36451. ))
  36452. characterMakers.push(() => makeCharacter(
  36453. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36454. {
  36455. normal: {
  36456. height: math.unit(6, "feet"),
  36457. weight: math.unit(350, "lb"),
  36458. name: "Normal",
  36459. image: {
  36460. source: "./media/characters/teshy/normal.svg",
  36461. extra: 1795/1735,
  36462. bottom: 16/1811
  36463. }
  36464. },
  36465. monsterFront: {
  36466. height: math.unit(12, "feet"),
  36467. weight: math.unit(4700, "lb"),
  36468. name: "Monster (Front)",
  36469. image: {
  36470. source: "./media/characters/teshy/monster-front.svg",
  36471. extra: 2042/2034,
  36472. bottom: 128/2170
  36473. }
  36474. },
  36475. monsterSide: {
  36476. height: math.unit(12, "feet"),
  36477. weight: math.unit(4700, "lb"),
  36478. name: "Monster (Side)",
  36479. image: {
  36480. source: "./media/characters/teshy/monster-side.svg",
  36481. extra: 2067/2056,
  36482. bottom: 70/2137
  36483. }
  36484. },
  36485. monsterBack: {
  36486. height: math.unit(12, "feet"),
  36487. weight: math.unit(4700, "lb"),
  36488. name: "Monster (Back)",
  36489. image: {
  36490. source: "./media/characters/teshy/monster-back.svg",
  36491. extra: 1921/1914,
  36492. bottom: 171/2092
  36493. }
  36494. },
  36495. },
  36496. [
  36497. {
  36498. name: "Normal",
  36499. height: math.unit(6, "feet"),
  36500. default: true
  36501. },
  36502. ]
  36503. ))
  36504. characterMakers.push(() => makeCharacter(
  36505. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36506. {
  36507. front: {
  36508. height: math.unit(6, "feet"),
  36509. name: "Front",
  36510. image: {
  36511. source: "./media/characters/ramey/front.svg",
  36512. extra: 790/787,
  36513. bottom: 27/817
  36514. }
  36515. },
  36516. },
  36517. [
  36518. {
  36519. name: "Normal",
  36520. height: math.unit(6, "feet"),
  36521. default: true
  36522. },
  36523. ]
  36524. ))
  36525. characterMakers.push(() => makeCharacter(
  36526. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36527. {
  36528. front: {
  36529. height: math.unit(5 + 5/12, "feet"),
  36530. weight: math.unit(120, "lb"),
  36531. name: "Front",
  36532. image: {
  36533. source: "./media/characters/phirae/front.svg",
  36534. extra: 2491/2436,
  36535. bottom: 38/2529
  36536. }
  36537. },
  36538. },
  36539. [
  36540. {
  36541. name: "Normal",
  36542. height: math.unit(5 + 5/12, "feet"),
  36543. default: true
  36544. },
  36545. ]
  36546. ))
  36547. characterMakers.push(() => makeCharacter(
  36548. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36549. {
  36550. front: {
  36551. height: math.unit(5 + 3/12, "feet"),
  36552. name: "Front",
  36553. image: {
  36554. source: "./media/characters/stagglas/front.svg",
  36555. extra: 962/882,
  36556. bottom: 53/1015
  36557. }
  36558. },
  36559. feral: {
  36560. height: math.unit(335, "cm"),
  36561. name: "Feral",
  36562. image: {
  36563. source: "./media/characters/stagglas/feral.svg",
  36564. extra: 1732/1090,
  36565. bottom: 48/1780
  36566. }
  36567. },
  36568. },
  36569. [
  36570. {
  36571. name: "Normal",
  36572. height: math.unit(5 + 3/12, "feet"),
  36573. default: true
  36574. },
  36575. ]
  36576. ))
  36577. characterMakers.push(() => makeCharacter(
  36578. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36579. {
  36580. front: {
  36581. height: math.unit(5 + 4/12, "feet"),
  36582. weight: math.unit(145, "lb"),
  36583. name: "Front",
  36584. image: {
  36585. source: "./media/characters/starra/front.svg",
  36586. extra: 1790/1691,
  36587. bottom: 91/1881
  36588. }
  36589. },
  36590. },
  36591. [
  36592. {
  36593. name: "Normal",
  36594. height: math.unit(5 + 4/12, "feet"),
  36595. default: true
  36596. },
  36597. ]
  36598. ))
  36599. characterMakers.push(() => makeCharacter(
  36600. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36601. {
  36602. front: {
  36603. height: math.unit(2.2, "meters"),
  36604. name: "Front",
  36605. image: {
  36606. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36607. extra: 1248/972,
  36608. bottom: 38/1286
  36609. }
  36610. },
  36611. },
  36612. [
  36613. {
  36614. name: "Normal",
  36615. height: math.unit(2.2, "meters"),
  36616. default: true
  36617. },
  36618. ]
  36619. ))
  36620. characterMakers.push(() => makeCharacter(
  36621. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36622. {
  36623. side: {
  36624. height: math.unit(8 + 2/12, "feet"),
  36625. weight: math.unit(1240, "lb"),
  36626. name: "Side",
  36627. image: {
  36628. source: "./media/characters/mika-valentine/side.svg",
  36629. extra: 2670/2501,
  36630. bottom: 250/2920
  36631. }
  36632. },
  36633. },
  36634. [
  36635. {
  36636. name: "Normal",
  36637. height: math.unit(8 + 2/12, "feet"),
  36638. default: true
  36639. },
  36640. ]
  36641. ))
  36642. characterMakers.push(() => makeCharacter(
  36643. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36644. {
  36645. front: {
  36646. height: math.unit(7 + 2/12, "feet"),
  36647. name: "Front",
  36648. image: {
  36649. source: "./media/characters/xoltol/front.svg",
  36650. extra: 2212/2124,
  36651. bottom: 84/2296
  36652. }
  36653. },
  36654. side: {
  36655. height: math.unit(7 + 2/12, "feet"),
  36656. name: "Side",
  36657. image: {
  36658. source: "./media/characters/xoltol/side.svg",
  36659. extra: 2273/2197,
  36660. bottom: 26/2299
  36661. }
  36662. },
  36663. hand: {
  36664. height: math.unit(2.5, "feet"),
  36665. name: "Hand",
  36666. image: {
  36667. source: "./media/characters/xoltol/hand.svg"
  36668. }
  36669. },
  36670. },
  36671. [
  36672. {
  36673. name: "Small-ish",
  36674. height: math.unit(5 + 11/12, "feet")
  36675. },
  36676. {
  36677. name: "Normal",
  36678. height: math.unit(7 + 2/12, "feet")
  36679. },
  36680. {
  36681. name: "\"Macro\"",
  36682. height: math.unit(14 + 9/12, "feet"),
  36683. default: true
  36684. },
  36685. {
  36686. name: "Alternate Height",
  36687. height: math.unit(20, "feet")
  36688. },
  36689. {
  36690. name: "Actually Macro",
  36691. height: math.unit(100, "feet")
  36692. },
  36693. ]
  36694. ))
  36695. characterMakers.push(() => makeCharacter(
  36696. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36697. {
  36698. front: {
  36699. height: math.unit(5 + 2/12, "feet"),
  36700. name: "Front",
  36701. image: {
  36702. source: "./media/characters/kotetsu-redwood/front.svg",
  36703. extra: 1053/942,
  36704. bottom: 60/1113
  36705. }
  36706. },
  36707. },
  36708. [
  36709. {
  36710. name: "Normal",
  36711. height: math.unit(5 + 2/12, "feet"),
  36712. default: true
  36713. },
  36714. ]
  36715. ))
  36716. characterMakers.push(() => makeCharacter(
  36717. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36718. {
  36719. front: {
  36720. height: math.unit(2.4, "meters"),
  36721. weight: math.unit(125, "kg"),
  36722. name: "Front",
  36723. image: {
  36724. source: "./media/characters/lilith/front.svg",
  36725. extra: 1590/1513,
  36726. bottom: 203/1793
  36727. }
  36728. },
  36729. },
  36730. [
  36731. {
  36732. name: "Humanoid",
  36733. height: math.unit(2.4, "meters")
  36734. },
  36735. {
  36736. name: "Normal",
  36737. height: math.unit(6, "meters"),
  36738. default: true
  36739. },
  36740. {
  36741. name: "Largest",
  36742. height: math.unit(55, "meters")
  36743. },
  36744. ]
  36745. ))
  36746. characterMakers.push(() => makeCharacter(
  36747. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36748. {
  36749. front: {
  36750. height: math.unit(8 + 4/12, "feet"),
  36751. weight: math.unit(535, "lb"),
  36752. name: "Front",
  36753. image: {
  36754. source: "./media/characters/beh'kah-bolger/front.svg",
  36755. extra: 1660/1603,
  36756. bottom: 37/1697
  36757. }
  36758. },
  36759. },
  36760. [
  36761. {
  36762. name: "Normal",
  36763. height: math.unit(8 + 4/12, "feet"),
  36764. default: true
  36765. },
  36766. {
  36767. name: "Kaiju",
  36768. height: math.unit(250, "feet")
  36769. },
  36770. {
  36771. name: "Still Growing",
  36772. height: math.unit(10, "miles")
  36773. },
  36774. {
  36775. name: "Continental",
  36776. height: math.unit(5000, "miles")
  36777. },
  36778. {
  36779. name: "Final Form",
  36780. height: math.unit(2500000, "miles")
  36781. },
  36782. ]
  36783. ))
  36784. characterMakers.push(() => makeCharacter(
  36785. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36786. {
  36787. front: {
  36788. height: math.unit(7 + 2/12, "feet"),
  36789. weight: math.unit(230, "kg"),
  36790. name: "Front",
  36791. image: {
  36792. source: "./media/characters/tatyana-milewska/front.svg",
  36793. extra: 1199/1150,
  36794. bottom: 86/1285
  36795. }
  36796. },
  36797. },
  36798. [
  36799. {
  36800. name: "Normal",
  36801. height: math.unit(7 + 2/12, "feet"),
  36802. default: true
  36803. },
  36804. {
  36805. name: "Big",
  36806. height: math.unit(12, "feet")
  36807. },
  36808. {
  36809. name: "Minimacro",
  36810. height: math.unit(20, "feet")
  36811. },
  36812. {
  36813. name: "Macro",
  36814. height: math.unit(120, "feet")
  36815. },
  36816. ]
  36817. ))
  36818. characterMakers.push(() => makeCharacter(
  36819. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36820. {
  36821. front: {
  36822. height: math.unit(7 + 8/12, "feet"),
  36823. weight: math.unit(152, "kg"),
  36824. name: "Front",
  36825. image: {
  36826. source: "./media/characters/helen-arri/front.svg",
  36827. extra: 440/423,
  36828. bottom: 14/454
  36829. }
  36830. },
  36831. back: {
  36832. height: math.unit(7 + 8/12, "feet"),
  36833. weight: math.unit(152, "kg"),
  36834. name: "Back",
  36835. image: {
  36836. source: "./media/characters/helen-arri/back.svg",
  36837. extra: 443/426,
  36838. bottom: 8/451
  36839. }
  36840. },
  36841. },
  36842. [
  36843. {
  36844. name: "Normal",
  36845. height: math.unit(7 + 8/12, "feet"),
  36846. default: true
  36847. },
  36848. {
  36849. name: "Big",
  36850. height: math.unit(14, "feet")
  36851. },
  36852. {
  36853. name: "Minimacro",
  36854. height: math.unit(24, "feet")
  36855. },
  36856. {
  36857. name: "Macro",
  36858. height: math.unit(140, "feet")
  36859. },
  36860. ]
  36861. ))
  36862. characterMakers.push(() => makeCharacter(
  36863. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36864. {
  36865. front: {
  36866. height: math.unit(6, "meters"),
  36867. name: "Front",
  36868. image: {
  36869. source: "./media/characters/ehanu-rehu/front.svg",
  36870. extra: 1800/1800,
  36871. bottom: 59/1859
  36872. }
  36873. },
  36874. },
  36875. [
  36876. {
  36877. name: "Normal",
  36878. height: math.unit(6, "meters"),
  36879. default: true
  36880. },
  36881. ]
  36882. ))
  36883. characterMakers.push(() => makeCharacter(
  36884. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36885. {
  36886. front: {
  36887. height: math.unit(7 + 3/12, "feet"),
  36888. name: "Front",
  36889. image: {
  36890. source: "./media/characters/renholder/front.svg",
  36891. extra: 3096/2960,
  36892. bottom: 250/3346
  36893. }
  36894. },
  36895. },
  36896. [
  36897. {
  36898. name: "Normal Bat",
  36899. height: math.unit(7 + 3/12, "feet"),
  36900. default: true
  36901. },
  36902. {
  36903. name: "Slightly Tall Bat",
  36904. height: math.unit(100, "feet")
  36905. },
  36906. {
  36907. name: "Big Bat",
  36908. height: math.unit(1000, "feet")
  36909. },
  36910. {
  36911. name: "City-Sized Bat",
  36912. height: math.unit(200000, "feet")
  36913. },
  36914. {
  36915. name: "Bigger Bat",
  36916. height: math.unit(10000, "miles")
  36917. },
  36918. {
  36919. name: "Solar Sized Bat",
  36920. height: math.unit(100, "AU")
  36921. },
  36922. {
  36923. name: "Galactic Bat",
  36924. height: math.unit(200000, "lightyears")
  36925. },
  36926. {
  36927. name: "Universally Known Bat",
  36928. height: math.unit(1, "universe")
  36929. },
  36930. ]
  36931. ))
  36932. characterMakers.push(() => makeCharacter(
  36933. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36934. {
  36935. front: {
  36936. height: math.unit(6 + 11/12, "feet"),
  36937. weight: math.unit(250, "lb"),
  36938. name: "Front",
  36939. image: {
  36940. source: "./media/characters/cookiecat/front.svg",
  36941. extra: 893/827,
  36942. bottom: 14/907
  36943. }
  36944. },
  36945. },
  36946. [
  36947. {
  36948. name: "Micro",
  36949. height: math.unit(3, "inches")
  36950. },
  36951. {
  36952. name: "Normal",
  36953. height: math.unit(6 + 11/12, "feet"),
  36954. default: true
  36955. },
  36956. {
  36957. name: "Macro",
  36958. height: math.unit(100, "feet")
  36959. },
  36960. {
  36961. name: "Macro+",
  36962. height: math.unit(404, "feet")
  36963. },
  36964. {
  36965. name: "Megamacro",
  36966. height: math.unit(165, "miles")
  36967. },
  36968. {
  36969. name: "Planetary",
  36970. height: math.unit(4600, "miles")
  36971. },
  36972. ]
  36973. ))
  36974. characterMakers.push(() => makeCharacter(
  36975. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36976. {
  36977. front: {
  36978. height: math.unit(10 + 3/12, "feet"),
  36979. weight: math.unit(1500, "lb"),
  36980. name: "Front",
  36981. image: {
  36982. source: "./media/characters/tux-kusanagi/front.svg",
  36983. extra: 944/840,
  36984. bottom: 39/983
  36985. }
  36986. },
  36987. back: {
  36988. height: math.unit(10 + 3/12, "feet"),
  36989. weight: math.unit(1500, "lb"),
  36990. name: "Back",
  36991. image: {
  36992. source: "./media/characters/tux-kusanagi/back.svg",
  36993. extra: 941/842,
  36994. bottom: 28/969
  36995. }
  36996. },
  36997. rump: {
  36998. height: math.unit(5.25, "feet"),
  36999. name: "Rump",
  37000. image: {
  37001. source: "./media/characters/tux-kusanagi/rump.svg"
  37002. }
  37003. },
  37004. beak: {
  37005. height: math.unit(1.54, "feet"),
  37006. name: "Beak",
  37007. image: {
  37008. source: "./media/characters/tux-kusanagi/beak.svg"
  37009. }
  37010. },
  37011. },
  37012. [
  37013. {
  37014. name: "Normal",
  37015. height: math.unit(10 + 3/12, "feet"),
  37016. default: true
  37017. },
  37018. ]
  37019. ))
  37020. characterMakers.push(() => makeCharacter(
  37021. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37022. {
  37023. front: {
  37024. height: math.unit(58, "feet"),
  37025. weight: math.unit(200, "tons"),
  37026. name: "Front",
  37027. image: {
  37028. source: "./media/characters/uzarmazari/front.svg",
  37029. extra: 1575/1455,
  37030. bottom: 152/1727
  37031. }
  37032. },
  37033. back: {
  37034. height: math.unit(58, "feet"),
  37035. weight: math.unit(200, "tons"),
  37036. name: "Back",
  37037. image: {
  37038. source: "./media/characters/uzarmazari/back.svg",
  37039. extra: 1585/1510,
  37040. bottom: 157/1742
  37041. }
  37042. },
  37043. head: {
  37044. height: math.unit(26, "feet"),
  37045. name: "Head",
  37046. image: {
  37047. source: "./media/characters/uzarmazari/head.svg"
  37048. }
  37049. },
  37050. },
  37051. [
  37052. {
  37053. name: "Normal",
  37054. height: math.unit(58, "feet"),
  37055. default: true
  37056. },
  37057. ]
  37058. ))
  37059. characterMakers.push(() => makeCharacter(
  37060. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37061. {
  37062. side: {
  37063. height: math.unit(15, "feet"),
  37064. name: "Side",
  37065. image: {
  37066. source: "./media/characters/akitu/side.svg",
  37067. extra: 1421/1321,
  37068. bottom: 157/1578
  37069. }
  37070. },
  37071. front: {
  37072. height: math.unit(15, "feet"),
  37073. name: "Front",
  37074. image: {
  37075. source: "./media/characters/akitu/front.svg",
  37076. extra: 1435/1326,
  37077. bottom: 232/1667
  37078. }
  37079. },
  37080. },
  37081. [
  37082. {
  37083. name: "Normal",
  37084. height: math.unit(15, "feet"),
  37085. default: true
  37086. },
  37087. ]
  37088. ))
  37089. characterMakers.push(() => makeCharacter(
  37090. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37091. {
  37092. front: {
  37093. height: math.unit(10 + 8/12, "feet"),
  37094. name: "Front",
  37095. image: {
  37096. source: "./media/characters/azalie-croixland/front.svg",
  37097. extra: 1972/1856,
  37098. bottom: 31/2003
  37099. }
  37100. },
  37101. },
  37102. [
  37103. {
  37104. name: "Original Height",
  37105. height: math.unit(5 + 4/12, "feet")
  37106. },
  37107. {
  37108. name: "Normal Height",
  37109. height: math.unit(10 + 8/12, "feet"),
  37110. default: true
  37111. },
  37112. ]
  37113. ))
  37114. characterMakers.push(() => makeCharacter(
  37115. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37116. {
  37117. side: {
  37118. height: math.unit(7 + 1/12, "feet"),
  37119. weight: math.unit(245, "lb"),
  37120. name: "Side",
  37121. image: {
  37122. source: "./media/characters/kavus-kazian/side.svg",
  37123. extra: 349/342,
  37124. bottom: 15/364
  37125. }
  37126. },
  37127. },
  37128. [
  37129. {
  37130. name: "Normal",
  37131. height: math.unit(7 + 1/12, "feet"),
  37132. default: true
  37133. },
  37134. ]
  37135. ))
  37136. characterMakers.push(() => makeCharacter(
  37137. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37138. {
  37139. normalFront: {
  37140. height: math.unit(5 + 11/12, "feet"),
  37141. name: "Front",
  37142. image: {
  37143. source: "./media/characters/moonlight-rose/normal-front.svg",
  37144. extra: 1980/1825,
  37145. bottom: 18/1998
  37146. },
  37147. form: "normal",
  37148. default: true
  37149. },
  37150. normalBack: {
  37151. height: math.unit(5 + 11/12, "feet"),
  37152. name: "Back",
  37153. image: {
  37154. source: "./media/characters/moonlight-rose/normal-back.svg",
  37155. extra: 2010/1839,
  37156. bottom: 10/2020
  37157. },
  37158. form: "normal"
  37159. },
  37160. demonFront: {
  37161. height: math.unit(1.5, "earths"),
  37162. name: "Front",
  37163. image: {
  37164. source: "./media/characters/moonlight-rose/demon.svg",
  37165. extra: 1400/1294,
  37166. bottom: 45/1445
  37167. },
  37168. form: "demon",
  37169. default: true
  37170. },
  37171. terraFront: {
  37172. height: math.unit(1.5, "earths"),
  37173. name: "Front",
  37174. image: {
  37175. source: "./media/characters/moonlight-rose/terra.svg"
  37176. },
  37177. form: "terra",
  37178. default: true
  37179. },
  37180. jupiterFront: {
  37181. height: math.unit(69911*2, "km"),
  37182. name: "Front",
  37183. image: {
  37184. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37185. extra: 1367/1286,
  37186. bottom: 55/1422
  37187. },
  37188. form: "jupiter",
  37189. default: true
  37190. },
  37191. neptuneFront: {
  37192. height: math.unit(24622*2, "feet"),
  37193. name: "Front",
  37194. image: {
  37195. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37196. extra: 1851/1712,
  37197. bottom: 0/1851
  37198. },
  37199. form: "neptune",
  37200. default: true
  37201. },
  37202. },
  37203. [
  37204. {
  37205. name: "\"Natural\" Height",
  37206. height: math.unit(5 + 11/12, "feet"),
  37207. form: "normal"
  37208. },
  37209. {
  37210. name: "Smallest comfortable size",
  37211. height: math.unit(40, "meters"),
  37212. form: "normal"
  37213. },
  37214. {
  37215. name: "Common size",
  37216. height: math.unit(50, "km"),
  37217. form: "normal",
  37218. default: true
  37219. },
  37220. {
  37221. name: "Normal",
  37222. height: math.unit(1.5, "earths"),
  37223. form: "demon",
  37224. default: true
  37225. },
  37226. {
  37227. name: "Universal",
  37228. height: math.unit(15, "universes"),
  37229. form: "demon"
  37230. },
  37231. {
  37232. name: "Earth",
  37233. height: math.unit(1.5, "earths"),
  37234. form: "terra",
  37235. default: true
  37236. },
  37237. {
  37238. name: "Super Earth",
  37239. height: math.unit(67.5, "earths"),
  37240. form: "terra"
  37241. },
  37242. {
  37243. name: "Doesn't fit in a solar system...",
  37244. height: math.unit(1, "galaxy"),
  37245. form: "terra"
  37246. },
  37247. {
  37248. name: "Saturn",
  37249. height: math.unit(58232*2, "km"),
  37250. form: "jupiter"
  37251. },
  37252. {
  37253. name: "Jupiter",
  37254. height: math.unit(69911*2, "km"),
  37255. form: "jupiter",
  37256. default: true
  37257. },
  37258. {
  37259. name: "HD 100546 b",
  37260. height: math.unit(482938, "km"),
  37261. form: "jupiter"
  37262. },
  37263. {
  37264. name: "Enceladus",
  37265. height: math.unit(513*2, "km"),
  37266. form: "neptune"
  37267. },
  37268. {
  37269. name: "Europe",
  37270. height: math.unit(1560*2, "km"),
  37271. form: "neptune"
  37272. },
  37273. {
  37274. name: "Neptune",
  37275. height: math.unit(24622*2, "km"),
  37276. form: "neptune",
  37277. default: true
  37278. },
  37279. {
  37280. name: "CoRoT-9b",
  37281. height: math.unit(75067*2, "km"),
  37282. form: "neptune"
  37283. },
  37284. ],
  37285. {
  37286. "normal": {
  37287. name: "Normal",
  37288. default: true
  37289. },
  37290. "demon": {
  37291. name: "Demon"
  37292. },
  37293. "terra": {
  37294. name: "Terra"
  37295. },
  37296. "jupiter": {
  37297. name: "Jupiter"
  37298. },
  37299. "neptune": {
  37300. name: "Neptune"
  37301. }
  37302. }
  37303. ))
  37304. characterMakers.push(() => makeCharacter(
  37305. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37306. {
  37307. front: {
  37308. height: math.unit(16, "feet"),
  37309. weight: math.unit(610, "kg"),
  37310. name: "Front",
  37311. image: {
  37312. source: "./media/characters/huckle/front.svg",
  37313. extra: 1731/1625,
  37314. bottom: 33/1764
  37315. }
  37316. },
  37317. back: {
  37318. height: math.unit(16, "feet"),
  37319. weight: math.unit(610, "kg"),
  37320. name: "Back",
  37321. image: {
  37322. source: "./media/characters/huckle/back.svg",
  37323. extra: 1738/1651,
  37324. bottom: 37/1775
  37325. }
  37326. },
  37327. laughing: {
  37328. height: math.unit(3.75, "feet"),
  37329. name: "Laughing",
  37330. image: {
  37331. source: "./media/characters/huckle/laughing.svg"
  37332. }
  37333. },
  37334. angry: {
  37335. height: math.unit(4.15, "feet"),
  37336. name: "Angry",
  37337. image: {
  37338. source: "./media/characters/huckle/angry.svg"
  37339. }
  37340. },
  37341. },
  37342. [
  37343. {
  37344. name: "Normal",
  37345. height: math.unit(16, "feet"),
  37346. default: true
  37347. },
  37348. {
  37349. name: "Mini Macro",
  37350. height: math.unit(463, "feet")
  37351. },
  37352. {
  37353. name: "Macro",
  37354. height: math.unit(1680, "meters")
  37355. },
  37356. {
  37357. name: "Mega Macro",
  37358. height: math.unit(175, "km")
  37359. },
  37360. {
  37361. name: "Terra Macro",
  37362. height: math.unit(32, "gigameters")
  37363. },
  37364. {
  37365. name: "Multiverse+",
  37366. height: math.unit(2.56e23, "yottameters")
  37367. },
  37368. ]
  37369. ))
  37370. characterMakers.push(() => makeCharacter(
  37371. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37372. {
  37373. front: {
  37374. height: math.unit(6 + 9/12, "feet"),
  37375. weight: math.unit(280, "lb"),
  37376. name: "Front",
  37377. image: {
  37378. source: "./media/characters/candy/front.svg",
  37379. extra: 234/217,
  37380. bottom: 11/245
  37381. }
  37382. },
  37383. },
  37384. [
  37385. {
  37386. name: "Really Small",
  37387. height: math.unit(0.1, "nm")
  37388. },
  37389. {
  37390. name: "Micro",
  37391. height: math.unit(2, "inches")
  37392. },
  37393. {
  37394. name: "Normal",
  37395. height: math.unit(6 + 9/12, "feet"),
  37396. default: true
  37397. },
  37398. {
  37399. name: "Small Macro",
  37400. height: math.unit(69, "feet")
  37401. },
  37402. {
  37403. name: "Macro",
  37404. height: math.unit(160, "feet")
  37405. },
  37406. {
  37407. name: "Megamacro",
  37408. height: math.unit(22000, "miles")
  37409. },
  37410. {
  37411. name: "Gigamacro",
  37412. height: math.unit(50000, "miles")
  37413. },
  37414. ]
  37415. ))
  37416. characterMakers.push(() => makeCharacter(
  37417. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37418. {
  37419. front: {
  37420. height: math.unit(4, "feet"),
  37421. weight: math.unit(90, "lb"),
  37422. name: "Front",
  37423. image: {
  37424. source: "./media/characters/joey-mcdonald/front.svg",
  37425. extra: 1059/852,
  37426. bottom: 33/1092
  37427. }
  37428. },
  37429. back: {
  37430. height: math.unit(4, "feet"),
  37431. weight: math.unit(90, "lb"),
  37432. name: "Back",
  37433. image: {
  37434. source: "./media/characters/joey-mcdonald/back.svg",
  37435. extra: 1077/879,
  37436. bottom: 5/1082
  37437. }
  37438. },
  37439. frontKobold: {
  37440. height: math.unit(4, "feet"),
  37441. weight: math.unit(100, "lb"),
  37442. name: "Front-kobold",
  37443. image: {
  37444. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37445. extra: 1480/1367,
  37446. bottom: 0/1480
  37447. }
  37448. },
  37449. backKobold: {
  37450. height: math.unit(4, "feet"),
  37451. weight: math.unit(100, "lb"),
  37452. name: "Back-kobold",
  37453. image: {
  37454. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37455. extra: 1449/1361,
  37456. bottom: 0/1449
  37457. }
  37458. },
  37459. },
  37460. [
  37461. {
  37462. name: "Normal",
  37463. height: math.unit(4, "feet"),
  37464. default: true
  37465. },
  37466. ]
  37467. ))
  37468. characterMakers.push(() => makeCharacter(
  37469. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37470. {
  37471. front: {
  37472. height: math.unit(12 + 6/12, "feet"),
  37473. name: "Front",
  37474. image: {
  37475. source: "./media/characters/kass-lockheed/front.svg",
  37476. extra: 354/343,
  37477. bottom: 9/363
  37478. }
  37479. },
  37480. back: {
  37481. height: math.unit(12 + 6/12, "feet"),
  37482. name: "Back",
  37483. image: {
  37484. source: "./media/characters/kass-lockheed/back.svg",
  37485. extra: 364/352,
  37486. bottom: 3/367
  37487. }
  37488. },
  37489. dick: {
  37490. height: math.unit(3.12, "feet"),
  37491. name: "Dick",
  37492. image: {
  37493. source: "./media/characters/kass-lockheed/dick.svg"
  37494. }
  37495. },
  37496. head: {
  37497. height: math.unit(2.6, "feet"),
  37498. name: "Head",
  37499. image: {
  37500. source: "./media/characters/kass-lockheed/head.svg"
  37501. }
  37502. },
  37503. bleh: {
  37504. height: math.unit(2.85, "feet"),
  37505. name: "Bleh",
  37506. image: {
  37507. source: "./media/characters/kass-lockheed/bleh.svg"
  37508. }
  37509. },
  37510. smug: {
  37511. height: math.unit(2.85, "feet"),
  37512. name: "Smug",
  37513. image: {
  37514. source: "./media/characters/kass-lockheed/smug.svg"
  37515. }
  37516. },
  37517. },
  37518. [
  37519. {
  37520. name: "Normal",
  37521. height: math.unit(12 + 6/12, "feet"),
  37522. default: true
  37523. },
  37524. ]
  37525. ))
  37526. characterMakers.push(() => makeCharacter(
  37527. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37528. {
  37529. front: {
  37530. height: math.unit(6 + 2/12, "feet"),
  37531. name: "Front",
  37532. image: {
  37533. source: "./media/characters/taylor/front.svg",
  37534. extra: 639/495,
  37535. bottom: 12/651
  37536. }
  37537. },
  37538. },
  37539. [
  37540. {
  37541. name: "Normal",
  37542. height: math.unit(6 + 2/12, "feet"),
  37543. default: true
  37544. },
  37545. {
  37546. name: "Big",
  37547. height: math.unit(15, "feet")
  37548. },
  37549. {
  37550. name: "Lorg",
  37551. height: math.unit(80, "feet")
  37552. },
  37553. {
  37554. name: "Too Lorg",
  37555. height: math.unit(120, "feet")
  37556. },
  37557. ]
  37558. ))
  37559. characterMakers.push(() => makeCharacter(
  37560. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37561. {
  37562. front: {
  37563. height: math.unit(15, "feet"),
  37564. name: "Front",
  37565. image: {
  37566. source: "./media/characters/kaizer/front.svg",
  37567. extra: 1612/1436,
  37568. bottom: 43/1655
  37569. }
  37570. },
  37571. },
  37572. [
  37573. {
  37574. name: "Normal",
  37575. height: math.unit(15, "feet"),
  37576. default: true
  37577. },
  37578. ]
  37579. ))
  37580. characterMakers.push(() => makeCharacter(
  37581. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37582. {
  37583. front: {
  37584. height: math.unit(2, "feet"),
  37585. weight: math.unit(30, "lb"),
  37586. name: "Front",
  37587. image: {
  37588. source: "./media/characters/sandy/front.svg",
  37589. extra: 1439/1307,
  37590. bottom: 194/1633
  37591. }
  37592. },
  37593. },
  37594. [
  37595. {
  37596. name: "Normal",
  37597. height: math.unit(2, "feet"),
  37598. default: true
  37599. },
  37600. ]
  37601. ))
  37602. characterMakers.push(() => makeCharacter(
  37603. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37604. {
  37605. front: {
  37606. height: math.unit(3, "feet"),
  37607. name: "Front",
  37608. image: {
  37609. source: "./media/characters/mellvi/front.svg",
  37610. extra: 1831/1630,
  37611. bottom: 58/1889
  37612. }
  37613. },
  37614. },
  37615. [
  37616. {
  37617. name: "Normal",
  37618. height: math.unit(3, "feet"),
  37619. default: true
  37620. },
  37621. ]
  37622. ))
  37623. characterMakers.push(() => makeCharacter(
  37624. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37625. {
  37626. front: {
  37627. height: math.unit(5 + 11/12, "feet"),
  37628. weight: math.unit(200, "lb"),
  37629. name: "Front",
  37630. image: {
  37631. source: "./media/characters/shirou/front.svg",
  37632. extra: 2491/2383,
  37633. bottom: 189/2680
  37634. }
  37635. },
  37636. back: {
  37637. height: math.unit(5 + 11/12, "feet"),
  37638. weight: math.unit(200, "lb"),
  37639. name: "Back",
  37640. image: {
  37641. source: "./media/characters/shirou/back.svg",
  37642. extra: 2554/2450,
  37643. bottom: 76/2630
  37644. }
  37645. },
  37646. },
  37647. [
  37648. {
  37649. name: "Normal",
  37650. height: math.unit(5 + 11/12, "feet"),
  37651. default: true
  37652. },
  37653. ]
  37654. ))
  37655. characterMakers.push(() => makeCharacter(
  37656. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37657. {
  37658. front: {
  37659. height: math.unit(6 + 3/12, "feet"),
  37660. weight: math.unit(177, "lb"),
  37661. name: "Front",
  37662. image: {
  37663. source: "./media/characters/noryu/front.svg",
  37664. extra: 973/885,
  37665. bottom: 10/983
  37666. }
  37667. },
  37668. },
  37669. [
  37670. {
  37671. name: "Normal",
  37672. height: math.unit(6 + 3/12, "feet"),
  37673. default: true
  37674. },
  37675. ]
  37676. ))
  37677. characterMakers.push(() => makeCharacter(
  37678. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37679. {
  37680. front: {
  37681. height: math.unit(5 + 6/12, "feet"),
  37682. weight: math.unit(170, "lb"),
  37683. name: "Front",
  37684. image: {
  37685. source: "./media/characters/mevolas-rubenido/front.svg",
  37686. extra: 2109/1901,
  37687. bottom: 96/2205
  37688. }
  37689. },
  37690. },
  37691. [
  37692. {
  37693. name: "Normal",
  37694. height: math.unit(5 + 6/12, "feet"),
  37695. default: true
  37696. },
  37697. ]
  37698. ))
  37699. characterMakers.push(() => makeCharacter(
  37700. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37701. {
  37702. front: {
  37703. height: math.unit(100, "feet"),
  37704. name: "Front",
  37705. image: {
  37706. source: "./media/characters/dee/front.svg",
  37707. extra: 2153/2036,
  37708. bottom: 59/2212
  37709. }
  37710. },
  37711. back: {
  37712. height: math.unit(100, "feet"),
  37713. name: "Back",
  37714. image: {
  37715. source: "./media/characters/dee/back.svg",
  37716. extra: 2183/2058,
  37717. bottom: 75/2258
  37718. }
  37719. },
  37720. foot: {
  37721. height: math.unit(19.43, "feet"),
  37722. name: "Foot",
  37723. image: {
  37724. source: "./media/characters/dee/foot.svg"
  37725. }
  37726. },
  37727. hoof: {
  37728. height: math.unit(20.6, "feet"),
  37729. name: "Hoof",
  37730. image: {
  37731. source: "./media/characters/dee/hoof.svg"
  37732. }
  37733. },
  37734. },
  37735. [
  37736. {
  37737. name: "Macro",
  37738. height: math.unit(100, "feet"),
  37739. default: true
  37740. },
  37741. ]
  37742. ))
  37743. characterMakers.push(() => makeCharacter(
  37744. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37745. {
  37746. front: {
  37747. height: math.unit(5 + 6/12, "feet"),
  37748. name: "Front",
  37749. image: {
  37750. source: "./media/characters/teh/front.svg",
  37751. extra: 1002/847,
  37752. bottom: 62/1064
  37753. }
  37754. },
  37755. },
  37756. [
  37757. {
  37758. name: "Normal",
  37759. height: math.unit(5 + 6/12, "feet"),
  37760. default: true
  37761. },
  37762. ]
  37763. ))
  37764. characterMakers.push(() => makeCharacter(
  37765. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37766. {
  37767. side: {
  37768. height: math.unit(6 + 1/12, "feet"),
  37769. weight: math.unit(204, "lb"),
  37770. name: "Side",
  37771. image: {
  37772. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37773. extra: 974/775,
  37774. bottom: 169/1143
  37775. }
  37776. },
  37777. sitting: {
  37778. height: math.unit(6 + 2/12, "feet"),
  37779. weight: math.unit(204, "lb"),
  37780. name: "Sitting",
  37781. image: {
  37782. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37783. extra: 1175/964,
  37784. bottom: 378/1553
  37785. }
  37786. },
  37787. },
  37788. [
  37789. {
  37790. name: "Normal",
  37791. height: math.unit(6 + 1/12, "feet"),
  37792. default: true
  37793. },
  37794. ]
  37795. ))
  37796. characterMakers.push(() => makeCharacter(
  37797. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37798. {
  37799. front: {
  37800. height: math.unit(6, "inches"),
  37801. name: "Front",
  37802. image: {
  37803. source: "./media/characters/tululi/front.svg",
  37804. extra: 1997/1876,
  37805. bottom: 20/2017
  37806. }
  37807. },
  37808. },
  37809. [
  37810. {
  37811. name: "Normal",
  37812. height: math.unit(6, "inches"),
  37813. default: true
  37814. },
  37815. ]
  37816. ))
  37817. characterMakers.push(() => makeCharacter(
  37818. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37819. {
  37820. front: {
  37821. height: math.unit(4 + 1/12, "feet"),
  37822. name: "Front",
  37823. image: {
  37824. source: "./media/characters/star/front.svg",
  37825. extra: 1493/1189,
  37826. bottom: 48/1541
  37827. }
  37828. },
  37829. },
  37830. [
  37831. {
  37832. name: "Normal",
  37833. height: math.unit(4 + 1/12, "feet"),
  37834. default: true
  37835. },
  37836. ]
  37837. ))
  37838. characterMakers.push(() => makeCharacter(
  37839. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37840. {
  37841. front: {
  37842. height: math.unit(6 + 3/12, "feet"),
  37843. name: "Front",
  37844. image: {
  37845. source: "./media/characters/comet/front.svg",
  37846. extra: 1681/1462,
  37847. bottom: 26/1707
  37848. }
  37849. },
  37850. },
  37851. [
  37852. {
  37853. name: "Normal",
  37854. height: math.unit(6 + 3/12, "feet"),
  37855. default: true
  37856. },
  37857. ]
  37858. ))
  37859. characterMakers.push(() => makeCharacter(
  37860. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37861. {
  37862. front: {
  37863. height: math.unit(950, "feet"),
  37864. name: "Front",
  37865. image: {
  37866. source: "./media/characters/vortex/front.svg",
  37867. extra: 1497/1434,
  37868. bottom: 56/1553
  37869. }
  37870. },
  37871. maw: {
  37872. height: math.unit(285, "feet"),
  37873. name: "Maw",
  37874. image: {
  37875. source: "./media/characters/vortex/maw.svg"
  37876. }
  37877. },
  37878. },
  37879. [
  37880. {
  37881. name: "Macro",
  37882. height: math.unit(950, "feet"),
  37883. default: true
  37884. },
  37885. ]
  37886. ))
  37887. characterMakers.push(() => makeCharacter(
  37888. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37889. {
  37890. front: {
  37891. height: math.unit(600, "feet"),
  37892. weight: math.unit(0.02, "grams"),
  37893. name: "Front",
  37894. image: {
  37895. source: "./media/characters/doodle/front.svg",
  37896. extra: 1578/1413,
  37897. bottom: 37/1615
  37898. }
  37899. },
  37900. },
  37901. [
  37902. {
  37903. name: "Macro",
  37904. height: math.unit(600, "feet"),
  37905. default: true
  37906. },
  37907. ]
  37908. ))
  37909. characterMakers.push(() => makeCharacter(
  37910. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37911. {
  37912. front: {
  37913. height: math.unit(6 + 6/12, "feet"),
  37914. name: "Front",
  37915. image: {
  37916. source: "./media/characters/jai/front.svg",
  37917. extra: 1645/1534,
  37918. bottom: 115/1760
  37919. }
  37920. },
  37921. },
  37922. [
  37923. {
  37924. name: "Normal",
  37925. height: math.unit(6 + 6/12, "feet"),
  37926. default: true
  37927. },
  37928. ]
  37929. ))
  37930. characterMakers.push(() => makeCharacter(
  37931. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37932. {
  37933. front: {
  37934. height: math.unit(6 + 8/12, "feet"),
  37935. name: "Front",
  37936. image: {
  37937. source: "./media/characters/pixel/front.svg",
  37938. extra: 1900/1735,
  37939. bottom: 63/1963
  37940. }
  37941. },
  37942. },
  37943. [
  37944. {
  37945. name: "Normal",
  37946. height: math.unit(6 + 8/12, "feet"),
  37947. default: true
  37948. },
  37949. ]
  37950. ))
  37951. characterMakers.push(() => makeCharacter(
  37952. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37953. {
  37954. back: {
  37955. height: math.unit(4 + 1/12, "feet"),
  37956. weight: math.unit(75, "lb"),
  37957. name: "Back",
  37958. image: {
  37959. source: "./media/characters/rhett/back.svg",
  37960. extra: 930/878,
  37961. bottom: 25/955
  37962. }
  37963. },
  37964. front: {
  37965. height: math.unit(4 + 1/12, "feet"),
  37966. weight: math.unit(75, "lb"),
  37967. name: "Front",
  37968. image: {
  37969. source: "./media/characters/rhett/front.svg",
  37970. extra: 1682/1586,
  37971. bottom: 92/1774
  37972. }
  37973. },
  37974. },
  37975. [
  37976. {
  37977. name: "Micro",
  37978. height: math.unit(8, "inches")
  37979. },
  37980. {
  37981. name: "Tiny",
  37982. height: math.unit(2, "feet")
  37983. },
  37984. {
  37985. name: "Normal",
  37986. height: math.unit(4 + 1/12, "feet"),
  37987. default: true
  37988. },
  37989. ]
  37990. ))
  37991. characterMakers.push(() => makeCharacter(
  37992. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37993. {
  37994. front: {
  37995. height: math.unit(3 + 3/12, "feet"),
  37996. name: "Front",
  37997. image: {
  37998. source: "./media/characters/penny/front.svg",
  37999. extra: 1406/1311,
  38000. bottom: 26/1432
  38001. }
  38002. },
  38003. },
  38004. [
  38005. {
  38006. name: "Normal",
  38007. height: math.unit(3 + 3/12, "feet"),
  38008. default: true
  38009. },
  38010. ]
  38011. ))
  38012. characterMakers.push(() => makeCharacter(
  38013. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38014. {
  38015. front: {
  38016. height: math.unit(4 + 11/12, "feet"),
  38017. name: "Front",
  38018. image: {
  38019. source: "./media/characters/monty/front.svg",
  38020. extra: 1479/1209,
  38021. bottom: 0/1479
  38022. }
  38023. },
  38024. },
  38025. [
  38026. {
  38027. name: "Normal",
  38028. height: math.unit(4 + 11/12, "feet"),
  38029. default: true
  38030. },
  38031. ]
  38032. ))
  38033. characterMakers.push(() => makeCharacter(
  38034. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38035. {
  38036. front: {
  38037. height: math.unit(8 + 4/12, "feet"),
  38038. name: "Front",
  38039. image: {
  38040. source: "./media/characters/sterling/front.svg",
  38041. extra: 1420/1236,
  38042. bottom: 27/1447
  38043. }
  38044. },
  38045. },
  38046. [
  38047. {
  38048. name: "Normal",
  38049. height: math.unit(8 + 4/12, "feet"),
  38050. default: true
  38051. },
  38052. ]
  38053. ))
  38054. characterMakers.push(() => makeCharacter(
  38055. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38056. {
  38057. front: {
  38058. height: math.unit(15, "feet"),
  38059. name: "Front",
  38060. image: {
  38061. source: "./media/characters/marble/front.svg",
  38062. extra: 973/937,
  38063. bottom: 32/1005
  38064. }
  38065. },
  38066. },
  38067. [
  38068. {
  38069. name: "Normal",
  38070. height: math.unit(15, "feet"),
  38071. default: true
  38072. },
  38073. ]
  38074. ))
  38075. characterMakers.push(() => makeCharacter(
  38076. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38077. {
  38078. front: {
  38079. height: math.unit(3, "inches"),
  38080. name: "Front",
  38081. image: {
  38082. source: "./media/characters/powder/front.svg",
  38083. extra: 1504/1334,
  38084. bottom: 518/2022
  38085. }
  38086. },
  38087. },
  38088. [
  38089. {
  38090. name: "Normal",
  38091. height: math.unit(3, "inches"),
  38092. default: true
  38093. },
  38094. ]
  38095. ))
  38096. characterMakers.push(() => makeCharacter(
  38097. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38098. {
  38099. front: {
  38100. height: math.unit(4 + 5/12, "feet"),
  38101. name: "Front",
  38102. image: {
  38103. source: "./media/characters/joey-raccoon/front.svg",
  38104. extra: 1273/1197,
  38105. bottom: 0/1273
  38106. }
  38107. },
  38108. },
  38109. [
  38110. {
  38111. name: "Normal",
  38112. height: math.unit(4 + 5/12, "feet"),
  38113. default: true
  38114. },
  38115. ]
  38116. ))
  38117. characterMakers.push(() => makeCharacter(
  38118. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38119. {
  38120. front: {
  38121. height: math.unit(8 + 4/12, "feet"),
  38122. name: "Front",
  38123. image: {
  38124. source: "./media/characters/vick/front.svg",
  38125. extra: 2187/2118,
  38126. bottom: 47/2234
  38127. }
  38128. },
  38129. },
  38130. [
  38131. {
  38132. name: "Normal",
  38133. height: math.unit(8 + 4/12, "feet"),
  38134. default: true
  38135. },
  38136. ]
  38137. ))
  38138. characterMakers.push(() => makeCharacter(
  38139. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38140. {
  38141. front: {
  38142. height: math.unit(5 + 5/12, "feet"),
  38143. name: "Front",
  38144. image: {
  38145. source: "./media/characters/mitsy/front.svg",
  38146. extra: 1842/1695,
  38147. bottom: 0/1842
  38148. }
  38149. },
  38150. },
  38151. [
  38152. {
  38153. name: "Normal",
  38154. height: math.unit(5 + 5/12, "feet"),
  38155. default: true
  38156. },
  38157. ]
  38158. ))
  38159. characterMakers.push(() => makeCharacter(
  38160. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38161. {
  38162. front: {
  38163. height: math.unit(6 + 3/12, "feet"),
  38164. name: "Front",
  38165. image: {
  38166. source: "./media/characters/silvy/front.svg",
  38167. extra: 1995/1836,
  38168. bottom: 225/2220
  38169. }
  38170. },
  38171. },
  38172. [
  38173. {
  38174. name: "Normal",
  38175. height: math.unit(6 + 3/12, "feet"),
  38176. default: true
  38177. },
  38178. ]
  38179. ))
  38180. characterMakers.push(() => makeCharacter(
  38181. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38182. {
  38183. front: {
  38184. height: math.unit(3 + 8/12, "feet"),
  38185. name: "Front",
  38186. image: {
  38187. source: "./media/characters/rodney/front.svg",
  38188. extra: 1956/1747,
  38189. bottom: 31/1987
  38190. }
  38191. },
  38192. frontDressed: {
  38193. height: math.unit(2.9, "feet"),
  38194. name: "Front (Dressed)",
  38195. image: {
  38196. source: "./media/characters/rodney/front-dressed.svg",
  38197. extra: 1382/1241,
  38198. bottom: 385/1767
  38199. }
  38200. },
  38201. },
  38202. [
  38203. {
  38204. name: "Normal",
  38205. height: math.unit(3 + 8/12, "feet"),
  38206. default: true
  38207. },
  38208. ]
  38209. ))
  38210. characterMakers.push(() => makeCharacter(
  38211. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38212. {
  38213. front: {
  38214. height: math.unit(5 + 9/12, "feet"),
  38215. weight: math.unit(194, "lbs"),
  38216. name: "Front",
  38217. image: {
  38218. source: "./media/characters/zakail-sudekai/front.svg",
  38219. extra: 2696/2533,
  38220. bottom: 248/2944
  38221. }
  38222. },
  38223. maw: {
  38224. height: math.unit(1.35, "feet"),
  38225. name: "Maw",
  38226. image: {
  38227. source: "./media/characters/zakail-sudekai/maw.svg"
  38228. }
  38229. },
  38230. },
  38231. [
  38232. {
  38233. name: "Normal",
  38234. height: math.unit(5 + 9/12, "feet"),
  38235. default: true
  38236. },
  38237. ]
  38238. ))
  38239. characterMakers.push(() => makeCharacter(
  38240. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38241. {
  38242. front: {
  38243. height: math.unit(8 + 4/12, "feet"),
  38244. weight: math.unit(1200, "lb"),
  38245. name: "Front",
  38246. image: {
  38247. source: "./media/characters/eleanor/front.svg",
  38248. extra: 1226/1192,
  38249. bottom: 52/1278
  38250. }
  38251. },
  38252. back: {
  38253. height: math.unit(8 + 4/12, "feet"),
  38254. weight: math.unit(1200, "lb"),
  38255. name: "Back",
  38256. image: {
  38257. source: "./media/characters/eleanor/back.svg",
  38258. extra: 1242/1184,
  38259. bottom: 60/1302
  38260. }
  38261. },
  38262. head: {
  38263. height: math.unit(2.62, "feet"),
  38264. name: "Head",
  38265. image: {
  38266. source: "./media/characters/eleanor/head.svg"
  38267. }
  38268. },
  38269. },
  38270. [
  38271. {
  38272. name: "Normal",
  38273. height: math.unit(8 + 4/12, "feet"),
  38274. default: true
  38275. },
  38276. ]
  38277. ))
  38278. characterMakers.push(() => makeCharacter(
  38279. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38280. {
  38281. front: {
  38282. height: math.unit(8 + 4/12, "feet"),
  38283. weight: math.unit(750, "lb"),
  38284. name: "Front",
  38285. image: {
  38286. source: "./media/characters/tanya/front.svg",
  38287. extra: 1749/1615,
  38288. bottom: 33/1782
  38289. }
  38290. },
  38291. },
  38292. [
  38293. {
  38294. name: "Normal",
  38295. height: math.unit(8 + 4/12, "feet"),
  38296. default: true
  38297. },
  38298. ]
  38299. ))
  38300. characterMakers.push(() => makeCharacter(
  38301. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38302. {
  38303. front: {
  38304. height: math.unit(5, "feet"),
  38305. weight: math.unit(225, "lb"),
  38306. name: "Front",
  38307. image: {
  38308. source: "./media/characters/cindy/front.svg",
  38309. extra: 1320/1250,
  38310. bottom: 42/1362
  38311. }
  38312. },
  38313. frontDressed: {
  38314. height: math.unit(5, "feet"),
  38315. weight: math.unit(225, "lb"),
  38316. name: "Front (Dressed)",
  38317. image: {
  38318. source: "./media/characters/cindy/front-dressed.svg",
  38319. extra: 1320/1250,
  38320. bottom: 42/1362
  38321. }
  38322. },
  38323. back: {
  38324. height: math.unit(5, "feet"),
  38325. weight: math.unit(225, "lb"),
  38326. name: "Back",
  38327. image: {
  38328. source: "./media/characters/cindy/back.svg",
  38329. extra: 1384/1346,
  38330. bottom: 14/1398
  38331. }
  38332. },
  38333. },
  38334. [
  38335. {
  38336. name: "Normal",
  38337. height: math.unit(5, "feet"),
  38338. default: true
  38339. },
  38340. ]
  38341. ))
  38342. characterMakers.push(() => makeCharacter(
  38343. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38344. {
  38345. front: {
  38346. height: math.unit(6 + 9/12, "feet"),
  38347. weight: math.unit(440, "lb"),
  38348. name: "Front",
  38349. image: {
  38350. source: "./media/characters/wilbur-owen/front.svg",
  38351. extra: 1575/1448,
  38352. bottom: 72/1647
  38353. }
  38354. },
  38355. back: {
  38356. height: math.unit(6 + 9/12, "feet"),
  38357. weight: math.unit(440, "lb"),
  38358. name: "Back",
  38359. image: {
  38360. source: "./media/characters/wilbur-owen/back.svg",
  38361. extra: 1578/1445,
  38362. bottom: 36/1614
  38363. }
  38364. },
  38365. },
  38366. [
  38367. {
  38368. name: "Normal",
  38369. height: math.unit(6 + 9/12, "feet"),
  38370. default: true
  38371. },
  38372. ]
  38373. ))
  38374. characterMakers.push(() => makeCharacter(
  38375. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38376. {
  38377. front: {
  38378. height: math.unit(6 + 5/12, "feet"),
  38379. weight: math.unit(650, "lb"),
  38380. name: "Front",
  38381. image: {
  38382. source: "./media/characters/keegan/front.svg",
  38383. extra: 2387/2198,
  38384. bottom: 33/2420
  38385. }
  38386. },
  38387. side: {
  38388. height: math.unit(6 + 5/12, "feet"),
  38389. weight: math.unit(650, "lb"),
  38390. name: "Side",
  38391. image: {
  38392. source: "./media/characters/keegan/side.svg",
  38393. extra: 2390/2202,
  38394. bottom: 47/2437
  38395. }
  38396. },
  38397. back: {
  38398. height: math.unit(6 + 5/12, "feet"),
  38399. weight: math.unit(650, "lb"),
  38400. name: "Back",
  38401. image: {
  38402. source: "./media/characters/keegan/back.svg",
  38403. extra: 2418/2268,
  38404. bottom: 15/2433
  38405. }
  38406. },
  38407. frontSfw: {
  38408. height: math.unit(6 + 5/12, "feet"),
  38409. weight: math.unit(650, "lb"),
  38410. name: "Front (SFW)",
  38411. image: {
  38412. source: "./media/characters/keegan/front-sfw.svg",
  38413. extra: 2387/2198,
  38414. bottom: 33/2420
  38415. }
  38416. },
  38417. beans: {
  38418. height: math.unit(1.85, "feet"),
  38419. name: "Beans",
  38420. image: {
  38421. source: "./media/characters/keegan/beans.svg"
  38422. }
  38423. },
  38424. },
  38425. [
  38426. {
  38427. name: "Normal",
  38428. height: math.unit(6 + 5/12, "feet"),
  38429. default: true
  38430. },
  38431. ]
  38432. ))
  38433. characterMakers.push(() => makeCharacter(
  38434. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38435. {
  38436. front: {
  38437. height: math.unit(9, "feet"),
  38438. name: "Front",
  38439. image: {
  38440. source: "./media/characters/colton/front.svg",
  38441. extra: 1589/1326,
  38442. bottom: 139/1728
  38443. }
  38444. },
  38445. },
  38446. [
  38447. {
  38448. name: "Normal",
  38449. height: math.unit(9, "feet"),
  38450. default: true
  38451. },
  38452. ]
  38453. ))
  38454. characterMakers.push(() => makeCharacter(
  38455. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38456. {
  38457. front: {
  38458. height: math.unit(2 + 9/12, "feet"),
  38459. name: "Front",
  38460. image: {
  38461. source: "./media/characters/bora/front.svg",
  38462. extra: 1265/1250,
  38463. bottom: 24/1289
  38464. }
  38465. },
  38466. },
  38467. [
  38468. {
  38469. name: "Normal",
  38470. height: math.unit(2 + 9/12, "feet"),
  38471. default: true
  38472. },
  38473. ]
  38474. ))
  38475. characterMakers.push(() => makeCharacter(
  38476. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38477. {
  38478. front: {
  38479. height: math.unit(8, "feet"),
  38480. name: "Front",
  38481. image: {
  38482. source: "./media/characters/myu-myu/front.svg",
  38483. extra: 1949/1857,
  38484. bottom: 90/2039
  38485. }
  38486. },
  38487. },
  38488. [
  38489. {
  38490. name: "Normal",
  38491. height: math.unit(8, "feet"),
  38492. default: true
  38493. },
  38494. {
  38495. name: "Big",
  38496. height: math.unit(15, "feet")
  38497. },
  38498. {
  38499. name: "BIG",
  38500. height: math.unit(25, "feet")
  38501. },
  38502. ]
  38503. ))
  38504. characterMakers.push(() => makeCharacter(
  38505. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38506. {
  38507. side: {
  38508. height: math.unit(7 + 5/12, "feet"),
  38509. weight: math.unit(2800, "lb"),
  38510. name: "Side",
  38511. image: {
  38512. source: "./media/characters/haloren/side.svg",
  38513. extra: 1793/409,
  38514. bottom: 59/1852
  38515. }
  38516. },
  38517. frontPaw: {
  38518. height: math.unit(2.36, "feet"),
  38519. name: "Front paw",
  38520. image: {
  38521. source: "./media/characters/haloren/front-paw.svg"
  38522. }
  38523. },
  38524. hindPaw: {
  38525. height: math.unit(3.18, "feet"),
  38526. name: "Hind paw",
  38527. image: {
  38528. source: "./media/characters/haloren/hind-paw.svg"
  38529. }
  38530. },
  38531. maw: {
  38532. height: math.unit(5.05, "feet"),
  38533. name: "Maw",
  38534. image: {
  38535. source: "./media/characters/haloren/maw.svg"
  38536. }
  38537. },
  38538. dick: {
  38539. height: math.unit(2.90, "feet"),
  38540. name: "Dick",
  38541. image: {
  38542. source: "./media/characters/haloren/dick.svg"
  38543. }
  38544. },
  38545. },
  38546. [
  38547. {
  38548. name: "Normal",
  38549. height: math.unit(7 + 5/12, "feet"),
  38550. default: true
  38551. },
  38552. {
  38553. name: "Enhanced",
  38554. height: math.unit(14 + 3/12, "feet")
  38555. },
  38556. ]
  38557. ))
  38558. characterMakers.push(() => makeCharacter(
  38559. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38560. {
  38561. front: {
  38562. height: math.unit(171, "cm"),
  38563. name: "Front",
  38564. image: {
  38565. source: "./media/characters/kimmy/front.svg",
  38566. extra: 1491/1435,
  38567. bottom: 53/1544
  38568. }
  38569. },
  38570. },
  38571. [
  38572. {
  38573. name: "Small",
  38574. height: math.unit(9, "cm")
  38575. },
  38576. {
  38577. name: "Normal",
  38578. height: math.unit(171, "cm"),
  38579. default: true
  38580. },
  38581. ]
  38582. ))
  38583. characterMakers.push(() => makeCharacter(
  38584. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38585. {
  38586. front: {
  38587. height: math.unit(8, "feet"),
  38588. weight: math.unit(300, "lb"),
  38589. name: "Front",
  38590. image: {
  38591. source: "./media/characters/galeboomer/front.svg",
  38592. extra: 4651/4415,
  38593. bottom: 162/4813
  38594. }
  38595. },
  38596. back: {
  38597. height: math.unit(8, "feet"),
  38598. weight: math.unit(300, "lb"),
  38599. name: "Back",
  38600. image: {
  38601. source: "./media/characters/galeboomer/back.svg",
  38602. extra: 4544/4314,
  38603. bottom: 16/4560
  38604. }
  38605. },
  38606. frontAlt: {
  38607. height: math.unit(8, "feet"),
  38608. weight: math.unit(300, "lb"),
  38609. name: "Front (Alt)",
  38610. image: {
  38611. source: "./media/characters/galeboomer/front-alt.svg",
  38612. extra: 4458/4228,
  38613. bottom: 68/4526
  38614. }
  38615. },
  38616. maw: {
  38617. height: math.unit(1.2, "feet"),
  38618. name: "Maw",
  38619. image: {
  38620. source: "./media/characters/galeboomer/maw.svg"
  38621. }
  38622. },
  38623. },
  38624. [
  38625. {
  38626. name: "Normal",
  38627. height: math.unit(8, "feet"),
  38628. default: true
  38629. },
  38630. ]
  38631. ))
  38632. characterMakers.push(() => makeCharacter(
  38633. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38634. {
  38635. front: {
  38636. height: math.unit(5 + 9/12, "feet"),
  38637. weight: math.unit(120, "lb"),
  38638. name: "Front",
  38639. image: {
  38640. source: "./media/characters/chyr/front.svg",
  38641. extra: 1323/1254,
  38642. bottom: 63/1386
  38643. }
  38644. },
  38645. back: {
  38646. height: math.unit(5 + 9/12, "feet"),
  38647. weight: math.unit(120, "lb"),
  38648. name: "Back",
  38649. image: {
  38650. source: "./media/characters/chyr/back.svg",
  38651. extra: 1323/1252,
  38652. bottom: 48/1371
  38653. }
  38654. },
  38655. },
  38656. [
  38657. {
  38658. name: "Normal",
  38659. height: math.unit(5 + 9/12, "feet"),
  38660. default: true
  38661. },
  38662. ]
  38663. ))
  38664. characterMakers.push(() => makeCharacter(
  38665. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38666. {
  38667. front: {
  38668. height: math.unit(7, "feet"),
  38669. weight: math.unit(310, "lb"),
  38670. name: "Front",
  38671. image: {
  38672. source: "./media/characters/solarus/front.svg",
  38673. extra: 2415/2021,
  38674. bottom: 103/2518
  38675. }
  38676. },
  38677. back: {
  38678. height: math.unit(7, "feet"),
  38679. weight: math.unit(310, "lb"),
  38680. name: "Back",
  38681. image: {
  38682. source: "./media/characters/solarus/back.svg",
  38683. extra: 2463/2089,
  38684. bottom: 79/2542
  38685. }
  38686. },
  38687. },
  38688. [
  38689. {
  38690. name: "Normal",
  38691. height: math.unit(7, "feet"),
  38692. default: true
  38693. },
  38694. ]
  38695. ))
  38696. characterMakers.push(() => makeCharacter(
  38697. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38698. {
  38699. front: {
  38700. height: math.unit(16, "feet"),
  38701. name: "Front",
  38702. image: {
  38703. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38704. extra: 1844/1780,
  38705. bottom: 58/1902
  38706. }
  38707. },
  38708. winterCoat: {
  38709. height: math.unit(16, "feet"),
  38710. name: "Winter Coat",
  38711. image: {
  38712. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38713. extra: 1807/1775,
  38714. bottom: 69/1876
  38715. }
  38716. },
  38717. },
  38718. [
  38719. {
  38720. name: "Normal",
  38721. height: math.unit(16, "feet"),
  38722. default: true
  38723. },
  38724. {
  38725. name: "Chicago Size",
  38726. height: math.unit(560, "feet")
  38727. },
  38728. ]
  38729. ))
  38730. characterMakers.push(() => makeCharacter(
  38731. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38732. {
  38733. front: {
  38734. height: math.unit(11 + 6/12, "feet"),
  38735. weight: math.unit(1366, "lb"),
  38736. name: "Front",
  38737. image: {
  38738. source: "./media/characters/lexor/front.svg",
  38739. extra: 1560/1481,
  38740. bottom: 211/1771
  38741. }
  38742. },
  38743. back: {
  38744. height: math.unit(11 + 6/12, "feet"),
  38745. weight: math.unit(1366, "lb"),
  38746. name: "Back",
  38747. image: {
  38748. source: "./media/characters/lexor/back.svg",
  38749. extra: 1614/1533,
  38750. bottom: 76/1690
  38751. }
  38752. },
  38753. maw: {
  38754. height: math.unit(3, "feet"),
  38755. name: "Maw",
  38756. image: {
  38757. source: "./media/characters/lexor/maw.svg"
  38758. }
  38759. },
  38760. dick: {
  38761. height: math.unit(2.59, "feet"),
  38762. name: "Dick",
  38763. image: {
  38764. source: "./media/characters/lexor/dick.svg"
  38765. }
  38766. },
  38767. },
  38768. [
  38769. {
  38770. name: "Normal",
  38771. height: math.unit(11 + 6/12, "feet"),
  38772. default: true
  38773. },
  38774. ]
  38775. ))
  38776. characterMakers.push(() => makeCharacter(
  38777. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38778. {
  38779. front: {
  38780. height: math.unit(5 + 8/12, "feet"),
  38781. name: "Front",
  38782. image: {
  38783. source: "./media/characters/magnum/front.svg",
  38784. extra: 942/855,
  38785. bottom: 26/968
  38786. }
  38787. },
  38788. },
  38789. [
  38790. {
  38791. name: "Normal",
  38792. height: math.unit(5 + 8/12, "feet"),
  38793. default: true
  38794. },
  38795. ]
  38796. ))
  38797. characterMakers.push(() => makeCharacter(
  38798. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38799. {
  38800. front: {
  38801. height: math.unit(18 + 4/12, "feet"),
  38802. weight: math.unit(1500, "kg"),
  38803. name: "Front",
  38804. image: {
  38805. source: "./media/characters/solas-sharpsman/front.svg",
  38806. extra: 1698/1589,
  38807. bottom: 0/1698
  38808. }
  38809. },
  38810. },
  38811. [
  38812. {
  38813. name: "Normal",
  38814. height: math.unit(18 + 4/12, "feet"),
  38815. default: true
  38816. },
  38817. ]
  38818. ))
  38819. characterMakers.push(() => makeCharacter(
  38820. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38821. {
  38822. front: {
  38823. height: math.unit(5 + 5/12, "feet"),
  38824. weight: math.unit(180, "lb"),
  38825. name: "Front",
  38826. image: {
  38827. source: "./media/characters/october/front.svg",
  38828. extra: 1800/1650,
  38829. bottom: 0/1800
  38830. }
  38831. },
  38832. frontNsfw: {
  38833. height: math.unit(5 + 5/12, "feet"),
  38834. weight: math.unit(180, "lb"),
  38835. name: "Front (NSFW)",
  38836. image: {
  38837. source: "./media/characters/october/front-nsfw.svg",
  38838. extra: 1392/1307,
  38839. bottom: 42/1434
  38840. }
  38841. },
  38842. },
  38843. [
  38844. {
  38845. name: "Normal",
  38846. height: math.unit(5 + 5/12, "feet"),
  38847. default: true
  38848. },
  38849. ]
  38850. ))
  38851. characterMakers.push(() => makeCharacter(
  38852. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38853. {
  38854. front: {
  38855. height: math.unit(8 + 6/12, "feet"),
  38856. name: "Front",
  38857. image: {
  38858. source: "./media/characters/essynkardi/front.svg",
  38859. extra: 1914/1846,
  38860. bottom: 22/1936
  38861. }
  38862. },
  38863. },
  38864. [
  38865. {
  38866. name: "Normal",
  38867. height: math.unit(8 + 6/12, "feet"),
  38868. default: true
  38869. },
  38870. ]
  38871. ))
  38872. characterMakers.push(() => makeCharacter(
  38873. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38874. {
  38875. front: {
  38876. height: math.unit(6 + 6/12, "feet"),
  38877. weight: math.unit(7, "lb"),
  38878. name: "Front",
  38879. image: {
  38880. source: "./media/characters/icky/front.svg",
  38881. extra: 813/782,
  38882. bottom: 66/879
  38883. }
  38884. },
  38885. back: {
  38886. height: math.unit(6 + 6/12, "feet"),
  38887. weight: math.unit(7, "lb"),
  38888. name: "Back",
  38889. image: {
  38890. source: "./media/characters/icky/back.svg",
  38891. extra: 754/735,
  38892. bottom: 56/810
  38893. }
  38894. },
  38895. },
  38896. [
  38897. {
  38898. name: "Normal",
  38899. height: math.unit(6 + 6/12, "feet"),
  38900. default: true
  38901. },
  38902. ]
  38903. ))
  38904. characterMakers.push(() => makeCharacter(
  38905. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38906. {
  38907. front: {
  38908. height: math.unit(15, "feet"),
  38909. name: "Front",
  38910. image: {
  38911. source: "./media/characters/rojas/front.svg",
  38912. extra: 1462/1408,
  38913. bottom: 95/1557
  38914. }
  38915. },
  38916. back: {
  38917. height: math.unit(15, "feet"),
  38918. name: "Back",
  38919. image: {
  38920. source: "./media/characters/rojas/back.svg",
  38921. extra: 1023/954,
  38922. bottom: 28/1051
  38923. }
  38924. },
  38925. },
  38926. [
  38927. {
  38928. name: "Normal",
  38929. height: math.unit(15, "feet"),
  38930. default: true
  38931. },
  38932. ]
  38933. ))
  38934. characterMakers.push(() => makeCharacter(
  38935. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38936. {
  38937. frontHuman: {
  38938. height: math.unit(5 + 7/12, "feet"),
  38939. name: "Front (Human)",
  38940. image: {
  38941. source: "./media/characters/alek-dryagan/front-human.svg",
  38942. extra: 1687/1667,
  38943. bottom: 69/1756
  38944. }
  38945. },
  38946. backHuman: {
  38947. height: math.unit(5 + 7/12, "feet"),
  38948. name: "Back (Human)",
  38949. image: {
  38950. source: "./media/characters/alek-dryagan/back-human.svg",
  38951. extra: 1670/1649,
  38952. bottom: 65/1735
  38953. }
  38954. },
  38955. frontDemi: {
  38956. height: math.unit(65, "feet"),
  38957. name: "Front (Demi)",
  38958. image: {
  38959. source: "./media/characters/alek-dryagan/front-demi.svg",
  38960. extra: 1669/1642,
  38961. bottom: 49/1718
  38962. }
  38963. },
  38964. backDemi: {
  38965. height: math.unit(65, "feet"),
  38966. name: "Back (Demi)",
  38967. image: {
  38968. source: "./media/characters/alek-dryagan/back-demi.svg",
  38969. extra: 1658/1637,
  38970. bottom: 40/1698
  38971. }
  38972. },
  38973. mawHuman: {
  38974. height: math.unit(0.3, "feet"),
  38975. name: "Maw (Human)",
  38976. image: {
  38977. source: "./media/characters/alek-dryagan/maw-human.svg"
  38978. }
  38979. },
  38980. mawDemi: {
  38981. height: math.unit(3.8, "feet"),
  38982. name: "Maw (Demi)",
  38983. image: {
  38984. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38985. }
  38986. },
  38987. },
  38988. [
  38989. {
  38990. name: "Normal",
  38991. height: math.unit(5 + 7/12, "feet"),
  38992. default: true
  38993. },
  38994. ]
  38995. ))
  38996. characterMakers.push(() => makeCharacter(
  38997. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38998. {
  38999. frontHuman: {
  39000. height: math.unit(5 + 2/12, "feet"),
  39001. name: "Front (Human)",
  39002. image: {
  39003. source: "./media/characters/gen/front-human.svg",
  39004. extra: 1627/1538,
  39005. bottom: 71/1698
  39006. }
  39007. },
  39008. backHuman: {
  39009. height: math.unit(5 + 2/12, "feet"),
  39010. name: "Back (Human)",
  39011. image: {
  39012. source: "./media/characters/gen/back-human.svg",
  39013. extra: 1638/1548,
  39014. bottom: 69/1707
  39015. }
  39016. },
  39017. frontDemi: {
  39018. height: math.unit(5 + 2/12, "feet"),
  39019. name: "Front (Demi)",
  39020. image: {
  39021. source: "./media/characters/gen/front-demi.svg",
  39022. extra: 1627/1538,
  39023. bottom: 71/1698
  39024. }
  39025. },
  39026. backDemi: {
  39027. height: math.unit(5 + 2/12, "feet"),
  39028. name: "Back (Demi)",
  39029. image: {
  39030. source: "./media/characters/gen/back-demi.svg",
  39031. extra: 1638/1548,
  39032. bottom: 69/1707
  39033. }
  39034. },
  39035. },
  39036. [
  39037. {
  39038. name: "Normal",
  39039. height: math.unit(5 + 2/12, "feet"),
  39040. default: true
  39041. },
  39042. ]
  39043. ))
  39044. characterMakers.push(() => makeCharacter(
  39045. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39046. {
  39047. frontImp: {
  39048. height: math.unit(1 + 11/12, "feet"),
  39049. name: "Front (Imp)",
  39050. image: {
  39051. source: "./media/characters/max-kobold/front-imp.svg",
  39052. extra: 1238/1134,
  39053. bottom: 81/1319
  39054. }
  39055. },
  39056. backImp: {
  39057. height: math.unit(1 + 11/12, "feet"),
  39058. name: "Back (Imp)",
  39059. image: {
  39060. source: "./media/characters/max-kobold/back-imp.svg",
  39061. extra: 1334/1175,
  39062. bottom: 34/1368
  39063. }
  39064. },
  39065. frontDemi: {
  39066. height: math.unit(5 + 9/12, "feet"),
  39067. name: "Front (Demi)",
  39068. image: {
  39069. source: "./media/characters/max-kobold/front-demi.svg",
  39070. extra: 1715/1685,
  39071. bottom: 54/1769
  39072. }
  39073. },
  39074. backDemi: {
  39075. height: math.unit(5 + 9/12, "feet"),
  39076. name: "Back (Demi)",
  39077. image: {
  39078. source: "./media/characters/max-kobold/back-demi.svg",
  39079. extra: 1752/1729,
  39080. bottom: 41/1793
  39081. }
  39082. },
  39083. handImp: {
  39084. height: math.unit(0.45, "feet"),
  39085. name: "Hand (Imp)",
  39086. image: {
  39087. source: "./media/characters/max-kobold/hand.svg"
  39088. }
  39089. },
  39090. pawImp: {
  39091. height: math.unit(0.46, "feet"),
  39092. name: "Paw (Imp)",
  39093. image: {
  39094. source: "./media/characters/max-kobold/paw.svg"
  39095. }
  39096. },
  39097. handDemi: {
  39098. height: math.unit(0.80, "feet"),
  39099. name: "Hand (Demi)",
  39100. image: {
  39101. source: "./media/characters/max-kobold/hand.svg"
  39102. }
  39103. },
  39104. pawDemi: {
  39105. height: math.unit(1.1, "feet"),
  39106. name: "Paw (Demi)",
  39107. image: {
  39108. source: "./media/characters/max-kobold/paw.svg"
  39109. }
  39110. },
  39111. headImp: {
  39112. height: math.unit(1.33, "feet"),
  39113. name: "Head (Imp)",
  39114. image: {
  39115. source: "./media/characters/max-kobold/head-imp.svg"
  39116. }
  39117. },
  39118. mawImp: {
  39119. height: math.unit(0.75, "feet"),
  39120. name: "Maw (Imp)",
  39121. image: {
  39122. source: "./media/characters/max-kobold/maw-imp.svg"
  39123. }
  39124. },
  39125. mawDemi: {
  39126. height: math.unit(0.42, "feet"),
  39127. name: "Maw (Demi)",
  39128. image: {
  39129. source: "./media/characters/max-kobold/maw-demi.svg"
  39130. }
  39131. },
  39132. },
  39133. [
  39134. {
  39135. name: "Normal",
  39136. height: math.unit(1 + 11/12, "feet"),
  39137. default: true
  39138. },
  39139. ]
  39140. ))
  39141. characterMakers.push(() => makeCharacter(
  39142. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39143. {
  39144. front: {
  39145. height: math.unit(7 + 5/12, "feet"),
  39146. name: "Front",
  39147. image: {
  39148. source: "./media/characters/carbon/front.svg",
  39149. extra: 1754/1689,
  39150. bottom: 65/1819
  39151. }
  39152. },
  39153. back: {
  39154. height: math.unit(7 + 5/12, "feet"),
  39155. name: "Back",
  39156. image: {
  39157. source: "./media/characters/carbon/back.svg",
  39158. extra: 1762/1695,
  39159. bottom: 24/1786
  39160. }
  39161. },
  39162. frontGigantamax: {
  39163. height: math.unit(150, "feet"),
  39164. name: "Front (Gigantamax)",
  39165. image: {
  39166. source: "./media/characters/carbon/front-gigantamax.svg",
  39167. extra: 1826/1669,
  39168. bottom: 59/1885
  39169. }
  39170. },
  39171. backGigantamax: {
  39172. height: math.unit(150, "feet"),
  39173. name: "Back (Gigantamax)",
  39174. image: {
  39175. source: "./media/characters/carbon/back-gigantamax.svg",
  39176. extra: 1796/1653,
  39177. bottom: 53/1849
  39178. }
  39179. },
  39180. maw: {
  39181. height: math.unit(0.48, "feet"),
  39182. name: "Maw",
  39183. image: {
  39184. source: "./media/characters/carbon/maw.svg"
  39185. }
  39186. },
  39187. mawGigantamax: {
  39188. height: math.unit(7.5, "feet"),
  39189. name: "Maw (Gigantamax)",
  39190. image: {
  39191. source: "./media/characters/carbon/maw-gigantamax.svg"
  39192. }
  39193. },
  39194. },
  39195. [
  39196. {
  39197. name: "Normal",
  39198. height: math.unit(7 + 5/12, "feet"),
  39199. default: true
  39200. },
  39201. ]
  39202. ))
  39203. characterMakers.push(() => makeCharacter(
  39204. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39205. {
  39206. front: {
  39207. height: math.unit(6, "feet"),
  39208. name: "Front",
  39209. image: {
  39210. source: "./media/characters/maverick/front.svg",
  39211. extra: 1672/1661,
  39212. bottom: 85/1757
  39213. }
  39214. },
  39215. back: {
  39216. height: math.unit(6, "feet"),
  39217. name: "Back",
  39218. image: {
  39219. source: "./media/characters/maverick/back.svg",
  39220. extra: 1642/1631,
  39221. bottom: 38/1680
  39222. }
  39223. },
  39224. },
  39225. [
  39226. {
  39227. name: "Normal",
  39228. height: math.unit(6, "feet"),
  39229. default: true
  39230. },
  39231. ]
  39232. ))
  39233. characterMakers.push(() => makeCharacter(
  39234. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39235. {
  39236. front: {
  39237. height: math.unit(15, "feet"),
  39238. weight: math.unit(615, "lb"),
  39239. name: "Front",
  39240. image: {
  39241. source: "./media/characters/grockle/front.svg",
  39242. extra: 1535/1427,
  39243. bottom: 56/1591
  39244. }
  39245. },
  39246. },
  39247. [
  39248. {
  39249. name: "Normal",
  39250. height: math.unit(15, "feet"),
  39251. default: true
  39252. },
  39253. {
  39254. name: "Large",
  39255. height: math.unit(150, "feet")
  39256. },
  39257. {
  39258. name: "Macro",
  39259. height: math.unit(1876, "feet")
  39260. },
  39261. {
  39262. name: "Mega Macro",
  39263. height: math.unit(121940, "feet")
  39264. },
  39265. {
  39266. name: "Giga Macro",
  39267. height: math.unit(750, "km")
  39268. },
  39269. {
  39270. name: "Tera Macro",
  39271. height: math.unit(750000, "km")
  39272. },
  39273. {
  39274. name: "Galactic",
  39275. height: math.unit(1.4e5, "km")
  39276. },
  39277. {
  39278. name: "Godlike",
  39279. height: math.unit(9.8e280, "galaxies")
  39280. },
  39281. ]
  39282. ))
  39283. characterMakers.push(() => makeCharacter(
  39284. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39285. {
  39286. front: {
  39287. height: math.unit(11, "meters"),
  39288. weight: math.unit(20, "tonnes"),
  39289. name: "Front",
  39290. image: {
  39291. source: "./media/characters/alistair/front.svg",
  39292. extra: 1265/1009,
  39293. bottom: 93/1358
  39294. }
  39295. },
  39296. },
  39297. [
  39298. {
  39299. name: "Normal",
  39300. height: math.unit(11, "meters"),
  39301. default: true
  39302. },
  39303. ]
  39304. ))
  39305. characterMakers.push(() => makeCharacter(
  39306. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39307. {
  39308. front: {
  39309. height: math.unit(5 + 8/12, "feet"),
  39310. name: "Front",
  39311. image: {
  39312. source: "./media/characters/haruka/front.svg",
  39313. extra: 2012/1952,
  39314. bottom: 0/2012
  39315. }
  39316. },
  39317. },
  39318. [
  39319. {
  39320. name: "Normal",
  39321. height: math.unit(5 + 8/12, "feet"),
  39322. default: true
  39323. },
  39324. ]
  39325. ))
  39326. characterMakers.push(() => makeCharacter(
  39327. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39328. {
  39329. back: {
  39330. height: math.unit(9, "feet"),
  39331. name: "Back",
  39332. image: {
  39333. source: "./media/characters/vivian-sylveon/back.svg",
  39334. extra: 1853/1714,
  39335. bottom: 0/1853
  39336. }
  39337. },
  39338. },
  39339. [
  39340. {
  39341. name: "Normal",
  39342. height: math.unit(9, "feet"),
  39343. default: true
  39344. },
  39345. {
  39346. name: "Macro",
  39347. height: math.unit(500, "feet")
  39348. },
  39349. {
  39350. name: "Megamacro",
  39351. height: math.unit(600, "miles")
  39352. },
  39353. {
  39354. name: "Gigamacro",
  39355. height: math.unit(30000, "miles")
  39356. },
  39357. ]
  39358. ))
  39359. characterMakers.push(() => makeCharacter(
  39360. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39361. {
  39362. anthro: {
  39363. height: math.unit(5 + 10/12, "feet"),
  39364. weight: math.unit(100, "lb"),
  39365. name: "Anthro",
  39366. image: {
  39367. source: "./media/characters/daiki/anthro.svg",
  39368. extra: 1115/1027,
  39369. bottom: 69/1184
  39370. }
  39371. },
  39372. feral: {
  39373. height: math.unit(200, "feet"),
  39374. name: "Feral",
  39375. image: {
  39376. source: "./media/characters/daiki/feral.svg",
  39377. extra: 1256/313,
  39378. bottom: 39/1295
  39379. }
  39380. },
  39381. feralHead: {
  39382. height: math.unit(171, "feet"),
  39383. name: "Feral Head",
  39384. image: {
  39385. source: "./media/characters/daiki/feral-head.svg"
  39386. }
  39387. },
  39388. manaDragon: {
  39389. height: math.unit(170, "meters"),
  39390. name: "Mana-dragon",
  39391. image: {
  39392. source: "./media/characters/daiki/mana-dragon.svg",
  39393. extra: 763/420,
  39394. bottom: 97/860
  39395. }
  39396. },
  39397. },
  39398. [
  39399. {
  39400. name: "Normal",
  39401. height: math.unit(5 + 10/12, "feet"),
  39402. default: true
  39403. },
  39404. ]
  39405. ))
  39406. characterMakers.push(() => makeCharacter(
  39407. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39408. {
  39409. fullyEquippedFront: {
  39410. height: math.unit(3 + 1/12, "feet"),
  39411. weight: math.unit(24, "lb"),
  39412. name: "Fully Equipped (Front)",
  39413. image: {
  39414. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39415. extra: 687/605,
  39416. bottom: 18/705
  39417. }
  39418. },
  39419. fullyEquippedBack: {
  39420. height: math.unit(3 + 1/12, "feet"),
  39421. weight: math.unit(24, "lb"),
  39422. name: "Fully Equipped (Back)",
  39423. image: {
  39424. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39425. extra: 689/590,
  39426. bottom: 18/707
  39427. }
  39428. },
  39429. dailyWear: {
  39430. height: math.unit(3 + 1/12, "feet"),
  39431. weight: math.unit(24, "lb"),
  39432. name: "Daily Wear",
  39433. image: {
  39434. source: "./media/characters/tea-spot/daily-wear.svg",
  39435. extra: 701/620,
  39436. bottom: 21/722
  39437. }
  39438. },
  39439. maidWork: {
  39440. height: math.unit(3 + 1/12, "feet"),
  39441. weight: math.unit(24, "lb"),
  39442. name: "Maid Work",
  39443. image: {
  39444. source: "./media/characters/tea-spot/maid-work.svg",
  39445. extra: 693/609,
  39446. bottom: 15/708
  39447. }
  39448. },
  39449. },
  39450. [
  39451. {
  39452. name: "Normal",
  39453. height: math.unit(3 + 1/12, "feet"),
  39454. default: true
  39455. },
  39456. ]
  39457. ))
  39458. characterMakers.push(() => makeCharacter(
  39459. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39460. {
  39461. front: {
  39462. height: math.unit(175, "cm"),
  39463. weight: math.unit(75, "kg"),
  39464. name: "Front",
  39465. image: {
  39466. source: "./media/characters/chee/front.svg",
  39467. extra: 1796/1740,
  39468. bottom: 40/1836
  39469. }
  39470. },
  39471. },
  39472. [
  39473. {
  39474. name: "Micro-Micro",
  39475. height: math.unit(1, "nm")
  39476. },
  39477. {
  39478. name: "Micro-erst",
  39479. height: math.unit(1, "micrometer")
  39480. },
  39481. {
  39482. name: "Micro-er",
  39483. height: math.unit(1, "cm")
  39484. },
  39485. {
  39486. name: "Normal",
  39487. height: math.unit(175, "cm"),
  39488. default: true
  39489. },
  39490. {
  39491. name: "Macro",
  39492. height: math.unit(100, "m")
  39493. },
  39494. {
  39495. name: "Macro-er",
  39496. height: math.unit(1, "km")
  39497. },
  39498. {
  39499. name: "Macro-erst",
  39500. height: math.unit(10, "km")
  39501. },
  39502. {
  39503. name: "Macro-Macro",
  39504. height: math.unit(100, "km")
  39505. },
  39506. ]
  39507. ))
  39508. characterMakers.push(() => makeCharacter(
  39509. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39510. {
  39511. front: {
  39512. height: math.unit(11 + 9/12, "feet"),
  39513. weight: math.unit(935, "lb"),
  39514. name: "Front",
  39515. image: {
  39516. source: "./media/characters/kingsley/front.svg",
  39517. extra: 1803/1674,
  39518. bottom: 127/1930
  39519. }
  39520. },
  39521. frontNude: {
  39522. height: math.unit(11 + 9/12, "feet"),
  39523. weight: math.unit(935, "lb"),
  39524. name: "Front (Nude)",
  39525. image: {
  39526. source: "./media/characters/kingsley/front-nude.svg",
  39527. extra: 1803/1674,
  39528. bottom: 127/1930
  39529. }
  39530. },
  39531. },
  39532. [
  39533. {
  39534. name: "Normal",
  39535. height: math.unit(11 + 9/12, "feet"),
  39536. default: true
  39537. },
  39538. ]
  39539. ))
  39540. characterMakers.push(() => makeCharacter(
  39541. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39542. {
  39543. side: {
  39544. height: math.unit(9, "feet"),
  39545. name: "Side",
  39546. image: {
  39547. source: "./media/characters/rymel/side.svg",
  39548. extra: 792/469,
  39549. bottom: 121/913
  39550. }
  39551. },
  39552. maw: {
  39553. height: math.unit(2.4, "meters"),
  39554. name: "Maw",
  39555. image: {
  39556. source: "./media/characters/rymel/maw.svg"
  39557. }
  39558. },
  39559. },
  39560. [
  39561. {
  39562. name: "House Drake",
  39563. height: math.unit(2, "feet")
  39564. },
  39565. {
  39566. name: "Reduced",
  39567. height: math.unit(4.5, "feet")
  39568. },
  39569. {
  39570. name: "Normal",
  39571. height: math.unit(9, "feet"),
  39572. default: true
  39573. },
  39574. ]
  39575. ))
  39576. characterMakers.push(() => makeCharacter(
  39577. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39578. {
  39579. front: {
  39580. height: math.unit(1.74, "meters"),
  39581. weight: math.unit(55, "kg"),
  39582. name: "Front",
  39583. image: {
  39584. source: "./media/characters/rubus/front.svg",
  39585. extra: 1894/1742,
  39586. bottom: 44/1938
  39587. }
  39588. },
  39589. },
  39590. [
  39591. {
  39592. name: "Normal",
  39593. height: math.unit(1.74, "meters"),
  39594. default: true
  39595. },
  39596. ]
  39597. ))
  39598. characterMakers.push(() => makeCharacter(
  39599. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39600. {
  39601. front: {
  39602. height: math.unit(5 + 2/12, "feet"),
  39603. weight: math.unit(112, "lb"),
  39604. name: "Front",
  39605. image: {
  39606. source: "./media/characters/cassie-kingston/front.svg",
  39607. extra: 1438/1390,
  39608. bottom: 47/1485
  39609. }
  39610. },
  39611. },
  39612. [
  39613. {
  39614. name: "Normal",
  39615. height: math.unit(5 + 2/12, "feet"),
  39616. default: true
  39617. },
  39618. {
  39619. name: "Macro",
  39620. height: math.unit(128, "feet")
  39621. },
  39622. {
  39623. name: "Megamacro",
  39624. height: math.unit(2.56, "miles")
  39625. },
  39626. ]
  39627. ))
  39628. characterMakers.push(() => makeCharacter(
  39629. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39630. {
  39631. front: {
  39632. height: math.unit(7, "feet"),
  39633. name: "Front",
  39634. image: {
  39635. source: "./media/characters/fox/front.svg",
  39636. extra: 1798/1703,
  39637. bottom: 55/1853
  39638. }
  39639. },
  39640. back: {
  39641. height: math.unit(7, "feet"),
  39642. name: "Back",
  39643. image: {
  39644. source: "./media/characters/fox/back.svg",
  39645. extra: 1748/1649,
  39646. bottom: 32/1780
  39647. }
  39648. },
  39649. head: {
  39650. height: math.unit(1.95, "feet"),
  39651. name: "Head",
  39652. image: {
  39653. source: "./media/characters/fox/head.svg"
  39654. }
  39655. },
  39656. dick: {
  39657. height: math.unit(1.33, "feet"),
  39658. name: "Dick",
  39659. image: {
  39660. source: "./media/characters/fox/dick.svg"
  39661. }
  39662. },
  39663. foot: {
  39664. height: math.unit(1, "feet"),
  39665. name: "Foot",
  39666. image: {
  39667. source: "./media/characters/fox/foot.svg"
  39668. }
  39669. },
  39670. paw: {
  39671. height: math.unit(0.92, "feet"),
  39672. name: "Paw",
  39673. image: {
  39674. source: "./media/characters/fox/paw.svg"
  39675. }
  39676. },
  39677. },
  39678. [
  39679. {
  39680. name: "Small",
  39681. height: math.unit(3, "inches")
  39682. },
  39683. {
  39684. name: "\"Realistic\"",
  39685. height: math.unit(7, "feet")
  39686. },
  39687. {
  39688. name: "Normal",
  39689. height: math.unit(150, "feet"),
  39690. default: true
  39691. },
  39692. {
  39693. name: "BIG",
  39694. height: math.unit(1200, "feet")
  39695. },
  39696. {
  39697. name: "👀",
  39698. height: math.unit(5, "miles")
  39699. },
  39700. {
  39701. name: "👀👀👀",
  39702. height: math.unit(64, "miles")
  39703. },
  39704. ]
  39705. ))
  39706. characterMakers.push(() => makeCharacter(
  39707. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39708. {
  39709. front: {
  39710. height: math.unit(625, "feet"),
  39711. name: "Front",
  39712. image: {
  39713. source: "./media/characters/asonja-rossa/front.svg",
  39714. extra: 1833/1686,
  39715. bottom: 24/1857
  39716. }
  39717. },
  39718. back: {
  39719. height: math.unit(625, "feet"),
  39720. name: "Back",
  39721. image: {
  39722. source: "./media/characters/asonja-rossa/back.svg",
  39723. extra: 1852/1753,
  39724. bottom: 26/1878
  39725. }
  39726. },
  39727. },
  39728. [
  39729. {
  39730. name: "Macro",
  39731. height: math.unit(625, "feet"),
  39732. default: true
  39733. },
  39734. ]
  39735. ))
  39736. characterMakers.push(() => makeCharacter(
  39737. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39738. {
  39739. side: {
  39740. height: math.unit(8, "feet"),
  39741. name: "Side",
  39742. image: {
  39743. source: "./media/characters/rezukii/side.svg",
  39744. extra: 979/542,
  39745. bottom: 87/1066
  39746. }
  39747. },
  39748. sitting: {
  39749. height: math.unit(14.6, "feet"),
  39750. name: "Sitting",
  39751. image: {
  39752. source: "./media/characters/rezukii/sitting.svg",
  39753. extra: 1023/813,
  39754. bottom: 45/1068
  39755. }
  39756. },
  39757. },
  39758. [
  39759. {
  39760. name: "Tiny",
  39761. height: math.unit(2, "feet")
  39762. },
  39763. {
  39764. name: "Smol",
  39765. height: math.unit(4, "feet")
  39766. },
  39767. {
  39768. name: "Normal",
  39769. height: math.unit(8, "feet"),
  39770. default: true
  39771. },
  39772. {
  39773. name: "Big",
  39774. height: math.unit(12, "feet")
  39775. },
  39776. {
  39777. name: "Macro",
  39778. height: math.unit(30, "feet")
  39779. },
  39780. ]
  39781. ))
  39782. characterMakers.push(() => makeCharacter(
  39783. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39784. {
  39785. front: {
  39786. height: math.unit(14, "feet"),
  39787. weight: math.unit(9.5, "tonnes"),
  39788. name: "Front",
  39789. image: {
  39790. source: "./media/characters/dawnheart/front.svg",
  39791. extra: 2792/2675,
  39792. bottom: 64/2856
  39793. }
  39794. },
  39795. },
  39796. [
  39797. {
  39798. name: "Normal",
  39799. height: math.unit(14, "feet"),
  39800. default: true
  39801. },
  39802. ]
  39803. ))
  39804. characterMakers.push(() => makeCharacter(
  39805. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39806. {
  39807. front: {
  39808. height: math.unit(1.7, "m"),
  39809. name: "Front",
  39810. image: {
  39811. source: "./media/characters/gladi/front.svg",
  39812. extra: 1460/1362,
  39813. bottom: 19/1479
  39814. }
  39815. },
  39816. back: {
  39817. height: math.unit(1.7, "m"),
  39818. name: "Back",
  39819. image: {
  39820. source: "./media/characters/gladi/back.svg",
  39821. extra: 1459/1357,
  39822. bottom: 12/1471
  39823. }
  39824. },
  39825. feral: {
  39826. height: math.unit(2.05, "m"),
  39827. name: "Feral",
  39828. image: {
  39829. source: "./media/characters/gladi/feral.svg",
  39830. extra: 821/557,
  39831. bottom: 91/912
  39832. }
  39833. },
  39834. },
  39835. [
  39836. {
  39837. name: "Shortest",
  39838. height: math.unit(70, "cm")
  39839. },
  39840. {
  39841. name: "Normal",
  39842. height: math.unit(1.7, "m")
  39843. },
  39844. {
  39845. name: "Macro",
  39846. height: math.unit(10, "m"),
  39847. default: true
  39848. },
  39849. {
  39850. name: "Tallest",
  39851. height: math.unit(200, "m")
  39852. },
  39853. ]
  39854. ))
  39855. characterMakers.push(() => makeCharacter(
  39856. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39857. {
  39858. front: {
  39859. height: math.unit(5 + 7/12, "feet"),
  39860. weight: math.unit(2, "tons"),
  39861. name: "Front",
  39862. image: {
  39863. source: "./media/characters/erdno/front.svg",
  39864. extra: 1234/1129,
  39865. bottom: 35/1269
  39866. }
  39867. },
  39868. angled: {
  39869. height: math.unit(5 + 7/12, "feet"),
  39870. weight: math.unit(2, "tons"),
  39871. name: "Angled",
  39872. image: {
  39873. source: "./media/characters/erdno/angled.svg",
  39874. extra: 1185/1139,
  39875. bottom: 36/1221
  39876. }
  39877. },
  39878. side: {
  39879. height: math.unit(5 + 7/12, "feet"),
  39880. weight: math.unit(2, "tons"),
  39881. name: "Side",
  39882. image: {
  39883. source: "./media/characters/erdno/side.svg",
  39884. extra: 1191/1144,
  39885. bottom: 40/1231
  39886. }
  39887. },
  39888. back: {
  39889. height: math.unit(5 + 7/12, "feet"),
  39890. weight: math.unit(2, "tons"),
  39891. name: "Back",
  39892. image: {
  39893. source: "./media/characters/erdno/back.svg",
  39894. extra: 1202/1146,
  39895. bottom: 17/1219
  39896. }
  39897. },
  39898. frontNsfw: {
  39899. height: math.unit(5 + 7/12, "feet"),
  39900. weight: math.unit(2, "tons"),
  39901. name: "Front (NSFW)",
  39902. image: {
  39903. source: "./media/characters/erdno/front-nsfw.svg",
  39904. extra: 1234/1129,
  39905. bottom: 35/1269
  39906. }
  39907. },
  39908. angledNsfw: {
  39909. height: math.unit(5 + 7/12, "feet"),
  39910. weight: math.unit(2, "tons"),
  39911. name: "Angled (NSFW)",
  39912. image: {
  39913. source: "./media/characters/erdno/angled-nsfw.svg",
  39914. extra: 1185/1139,
  39915. bottom: 36/1221
  39916. }
  39917. },
  39918. sideNsfw: {
  39919. height: math.unit(5 + 7/12, "feet"),
  39920. weight: math.unit(2, "tons"),
  39921. name: "Side (NSFW)",
  39922. image: {
  39923. source: "./media/characters/erdno/side-nsfw.svg",
  39924. extra: 1191/1144,
  39925. bottom: 40/1231
  39926. }
  39927. },
  39928. backNsfw: {
  39929. height: math.unit(5 + 7/12, "feet"),
  39930. weight: math.unit(2, "tons"),
  39931. name: "Back (NSFW)",
  39932. image: {
  39933. source: "./media/characters/erdno/back-nsfw.svg",
  39934. extra: 1202/1146,
  39935. bottom: 17/1219
  39936. }
  39937. },
  39938. frontHyper: {
  39939. height: math.unit(5 + 7/12, "feet"),
  39940. weight: math.unit(2, "tons"),
  39941. name: "Front (Hyper)",
  39942. image: {
  39943. source: "./media/characters/erdno/front-hyper.svg",
  39944. extra: 1298/1136,
  39945. bottom: 35/1333
  39946. }
  39947. },
  39948. },
  39949. [
  39950. {
  39951. name: "Normal",
  39952. height: math.unit(5 + 7/12, "feet"),
  39953. default: true
  39954. },
  39955. {
  39956. name: "Big",
  39957. height: math.unit(5.7, "meters")
  39958. },
  39959. {
  39960. name: "Macro",
  39961. height: math.unit(5.7, "kilometers")
  39962. },
  39963. {
  39964. name: "Megamacro",
  39965. height: math.unit(5.7, "earths")
  39966. },
  39967. ]
  39968. ))
  39969. characterMakers.push(() => makeCharacter(
  39970. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39971. {
  39972. front: {
  39973. height: math.unit(5 + 10/12, "feet"),
  39974. weight: math.unit(150, "lb"),
  39975. name: "Front",
  39976. image: {
  39977. source: "./media/characters/jamie/front.svg",
  39978. extra: 1908/1768,
  39979. bottom: 19/1927
  39980. }
  39981. },
  39982. },
  39983. [
  39984. {
  39985. name: "Minimum",
  39986. height: math.unit(2, "cm")
  39987. },
  39988. {
  39989. name: "Micro",
  39990. height: math.unit(3, "inches")
  39991. },
  39992. {
  39993. name: "Normal",
  39994. height: math.unit(5 + 10/12, "feet"),
  39995. default: true
  39996. },
  39997. {
  39998. name: "Macro",
  39999. height: math.unit(150, "feet")
  40000. },
  40001. {
  40002. name: "Megamacro",
  40003. height: math.unit(10000, "m")
  40004. },
  40005. ]
  40006. ))
  40007. characterMakers.push(() => makeCharacter(
  40008. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40009. {
  40010. front: {
  40011. height: math.unit(2, "meters"),
  40012. weight: math.unit(100, "kg"),
  40013. name: "Front",
  40014. image: {
  40015. source: "./media/characters/shiron/front.svg",
  40016. extra: 2103/1985,
  40017. bottom: 98/2201
  40018. }
  40019. },
  40020. back: {
  40021. height: math.unit(2, "meters"),
  40022. weight: math.unit(100, "kg"),
  40023. name: "Back",
  40024. image: {
  40025. source: "./media/characters/shiron/back.svg",
  40026. extra: 2110/2015,
  40027. bottom: 89/2199
  40028. }
  40029. },
  40030. hand: {
  40031. height: math.unit(0.96, "feet"),
  40032. name: "Hand",
  40033. image: {
  40034. source: "./media/characters/shiron/hand.svg"
  40035. }
  40036. },
  40037. foot: {
  40038. height: math.unit(1.464, "feet"),
  40039. name: "Foot",
  40040. image: {
  40041. source: "./media/characters/shiron/foot.svg"
  40042. }
  40043. },
  40044. },
  40045. [
  40046. {
  40047. name: "Normal",
  40048. height: math.unit(2, "meters")
  40049. },
  40050. {
  40051. name: "Macro",
  40052. height: math.unit(500, "meters"),
  40053. default: true
  40054. },
  40055. {
  40056. name: "Megamacro",
  40057. height: math.unit(20, "km")
  40058. },
  40059. ]
  40060. ))
  40061. characterMakers.push(() => makeCharacter(
  40062. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40063. {
  40064. front: {
  40065. height: math.unit(6, "feet"),
  40066. name: "Front",
  40067. image: {
  40068. source: "./media/characters/sam/front.svg",
  40069. extra: 849/826,
  40070. bottom: 19/868
  40071. }
  40072. },
  40073. },
  40074. [
  40075. {
  40076. name: "Normal",
  40077. height: math.unit(6, "feet"),
  40078. default: true
  40079. },
  40080. ]
  40081. ))
  40082. characterMakers.push(() => makeCharacter(
  40083. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40084. {
  40085. front: {
  40086. height: math.unit(8 + 4/12, "feet"),
  40087. weight: math.unit(122, "kg"),
  40088. name: "Front",
  40089. image: {
  40090. source: "./media/characters/namori-kurogawa/front.svg",
  40091. extra: 1894/1576,
  40092. bottom: 34/1928
  40093. }
  40094. },
  40095. },
  40096. [
  40097. {
  40098. name: "Normal",
  40099. height: math.unit(8 + 4/12, "feet"),
  40100. default: true
  40101. },
  40102. ]
  40103. ))
  40104. characterMakers.push(() => makeCharacter(
  40105. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40106. {
  40107. front: {
  40108. height: math.unit(9, "feet"),
  40109. weight: math.unit(621, "lb"),
  40110. name: "Front",
  40111. image: {
  40112. source: "./media/characters/unmru/front.svg",
  40113. extra: 1853/1747,
  40114. bottom: 73/1926
  40115. }
  40116. },
  40117. side: {
  40118. height: math.unit(9, "feet"),
  40119. weight: math.unit(621, "lb"),
  40120. name: "Side",
  40121. image: {
  40122. source: "./media/characters/unmru/side.svg",
  40123. extra: 1781/1671,
  40124. bottom: 127/1908
  40125. }
  40126. },
  40127. back: {
  40128. height: math.unit(9, "feet"),
  40129. weight: math.unit(621, "lb"),
  40130. name: "Back",
  40131. image: {
  40132. source: "./media/characters/unmru/back.svg",
  40133. extra: 1894/1765,
  40134. bottom: 75/1969
  40135. }
  40136. },
  40137. dick: {
  40138. height: math.unit(3, "feet"),
  40139. weight: math.unit(35, "lb"),
  40140. name: "Dick",
  40141. image: {
  40142. source: "./media/characters/unmru/dick.svg"
  40143. }
  40144. },
  40145. },
  40146. [
  40147. {
  40148. name: "Normal",
  40149. height: math.unit(9, "feet")
  40150. },
  40151. {
  40152. name: "Natural",
  40153. height: math.unit(27, "feet"),
  40154. default: true
  40155. },
  40156. {
  40157. name: "Giant",
  40158. height: math.unit(90, "feet")
  40159. },
  40160. {
  40161. name: "Kaiju",
  40162. height: math.unit(270, "feet")
  40163. },
  40164. {
  40165. name: "Macro",
  40166. height: math.unit(900, "feet")
  40167. },
  40168. {
  40169. name: "Macro+",
  40170. height: math.unit(2700, "feet")
  40171. },
  40172. {
  40173. name: "Megamacro",
  40174. height: math.unit(9000, "feet")
  40175. },
  40176. {
  40177. name: "City-Crushing",
  40178. height: math.unit(27000, "feet")
  40179. },
  40180. {
  40181. name: "Mountain-Mashing",
  40182. height: math.unit(90000, "feet")
  40183. },
  40184. {
  40185. name: "Earth-Eclipsing",
  40186. height: math.unit(2.7e8, "feet")
  40187. },
  40188. {
  40189. name: "Sol-Swallowing",
  40190. height: math.unit(9e10, "feet")
  40191. },
  40192. {
  40193. name: "Majoris-Munching",
  40194. height: math.unit(2.7e13, "feet")
  40195. },
  40196. ]
  40197. ))
  40198. characterMakers.push(() => makeCharacter(
  40199. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40200. {
  40201. front: {
  40202. height: math.unit(1, "inch"),
  40203. name: "Front",
  40204. image: {
  40205. source: "./media/characters/squeaks-mouse/front.svg",
  40206. extra: 352/308,
  40207. bottom: 25/377
  40208. }
  40209. },
  40210. },
  40211. [
  40212. {
  40213. name: "Micro",
  40214. height: math.unit(1, "inch"),
  40215. default: true
  40216. },
  40217. ]
  40218. ))
  40219. characterMakers.push(() => makeCharacter(
  40220. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40221. {
  40222. side: {
  40223. height: math.unit(35, "feet"),
  40224. name: "Side",
  40225. image: {
  40226. source: "./media/characters/sayko/side.svg",
  40227. extra: 1697/1021,
  40228. bottom: 82/1779
  40229. }
  40230. },
  40231. head: {
  40232. height: math.unit(16, "feet"),
  40233. name: "Head",
  40234. image: {
  40235. source: "./media/characters/sayko/head.svg"
  40236. }
  40237. },
  40238. forepaw: {
  40239. height: math.unit(7.85, "feet"),
  40240. name: "Forepaw",
  40241. image: {
  40242. source: "./media/characters/sayko/forepaw.svg"
  40243. }
  40244. },
  40245. hindpaw: {
  40246. height: math.unit(8.8, "feet"),
  40247. name: "Hindpaw",
  40248. image: {
  40249. source: "./media/characters/sayko/hindpaw.svg"
  40250. }
  40251. },
  40252. },
  40253. [
  40254. {
  40255. name: "Normal",
  40256. height: math.unit(35, "feet"),
  40257. default: true
  40258. },
  40259. {
  40260. name: "Colossus",
  40261. height: math.unit(100, "meters")
  40262. },
  40263. {
  40264. name: "\"Small\" Deity",
  40265. height: math.unit(1, "km")
  40266. },
  40267. {
  40268. name: "\"Large\" Deity",
  40269. height: math.unit(15, "km")
  40270. },
  40271. ]
  40272. ))
  40273. characterMakers.push(() => makeCharacter(
  40274. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40275. {
  40276. front: {
  40277. height: math.unit(6, "feet"),
  40278. weight: math.unit(250, "lb"),
  40279. name: "Front",
  40280. image: {
  40281. source: "./media/characters/mukiro/front.svg",
  40282. extra: 1368/1310,
  40283. bottom: 34/1402
  40284. }
  40285. },
  40286. },
  40287. [
  40288. {
  40289. name: "Normal",
  40290. height: math.unit(6, "feet"),
  40291. default: true
  40292. },
  40293. ]
  40294. ))
  40295. characterMakers.push(() => makeCharacter(
  40296. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40297. {
  40298. front: {
  40299. height: math.unit(12 + 4/12, "feet"),
  40300. name: "Front",
  40301. image: {
  40302. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40303. extra: 1346/1311,
  40304. bottom: 65/1411
  40305. }
  40306. },
  40307. },
  40308. [
  40309. {
  40310. name: "Base",
  40311. height: math.unit(12 + 4/12, "feet"),
  40312. default: true
  40313. },
  40314. {
  40315. name: "Macro",
  40316. height: math.unit(150, "feet")
  40317. },
  40318. {
  40319. name: "Mega",
  40320. height: math.unit(2, "miles")
  40321. },
  40322. {
  40323. name: "Demi God",
  40324. height: math.unit(4, "AU")
  40325. },
  40326. {
  40327. name: "God Size",
  40328. height: math.unit(1, "universe")
  40329. },
  40330. ]
  40331. ))
  40332. characterMakers.push(() => makeCharacter(
  40333. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40334. {
  40335. front: {
  40336. height: math.unit(3 + 3/12, "feet"),
  40337. weight: math.unit(88, "lb"),
  40338. name: "Front",
  40339. image: {
  40340. source: "./media/characters/trey/front.svg",
  40341. extra: 1815/1509,
  40342. bottom: 60/1875
  40343. }
  40344. },
  40345. },
  40346. [
  40347. {
  40348. name: "Normal",
  40349. height: math.unit(3 + 3/12, "feet"),
  40350. default: true
  40351. },
  40352. ]
  40353. ))
  40354. characterMakers.push(() => makeCharacter(
  40355. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40356. {
  40357. front: {
  40358. height: math.unit(4, "meters"),
  40359. name: "Front",
  40360. image: {
  40361. source: "./media/characters/adelonda/front.svg",
  40362. extra: 1077/982,
  40363. bottom: 39/1116
  40364. }
  40365. },
  40366. back: {
  40367. height: math.unit(4, "meters"),
  40368. name: "Back",
  40369. image: {
  40370. source: "./media/characters/adelonda/back.svg",
  40371. extra: 1105/1003,
  40372. bottom: 25/1130
  40373. }
  40374. },
  40375. feral: {
  40376. height: math.unit(40/1.5, "meters"),
  40377. name: "Feral",
  40378. image: {
  40379. source: "./media/characters/adelonda/feral.svg",
  40380. extra: 597/271,
  40381. bottom: 387/984
  40382. }
  40383. },
  40384. },
  40385. [
  40386. {
  40387. name: "Normal",
  40388. height: math.unit(4, "meters"),
  40389. default: true
  40390. },
  40391. ]
  40392. ))
  40393. characterMakers.push(() => makeCharacter(
  40394. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40395. {
  40396. front: {
  40397. height: math.unit(8 + 4/12, "feet"),
  40398. weight: math.unit(670, "lb"),
  40399. name: "Front",
  40400. image: {
  40401. source: "./media/characters/acadiel/front.svg",
  40402. extra: 1901/1595,
  40403. bottom: 142/2043
  40404. }
  40405. },
  40406. },
  40407. [
  40408. {
  40409. name: "Normal",
  40410. height: math.unit(8 + 4/12, "feet"),
  40411. default: true
  40412. },
  40413. {
  40414. name: "Macro",
  40415. height: math.unit(200, "feet")
  40416. },
  40417. ]
  40418. ))
  40419. characterMakers.push(() => makeCharacter(
  40420. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40421. {
  40422. front: {
  40423. height: math.unit(6 + 2/12, "feet"),
  40424. weight: math.unit(185, "lb"),
  40425. name: "Front",
  40426. image: {
  40427. source: "./media/characters/kayne-ein/front.svg",
  40428. extra: 1780/1560,
  40429. bottom: 81/1861
  40430. }
  40431. },
  40432. },
  40433. [
  40434. {
  40435. name: "Normal",
  40436. height: math.unit(6 + 2/12, "feet"),
  40437. default: true
  40438. },
  40439. {
  40440. name: "Transformation Stage",
  40441. height: math.unit(15, "feet")
  40442. },
  40443. {
  40444. name: "Macro",
  40445. height: math.unit(150, "feet")
  40446. },
  40447. {
  40448. name: "Earth's Shadow",
  40449. height: math.unit(6200, "miles")
  40450. },
  40451. {
  40452. name: "Universal Demon",
  40453. height: math.unit(28e9, "parsecs")
  40454. },
  40455. {
  40456. name: "Multiverse God",
  40457. height: math.unit(3, "multiverses")
  40458. },
  40459. ]
  40460. ))
  40461. characterMakers.push(() => makeCharacter(
  40462. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40463. {
  40464. front: {
  40465. height: math.unit(5 + 5/12, "feet"),
  40466. name: "Front",
  40467. image: {
  40468. source: "./media/characters/fawn/front.svg",
  40469. extra: 1873/1731,
  40470. bottom: 95/1968
  40471. }
  40472. },
  40473. back: {
  40474. height: math.unit(5 + 5/12, "feet"),
  40475. name: "Back",
  40476. image: {
  40477. source: "./media/characters/fawn/back.svg",
  40478. extra: 1813/1700,
  40479. bottom: 14/1827
  40480. }
  40481. },
  40482. hoof: {
  40483. height: math.unit(1.45, "feet"),
  40484. name: "Hoof",
  40485. image: {
  40486. source: "./media/characters/fawn/hoof.svg"
  40487. }
  40488. },
  40489. },
  40490. [
  40491. {
  40492. name: "Normal",
  40493. height: math.unit(5 + 5/12, "feet"),
  40494. default: true
  40495. },
  40496. ]
  40497. ))
  40498. characterMakers.push(() => makeCharacter(
  40499. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40500. {
  40501. front: {
  40502. height: math.unit(2 + 5/12, "feet"),
  40503. name: "Front",
  40504. image: {
  40505. source: "./media/characters/orion/front.svg",
  40506. extra: 1366/1304,
  40507. bottom: 43/1409
  40508. }
  40509. },
  40510. paw: {
  40511. height: math.unit(0.52, "feet"),
  40512. name: "Paw",
  40513. image: {
  40514. source: "./media/characters/orion/paw.svg"
  40515. }
  40516. },
  40517. },
  40518. [
  40519. {
  40520. name: "Normal",
  40521. height: math.unit(2 + 5/12, "feet"),
  40522. default: true
  40523. },
  40524. ]
  40525. ))
  40526. characterMakers.push(() => makeCharacter(
  40527. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40528. {
  40529. front: {
  40530. height: math.unit(5 + 10/12, "feet"),
  40531. name: "Front",
  40532. image: {
  40533. source: "./media/characters/vera/front.svg",
  40534. extra: 1680/1575,
  40535. bottom: 49/1729
  40536. }
  40537. },
  40538. back: {
  40539. height: math.unit(5 + 10/12, "feet"),
  40540. name: "Back",
  40541. image: {
  40542. source: "./media/characters/vera/back.svg",
  40543. extra: 1700/1588,
  40544. bottom: 18/1718
  40545. }
  40546. },
  40547. arcanine: {
  40548. height: math.unit(6 + 8/12, "feet"),
  40549. name: "Arcanine",
  40550. image: {
  40551. source: "./media/characters/vera/arcanine.svg",
  40552. extra: 1590/1511,
  40553. bottom: 71/1661
  40554. }
  40555. },
  40556. maw: {
  40557. height: math.unit(0.82, "feet"),
  40558. name: "Maw",
  40559. image: {
  40560. source: "./media/characters/vera/maw.svg"
  40561. }
  40562. },
  40563. mawArcanine: {
  40564. height: math.unit(0.97, "feet"),
  40565. name: "Maw (Arcanine)",
  40566. image: {
  40567. source: "./media/characters/vera/maw-arcanine.svg"
  40568. }
  40569. },
  40570. paw: {
  40571. height: math.unit(0.75, "feet"),
  40572. name: "Paw",
  40573. image: {
  40574. source: "./media/characters/vera/paw.svg"
  40575. }
  40576. },
  40577. pawprint: {
  40578. height: math.unit(0.52, "feet"),
  40579. name: "Pawprint",
  40580. image: {
  40581. source: "./media/characters/vera/pawprint.svg"
  40582. }
  40583. },
  40584. },
  40585. [
  40586. {
  40587. name: "Normal",
  40588. height: math.unit(5 + 10/12, "feet"),
  40589. default: true
  40590. },
  40591. {
  40592. name: "Macro",
  40593. height: math.unit(75, "feet")
  40594. },
  40595. ]
  40596. ))
  40597. characterMakers.push(() => makeCharacter(
  40598. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40599. {
  40600. front: {
  40601. height: math.unit(4, "feet"),
  40602. weight: math.unit(40, "lb"),
  40603. name: "Front",
  40604. image: {
  40605. source: "./media/characters/orvan-rabbit/front.svg",
  40606. extra: 1896/1642,
  40607. bottom: 29/1925
  40608. }
  40609. },
  40610. },
  40611. [
  40612. {
  40613. name: "Normal",
  40614. height: math.unit(4, "feet"),
  40615. default: true
  40616. },
  40617. ]
  40618. ))
  40619. characterMakers.push(() => makeCharacter(
  40620. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40621. {
  40622. front: {
  40623. height: math.unit(6, "feet"),
  40624. weight: math.unit(168, "lb"),
  40625. name: "Front",
  40626. image: {
  40627. source: "./media/characters/lisa/front.svg",
  40628. extra: 2065/1867,
  40629. bottom: 46/2111
  40630. }
  40631. },
  40632. back: {
  40633. height: math.unit(6, "feet"),
  40634. weight: math.unit(168, "lb"),
  40635. name: "Back",
  40636. image: {
  40637. source: "./media/characters/lisa/back.svg",
  40638. extra: 1982/1838,
  40639. bottom: 29/2011
  40640. }
  40641. },
  40642. maw: {
  40643. height: math.unit(0.81, "feet"),
  40644. name: "Maw",
  40645. image: {
  40646. source: "./media/characters/lisa/maw.svg"
  40647. }
  40648. },
  40649. paw: {
  40650. height: math.unit(0.9, "feet"),
  40651. name: "Paw",
  40652. image: {
  40653. source: "./media/characters/lisa/paw.svg"
  40654. }
  40655. },
  40656. caribousune: {
  40657. height: math.unit(7 + 2/12, "feet"),
  40658. weight: math.unit(268, "lb"),
  40659. name: "Caribousune",
  40660. image: {
  40661. source: "./media/characters/lisa/caribousune.svg",
  40662. extra: 1843/1633,
  40663. bottom: 29/1872
  40664. }
  40665. },
  40666. frontCaribousune: {
  40667. height: math.unit(7 + 2/12, "feet"),
  40668. weight: math.unit(268, "lb"),
  40669. name: "Front (Caribousune)",
  40670. image: {
  40671. source: "./media/characters/lisa/front-caribousune.svg",
  40672. extra: 1818/1638,
  40673. bottom: 52/1870
  40674. }
  40675. },
  40676. sideCaribousune: {
  40677. height: math.unit(7 + 2/12, "feet"),
  40678. weight: math.unit(268, "lb"),
  40679. name: "Side (Caribousune)",
  40680. image: {
  40681. source: "./media/characters/lisa/side-caribousune.svg",
  40682. extra: 1851/1635,
  40683. bottom: 16/1867
  40684. }
  40685. },
  40686. backCaribousune: {
  40687. height: math.unit(7 + 2/12, "feet"),
  40688. weight: math.unit(268, "lb"),
  40689. name: "Back (Caribousune)",
  40690. image: {
  40691. source: "./media/characters/lisa/back-caribousune.svg",
  40692. extra: 1801/1604,
  40693. bottom: 44/1845
  40694. }
  40695. },
  40696. caribou: {
  40697. height: math.unit(7 + 2/12, "feet"),
  40698. weight: math.unit(268, "lb"),
  40699. name: "Caribou",
  40700. image: {
  40701. source: "./media/characters/lisa/caribou.svg",
  40702. extra: 1843/1633,
  40703. bottom: 29/1872
  40704. }
  40705. },
  40706. frontCaribou: {
  40707. height: math.unit(7 + 2/12, "feet"),
  40708. weight: math.unit(268, "lb"),
  40709. name: "Front (Caribou)",
  40710. image: {
  40711. source: "./media/characters/lisa/front-caribou.svg",
  40712. extra: 1818/1638,
  40713. bottom: 52/1870
  40714. }
  40715. },
  40716. sideCaribou: {
  40717. height: math.unit(7 + 2/12, "feet"),
  40718. weight: math.unit(268, "lb"),
  40719. name: "Side (Caribou)",
  40720. image: {
  40721. source: "./media/characters/lisa/side-caribou.svg",
  40722. extra: 1851/1635,
  40723. bottom: 16/1867
  40724. }
  40725. },
  40726. backCaribou: {
  40727. height: math.unit(7 + 2/12, "feet"),
  40728. weight: math.unit(268, "lb"),
  40729. name: "Back (Caribou)",
  40730. image: {
  40731. source: "./media/characters/lisa/back-caribou.svg",
  40732. extra: 1801/1604,
  40733. bottom: 44/1845
  40734. }
  40735. },
  40736. mawCaribou: {
  40737. height: math.unit(1.45, "feet"),
  40738. name: "Maw (Caribou)",
  40739. image: {
  40740. source: "./media/characters/lisa/maw-caribou.svg"
  40741. }
  40742. },
  40743. mawCaribousune: {
  40744. height: math.unit(1.45, "feet"),
  40745. name: "Maw (Caribousune)",
  40746. image: {
  40747. source: "./media/characters/lisa/maw-caribousune.svg"
  40748. }
  40749. },
  40750. pawCaribousune: {
  40751. height: math.unit(1.61, "feet"),
  40752. name: "Paw (Caribou)",
  40753. image: {
  40754. source: "./media/characters/lisa/paw-caribousune.svg"
  40755. }
  40756. },
  40757. },
  40758. [
  40759. {
  40760. name: "Normal",
  40761. height: math.unit(6, "feet")
  40762. },
  40763. {
  40764. name: "God Size",
  40765. height: math.unit(72, "feet"),
  40766. default: true
  40767. },
  40768. {
  40769. name: "Towering",
  40770. height: math.unit(288, "feet")
  40771. },
  40772. {
  40773. name: "City Size",
  40774. height: math.unit(48384, "feet")
  40775. },
  40776. {
  40777. name: "Continental",
  40778. height: math.unit(4200, "miles")
  40779. },
  40780. {
  40781. name: "Planet Eater",
  40782. height: math.unit(42, "earths")
  40783. },
  40784. {
  40785. name: "Star Swallower",
  40786. height: math.unit(42, "solarradii")
  40787. },
  40788. {
  40789. name: "System Swallower",
  40790. height: math.unit(84000, "AU")
  40791. },
  40792. {
  40793. name: "Galaxy Gobbler",
  40794. height: math.unit(42, "galaxies")
  40795. },
  40796. {
  40797. name: "Universe Devourer",
  40798. height: math.unit(42, "universes")
  40799. },
  40800. {
  40801. name: "Multiverse Muncher",
  40802. height: math.unit(42, "multiverses")
  40803. },
  40804. ]
  40805. ))
  40806. characterMakers.push(() => makeCharacter(
  40807. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40808. {
  40809. front: {
  40810. height: math.unit(36, "feet"),
  40811. name: "Front",
  40812. image: {
  40813. source: "./media/characters/shadow-rat/front.svg",
  40814. extra: 1845/1758,
  40815. bottom: 83/1928
  40816. }
  40817. },
  40818. },
  40819. [
  40820. {
  40821. name: "Macro",
  40822. height: math.unit(36, "feet"),
  40823. default: true
  40824. },
  40825. ]
  40826. ))
  40827. characterMakers.push(() => makeCharacter(
  40828. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40829. {
  40830. side: {
  40831. height: math.unit(8, "feet"),
  40832. weight: math.unit(2630, "lb"),
  40833. name: "Side",
  40834. image: {
  40835. source: "./media/characters/torallia/side.svg",
  40836. extra: 2164/2021,
  40837. bottom: 371/2535
  40838. }
  40839. },
  40840. },
  40841. [
  40842. {
  40843. name: "Mortal Interaction",
  40844. height: math.unit(8, "feet")
  40845. },
  40846. {
  40847. name: "Natural",
  40848. height: math.unit(24, "feet"),
  40849. default: true
  40850. },
  40851. {
  40852. name: "Giant",
  40853. height: math.unit(80, "feet")
  40854. },
  40855. {
  40856. name: "Kaiju",
  40857. height: math.unit(240, "feet")
  40858. },
  40859. {
  40860. name: "Macro",
  40861. height: math.unit(800, "feet")
  40862. },
  40863. {
  40864. name: "Macro+",
  40865. height: math.unit(2400, "feet")
  40866. },
  40867. {
  40868. name: "Macro++",
  40869. height: math.unit(8000, "feet")
  40870. },
  40871. {
  40872. name: "City-Crushing",
  40873. height: math.unit(24000, "feet")
  40874. },
  40875. {
  40876. name: "Mountain-Mashing",
  40877. height: math.unit(80000, "feet")
  40878. },
  40879. {
  40880. name: "District Demolisher",
  40881. height: math.unit(240000, "feet")
  40882. },
  40883. {
  40884. name: "Tri-County Terror",
  40885. height: math.unit(800000, "feet")
  40886. },
  40887. {
  40888. name: "State Smasher",
  40889. height: math.unit(2.4e6, "feet")
  40890. },
  40891. {
  40892. name: "Nation Nemesis",
  40893. height: math.unit(8e6, "feet")
  40894. },
  40895. {
  40896. name: "Continent Cracker",
  40897. height: math.unit(2.4e7, "feet")
  40898. },
  40899. {
  40900. name: "Planet-Pillaging",
  40901. height: math.unit(8e7, "feet")
  40902. },
  40903. {
  40904. name: "Earth-Eclipsing",
  40905. height: math.unit(2.4e8, "feet")
  40906. },
  40907. {
  40908. name: "Jovian-Jostling",
  40909. height: math.unit(8e8, "feet")
  40910. },
  40911. {
  40912. name: "Gas Giant Gulper",
  40913. height: math.unit(2.4e9, "feet")
  40914. },
  40915. {
  40916. name: "Astral Annihilator",
  40917. height: math.unit(8e9, "feet")
  40918. },
  40919. {
  40920. name: "Celestial Conqueror",
  40921. height: math.unit(2.4e10, "feet")
  40922. },
  40923. {
  40924. name: "Sol-Swallowing",
  40925. height: math.unit(8e10, "feet")
  40926. },
  40927. {
  40928. name: "Hunter of the Heavens",
  40929. height: math.unit(2.4e13, "feet")
  40930. },
  40931. ]
  40932. ))
  40933. characterMakers.push(() => makeCharacter(
  40934. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40935. {
  40936. front: {
  40937. height: math.unit(6 + 8/12, "feet"),
  40938. weight: math.unit(250, "kilograms"),
  40939. volume: math.unit(28, "liters"),
  40940. name: "Front",
  40941. image: {
  40942. source: "./media/characters/rebecca-pawlson/front.svg",
  40943. extra: 1737/1596,
  40944. bottom: 107/1844
  40945. }
  40946. },
  40947. back: {
  40948. height: math.unit(6 + 8/12, "feet"),
  40949. weight: math.unit(250, "kilograms"),
  40950. volume: math.unit(28, "liters"),
  40951. name: "Back",
  40952. image: {
  40953. source: "./media/characters/rebecca-pawlson/back.svg",
  40954. extra: 1702/1523,
  40955. bottom: 86/1788
  40956. }
  40957. },
  40958. },
  40959. [
  40960. {
  40961. name: "Normal",
  40962. height: math.unit(6 + 8/12, "feet")
  40963. },
  40964. {
  40965. name: "Mini Macro",
  40966. height: math.unit(10, "feet"),
  40967. default: true
  40968. },
  40969. {
  40970. name: "Macro",
  40971. height: math.unit(100, "feet")
  40972. },
  40973. {
  40974. name: "Mega Macro",
  40975. height: math.unit(2500, "feet")
  40976. },
  40977. {
  40978. name: "Giga Macro",
  40979. height: math.unit(50, "miles")
  40980. },
  40981. ]
  40982. ))
  40983. characterMakers.push(() => makeCharacter(
  40984. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40985. {
  40986. front: {
  40987. height: math.unit(7 + 6/12, "feet"),
  40988. weight: math.unit(600, "lb"),
  40989. name: "Front",
  40990. image: {
  40991. source: "./media/characters/moxie-nova/front.svg",
  40992. extra: 1734/1652,
  40993. bottom: 41/1775
  40994. }
  40995. },
  40996. },
  40997. [
  40998. {
  40999. name: "Normal",
  41000. height: math.unit(7 + 6/12, "feet"),
  41001. default: true
  41002. },
  41003. ]
  41004. ))
  41005. characterMakers.push(() => makeCharacter(
  41006. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41007. {
  41008. goat: {
  41009. height: math.unit(4, "feet"),
  41010. weight: math.unit(180, "lb"),
  41011. name: "Goat",
  41012. image: {
  41013. source: "./media/characters/tiffany/goat.svg",
  41014. extra: 1845/1595,
  41015. bottom: 106/1951
  41016. }
  41017. },
  41018. front: {
  41019. height: math.unit(5, "feet"),
  41020. weight: math.unit(150, "lb"),
  41021. name: "Foxcoon",
  41022. image: {
  41023. source: "./media/characters/tiffany/foxcoon.svg",
  41024. extra: 1941/1845,
  41025. bottom: 58/1999
  41026. }
  41027. },
  41028. },
  41029. [
  41030. {
  41031. name: "Normal",
  41032. height: math.unit(5, "feet"),
  41033. default: true
  41034. },
  41035. ]
  41036. ))
  41037. characterMakers.push(() => makeCharacter(
  41038. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41039. {
  41040. front: {
  41041. height: math.unit(8, "feet"),
  41042. weight: math.unit(300, "lb"),
  41043. name: "Front",
  41044. image: {
  41045. source: "./media/characters/raxinath/front.svg",
  41046. extra: 1407/1309,
  41047. bottom: 39/1446
  41048. }
  41049. },
  41050. back: {
  41051. height: math.unit(8, "feet"),
  41052. weight: math.unit(300, "lb"),
  41053. name: "Back",
  41054. image: {
  41055. source: "./media/characters/raxinath/back.svg",
  41056. extra: 1405/1315,
  41057. bottom: 9/1414
  41058. }
  41059. },
  41060. },
  41061. [
  41062. {
  41063. name: "Speck",
  41064. height: math.unit(0.5, "nm")
  41065. },
  41066. {
  41067. name: "Micro",
  41068. height: math.unit(3, "inches")
  41069. },
  41070. {
  41071. name: "Kobold",
  41072. height: math.unit(3, "feet")
  41073. },
  41074. {
  41075. name: "Normal",
  41076. height: math.unit(8, "feet"),
  41077. default: true
  41078. },
  41079. {
  41080. name: "Giant",
  41081. height: math.unit(50, "feet")
  41082. },
  41083. {
  41084. name: "Macro",
  41085. height: math.unit(1000, "feet")
  41086. },
  41087. {
  41088. name: "Megamacro",
  41089. height: math.unit(1, "mile")
  41090. },
  41091. ]
  41092. ))
  41093. characterMakers.push(() => makeCharacter(
  41094. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41095. {
  41096. front: {
  41097. height: math.unit(10, "feet"),
  41098. weight: math.unit(1442, "lb"),
  41099. name: "Front",
  41100. image: {
  41101. source: "./media/characters/mal-dragon/front.svg",
  41102. extra: 1515/1444,
  41103. bottom: 113/1628
  41104. }
  41105. },
  41106. back: {
  41107. height: math.unit(10, "feet"),
  41108. weight: math.unit(1442, "lb"),
  41109. name: "Back",
  41110. image: {
  41111. source: "./media/characters/mal-dragon/back.svg",
  41112. extra: 1527/1434,
  41113. bottom: 25/1552
  41114. }
  41115. },
  41116. },
  41117. [
  41118. {
  41119. name: "Mortal Interaction",
  41120. height: math.unit(10, "feet"),
  41121. default: true
  41122. },
  41123. {
  41124. name: "Large",
  41125. height: math.unit(30, "feet")
  41126. },
  41127. {
  41128. name: "Kaiju",
  41129. height: math.unit(300, "feet")
  41130. },
  41131. {
  41132. name: "Megamacro",
  41133. height: math.unit(10000, "feet")
  41134. },
  41135. {
  41136. name: "Continent Cracker",
  41137. height: math.unit(30000000, "feet")
  41138. },
  41139. {
  41140. name: "Sol-Swallowing",
  41141. height: math.unit(1e11, "feet")
  41142. },
  41143. {
  41144. name: "Light Universal",
  41145. height: math.unit(5, "universes")
  41146. },
  41147. {
  41148. name: "Universe Atoms",
  41149. height: math.unit(1.829e9, "universes")
  41150. },
  41151. {
  41152. name: "Light Multiversal",
  41153. height: math.unit(5, "multiverses")
  41154. },
  41155. {
  41156. name: "Multiverse Atoms",
  41157. height: math.unit(1.829e9, "multiverses")
  41158. },
  41159. {
  41160. name: "Fabric of Time",
  41161. height: math.unit(1e262, "multiverses")
  41162. },
  41163. ]
  41164. ))
  41165. characterMakers.push(() => makeCharacter(
  41166. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41167. {
  41168. front: {
  41169. height: math.unit(9, "feet"),
  41170. weight: math.unit(1050, "lb"),
  41171. name: "Front",
  41172. image: {
  41173. source: "./media/characters/tabitha/front.svg",
  41174. extra: 2083/1994,
  41175. bottom: 68/2151
  41176. }
  41177. },
  41178. },
  41179. [
  41180. {
  41181. name: "Baseline",
  41182. height: math.unit(9, "feet"),
  41183. default: true
  41184. },
  41185. {
  41186. name: "Giant",
  41187. height: math.unit(90, "feet")
  41188. },
  41189. {
  41190. name: "Macro",
  41191. height: math.unit(900, "feet")
  41192. },
  41193. {
  41194. name: "Megamacro",
  41195. height: math.unit(9000, "feet")
  41196. },
  41197. {
  41198. name: "City-Crushing",
  41199. height: math.unit(27000, "feet")
  41200. },
  41201. {
  41202. name: "Mountain-Mashing",
  41203. height: math.unit(90000, "feet")
  41204. },
  41205. {
  41206. name: "Nation Nemesis",
  41207. height: math.unit(9e6, "feet")
  41208. },
  41209. {
  41210. name: "Continent Cracker",
  41211. height: math.unit(27e6, "feet")
  41212. },
  41213. {
  41214. name: "Earth-Eclipsing",
  41215. height: math.unit(2.7e8, "feet")
  41216. },
  41217. {
  41218. name: "Gas Giant Gulper",
  41219. height: math.unit(2.7e9, "feet")
  41220. },
  41221. {
  41222. name: "Sol-Swallowing",
  41223. height: math.unit(9e10, "feet")
  41224. },
  41225. {
  41226. name: "Galaxy Gulper",
  41227. height: math.unit(9, "galaxies")
  41228. },
  41229. {
  41230. name: "Cosmos Churner",
  41231. height: math.unit(9, "universes")
  41232. },
  41233. ]
  41234. ))
  41235. characterMakers.push(() => makeCharacter(
  41236. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41237. {
  41238. front: {
  41239. height: math.unit(160, "cm"),
  41240. weight: math.unit(55, "kg"),
  41241. name: "Front",
  41242. image: {
  41243. source: "./media/characters/tow/front.svg",
  41244. extra: 1751/1722,
  41245. bottom: 74/1825
  41246. }
  41247. },
  41248. },
  41249. [
  41250. {
  41251. name: "Norm",
  41252. height: math.unit(160, "cm")
  41253. },
  41254. {
  41255. name: "Casual",
  41256. height: math.unit(3200, "m"),
  41257. default: true
  41258. },
  41259. {
  41260. name: "Show-Off",
  41261. height: math.unit(160, "km")
  41262. },
  41263. ]
  41264. ))
  41265. characterMakers.push(() => makeCharacter(
  41266. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41267. {
  41268. front: {
  41269. height: math.unit(7 + 11/12, "feet"),
  41270. weight: math.unit(342.8, "lb"),
  41271. name: "Front",
  41272. image: {
  41273. source: "./media/characters/vivian-orca-dragon/front.svg",
  41274. extra: 1890/1865,
  41275. bottom: 28/1918
  41276. }
  41277. },
  41278. },
  41279. [
  41280. {
  41281. name: "Micro",
  41282. height: math.unit(5, "inches")
  41283. },
  41284. {
  41285. name: "Normal",
  41286. height: math.unit(7 + 11/12, "feet"),
  41287. default: true
  41288. },
  41289. {
  41290. name: "Macro",
  41291. height: math.unit(395 + 7/12, "feet")
  41292. },
  41293. ]
  41294. ))
  41295. characterMakers.push(() => makeCharacter(
  41296. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41297. {
  41298. side: {
  41299. height: math.unit(10, "feet"),
  41300. weight: math.unit(1442, "lb"),
  41301. name: "Side",
  41302. image: {
  41303. source: "./media/characters/lotherakon/side.svg",
  41304. extra: 1604/1497,
  41305. bottom: 89/1693
  41306. }
  41307. },
  41308. },
  41309. [
  41310. {
  41311. name: "Mortal Interaction",
  41312. height: math.unit(10, "feet")
  41313. },
  41314. {
  41315. name: "Large",
  41316. height: math.unit(30, "feet"),
  41317. default: true
  41318. },
  41319. {
  41320. name: "Giant",
  41321. height: math.unit(100, "feet")
  41322. },
  41323. {
  41324. name: "Kaiju",
  41325. height: math.unit(300, "feet")
  41326. },
  41327. {
  41328. name: "Macro",
  41329. height: math.unit(1000, "feet")
  41330. },
  41331. {
  41332. name: "Macro+",
  41333. height: math.unit(3000, "feet")
  41334. },
  41335. {
  41336. name: "Megamacro",
  41337. height: math.unit(10000, "feet")
  41338. },
  41339. {
  41340. name: "City-Crushing",
  41341. height: math.unit(30000, "feet")
  41342. },
  41343. {
  41344. name: "Continent Cracker",
  41345. height: math.unit(30e6, "feet")
  41346. },
  41347. {
  41348. name: "Earth Eclipsing",
  41349. height: math.unit(3e8, "feet")
  41350. },
  41351. {
  41352. name: "Gas Giant Gulper",
  41353. height: math.unit(3e9, "feet")
  41354. },
  41355. {
  41356. name: "Sol-Swallowing",
  41357. height: math.unit(1e11, "feet")
  41358. },
  41359. {
  41360. name: "System Swallower",
  41361. height: math.unit(3e14, "feet")
  41362. },
  41363. {
  41364. name: "Galaxy Gulper",
  41365. height: math.unit(10, "galaxies")
  41366. },
  41367. {
  41368. name: "Light Universal",
  41369. height: math.unit(5, "universes")
  41370. },
  41371. {
  41372. name: "Universe Palm",
  41373. height: math.unit(20, "universes")
  41374. },
  41375. {
  41376. name: "Light Multiversal",
  41377. height: math.unit(5, "multiverses")
  41378. },
  41379. {
  41380. name: "Multiverse Palm",
  41381. height: math.unit(20, "multiverses")
  41382. },
  41383. {
  41384. name: "Inferno Incarnate",
  41385. height: math.unit(1e7, "multiverses")
  41386. },
  41387. ]
  41388. ))
  41389. characterMakers.push(() => makeCharacter(
  41390. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41391. {
  41392. front: {
  41393. height: math.unit(8, "feet"),
  41394. weight: math.unit(1200, "lb"),
  41395. name: "Front",
  41396. image: {
  41397. source: "./media/characters/malithee/front.svg",
  41398. extra: 1675/1640,
  41399. bottom: 162/1837
  41400. }
  41401. },
  41402. },
  41403. [
  41404. {
  41405. name: "Mortal Interaction",
  41406. height: math.unit(8, "feet"),
  41407. default: true
  41408. },
  41409. {
  41410. name: "Large",
  41411. height: math.unit(24, "feet")
  41412. },
  41413. {
  41414. name: "Kaiju",
  41415. height: math.unit(240, "feet")
  41416. },
  41417. {
  41418. name: "Megamacro",
  41419. height: math.unit(8000, "feet")
  41420. },
  41421. {
  41422. name: "Continent Cracker",
  41423. height: math.unit(24e6, "feet")
  41424. },
  41425. {
  41426. name: "Earth-Eclipsing",
  41427. height: math.unit(2.4e8, "feet")
  41428. },
  41429. {
  41430. name: "Sol-Swallowing",
  41431. height: math.unit(8e10, "feet")
  41432. },
  41433. {
  41434. name: "Galaxy Gulper",
  41435. height: math.unit(8, "galaxies")
  41436. },
  41437. {
  41438. name: "Light Universal",
  41439. height: math.unit(4, "universes")
  41440. },
  41441. {
  41442. name: "Universe Atoms",
  41443. height: math.unit(1.829e9, "universes")
  41444. },
  41445. {
  41446. name: "Light Multiversal",
  41447. height: math.unit(4, "multiverses")
  41448. },
  41449. {
  41450. name: "Multiverse Atoms",
  41451. height: math.unit(1.829e9, "multiverses")
  41452. },
  41453. {
  41454. name: "Nigh-Omnipresence",
  41455. height: math.unit(8e261, "multiverses")
  41456. },
  41457. ]
  41458. ))
  41459. characterMakers.push(() => makeCharacter(
  41460. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41461. {
  41462. front: {
  41463. height: math.unit(10, "feet"),
  41464. weight: math.unit(1500, "lb"),
  41465. name: "Front",
  41466. image: {
  41467. source: "./media/characters/miles-thestia/front.svg",
  41468. extra: 1812/1727,
  41469. bottom: 86/1898
  41470. }
  41471. },
  41472. back: {
  41473. height: math.unit(10, "feet"),
  41474. weight: math.unit(1500, "lb"),
  41475. name: "Back",
  41476. image: {
  41477. source: "./media/characters/miles-thestia/back.svg",
  41478. extra: 1799/1690,
  41479. bottom: 47/1846
  41480. }
  41481. },
  41482. frontNsfw: {
  41483. height: math.unit(10, "feet"),
  41484. weight: math.unit(1500, "lb"),
  41485. name: "Front (NSFW)",
  41486. image: {
  41487. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41488. extra: 1812/1727,
  41489. bottom: 86/1898
  41490. }
  41491. },
  41492. },
  41493. [
  41494. {
  41495. name: "Mini-Macro",
  41496. height: math.unit(10, "feet"),
  41497. default: true
  41498. },
  41499. ]
  41500. ))
  41501. characterMakers.push(() => makeCharacter(
  41502. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41503. {
  41504. front: {
  41505. height: math.unit(25, "feet"),
  41506. name: "Front",
  41507. image: {
  41508. source: "./media/characters/titan-s-wulf/front.svg",
  41509. extra: 1560/1484,
  41510. bottom: 76/1636
  41511. }
  41512. },
  41513. },
  41514. [
  41515. {
  41516. name: "Smallest",
  41517. height: math.unit(25, "feet"),
  41518. default: true
  41519. },
  41520. {
  41521. name: "Normal",
  41522. height: math.unit(200, "feet")
  41523. },
  41524. {
  41525. name: "Macro",
  41526. height: math.unit(200000, "feet")
  41527. },
  41528. {
  41529. name: "Multiversal Original",
  41530. height: math.unit(10000, "multiverses")
  41531. },
  41532. ]
  41533. ))
  41534. characterMakers.push(() => makeCharacter(
  41535. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41536. {
  41537. front: {
  41538. height: math.unit(8, "feet"),
  41539. weight: math.unit(553, "lb"),
  41540. name: "Front",
  41541. image: {
  41542. source: "./media/characters/tawendeh/front.svg",
  41543. extra: 2365/2268,
  41544. bottom: 83/2448
  41545. }
  41546. },
  41547. frontClothed: {
  41548. height: math.unit(8, "feet"),
  41549. weight: math.unit(553, "lb"),
  41550. name: "Front (Clothed)",
  41551. image: {
  41552. source: "./media/characters/tawendeh/front-clothed.svg",
  41553. extra: 2365/2268,
  41554. bottom: 83/2448
  41555. }
  41556. },
  41557. back: {
  41558. height: math.unit(8, "feet"),
  41559. weight: math.unit(553, "lb"),
  41560. name: "Back",
  41561. image: {
  41562. source: "./media/characters/tawendeh/back.svg",
  41563. extra: 2397/2294,
  41564. bottom: 42/2439
  41565. }
  41566. },
  41567. },
  41568. [
  41569. {
  41570. name: "Mortal Interaction",
  41571. height: math.unit(8, "feet"),
  41572. default: true
  41573. },
  41574. {
  41575. name: "Giant",
  41576. height: math.unit(80, "feet")
  41577. },
  41578. {
  41579. name: "Macro",
  41580. height: math.unit(800, "feet")
  41581. },
  41582. {
  41583. name: "Megamacro",
  41584. height: math.unit(8000, "feet")
  41585. },
  41586. {
  41587. name: "City-Crushing",
  41588. height: math.unit(24000, "feet")
  41589. },
  41590. {
  41591. name: "Mountain-Mashing",
  41592. height: math.unit(80000, "feet")
  41593. },
  41594. {
  41595. name: "Nation Nemesis",
  41596. height: math.unit(8e6, "feet")
  41597. },
  41598. {
  41599. name: "Continent Cracker",
  41600. height: math.unit(24e6, "feet")
  41601. },
  41602. {
  41603. name: "Earth-Eclipsing",
  41604. height: math.unit(2.4e8, "feet")
  41605. },
  41606. {
  41607. name: "Gas Giant Gulper",
  41608. height: math.unit(2.4e9, "feet")
  41609. },
  41610. {
  41611. name: "Sol-Swallowing",
  41612. height: math.unit(8e10, "feet")
  41613. },
  41614. {
  41615. name: "Galaxy Gulper",
  41616. height: math.unit(8, "galaxies")
  41617. },
  41618. {
  41619. name: "Cosmos Churner",
  41620. height: math.unit(8, "universes")
  41621. },
  41622. {
  41623. name: "Omnipotent Otter",
  41624. height: math.unit(80, "universes")
  41625. },
  41626. ]
  41627. ))
  41628. characterMakers.push(() => makeCharacter(
  41629. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41630. {
  41631. front: {
  41632. height: math.unit(2.6, "meters"),
  41633. weight: math.unit(900, "kg"),
  41634. name: "Front",
  41635. image: {
  41636. source: "./media/characters/neesha/front.svg",
  41637. extra: 1803/1653,
  41638. bottom: 128/1931
  41639. }
  41640. },
  41641. },
  41642. [
  41643. {
  41644. name: "Normal",
  41645. height: math.unit(2.6, "meters"),
  41646. default: true
  41647. },
  41648. {
  41649. name: "Macro",
  41650. height: math.unit(50, "meters")
  41651. },
  41652. ]
  41653. ))
  41654. characterMakers.push(() => makeCharacter(
  41655. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41656. {
  41657. front: {
  41658. height: math.unit(5, "feet"),
  41659. weight: math.unit(185, "lb"),
  41660. name: "Front",
  41661. image: {
  41662. source: "./media/characters/kyera/front.svg",
  41663. extra: 1875/1790,
  41664. bottom: 96/1971
  41665. }
  41666. },
  41667. },
  41668. [
  41669. {
  41670. name: "Normal",
  41671. height: math.unit(5, "feet"),
  41672. default: true
  41673. },
  41674. ]
  41675. ))
  41676. characterMakers.push(() => makeCharacter(
  41677. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41678. {
  41679. front: {
  41680. height: math.unit(7 + 6/12, "feet"),
  41681. weight: math.unit(540, "lb"),
  41682. name: "Front",
  41683. image: {
  41684. source: "./media/characters/yuko/front.svg",
  41685. extra: 1282/1222,
  41686. bottom: 101/1383
  41687. }
  41688. },
  41689. frontClothed: {
  41690. height: math.unit(7 + 6/12, "feet"),
  41691. weight: math.unit(540, "lb"),
  41692. name: "Front (Clothed)",
  41693. image: {
  41694. source: "./media/characters/yuko/front-clothed.svg",
  41695. extra: 1282/1222,
  41696. bottom: 101/1383
  41697. }
  41698. },
  41699. },
  41700. [
  41701. {
  41702. name: "Normal",
  41703. height: math.unit(7 + 6/12, "feet"),
  41704. default: true
  41705. },
  41706. {
  41707. name: "Macro",
  41708. height: math.unit(26 + 9/12, "feet")
  41709. },
  41710. {
  41711. name: "Megamacro",
  41712. height: math.unit(300, "feet")
  41713. },
  41714. {
  41715. name: "Gigamacro",
  41716. height: math.unit(5000, "feet")
  41717. },
  41718. {
  41719. name: "Planetary",
  41720. height: math.unit(10000, "miles")
  41721. },
  41722. ]
  41723. ))
  41724. characterMakers.push(() => makeCharacter(
  41725. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41726. {
  41727. front: {
  41728. height: math.unit(8 + 2/12, "feet"),
  41729. weight: math.unit(600, "lb"),
  41730. name: "Front",
  41731. image: {
  41732. source: "./media/characters/deam-nitrel/front.svg",
  41733. extra: 1308/1234,
  41734. bottom: 125/1433
  41735. }
  41736. },
  41737. },
  41738. [
  41739. {
  41740. name: "Normal",
  41741. height: math.unit(8 + 2/12, "feet"),
  41742. default: true
  41743. },
  41744. ]
  41745. ))
  41746. characterMakers.push(() => makeCharacter(
  41747. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41748. {
  41749. front: {
  41750. height: math.unit(6.1, "feet"),
  41751. weight: math.unit(180, "lb"),
  41752. name: "Front",
  41753. image: {
  41754. source: "./media/characters/skyress/front.svg",
  41755. extra: 1045/915,
  41756. bottom: 28/1073
  41757. }
  41758. },
  41759. maw: {
  41760. height: math.unit(1, "feet"),
  41761. name: "Maw",
  41762. image: {
  41763. source: "./media/characters/skyress/maw.svg"
  41764. }
  41765. },
  41766. },
  41767. [
  41768. {
  41769. name: "Normal",
  41770. height: math.unit(6.1, "feet"),
  41771. default: true
  41772. },
  41773. {
  41774. name: "Macro",
  41775. height: math.unit(200, "feet")
  41776. },
  41777. ]
  41778. ))
  41779. characterMakers.push(() => makeCharacter(
  41780. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41781. {
  41782. front: {
  41783. height: math.unit(4 + 2/12, "feet"),
  41784. weight: math.unit(40, "kg"),
  41785. name: "Front",
  41786. image: {
  41787. source: "./media/characters/amethyst-jones/front.svg",
  41788. extra: 1220/1150,
  41789. bottom: 101/1321
  41790. }
  41791. },
  41792. },
  41793. [
  41794. {
  41795. name: "Normal",
  41796. height: math.unit(4 + 2/12, "feet"),
  41797. default: true
  41798. },
  41799. ]
  41800. ))
  41801. characterMakers.push(() => makeCharacter(
  41802. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41803. {
  41804. front: {
  41805. height: math.unit(1.7, "m"),
  41806. weight: math.unit(135, "lb"),
  41807. name: "Front",
  41808. image: {
  41809. source: "./media/characters/jade/front.svg",
  41810. extra: 1818/1767,
  41811. bottom: 32/1850
  41812. }
  41813. },
  41814. back: {
  41815. height: math.unit(1.7, "m"),
  41816. weight: math.unit(135, "lb"),
  41817. name: "Back",
  41818. image: {
  41819. source: "./media/characters/jade/back.svg",
  41820. extra: 1869/1809,
  41821. bottom: 35/1904
  41822. }
  41823. },
  41824. hand: {
  41825. height: math.unit(0.24, "m"),
  41826. name: "Hand",
  41827. image: {
  41828. source: "./media/characters/jade/hand.svg"
  41829. }
  41830. },
  41831. foot: {
  41832. height: math.unit(0.263, "m"),
  41833. name: "Foot",
  41834. image: {
  41835. source: "./media/characters/jade/foot.svg"
  41836. }
  41837. },
  41838. dick: {
  41839. height: math.unit(0.47, "m"),
  41840. name: "Dick",
  41841. image: {
  41842. source: "./media/characters/jade/dick.svg"
  41843. }
  41844. },
  41845. },
  41846. [
  41847. {
  41848. name: "Micro",
  41849. height: math.unit(22, "cm")
  41850. },
  41851. {
  41852. name: "Normal",
  41853. height: math.unit(1.7, "m"),
  41854. default: true
  41855. },
  41856. {
  41857. name: "Macro",
  41858. height: math.unit(152, "m")
  41859. },
  41860. ]
  41861. ))
  41862. characterMakers.push(() => makeCharacter(
  41863. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41864. {
  41865. front: {
  41866. height: math.unit(100, "miles"),
  41867. weight: math.unit(20000, "tons"),
  41868. name: "Front",
  41869. image: {
  41870. source: "./media/characters/cookie/front.svg",
  41871. extra: 1125/1070,
  41872. bottom: 30/1155
  41873. }
  41874. },
  41875. },
  41876. [
  41877. {
  41878. name: "Big",
  41879. height: math.unit(50, "feet")
  41880. },
  41881. {
  41882. name: "Macro",
  41883. height: math.unit(100, "miles"),
  41884. default: true
  41885. },
  41886. {
  41887. name: "Megamacro",
  41888. height: math.unit(90000, "miles")
  41889. },
  41890. ]
  41891. ))
  41892. characterMakers.push(() => makeCharacter(
  41893. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41894. {
  41895. front: {
  41896. height: math.unit(6, "feet"),
  41897. weight: math.unit(145, "lb"),
  41898. name: "Front",
  41899. image: {
  41900. source: "./media/characters/farzian/front.svg",
  41901. extra: 1902/1693,
  41902. bottom: 108/2010
  41903. }
  41904. },
  41905. },
  41906. [
  41907. {
  41908. name: "Macro",
  41909. height: math.unit(500, "feet"),
  41910. default: true
  41911. },
  41912. ]
  41913. ))
  41914. characterMakers.push(() => makeCharacter(
  41915. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41916. {
  41917. front: {
  41918. height: math.unit(3 + 6/12, "feet"),
  41919. weight: math.unit(50, "lb"),
  41920. name: "Front",
  41921. image: {
  41922. source: "./media/characters/kimberly-tilson/front.svg",
  41923. extra: 1400/1322,
  41924. bottom: 36/1436
  41925. }
  41926. },
  41927. back: {
  41928. height: math.unit(3 + 6/12, "feet"),
  41929. weight: math.unit(50, "lb"),
  41930. name: "Back",
  41931. image: {
  41932. source: "./media/characters/kimberly-tilson/back.svg",
  41933. extra: 1370/1307,
  41934. bottom: 20/1390
  41935. }
  41936. },
  41937. },
  41938. [
  41939. {
  41940. name: "Normal",
  41941. height: math.unit(3 + 6/12, "feet"),
  41942. default: true
  41943. },
  41944. ]
  41945. ))
  41946. characterMakers.push(() => makeCharacter(
  41947. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41948. {
  41949. front: {
  41950. height: math.unit(1148, "feet"),
  41951. weight: math.unit(34057, "lb"),
  41952. name: "Front",
  41953. image: {
  41954. source: "./media/characters/harthos/front.svg",
  41955. extra: 1391/1339,
  41956. bottom: 13/1404
  41957. }
  41958. },
  41959. },
  41960. [
  41961. {
  41962. name: "Macro",
  41963. height: math.unit(1148, "feet"),
  41964. default: true
  41965. },
  41966. ]
  41967. ))
  41968. characterMakers.push(() => makeCharacter(
  41969. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41970. {
  41971. front: {
  41972. height: math.unit(15, "feet"),
  41973. name: "Front",
  41974. image: {
  41975. source: "./media/characters/hypatia/front.svg",
  41976. extra: 1653/1591,
  41977. bottom: 79/1732
  41978. }
  41979. },
  41980. },
  41981. [
  41982. {
  41983. name: "Normal",
  41984. height: math.unit(15, "feet")
  41985. },
  41986. {
  41987. name: "Small",
  41988. height: math.unit(300, "feet")
  41989. },
  41990. {
  41991. name: "Macro",
  41992. height: math.unit(2500, "feet"),
  41993. default: true
  41994. },
  41995. {
  41996. name: "Mega Macro",
  41997. height: math.unit(1500, "miles")
  41998. },
  41999. {
  42000. name: "Giga Macro",
  42001. height: math.unit(1.5e6, "miles")
  42002. },
  42003. ]
  42004. ))
  42005. characterMakers.push(() => makeCharacter(
  42006. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42007. {
  42008. front: {
  42009. height: math.unit(6, "feet"),
  42010. weight: math.unit(200, "lb"),
  42011. name: "Front",
  42012. image: {
  42013. source: "./media/characters/wulver/front.svg",
  42014. extra: 1724/1632,
  42015. bottom: 130/1854
  42016. }
  42017. },
  42018. frontNsfw: {
  42019. height: math.unit(6, "feet"),
  42020. weight: math.unit(200, "lb"),
  42021. name: "Front (NSFW)",
  42022. image: {
  42023. source: "./media/characters/wulver/front-nsfw.svg",
  42024. extra: 1724/1632,
  42025. bottom: 130/1854
  42026. }
  42027. },
  42028. },
  42029. [
  42030. {
  42031. name: "Human-Sized",
  42032. height: math.unit(6, "feet")
  42033. },
  42034. {
  42035. name: "Normal",
  42036. height: math.unit(4, "meters"),
  42037. default: true
  42038. },
  42039. {
  42040. name: "Large",
  42041. height: math.unit(6, "m")
  42042. },
  42043. ]
  42044. ))
  42045. characterMakers.push(() => makeCharacter(
  42046. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42047. {
  42048. front: {
  42049. height: math.unit(7, "feet"),
  42050. name: "Front",
  42051. image: {
  42052. source: "./media/characters/maru/front.svg",
  42053. extra: 1595/1570,
  42054. bottom: 0/1595
  42055. }
  42056. },
  42057. },
  42058. [
  42059. {
  42060. name: "Normal",
  42061. height: math.unit(7, "feet"),
  42062. default: true
  42063. },
  42064. {
  42065. name: "Macro",
  42066. height: math.unit(700, "feet")
  42067. },
  42068. {
  42069. name: "Mega Macro",
  42070. height: math.unit(25, "miles")
  42071. },
  42072. ]
  42073. ))
  42074. characterMakers.push(() => makeCharacter(
  42075. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42076. {
  42077. front: {
  42078. height: math.unit(6, "feet"),
  42079. weight: math.unit(170, "lb"),
  42080. name: "Front",
  42081. image: {
  42082. source: "./media/characters/xenon/front.svg",
  42083. extra: 1376/1305,
  42084. bottom: 56/1432
  42085. }
  42086. },
  42087. back: {
  42088. height: math.unit(6, "feet"),
  42089. weight: math.unit(170, "lb"),
  42090. name: "Back",
  42091. image: {
  42092. source: "./media/characters/xenon/back.svg",
  42093. extra: 1328/1259,
  42094. bottom: 95/1423
  42095. }
  42096. },
  42097. maw: {
  42098. height: math.unit(0.52, "feet"),
  42099. name: "Maw",
  42100. image: {
  42101. source: "./media/characters/xenon/maw.svg"
  42102. }
  42103. },
  42104. handLeft: {
  42105. height: math.unit(0.82 * 169 / 153, "feet"),
  42106. name: "Hand (Left)",
  42107. image: {
  42108. source: "./media/characters/xenon/hand-left.svg"
  42109. }
  42110. },
  42111. handRight: {
  42112. height: math.unit(0.82, "feet"),
  42113. name: "Hand (Right)",
  42114. image: {
  42115. source: "./media/characters/xenon/hand-right.svg"
  42116. }
  42117. },
  42118. footLeft: {
  42119. height: math.unit(1.13, "feet"),
  42120. name: "Foot (Left)",
  42121. image: {
  42122. source: "./media/characters/xenon/foot-left.svg"
  42123. }
  42124. },
  42125. footRight: {
  42126. height: math.unit(1.13 * 194 / 196, "feet"),
  42127. name: "Foot (Right)",
  42128. image: {
  42129. source: "./media/characters/xenon/foot-right.svg"
  42130. }
  42131. },
  42132. },
  42133. [
  42134. {
  42135. name: "Micro",
  42136. height: math.unit(0.8, "inches")
  42137. },
  42138. {
  42139. name: "Normal",
  42140. height: math.unit(6, "feet")
  42141. },
  42142. {
  42143. name: "Macro",
  42144. height: math.unit(50, "feet"),
  42145. default: true
  42146. },
  42147. {
  42148. name: "Macro+",
  42149. height: math.unit(250, "feet")
  42150. },
  42151. {
  42152. name: "Megamacro",
  42153. height: math.unit(1500, "feet")
  42154. },
  42155. ]
  42156. ))
  42157. characterMakers.push(() => makeCharacter(
  42158. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42159. {
  42160. front: {
  42161. height: math.unit(7 + 5/12, "feet"),
  42162. name: "Front",
  42163. image: {
  42164. source: "./media/characters/zane/front.svg",
  42165. extra: 1260/1203,
  42166. bottom: 94/1354
  42167. }
  42168. },
  42169. back: {
  42170. height: math.unit(5.05, "feet"),
  42171. name: "Back",
  42172. image: {
  42173. source: "./media/characters/zane/back.svg",
  42174. extra: 893/829,
  42175. bottom: 30/923
  42176. }
  42177. },
  42178. werewolf: {
  42179. height: math.unit(11, "feet"),
  42180. name: "Werewolf",
  42181. image: {
  42182. source: "./media/characters/zane/werewolf.svg",
  42183. extra: 1383/1323,
  42184. bottom: 89/1472
  42185. }
  42186. },
  42187. foot: {
  42188. height: math.unit(1.46, "feet"),
  42189. name: "Foot",
  42190. image: {
  42191. source: "./media/characters/zane/foot.svg"
  42192. }
  42193. },
  42194. footFront: {
  42195. height: math.unit(0.784, "feet"),
  42196. name: "Foot (Front)",
  42197. image: {
  42198. source: "./media/characters/zane/foot-front.svg"
  42199. }
  42200. },
  42201. dick: {
  42202. height: math.unit(1.95, "feet"),
  42203. name: "Dick",
  42204. image: {
  42205. source: "./media/characters/zane/dick.svg"
  42206. }
  42207. },
  42208. dickWerewolf: {
  42209. height: math.unit(3.77, "feet"),
  42210. name: "Dick (Werewolf)",
  42211. image: {
  42212. source: "./media/characters/zane/dick.svg"
  42213. }
  42214. },
  42215. },
  42216. [
  42217. {
  42218. name: "Normal",
  42219. height: math.unit(7 + 5/12, "feet"),
  42220. default: true
  42221. },
  42222. ]
  42223. ))
  42224. characterMakers.push(() => makeCharacter(
  42225. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42226. {
  42227. front: {
  42228. height: math.unit(6 + 2/12, "feet"),
  42229. weight: math.unit(284, "lb"),
  42230. name: "Front",
  42231. image: {
  42232. source: "./media/characters/benni-desparque/front.svg",
  42233. extra: 1353/1126,
  42234. bottom: 69/1422
  42235. }
  42236. },
  42237. },
  42238. [
  42239. {
  42240. name: "Civilian",
  42241. height: math.unit(6 + 2/12, "feet")
  42242. },
  42243. {
  42244. name: "Normal",
  42245. height: math.unit(98, "feet"),
  42246. default: true
  42247. },
  42248. {
  42249. name: "Kaiju Fighter",
  42250. height: math.unit(268, "feet")
  42251. },
  42252. ]
  42253. ))
  42254. characterMakers.push(() => makeCharacter(
  42255. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42256. {
  42257. front: {
  42258. height: math.unit(5, "feet"),
  42259. weight: math.unit(105, "lb"),
  42260. name: "Front",
  42261. image: {
  42262. source: "./media/characters/maxine/front.svg",
  42263. extra: 1386/1250,
  42264. bottom: 71/1457
  42265. }
  42266. },
  42267. },
  42268. [
  42269. {
  42270. name: "Normal",
  42271. height: math.unit(5, "feet"),
  42272. default: true
  42273. },
  42274. ]
  42275. ))
  42276. characterMakers.push(() => makeCharacter(
  42277. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42278. {
  42279. front: {
  42280. height: math.unit(11 + 7/12, "feet"),
  42281. weight: math.unit(9576, "lb"),
  42282. name: "Front",
  42283. image: {
  42284. source: "./media/characters/scaly/front.svg",
  42285. extra: 888/867,
  42286. bottom: 36/924
  42287. }
  42288. },
  42289. },
  42290. [
  42291. {
  42292. name: "Normal",
  42293. height: math.unit(11 + 7/12, "feet"),
  42294. default: true
  42295. },
  42296. ]
  42297. ))
  42298. characterMakers.push(() => makeCharacter(
  42299. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42300. {
  42301. front: {
  42302. height: math.unit(6 + 3/12, "feet"),
  42303. name: "Front",
  42304. image: {
  42305. source: "./media/characters/saelria/front.svg",
  42306. extra: 1243/1138,
  42307. bottom: 46/1289
  42308. }
  42309. },
  42310. },
  42311. [
  42312. {
  42313. name: "Micro",
  42314. height: math.unit(6, "inches"),
  42315. },
  42316. {
  42317. name: "Normal",
  42318. height: math.unit(6 + 3/12, "feet"),
  42319. default: true
  42320. },
  42321. {
  42322. name: "Macro",
  42323. height: math.unit(25, "feet")
  42324. },
  42325. ]
  42326. ))
  42327. characterMakers.push(() => makeCharacter(
  42328. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42329. {
  42330. front: {
  42331. height: math.unit(80, "meters"),
  42332. weight: math.unit(7000, "tonnes"),
  42333. name: "Front",
  42334. image: {
  42335. source: "./media/characters/tef/front.svg",
  42336. extra: 2036/1991,
  42337. bottom: 54/2090
  42338. }
  42339. },
  42340. back: {
  42341. height: math.unit(80, "meters"),
  42342. weight: math.unit(7000, "tonnes"),
  42343. name: "Back",
  42344. image: {
  42345. source: "./media/characters/tef/back.svg",
  42346. extra: 2036/1991,
  42347. bottom: 54/2090
  42348. }
  42349. },
  42350. },
  42351. [
  42352. {
  42353. name: "Macro",
  42354. height: math.unit(80, "meters"),
  42355. default: true
  42356. },
  42357. ]
  42358. ))
  42359. characterMakers.push(() => makeCharacter(
  42360. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42361. {
  42362. front: {
  42363. height: math.unit(13, "feet"),
  42364. weight: math.unit(6, "tons"),
  42365. name: "Front",
  42366. image: {
  42367. source: "./media/characters/rover/front.svg",
  42368. extra: 1233/1156,
  42369. bottom: 50/1283
  42370. }
  42371. },
  42372. back: {
  42373. height: math.unit(13, "feet"),
  42374. weight: math.unit(6, "tons"),
  42375. name: "Back",
  42376. image: {
  42377. source: "./media/characters/rover/back.svg",
  42378. extra: 1327/1258,
  42379. bottom: 39/1366
  42380. }
  42381. },
  42382. },
  42383. [
  42384. {
  42385. name: "Normal",
  42386. height: math.unit(13, "feet"),
  42387. default: true
  42388. },
  42389. {
  42390. name: "Macro",
  42391. height: math.unit(1300, "feet")
  42392. },
  42393. {
  42394. name: "Megamacro",
  42395. height: math.unit(1300, "miles")
  42396. },
  42397. {
  42398. name: "Gigamacro",
  42399. height: math.unit(1300000, "miles")
  42400. },
  42401. ]
  42402. ))
  42403. characterMakers.push(() => makeCharacter(
  42404. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42405. {
  42406. front: {
  42407. height: math.unit(6, "feet"),
  42408. weight: math.unit(150, "lb"),
  42409. name: "Front",
  42410. image: {
  42411. source: "./media/characters/ariz/front.svg",
  42412. extra: 1401/1346,
  42413. bottom: 5/1406
  42414. }
  42415. },
  42416. },
  42417. [
  42418. {
  42419. name: "Normal",
  42420. height: math.unit(10, "feet"),
  42421. default: true
  42422. },
  42423. ]
  42424. ))
  42425. characterMakers.push(() => makeCharacter(
  42426. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42427. {
  42428. front: {
  42429. height: math.unit(6, "feet"),
  42430. weight: math.unit(140, "lb"),
  42431. name: "Front",
  42432. image: {
  42433. source: "./media/characters/sigrun/front.svg",
  42434. extra: 1418/1359,
  42435. bottom: 27/1445
  42436. }
  42437. },
  42438. },
  42439. [
  42440. {
  42441. name: "Macro",
  42442. height: math.unit(35, "feet"),
  42443. default: true
  42444. },
  42445. ]
  42446. ))
  42447. characterMakers.push(() => makeCharacter(
  42448. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42449. {
  42450. front: {
  42451. height: math.unit(6, "feet"),
  42452. weight: math.unit(150, "lb"),
  42453. name: "Front",
  42454. image: {
  42455. source: "./media/characters/numin/front.svg",
  42456. extra: 1433/1388,
  42457. bottom: 12/1445
  42458. }
  42459. },
  42460. },
  42461. [
  42462. {
  42463. name: "Macro",
  42464. height: math.unit(21.5, "km"),
  42465. default: true
  42466. },
  42467. ]
  42468. ))
  42469. characterMakers.push(() => makeCharacter(
  42470. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42471. {
  42472. front: {
  42473. height: math.unit(6, "feet"),
  42474. weight: math.unit(463, "lb"),
  42475. name: "Front",
  42476. image: {
  42477. source: "./media/characters/melwa/front.svg",
  42478. extra: 1307/1248,
  42479. bottom: 93/1400
  42480. }
  42481. },
  42482. },
  42483. [
  42484. {
  42485. name: "Macro",
  42486. height: math.unit(50, "meters"),
  42487. default: true
  42488. },
  42489. ]
  42490. ))
  42491. characterMakers.push(() => makeCharacter(
  42492. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42493. {
  42494. front: {
  42495. height: math.unit(325, "feet"),
  42496. name: "Front",
  42497. image: {
  42498. source: "./media/characters/zorkaiju/front.svg",
  42499. extra: 1955/1814,
  42500. bottom: 40/1995
  42501. }
  42502. },
  42503. frontExtended: {
  42504. height: math.unit(325, "feet"),
  42505. name: "Front (Extended)",
  42506. image: {
  42507. source: "./media/characters/zorkaiju/front-extended.svg",
  42508. extra: 1955/1814,
  42509. bottom: 40/1995
  42510. }
  42511. },
  42512. side: {
  42513. height: math.unit(325, "feet"),
  42514. name: "Side",
  42515. image: {
  42516. source: "./media/characters/zorkaiju/side.svg",
  42517. extra: 1495/1396,
  42518. bottom: 17/1512
  42519. }
  42520. },
  42521. sideExtended: {
  42522. height: math.unit(325, "feet"),
  42523. name: "Side (Extended)",
  42524. image: {
  42525. source: "./media/characters/zorkaiju/side-extended.svg",
  42526. extra: 1495/1396,
  42527. bottom: 17/1512
  42528. }
  42529. },
  42530. back: {
  42531. height: math.unit(325, "feet"),
  42532. name: "Back",
  42533. image: {
  42534. source: "./media/characters/zorkaiju/back.svg",
  42535. extra: 1959/1821,
  42536. bottom: 31/1990
  42537. }
  42538. },
  42539. backExtended: {
  42540. height: math.unit(325, "feet"),
  42541. name: "Back (Extended)",
  42542. image: {
  42543. source: "./media/characters/zorkaiju/back-extended.svg",
  42544. extra: 1959/1821,
  42545. bottom: 31/1990
  42546. }
  42547. },
  42548. hand: {
  42549. height: math.unit(58.4, "feet"),
  42550. name: "Hand",
  42551. image: {
  42552. source: "./media/characters/zorkaiju/hand.svg"
  42553. }
  42554. },
  42555. handExtended: {
  42556. height: math.unit(61.4, "feet"),
  42557. name: "Hand (Extended)",
  42558. image: {
  42559. source: "./media/characters/zorkaiju/hand-extended.svg"
  42560. }
  42561. },
  42562. foot: {
  42563. height: math.unit(95, "feet"),
  42564. name: "Foot",
  42565. image: {
  42566. source: "./media/characters/zorkaiju/foot.svg"
  42567. }
  42568. },
  42569. leftArm: {
  42570. height: math.unit(59, "feet"),
  42571. name: "Left Arm",
  42572. image: {
  42573. source: "./media/characters/zorkaiju/left-arm.svg"
  42574. }
  42575. },
  42576. rightArm: {
  42577. height: math.unit(59, "feet"),
  42578. name: "Right Arm",
  42579. image: {
  42580. source: "./media/characters/zorkaiju/right-arm.svg"
  42581. }
  42582. },
  42583. leftArmExtended: {
  42584. height: math.unit(59 * 1.033546, "feet"),
  42585. name: "Left Arm (Extended)",
  42586. image: {
  42587. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42588. }
  42589. },
  42590. rightArmExtended: {
  42591. height: math.unit(59 * 1.0496, "feet"),
  42592. name: "Right Arm (Extended)",
  42593. image: {
  42594. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42595. }
  42596. },
  42597. tail: {
  42598. height: math.unit(104, "feet"),
  42599. name: "Tail",
  42600. image: {
  42601. source: "./media/characters/zorkaiju/tail.svg"
  42602. }
  42603. },
  42604. tailExtended: {
  42605. height: math.unit(104, "feet"),
  42606. name: "Tail (Extended)",
  42607. image: {
  42608. source: "./media/characters/zorkaiju/tail-extended.svg"
  42609. }
  42610. },
  42611. tailBottom: {
  42612. height: math.unit(104, "feet"),
  42613. name: "Tail Bottom",
  42614. image: {
  42615. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42616. }
  42617. },
  42618. crystal: {
  42619. height: math.unit(27.54, "feet"),
  42620. name: "Crystal",
  42621. image: {
  42622. source: "./media/characters/zorkaiju/crystal.svg"
  42623. }
  42624. },
  42625. },
  42626. [
  42627. {
  42628. name: "Kaiju",
  42629. height: math.unit(325, "feet"),
  42630. default: true
  42631. },
  42632. ]
  42633. ))
  42634. characterMakers.push(() => makeCharacter(
  42635. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42636. {
  42637. front: {
  42638. height: math.unit(6 + 1/12, "feet"),
  42639. weight: math.unit(115, "lb"),
  42640. name: "Front",
  42641. image: {
  42642. source: "./media/characters/bailey-belfry/front.svg",
  42643. extra: 1240/1121,
  42644. bottom: 101/1341
  42645. }
  42646. },
  42647. },
  42648. [
  42649. {
  42650. name: "Normal",
  42651. height: math.unit(6 + 1/12, "feet"),
  42652. default: true
  42653. },
  42654. ]
  42655. ))
  42656. characterMakers.push(() => makeCharacter(
  42657. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42658. {
  42659. side: {
  42660. height: math.unit(4, "meters"),
  42661. weight: math.unit(250, "kg"),
  42662. name: "Side",
  42663. image: {
  42664. source: "./media/characters/blacky/side.svg",
  42665. extra: 1027/919,
  42666. bottom: 43/1070
  42667. }
  42668. },
  42669. maw: {
  42670. height: math.unit(1, "meters"),
  42671. name: "Maw",
  42672. image: {
  42673. source: "./media/characters/blacky/maw.svg"
  42674. }
  42675. },
  42676. paw: {
  42677. height: math.unit(1, "meters"),
  42678. name: "Paw",
  42679. image: {
  42680. source: "./media/characters/blacky/paw.svg"
  42681. }
  42682. },
  42683. },
  42684. [
  42685. {
  42686. name: "Normal",
  42687. height: math.unit(4, "meters"),
  42688. default: true
  42689. },
  42690. ]
  42691. ))
  42692. characterMakers.push(() => makeCharacter(
  42693. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42694. {
  42695. front: {
  42696. height: math.unit(170, "cm"),
  42697. weight: math.unit(66, "kg"),
  42698. name: "Front",
  42699. image: {
  42700. source: "./media/characters/thux-ei/front.svg",
  42701. extra: 1109/1011,
  42702. bottom: 8/1117
  42703. }
  42704. },
  42705. },
  42706. [
  42707. {
  42708. name: "Normal",
  42709. height: math.unit(170, "cm"),
  42710. default: true
  42711. },
  42712. ]
  42713. ))
  42714. characterMakers.push(() => makeCharacter(
  42715. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42716. {
  42717. front: {
  42718. height: math.unit(5, "feet"),
  42719. weight: math.unit(120, "lb"),
  42720. name: "Front",
  42721. image: {
  42722. source: "./media/characters/roxanne-voltaire/front.svg",
  42723. extra: 1901/1779,
  42724. bottom: 53/1954
  42725. }
  42726. },
  42727. },
  42728. [
  42729. {
  42730. name: "Normal",
  42731. height: math.unit(5, "feet"),
  42732. default: true
  42733. },
  42734. {
  42735. name: "Giant",
  42736. height: math.unit(50, "feet")
  42737. },
  42738. {
  42739. name: "Titan",
  42740. height: math.unit(500, "feet")
  42741. },
  42742. {
  42743. name: "Macro",
  42744. height: math.unit(5000, "feet")
  42745. },
  42746. {
  42747. name: "Megamacro",
  42748. height: math.unit(50000, "feet")
  42749. },
  42750. {
  42751. name: "Gigamacro",
  42752. height: math.unit(500000, "feet")
  42753. },
  42754. {
  42755. name: "Teramacro",
  42756. height: math.unit(5e6, "feet")
  42757. },
  42758. ]
  42759. ))
  42760. characterMakers.push(() => makeCharacter(
  42761. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42762. {
  42763. front: {
  42764. height: math.unit(6 + 2/12, "feet"),
  42765. name: "Front",
  42766. image: {
  42767. source: "./media/characters/squeaks/front.svg",
  42768. extra: 1823/1768,
  42769. bottom: 138/1961
  42770. }
  42771. },
  42772. },
  42773. [
  42774. {
  42775. name: "Micro",
  42776. height: math.unit(0.5, "inches")
  42777. },
  42778. {
  42779. name: "Normal",
  42780. height: math.unit(6 + 2/12, "feet"),
  42781. default: true
  42782. },
  42783. {
  42784. name: "Macro",
  42785. height: math.unit(600, "feet")
  42786. },
  42787. ]
  42788. ))
  42789. characterMakers.push(() => makeCharacter(
  42790. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42791. {
  42792. front: {
  42793. height: math.unit(1.72, "meters"),
  42794. name: "Front",
  42795. image: {
  42796. source: "./media/characters/archinger/front.svg",
  42797. extra: 1861/1675,
  42798. bottom: 125/1986
  42799. }
  42800. },
  42801. back: {
  42802. height: math.unit(1.72, "meters"),
  42803. name: "Back",
  42804. image: {
  42805. source: "./media/characters/archinger/back.svg",
  42806. extra: 1844/1701,
  42807. bottom: 104/1948
  42808. }
  42809. },
  42810. cock: {
  42811. height: math.unit(0.59, "feet"),
  42812. name: "Cock",
  42813. image: {
  42814. source: "./media/characters/archinger/cock.svg"
  42815. }
  42816. },
  42817. },
  42818. [
  42819. {
  42820. name: "Normal",
  42821. height: math.unit(1.72, "meters"),
  42822. default: true
  42823. },
  42824. {
  42825. name: "Macro",
  42826. height: math.unit(84, "meters")
  42827. },
  42828. {
  42829. name: "Macro+",
  42830. height: math.unit(112, "meters")
  42831. },
  42832. {
  42833. name: "Macro++",
  42834. height: math.unit(960, "meters")
  42835. },
  42836. {
  42837. name: "Macro+++",
  42838. height: math.unit(4, "km")
  42839. },
  42840. {
  42841. name: "Macro++++",
  42842. height: math.unit(48, "km")
  42843. },
  42844. {
  42845. name: "Macro+++++",
  42846. height: math.unit(4500, "km")
  42847. },
  42848. ]
  42849. ))
  42850. characterMakers.push(() => makeCharacter(
  42851. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42852. {
  42853. front: {
  42854. height: math.unit(5 + 5/12, "feet"),
  42855. name: "Front",
  42856. image: {
  42857. source: "./media/characters/alsnapz/front.svg",
  42858. extra: 1157/1065,
  42859. bottom: 42/1199
  42860. }
  42861. },
  42862. },
  42863. [
  42864. {
  42865. name: "Normal",
  42866. height: math.unit(5 + 5/12, "feet"),
  42867. default: true
  42868. },
  42869. ]
  42870. ))
  42871. characterMakers.push(() => makeCharacter(
  42872. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42873. {
  42874. side: {
  42875. height: math.unit(3.2, "earths"),
  42876. name: "Side",
  42877. image: {
  42878. source: "./media/characters/mag/side.svg",
  42879. extra: 1331/1008,
  42880. bottom: 52/1383
  42881. }
  42882. },
  42883. wing: {
  42884. height: math.unit(1.94, "earths"),
  42885. name: "Wing",
  42886. image: {
  42887. source: "./media/characters/mag/wing.svg"
  42888. }
  42889. },
  42890. dick: {
  42891. height: math.unit(1.8, "earths"),
  42892. name: "Dick",
  42893. image: {
  42894. source: "./media/characters/mag/dick.svg"
  42895. }
  42896. },
  42897. ass: {
  42898. height: math.unit(1.33, "earths"),
  42899. name: "Ass",
  42900. image: {
  42901. source: "./media/characters/mag/ass.svg"
  42902. }
  42903. },
  42904. head: {
  42905. height: math.unit(1.1, "earths"),
  42906. name: "Head",
  42907. image: {
  42908. source: "./media/characters/mag/head.svg"
  42909. }
  42910. },
  42911. maw: {
  42912. height: math.unit(1.62, "earths"),
  42913. name: "Maw",
  42914. image: {
  42915. source: "./media/characters/mag/maw.svg"
  42916. }
  42917. },
  42918. },
  42919. [
  42920. {
  42921. name: "Small",
  42922. height: math.unit(162, "feet")
  42923. },
  42924. {
  42925. name: "Normal",
  42926. height: math.unit(3.2, "earths"),
  42927. default: true
  42928. },
  42929. ]
  42930. ))
  42931. characterMakers.push(() => makeCharacter(
  42932. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42933. {
  42934. front: {
  42935. height: math.unit(512, "feet"),
  42936. weight: math.unit(63509, "tonnes"),
  42937. name: "Front",
  42938. image: {
  42939. source: "./media/characters/vorrel-harroc/front.svg",
  42940. extra: 1075/1063,
  42941. bottom: 62/1137
  42942. }
  42943. },
  42944. },
  42945. [
  42946. {
  42947. name: "Normal",
  42948. height: math.unit(10, "feet")
  42949. },
  42950. {
  42951. name: "Macro",
  42952. height: math.unit(512, "feet"),
  42953. default: true
  42954. },
  42955. {
  42956. name: "Megamacro",
  42957. height: math.unit(256, "miles")
  42958. },
  42959. {
  42960. name: "Gigamacro",
  42961. height: math.unit(4096, "miles")
  42962. },
  42963. ]
  42964. ))
  42965. characterMakers.push(() => makeCharacter(
  42966. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42967. {
  42968. side: {
  42969. height: math.unit(50, "feet"),
  42970. name: "Side",
  42971. image: {
  42972. source: "./media/characters/froimar/side.svg",
  42973. extra: 855/638,
  42974. bottom: 99/954
  42975. }
  42976. },
  42977. },
  42978. [
  42979. {
  42980. name: "Macro",
  42981. height: math.unit(50, "feet"),
  42982. default: true
  42983. },
  42984. ]
  42985. ))
  42986. characterMakers.push(() => makeCharacter(
  42987. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42988. {
  42989. front: {
  42990. height: math.unit(210, "miles"),
  42991. name: "Front",
  42992. image: {
  42993. source: "./media/characters/timothy/front.svg",
  42994. extra: 1007/943,
  42995. bottom: 62/1069
  42996. }
  42997. },
  42998. frontSkirt: {
  42999. height: math.unit(210, "miles"),
  43000. name: "Front (Skirt)",
  43001. image: {
  43002. source: "./media/characters/timothy/front-skirt.svg",
  43003. extra: 1007/943,
  43004. bottom: 62/1069
  43005. }
  43006. },
  43007. frontCoat: {
  43008. height: math.unit(210, "miles"),
  43009. name: "Front (Coat)",
  43010. image: {
  43011. source: "./media/characters/timothy/front-coat.svg",
  43012. extra: 1007/943,
  43013. bottom: 62/1069
  43014. }
  43015. },
  43016. },
  43017. [
  43018. {
  43019. name: "Macro",
  43020. height: math.unit(210, "miles"),
  43021. default: true
  43022. },
  43023. {
  43024. name: "Megamacro",
  43025. height: math.unit(210000, "miles")
  43026. },
  43027. ]
  43028. ))
  43029. characterMakers.push(() => makeCharacter(
  43030. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43031. {
  43032. front: {
  43033. height: math.unit(188, "feet"),
  43034. name: "Front",
  43035. image: {
  43036. source: "./media/characters/pyotr/front.svg",
  43037. extra: 1912/1826,
  43038. bottom: 18/1930
  43039. }
  43040. },
  43041. },
  43042. [
  43043. {
  43044. name: "Macro",
  43045. height: math.unit(188, "feet"),
  43046. default: true
  43047. },
  43048. {
  43049. name: "Megamacro",
  43050. height: math.unit(8, "miles")
  43051. },
  43052. ]
  43053. ))
  43054. characterMakers.push(() => makeCharacter(
  43055. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43056. {
  43057. side: {
  43058. height: math.unit(10, "feet"),
  43059. weight: math.unit(4500, "lb"),
  43060. name: "Side",
  43061. image: {
  43062. source: "./media/characters/ackart/side.svg",
  43063. extra: 1776/1668,
  43064. bottom: 116/1892
  43065. }
  43066. },
  43067. },
  43068. [
  43069. {
  43070. name: "Normal",
  43071. height: math.unit(10, "feet"),
  43072. default: true
  43073. },
  43074. ]
  43075. ))
  43076. characterMakers.push(() => makeCharacter(
  43077. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43078. {
  43079. side: {
  43080. height: math.unit(21, "feet"),
  43081. name: "Side",
  43082. image: {
  43083. source: "./media/characters/nolow/side.svg",
  43084. extra: 1484/1434,
  43085. bottom: 85/1569
  43086. }
  43087. },
  43088. sideErect: {
  43089. height: math.unit(21, "feet"),
  43090. name: "Side-erect",
  43091. image: {
  43092. source: "./media/characters/nolow/side-erect.svg",
  43093. extra: 1484/1434,
  43094. bottom: 85/1569
  43095. }
  43096. },
  43097. },
  43098. [
  43099. {
  43100. name: "Regular",
  43101. height: math.unit(12, "feet")
  43102. },
  43103. {
  43104. name: "Big Chee",
  43105. height: math.unit(21, "feet"),
  43106. default: true
  43107. },
  43108. ]
  43109. ))
  43110. characterMakers.push(() => makeCharacter(
  43111. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43112. {
  43113. front: {
  43114. height: math.unit(7, "feet"),
  43115. weight: math.unit(250, "lb"),
  43116. name: "Front",
  43117. image: {
  43118. source: "./media/characters/nines/front.svg",
  43119. extra: 1741/1607,
  43120. bottom: 41/1782
  43121. }
  43122. },
  43123. side: {
  43124. height: math.unit(7, "feet"),
  43125. weight: math.unit(250, "lb"),
  43126. name: "Side",
  43127. image: {
  43128. source: "./media/characters/nines/side.svg",
  43129. extra: 1854/1735,
  43130. bottom: 93/1947
  43131. }
  43132. },
  43133. back: {
  43134. height: math.unit(7, "feet"),
  43135. weight: math.unit(250, "lb"),
  43136. name: "Back",
  43137. image: {
  43138. source: "./media/characters/nines/back.svg",
  43139. extra: 1748/1615,
  43140. bottom: 20/1768
  43141. }
  43142. },
  43143. },
  43144. [
  43145. {
  43146. name: "Megamacro",
  43147. height: math.unit(99, "km"),
  43148. default: true
  43149. },
  43150. ]
  43151. ))
  43152. characterMakers.push(() => makeCharacter(
  43153. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43154. {
  43155. front: {
  43156. height: math.unit(5 + 10/12, "feet"),
  43157. weight: math.unit(210, "lb"),
  43158. name: "Front",
  43159. image: {
  43160. source: "./media/characters/zenith/front.svg",
  43161. extra: 1531/1452,
  43162. bottom: 198/1729
  43163. }
  43164. },
  43165. back: {
  43166. height: math.unit(5 + 10/12, "feet"),
  43167. weight: math.unit(210, "lb"),
  43168. name: "Back",
  43169. image: {
  43170. source: "./media/characters/zenith/back.svg",
  43171. extra: 1571/1487,
  43172. bottom: 75/1646
  43173. }
  43174. },
  43175. },
  43176. [
  43177. {
  43178. name: "Normal",
  43179. height: math.unit(5 + 10/12, "feet"),
  43180. default: true
  43181. }
  43182. ]
  43183. ))
  43184. characterMakers.push(() => makeCharacter(
  43185. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43186. {
  43187. front: {
  43188. height: math.unit(4, "feet"),
  43189. weight: math.unit(60, "lb"),
  43190. name: "Front",
  43191. image: {
  43192. source: "./media/characters/jasper/front.svg",
  43193. extra: 1450/1379,
  43194. bottom: 19/1469
  43195. }
  43196. },
  43197. },
  43198. [
  43199. {
  43200. name: "Normal",
  43201. height: math.unit(4, "feet"),
  43202. default: true
  43203. },
  43204. ]
  43205. ))
  43206. characterMakers.push(() => makeCharacter(
  43207. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43208. {
  43209. front: {
  43210. height: math.unit(6 + 5/12, "feet"),
  43211. weight: math.unit(290, "lb"),
  43212. name: "Front",
  43213. image: {
  43214. source: "./media/characters/tiberius-thyben/front.svg",
  43215. extra: 757/739,
  43216. bottom: 39/796
  43217. }
  43218. },
  43219. },
  43220. [
  43221. {
  43222. name: "Micro",
  43223. height: math.unit(1.5, "inches")
  43224. },
  43225. {
  43226. name: "Normal",
  43227. height: math.unit(6 + 5/12, "feet"),
  43228. default: true
  43229. },
  43230. {
  43231. name: "Macro",
  43232. height: math.unit(300, "feet")
  43233. },
  43234. ]
  43235. ))
  43236. characterMakers.push(() => makeCharacter(
  43237. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43238. {
  43239. front: {
  43240. height: math.unit(5 + 6/12, "feet"),
  43241. weight: math.unit(60, "kg"),
  43242. name: "Front",
  43243. image: {
  43244. source: "./media/characters/sabre/front.svg",
  43245. extra: 738/671,
  43246. bottom: 27/765
  43247. }
  43248. },
  43249. },
  43250. [
  43251. {
  43252. name: "Teeny",
  43253. height: math.unit(2, "inches")
  43254. },
  43255. {
  43256. name: "Smol",
  43257. height: math.unit(8, "inches")
  43258. },
  43259. {
  43260. name: "Normal",
  43261. height: math.unit(5 + 6/12, "feet"),
  43262. default: true
  43263. },
  43264. {
  43265. name: "Mini-Macro",
  43266. height: math.unit(15, "feet")
  43267. },
  43268. {
  43269. name: "Macro",
  43270. height: math.unit(50, "feet")
  43271. },
  43272. ]
  43273. ))
  43274. characterMakers.push(() => makeCharacter(
  43275. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43276. {
  43277. front: {
  43278. height: math.unit(6 + 4/12, "feet"),
  43279. weight: math.unit(170, "lb"),
  43280. name: "Front",
  43281. image: {
  43282. source: "./media/characters/charlie/front.svg",
  43283. extra: 1348/1228,
  43284. bottom: 15/1363
  43285. }
  43286. },
  43287. },
  43288. [
  43289. {
  43290. name: "Macro",
  43291. height: math.unit(1700, "meters"),
  43292. default: true
  43293. },
  43294. {
  43295. name: "MegaMacro",
  43296. height: math.unit(20400, "meters")
  43297. },
  43298. ]
  43299. ))
  43300. characterMakers.push(() => makeCharacter(
  43301. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43302. {
  43303. front: {
  43304. height: math.unit(6 + 3/12, "feet"),
  43305. weight: math.unit(185, "lb"),
  43306. name: "Front",
  43307. image: {
  43308. source: "./media/characters/susan-grant/front.svg",
  43309. extra: 1351/1327,
  43310. bottom: 26/1377
  43311. }
  43312. },
  43313. },
  43314. [
  43315. {
  43316. name: "Normal",
  43317. height: math.unit(6 + 3/12, "feet"),
  43318. default: true
  43319. },
  43320. {
  43321. name: "Macro",
  43322. height: math.unit(225, "feet")
  43323. },
  43324. {
  43325. name: "Macro+",
  43326. height: math.unit(900, "feet")
  43327. },
  43328. {
  43329. name: "MegaMacro",
  43330. height: math.unit(14400, "feet")
  43331. },
  43332. ]
  43333. ))
  43334. characterMakers.push(() => makeCharacter(
  43335. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43336. {
  43337. front: {
  43338. height: math.unit(5 + 4/12, "feet"),
  43339. weight: math.unit(110, "lb"),
  43340. name: "Front",
  43341. image: {
  43342. source: "./media/characters/axel-isanov/front.svg",
  43343. extra: 1096/1065,
  43344. bottom: 13/1109
  43345. }
  43346. },
  43347. },
  43348. [
  43349. {
  43350. name: "Normal",
  43351. height: math.unit(5 + 4/12, "feet"),
  43352. default: true
  43353. },
  43354. ]
  43355. ))
  43356. characterMakers.push(() => makeCharacter(
  43357. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43358. {
  43359. front: {
  43360. height: math.unit(9, "feet"),
  43361. weight: math.unit(467, "lb"),
  43362. name: "Front",
  43363. image: {
  43364. source: "./media/characters/necahual/front.svg",
  43365. extra: 920/873,
  43366. bottom: 26/946
  43367. }
  43368. },
  43369. back: {
  43370. height: math.unit(9, "feet"),
  43371. weight: math.unit(467, "lb"),
  43372. name: "Back",
  43373. image: {
  43374. source: "./media/characters/necahual/back.svg",
  43375. extra: 930/884,
  43376. bottom: 16/946
  43377. }
  43378. },
  43379. frontUnderwear: {
  43380. height: math.unit(9, "feet"),
  43381. weight: math.unit(467, "lb"),
  43382. name: "Front (Underwear)",
  43383. image: {
  43384. source: "./media/characters/necahual/front-underwear.svg",
  43385. extra: 920/873,
  43386. bottom: 26/946
  43387. }
  43388. },
  43389. frontDressed: {
  43390. height: math.unit(9, "feet"),
  43391. weight: math.unit(467, "lb"),
  43392. name: "Front (Dressed)",
  43393. image: {
  43394. source: "./media/characters/necahual/front-dressed.svg",
  43395. extra: 920/873,
  43396. bottom: 26/946
  43397. }
  43398. },
  43399. },
  43400. [
  43401. {
  43402. name: "Comprsesed",
  43403. height: math.unit(9, "feet")
  43404. },
  43405. {
  43406. name: "Natural",
  43407. height: math.unit(15, "feet"),
  43408. default: true
  43409. },
  43410. {
  43411. name: "Boosted",
  43412. height: math.unit(50, "feet")
  43413. },
  43414. {
  43415. name: "Boosted+",
  43416. height: math.unit(150, "feet")
  43417. },
  43418. {
  43419. name: "Max",
  43420. height: math.unit(500, "feet")
  43421. },
  43422. ]
  43423. ))
  43424. characterMakers.push(() => makeCharacter(
  43425. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43426. {
  43427. front: {
  43428. height: math.unit(22 + 1/12, "feet"),
  43429. weight: math.unit(3200, "lb"),
  43430. name: "Front",
  43431. image: {
  43432. source: "./media/characters/theo-acacia/front.svg",
  43433. extra: 1796/1741,
  43434. bottom: 83/1879
  43435. }
  43436. },
  43437. frontUnderwear: {
  43438. height: math.unit(22 + 1/12, "feet"),
  43439. weight: math.unit(3200, "lb"),
  43440. name: "Front (Underwear)",
  43441. image: {
  43442. source: "./media/characters/theo-acacia/front-underwear.svg",
  43443. extra: 1796/1741,
  43444. bottom: 83/1879
  43445. }
  43446. },
  43447. frontNude: {
  43448. height: math.unit(22 + 1/12, "feet"),
  43449. weight: math.unit(3200, "lb"),
  43450. name: "Front (Nude)",
  43451. image: {
  43452. source: "./media/characters/theo-acacia/front-nude.svg",
  43453. extra: 1796/1741,
  43454. bottom: 83/1879
  43455. }
  43456. },
  43457. },
  43458. [
  43459. {
  43460. name: "Normal",
  43461. height: math.unit(22 + 1/12, "feet"),
  43462. default: true
  43463. },
  43464. ]
  43465. ))
  43466. characterMakers.push(() => makeCharacter(
  43467. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43468. {
  43469. front: {
  43470. height: math.unit(20, "feet"),
  43471. name: "Front",
  43472. image: {
  43473. source: "./media/characters/astra/front.svg",
  43474. extra: 1850/1714,
  43475. bottom: 106/1956
  43476. }
  43477. },
  43478. frontUndressed: {
  43479. height: math.unit(20, "feet"),
  43480. name: "Front (Undressed)",
  43481. image: {
  43482. source: "./media/characters/astra/front-undressed.svg",
  43483. extra: 1926/1749,
  43484. bottom: 0/1926
  43485. }
  43486. },
  43487. hand: {
  43488. height: math.unit(1.53, "feet"),
  43489. name: "Hand",
  43490. image: {
  43491. source: "./media/characters/astra/hand.svg"
  43492. }
  43493. },
  43494. paw: {
  43495. height: math.unit(1.53, "feet"),
  43496. name: "Paw",
  43497. image: {
  43498. source: "./media/characters/astra/paw.svg"
  43499. }
  43500. },
  43501. },
  43502. [
  43503. {
  43504. name: "Smallest",
  43505. height: math.unit(20, "feet")
  43506. },
  43507. {
  43508. name: "Normal",
  43509. height: math.unit(1e9, "miles"),
  43510. default: true
  43511. },
  43512. {
  43513. name: "Larger",
  43514. height: math.unit(5, "multiverses")
  43515. },
  43516. {
  43517. name: "Largest",
  43518. height: math.unit(1e9, "multiverses")
  43519. },
  43520. ]
  43521. ))
  43522. characterMakers.push(() => makeCharacter(
  43523. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43524. {
  43525. front: {
  43526. height: math.unit(8, "feet"),
  43527. name: "Front",
  43528. image: {
  43529. source: "./media/characters/breanna/front.svg",
  43530. extra: 1912/1632,
  43531. bottom: 33/1945
  43532. }
  43533. },
  43534. },
  43535. [
  43536. {
  43537. name: "Smallest",
  43538. height: math.unit(8, "feet")
  43539. },
  43540. {
  43541. name: "Normal",
  43542. height: math.unit(1, "mile"),
  43543. default: true
  43544. },
  43545. {
  43546. name: "Maximum",
  43547. height: math.unit(1500000000000, "lightyears")
  43548. },
  43549. ]
  43550. ))
  43551. characterMakers.push(() => makeCharacter(
  43552. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43553. {
  43554. front: {
  43555. height: math.unit(5 + 11/12, "feet"),
  43556. weight: math.unit(155, "lb"),
  43557. name: "Front",
  43558. image: {
  43559. source: "./media/characters/cai/front.svg",
  43560. extra: 1823/1702,
  43561. bottom: 32/1855
  43562. }
  43563. },
  43564. back: {
  43565. height: math.unit(5 + 11/12, "feet"),
  43566. weight: math.unit(155, "lb"),
  43567. name: "Back",
  43568. image: {
  43569. source: "./media/characters/cai/back.svg",
  43570. extra: 1809/1708,
  43571. bottom: 31/1840
  43572. }
  43573. },
  43574. },
  43575. [
  43576. {
  43577. name: "Normal",
  43578. height: math.unit(5 + 11/12, "feet"),
  43579. default: true
  43580. },
  43581. {
  43582. name: "Big",
  43583. height: math.unit(15, "feet")
  43584. },
  43585. {
  43586. name: "Macro",
  43587. height: math.unit(200, "feet")
  43588. },
  43589. ]
  43590. ))
  43591. characterMakers.push(() => makeCharacter(
  43592. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43593. {
  43594. front: {
  43595. height: math.unit(5 + 6/12, "feet"),
  43596. weight: math.unit(160, "lb"),
  43597. name: "Front",
  43598. image: {
  43599. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43600. extra: 1227/1174,
  43601. bottom: 37/1264
  43602. }
  43603. },
  43604. },
  43605. [
  43606. {
  43607. name: "Macro",
  43608. height: math.unit(444, "meters"),
  43609. default: true
  43610. },
  43611. ]
  43612. ))
  43613. characterMakers.push(() => makeCharacter(
  43614. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43615. {
  43616. front: {
  43617. height: math.unit(18 + 7/12, "feet"),
  43618. name: "Front",
  43619. image: {
  43620. source: "./media/characters/rex/front.svg",
  43621. extra: 1941/1807,
  43622. bottom: 66/2007
  43623. }
  43624. },
  43625. back: {
  43626. height: math.unit(18 + 7/12, "feet"),
  43627. name: "Back",
  43628. image: {
  43629. source: "./media/characters/rex/back.svg",
  43630. extra: 1937/1822,
  43631. bottom: 42/1979
  43632. }
  43633. },
  43634. boot: {
  43635. height: math.unit(3.45, "feet"),
  43636. name: "Boot",
  43637. image: {
  43638. source: "./media/characters/rex/boot.svg"
  43639. }
  43640. },
  43641. paw: {
  43642. height: math.unit(4.17, "feet"),
  43643. name: "Paw",
  43644. image: {
  43645. source: "./media/characters/rex/paw.svg"
  43646. }
  43647. },
  43648. head: {
  43649. height: math.unit(6.728, "feet"),
  43650. name: "Head",
  43651. image: {
  43652. source: "./media/characters/rex/head.svg"
  43653. }
  43654. },
  43655. },
  43656. [
  43657. {
  43658. name: "Nano",
  43659. height: math.unit(18 + 7/12, "feet")
  43660. },
  43661. {
  43662. name: "Micro",
  43663. height: math.unit(1.5, "megameters")
  43664. },
  43665. {
  43666. name: "Normal",
  43667. height: math.unit(440, "megameters"),
  43668. default: true
  43669. },
  43670. {
  43671. name: "Macro",
  43672. height: math.unit(2.5, "gigameters")
  43673. },
  43674. {
  43675. name: "Gigamacro",
  43676. height: math.unit(2, "galaxies")
  43677. },
  43678. ]
  43679. ))
  43680. characterMakers.push(() => makeCharacter(
  43681. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43682. {
  43683. side: {
  43684. height: math.unit(32, "feet"),
  43685. weight: math.unit(250000, "lb"),
  43686. name: "Side",
  43687. image: {
  43688. source: "./media/characters/silverwing/side.svg",
  43689. extra: 1100/1019,
  43690. bottom: 204/1304
  43691. }
  43692. },
  43693. },
  43694. [
  43695. {
  43696. name: "Normal",
  43697. height: math.unit(32, "feet"),
  43698. default: true
  43699. },
  43700. ]
  43701. ))
  43702. characterMakers.push(() => makeCharacter(
  43703. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43704. {
  43705. front: {
  43706. height: math.unit(6 + 6/12, "feet"),
  43707. weight: math.unit(350, "lb"),
  43708. name: "Front",
  43709. image: {
  43710. source: "./media/characters/tristan-hawthorne/front.svg",
  43711. extra: 1159/1124,
  43712. bottom: 37/1196
  43713. },
  43714. form: "labrador",
  43715. default: true
  43716. },
  43717. skunkFront: {
  43718. height: math.unit(4 + 6/12, "feet"),
  43719. weight: math.unit(120, "lb"),
  43720. name: "Front",
  43721. image: {
  43722. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43723. extra: 1609/1551,
  43724. bottom: 169/1778
  43725. },
  43726. form: "skunk",
  43727. default: true
  43728. },
  43729. },
  43730. [
  43731. {
  43732. name: "Normal",
  43733. height: math.unit(6 + 6/12, "feet"),
  43734. form: "labrador",
  43735. default: true
  43736. },
  43737. {
  43738. name: "Normal",
  43739. height: math.unit(4 + 6/12, "feet"),
  43740. form: "skunk",
  43741. default: true
  43742. },
  43743. ],
  43744. {
  43745. "labrador": {
  43746. name: "Labrador",
  43747. default: true
  43748. },
  43749. "skunk": {
  43750. name: "Skunk"
  43751. }
  43752. }
  43753. ))
  43754. characterMakers.push(() => makeCharacter(
  43755. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43756. {
  43757. front: {
  43758. height: math.unit(5 + 11/12, "feet"),
  43759. weight: math.unit(190, "lb"),
  43760. name: "Front",
  43761. image: {
  43762. source: "./media/characters/mizu/front.svg",
  43763. extra: 1988/1788,
  43764. bottom: 14/2002
  43765. }
  43766. },
  43767. },
  43768. [
  43769. {
  43770. name: "Normal",
  43771. height: math.unit(5 + 11/12, "feet"),
  43772. default: true
  43773. },
  43774. ]
  43775. ))
  43776. characterMakers.push(() => makeCharacter(
  43777. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43778. {
  43779. front: {
  43780. height: math.unit(1.7, "feet"),
  43781. weight: math.unit(50, "lb"),
  43782. name: "Front",
  43783. image: {
  43784. source: "./media/characters/dechroma/front.svg",
  43785. extra: 1095/859,
  43786. bottom: 64/1159
  43787. }
  43788. },
  43789. },
  43790. [
  43791. {
  43792. name: "Normal",
  43793. height: math.unit(1.7, "feet"),
  43794. default: true
  43795. },
  43796. ]
  43797. ))
  43798. characterMakers.push(() => makeCharacter(
  43799. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43800. {
  43801. side: {
  43802. height: math.unit(30, "feet"),
  43803. name: "Side",
  43804. image: {
  43805. source: "./media/characters/veluren-thanazel/side.svg",
  43806. extra: 1611/633,
  43807. bottom: 118/1729
  43808. }
  43809. },
  43810. front: {
  43811. height: math.unit(30, "feet"),
  43812. name: "Front",
  43813. image: {
  43814. source: "./media/characters/veluren-thanazel/front.svg",
  43815. extra: 1486/636,
  43816. bottom: 238/1724
  43817. }
  43818. },
  43819. head: {
  43820. height: math.unit(21.4, "feet"),
  43821. name: "Head",
  43822. image: {
  43823. source: "./media/characters/veluren-thanazel/head.svg"
  43824. }
  43825. },
  43826. genitals: {
  43827. height: math.unit(19.4, "feet"),
  43828. name: "Genitals",
  43829. image: {
  43830. source: "./media/characters/veluren-thanazel/genitals.svg"
  43831. }
  43832. },
  43833. },
  43834. [
  43835. {
  43836. name: "Social",
  43837. height: math.unit(6, "feet")
  43838. },
  43839. {
  43840. name: "Play",
  43841. height: math.unit(12, "feet")
  43842. },
  43843. {
  43844. name: "True",
  43845. height: math.unit(30, "feet"),
  43846. default: true
  43847. },
  43848. ]
  43849. ))
  43850. characterMakers.push(() => makeCharacter(
  43851. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43852. {
  43853. front: {
  43854. height: math.unit(7 + 6/12, "feet"),
  43855. weight: math.unit(500, "kg"),
  43856. name: "Front",
  43857. image: {
  43858. source: "./media/characters/arcturas/front.svg",
  43859. extra: 1700/1500,
  43860. bottom: 145/1845
  43861. }
  43862. },
  43863. },
  43864. [
  43865. {
  43866. name: "Normal",
  43867. height: math.unit(7 + 6/12, "feet"),
  43868. default: true
  43869. },
  43870. ]
  43871. ))
  43872. characterMakers.push(() => makeCharacter(
  43873. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43874. {
  43875. side: {
  43876. height: math.unit(6, "feet"),
  43877. weight: math.unit(2, "tons"),
  43878. name: "Side",
  43879. image: {
  43880. source: "./media/characters/vitaen/side.svg",
  43881. extra: 1157/617,
  43882. bottom: 122/1279
  43883. }
  43884. },
  43885. },
  43886. [
  43887. {
  43888. name: "Normal",
  43889. height: math.unit(6, "feet"),
  43890. default: true
  43891. },
  43892. ]
  43893. ))
  43894. characterMakers.push(() => makeCharacter(
  43895. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43896. {
  43897. front: {
  43898. height: math.unit(19, "feet"),
  43899. name: "Front",
  43900. image: {
  43901. source: "./media/characters/fia-dreamweaver/front.svg",
  43902. extra: 1630/1504,
  43903. bottom: 25/1655
  43904. }
  43905. },
  43906. },
  43907. [
  43908. {
  43909. name: "Normal",
  43910. height: math.unit(19, "feet"),
  43911. default: true
  43912. },
  43913. ]
  43914. ))
  43915. characterMakers.push(() => makeCharacter(
  43916. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43917. {
  43918. front: {
  43919. height: math.unit(5 + 4/12, "feet"),
  43920. name: "Front",
  43921. image: {
  43922. source: "./media/characters/artan/front.svg",
  43923. extra: 1618/1535,
  43924. bottom: 46/1664
  43925. }
  43926. },
  43927. back: {
  43928. height: math.unit(5 + 4/12, "feet"),
  43929. name: "Back",
  43930. image: {
  43931. source: "./media/characters/artan/back.svg",
  43932. extra: 1618/1543,
  43933. bottom: 31/1649
  43934. }
  43935. },
  43936. },
  43937. [
  43938. {
  43939. name: "Normal",
  43940. height: math.unit(5 + 4/12, "feet"),
  43941. default: true
  43942. },
  43943. ]
  43944. ))
  43945. characterMakers.push(() => makeCharacter(
  43946. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43947. {
  43948. side: {
  43949. height: math.unit(182, "cm"),
  43950. weight: math.unit(1000, "lb"),
  43951. name: "Side",
  43952. image: {
  43953. source: "./media/characters/silver-dragon/side.svg",
  43954. extra: 710/287,
  43955. bottom: 88/798
  43956. }
  43957. },
  43958. },
  43959. [
  43960. {
  43961. name: "Normal",
  43962. height: math.unit(182, "cm"),
  43963. default: true
  43964. },
  43965. ]
  43966. ))
  43967. characterMakers.push(() => makeCharacter(
  43968. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43969. {
  43970. side: {
  43971. height: math.unit(6 + 6/12, "feet"),
  43972. weight: math.unit(1.5, "tons"),
  43973. name: "Side",
  43974. image: {
  43975. source: "./media/characters/zephyr/side.svg",
  43976. extra: 1433/586,
  43977. bottom: 109/1542
  43978. }
  43979. },
  43980. },
  43981. [
  43982. {
  43983. name: "Normal",
  43984. height: math.unit(6 + 6/12, "feet"),
  43985. default: true
  43986. },
  43987. ]
  43988. ))
  43989. characterMakers.push(() => makeCharacter(
  43990. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43991. {
  43992. side: {
  43993. height: math.unit(1, "feet"),
  43994. name: "Side",
  43995. image: {
  43996. source: "./media/characters/vixye/side.svg",
  43997. extra: 632/541,
  43998. bottom: 0/632
  43999. }
  44000. },
  44001. },
  44002. [
  44003. {
  44004. name: "Normal",
  44005. height: math.unit(1, "feet"),
  44006. default: true
  44007. },
  44008. {
  44009. name: "True",
  44010. height: math.unit(1e15, "multiverses")
  44011. },
  44012. ]
  44013. ))
  44014. characterMakers.push(() => makeCharacter(
  44015. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44016. {
  44017. front: {
  44018. height: math.unit(8 + 2/12, "feet"),
  44019. weight: math.unit(650, "lb"),
  44020. name: "Front",
  44021. image: {
  44022. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44023. extra: 1174/1137,
  44024. bottom: 82/1256
  44025. }
  44026. },
  44027. back: {
  44028. height: math.unit(8 + 2/12, "feet"),
  44029. weight: math.unit(650, "lb"),
  44030. name: "Back",
  44031. image: {
  44032. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44033. extra: 1204/1157,
  44034. bottom: 46/1250
  44035. }
  44036. },
  44037. },
  44038. [
  44039. {
  44040. name: "Wildform",
  44041. height: math.unit(8 + 2/12, "feet"),
  44042. default: true
  44043. },
  44044. ]
  44045. ))
  44046. characterMakers.push(() => makeCharacter(
  44047. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44048. {
  44049. front: {
  44050. height: math.unit(18, "feet"),
  44051. name: "Front",
  44052. image: {
  44053. source: "./media/characters/cyphin/front.svg",
  44054. extra: 970/886,
  44055. bottom: 42/1012
  44056. }
  44057. },
  44058. back: {
  44059. height: math.unit(18, "feet"),
  44060. name: "Back",
  44061. image: {
  44062. source: "./media/characters/cyphin/back.svg",
  44063. extra: 1009/894,
  44064. bottom: 24/1033
  44065. }
  44066. },
  44067. head: {
  44068. height: math.unit(5.05, "feet"),
  44069. name: "Head",
  44070. image: {
  44071. source: "./media/characters/cyphin/head.svg"
  44072. }
  44073. },
  44074. tailbud: {
  44075. height: math.unit(5, "feet"),
  44076. name: "Tailbud",
  44077. image: {
  44078. source: "./media/characters/cyphin/tailbud.svg"
  44079. }
  44080. },
  44081. },
  44082. [
  44083. ]
  44084. ))
  44085. characterMakers.push(() => makeCharacter(
  44086. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44087. {
  44088. side: {
  44089. height: math.unit(10, "feet"),
  44090. weight: math.unit(6, "tons"),
  44091. name: "Side",
  44092. image: {
  44093. source: "./media/characters/raijin/side.svg",
  44094. extra: 1529/613,
  44095. bottom: 337/1866
  44096. }
  44097. },
  44098. },
  44099. [
  44100. {
  44101. name: "Normal",
  44102. height: math.unit(10, "feet"),
  44103. default: true
  44104. },
  44105. ]
  44106. ))
  44107. characterMakers.push(() => makeCharacter(
  44108. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44109. {
  44110. side: {
  44111. height: math.unit(9, "feet"),
  44112. name: "Side",
  44113. image: {
  44114. source: "./media/characters/nilghais/side.svg",
  44115. extra: 1047/744,
  44116. bottom: 91/1138
  44117. }
  44118. },
  44119. head: {
  44120. height: math.unit(3.14, "feet"),
  44121. name: "Head",
  44122. image: {
  44123. source: "./media/characters/nilghais/head.svg"
  44124. }
  44125. },
  44126. mouth: {
  44127. height: math.unit(4.6, "feet"),
  44128. name: "Mouth",
  44129. image: {
  44130. source: "./media/characters/nilghais/mouth.svg"
  44131. }
  44132. },
  44133. wings: {
  44134. height: math.unit(24, "feet"),
  44135. name: "Wings",
  44136. image: {
  44137. source: "./media/characters/nilghais/wings.svg"
  44138. }
  44139. },
  44140. ass: {
  44141. height: math.unit(6.12, "feet"),
  44142. name: "Ass",
  44143. image: {
  44144. source: "./media/characters/nilghais/ass.svg"
  44145. }
  44146. },
  44147. },
  44148. [
  44149. {
  44150. name: "Normal",
  44151. height: math.unit(9, "feet"),
  44152. default: true
  44153. },
  44154. ]
  44155. ))
  44156. characterMakers.push(() => makeCharacter(
  44157. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44158. {
  44159. regular: {
  44160. height: math.unit(16 + 2/12, "feet"),
  44161. weight: math.unit(2300, "lb"),
  44162. name: "Regular",
  44163. image: {
  44164. source: "./media/characters/zolgar/regular.svg",
  44165. extra: 1246/1004,
  44166. bottom: 124/1370
  44167. }
  44168. },
  44169. boxers: {
  44170. height: math.unit(16 + 2/12, "feet"),
  44171. weight: math.unit(2300, "lb"),
  44172. name: "Boxers",
  44173. image: {
  44174. source: "./media/characters/zolgar/boxers.svg",
  44175. extra: 1246/1004,
  44176. bottom: 124/1370
  44177. }
  44178. },
  44179. armored: {
  44180. height: math.unit(16 + 2/12, "feet"),
  44181. weight: math.unit(2300, "lb"),
  44182. name: "Armored",
  44183. image: {
  44184. source: "./media/characters/zolgar/armored.svg",
  44185. extra: 1246/1004,
  44186. bottom: 124/1370
  44187. }
  44188. },
  44189. goth: {
  44190. height: math.unit(16 + 2/12, "feet"),
  44191. weight: math.unit(2300, "lb"),
  44192. name: "Goth",
  44193. image: {
  44194. source: "./media/characters/zolgar/goth.svg",
  44195. extra: 1246/1004,
  44196. bottom: 124/1370
  44197. }
  44198. },
  44199. },
  44200. [
  44201. {
  44202. name: "Shrunken Down",
  44203. height: math.unit(9 + 2/12, "feet")
  44204. },
  44205. {
  44206. name: "Normal",
  44207. height: math.unit(16 + 2/12, "feet"),
  44208. default: true
  44209. },
  44210. ]
  44211. ))
  44212. characterMakers.push(() => makeCharacter(
  44213. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44214. {
  44215. front: {
  44216. height: math.unit(6, "feet"),
  44217. weight: math.unit(168, "lb"),
  44218. name: "Front",
  44219. image: {
  44220. source: "./media/characters/luca/front.svg",
  44221. extra: 841/667,
  44222. bottom: 102/943
  44223. }
  44224. },
  44225. },
  44226. [
  44227. {
  44228. name: "Normal",
  44229. height: math.unit(6, "feet"),
  44230. default: true
  44231. },
  44232. ]
  44233. ))
  44234. characterMakers.push(() => makeCharacter(
  44235. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44236. {
  44237. side: {
  44238. height: math.unit(7 + 3/12, "feet"),
  44239. weight: math.unit(312, "lb"),
  44240. name: "Side",
  44241. image: {
  44242. source: "./media/characters/zezo/side.svg",
  44243. extra: 1192/1067,
  44244. bottom: 63/1255
  44245. }
  44246. },
  44247. },
  44248. [
  44249. {
  44250. name: "Normal",
  44251. height: math.unit(7 + 3/12, "feet"),
  44252. default: true
  44253. },
  44254. ]
  44255. ))
  44256. characterMakers.push(() => makeCharacter(
  44257. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44258. {
  44259. front: {
  44260. height: math.unit(5 + 5/12, "feet"),
  44261. weight: math.unit(170, "lb"),
  44262. name: "Front",
  44263. image: {
  44264. source: "./media/characters/mayso/front.svg",
  44265. extra: 1215/1108,
  44266. bottom: 16/1231
  44267. }
  44268. },
  44269. },
  44270. [
  44271. {
  44272. name: "Normal",
  44273. height: math.unit(5 + 5/12, "feet"),
  44274. default: true
  44275. },
  44276. ]
  44277. ))
  44278. characterMakers.push(() => makeCharacter(
  44279. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44280. {
  44281. front: {
  44282. height: math.unit(4 + 3/12, "feet"),
  44283. weight: math.unit(80, "lb"),
  44284. name: "Front",
  44285. image: {
  44286. source: "./media/characters/hess/front.svg",
  44287. extra: 1200/1123,
  44288. bottom: 16/1216
  44289. }
  44290. },
  44291. },
  44292. [
  44293. {
  44294. name: "Normal",
  44295. height: math.unit(4 + 3/12, "feet"),
  44296. default: true
  44297. },
  44298. ]
  44299. ))
  44300. characterMakers.push(() => makeCharacter(
  44301. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44302. {
  44303. front: {
  44304. height: math.unit(1.9, "meters"),
  44305. name: "Front",
  44306. image: {
  44307. source: "./media/characters/ashgar/front.svg",
  44308. extra: 1177/1146,
  44309. bottom: 99/1276
  44310. }
  44311. },
  44312. back: {
  44313. height: math.unit(1.9, "meters"),
  44314. name: "Back",
  44315. image: {
  44316. source: "./media/characters/ashgar/back.svg",
  44317. extra: 1201/1183,
  44318. bottom: 53/1254
  44319. }
  44320. },
  44321. feral: {
  44322. height: math.unit(1.4, "meters"),
  44323. name: "Feral",
  44324. image: {
  44325. source: "./media/characters/ashgar/feral.svg",
  44326. extra: 370/345,
  44327. bottom: 45/415
  44328. }
  44329. },
  44330. },
  44331. [
  44332. {
  44333. name: "Normal",
  44334. height: math.unit(1.9, "meters"),
  44335. default: true
  44336. },
  44337. ]
  44338. ))
  44339. characterMakers.push(() => makeCharacter(
  44340. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44341. {
  44342. regular: {
  44343. height: math.unit(6, "feet"),
  44344. weight: math.unit(220, "lb"),
  44345. name: "Regular",
  44346. image: {
  44347. source: "./media/characters/phillip/regular.svg",
  44348. extra: 1373/1277,
  44349. bottom: 75/1448
  44350. }
  44351. },
  44352. dressed: {
  44353. height: math.unit(6, "feet"),
  44354. weight: math.unit(220, "lb"),
  44355. name: "Dressed",
  44356. image: {
  44357. source: "./media/characters/phillip/dressed.svg",
  44358. extra: 1373/1277,
  44359. bottom: 75/1448
  44360. }
  44361. },
  44362. paw: {
  44363. height: math.unit(1.44, "feet"),
  44364. name: "Paw",
  44365. image: {
  44366. source: "./media/characters/phillip/paw.svg"
  44367. }
  44368. },
  44369. },
  44370. [
  44371. {
  44372. name: "Normal",
  44373. height: math.unit(6, "feet"),
  44374. default: true
  44375. },
  44376. ]
  44377. ))
  44378. characterMakers.push(() => makeCharacter(
  44379. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44380. {
  44381. side: {
  44382. height: math.unit(42, "feet"),
  44383. name: "Side",
  44384. image: {
  44385. source: "./media/characters/uvula/side.svg",
  44386. extra: 683/586,
  44387. bottom: 60/743
  44388. }
  44389. },
  44390. front: {
  44391. height: math.unit(42, "feet"),
  44392. name: "Front",
  44393. image: {
  44394. source: "./media/characters/uvula/front.svg",
  44395. extra: 705/613,
  44396. bottom: 54/759
  44397. }
  44398. },
  44399. maw: {
  44400. height: math.unit(23.5, "feet"),
  44401. name: "Maw",
  44402. image: {
  44403. source: "./media/characters/uvula/maw.svg"
  44404. }
  44405. },
  44406. },
  44407. [
  44408. {
  44409. name: "Original Size",
  44410. height: math.unit(14, "inches")
  44411. },
  44412. {
  44413. name: "Human Size",
  44414. height: math.unit(6, "feet")
  44415. },
  44416. {
  44417. name: "Big",
  44418. height: math.unit(42, "feet"),
  44419. default: true
  44420. },
  44421. {
  44422. name: "Bigger",
  44423. height: math.unit(100, "feet")
  44424. },
  44425. ]
  44426. ))
  44427. characterMakers.push(() => makeCharacter(
  44428. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44429. {
  44430. front: {
  44431. height: math.unit(5 + 11/12, "feet"),
  44432. name: "Front",
  44433. image: {
  44434. source: "./media/characters/lannah/front.svg",
  44435. extra: 1208/1113,
  44436. bottom: 97/1305
  44437. }
  44438. },
  44439. },
  44440. [
  44441. {
  44442. name: "Normal",
  44443. height: math.unit(5 + 11/12, "feet"),
  44444. default: true
  44445. },
  44446. ]
  44447. ))
  44448. characterMakers.push(() => makeCharacter(
  44449. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44450. {
  44451. front: {
  44452. height: math.unit(6 + 3/12, "feet"),
  44453. weight: math.unit(3.5, "tons"),
  44454. name: "Front",
  44455. image: {
  44456. source: "./media/characters/emberflame/front.svg",
  44457. extra: 1198/672,
  44458. bottom: 82/1280
  44459. }
  44460. },
  44461. side: {
  44462. height: math.unit(6 + 3/12, "feet"),
  44463. weight: math.unit(3.5, "tons"),
  44464. name: "Side",
  44465. image: {
  44466. source: "./media/characters/emberflame/side.svg",
  44467. extra: 938/527,
  44468. bottom: 56/994
  44469. }
  44470. },
  44471. },
  44472. [
  44473. {
  44474. name: "Normal",
  44475. height: math.unit(6 + 3/12, "feet"),
  44476. default: true
  44477. },
  44478. ]
  44479. ))
  44480. characterMakers.push(() => makeCharacter(
  44481. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44482. {
  44483. side: {
  44484. height: math.unit(17.5, "feet"),
  44485. weight: math.unit(35, "tons"),
  44486. name: "Side",
  44487. image: {
  44488. source: "./media/characters/sophie-ambrose/side.svg",
  44489. extra: 1573/1242,
  44490. bottom: 71/1644
  44491. }
  44492. },
  44493. maw: {
  44494. height: math.unit(7.4, "feet"),
  44495. name: "Maw",
  44496. image: {
  44497. source: "./media/characters/sophie-ambrose/maw.svg"
  44498. }
  44499. },
  44500. },
  44501. [
  44502. {
  44503. name: "Normal",
  44504. height: math.unit(17.5, "feet"),
  44505. default: true
  44506. },
  44507. ]
  44508. ))
  44509. characterMakers.push(() => makeCharacter(
  44510. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44511. {
  44512. front: {
  44513. height: math.unit(280, "feet"),
  44514. weight: math.unit(550, "tons"),
  44515. name: "Front",
  44516. image: {
  44517. source: "./media/characters/king-mugi/front.svg",
  44518. extra: 1102/947,
  44519. bottom: 104/1206
  44520. }
  44521. },
  44522. },
  44523. [
  44524. {
  44525. name: "King Mugi",
  44526. height: math.unit(280, "feet"),
  44527. default: true
  44528. },
  44529. ]
  44530. ))
  44531. characterMakers.push(() => makeCharacter(
  44532. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44533. {
  44534. front: {
  44535. height: math.unit(64, "meters"),
  44536. name: "Front",
  44537. image: {
  44538. source: "./media/characters/nova-fox/front.svg",
  44539. extra: 1310/1246,
  44540. bottom: 65/1375
  44541. }
  44542. },
  44543. },
  44544. [
  44545. {
  44546. name: "Macro",
  44547. height: math.unit(64, "meters"),
  44548. default: true
  44549. },
  44550. ]
  44551. ))
  44552. characterMakers.push(() => makeCharacter(
  44553. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44554. {
  44555. front: {
  44556. height: math.unit(6 + 3/12, "feet"),
  44557. weight: math.unit(170, "lb"),
  44558. name: "Front",
  44559. image: {
  44560. source: "./media/characters/sam-bat/front.svg",
  44561. extra: 1601/1411,
  44562. bottom: 125/1726
  44563. }
  44564. },
  44565. back: {
  44566. height: math.unit(6 + 3/12, "feet"),
  44567. weight: math.unit(170, "lb"),
  44568. name: "Back",
  44569. image: {
  44570. source: "./media/characters/sam-bat/back.svg",
  44571. extra: 1577/1405,
  44572. bottom: 58/1635
  44573. }
  44574. },
  44575. },
  44576. [
  44577. {
  44578. name: "Normal",
  44579. height: math.unit(6 + 3/12, "feet"),
  44580. default: true
  44581. },
  44582. ]
  44583. ))
  44584. characterMakers.push(() => makeCharacter(
  44585. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44586. {
  44587. front: {
  44588. height: math.unit(59, "feet"),
  44589. weight: math.unit(40000, "lb"),
  44590. name: "Front",
  44591. image: {
  44592. source: "./media/characters/inari/front.svg",
  44593. extra: 1884/1350,
  44594. bottom: 95/1979
  44595. }
  44596. },
  44597. },
  44598. [
  44599. {
  44600. name: "Gigantamax",
  44601. height: math.unit(59, "feet"),
  44602. default: true
  44603. },
  44604. ]
  44605. ))
  44606. characterMakers.push(() => makeCharacter(
  44607. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44608. {
  44609. front: {
  44610. height: math.unit(5 + 8/12, "feet"),
  44611. name: "Front",
  44612. image: {
  44613. source: "./media/characters/elizabeth/front.svg",
  44614. extra: 1395/1298,
  44615. bottom: 54/1449
  44616. }
  44617. },
  44618. mouth: {
  44619. height: math.unit(1.97, "feet"),
  44620. name: "Mouth",
  44621. image: {
  44622. source: "./media/characters/elizabeth/mouth.svg"
  44623. }
  44624. },
  44625. foot: {
  44626. height: math.unit(1.17, "feet"),
  44627. name: "Foot",
  44628. image: {
  44629. source: "./media/characters/elizabeth/foot.svg"
  44630. }
  44631. },
  44632. },
  44633. [
  44634. {
  44635. name: "Normal",
  44636. height: math.unit(5 + 8/12, "feet"),
  44637. default: true
  44638. },
  44639. {
  44640. name: "Minimacro",
  44641. height: math.unit(18, "feet")
  44642. },
  44643. {
  44644. name: "Macro",
  44645. height: math.unit(180, "feet")
  44646. },
  44647. ]
  44648. ))
  44649. characterMakers.push(() => makeCharacter(
  44650. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44651. {
  44652. front: {
  44653. height: math.unit(5 + 2/12, "feet"),
  44654. name: "Front",
  44655. image: {
  44656. source: "./media/characters/october-gossamer/front.svg",
  44657. extra: 505/454,
  44658. bottom: 7/512
  44659. }
  44660. },
  44661. back: {
  44662. height: math.unit(5 + 2/12, "feet"),
  44663. name: "Back",
  44664. image: {
  44665. source: "./media/characters/october-gossamer/back.svg",
  44666. extra: 501/454,
  44667. bottom: 11/512
  44668. }
  44669. },
  44670. },
  44671. [
  44672. {
  44673. name: "Normal",
  44674. height: math.unit(5 + 2/12, "feet"),
  44675. default: true
  44676. },
  44677. ]
  44678. ))
  44679. characterMakers.push(() => makeCharacter(
  44680. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44681. {
  44682. front: {
  44683. height: math.unit(5, "feet"),
  44684. name: "Front",
  44685. image: {
  44686. source: "./media/characters/epiglottis/front.svg",
  44687. extra: 923/849,
  44688. bottom: 17/940
  44689. }
  44690. },
  44691. },
  44692. [
  44693. {
  44694. name: "Original Size",
  44695. height: math.unit(10, "inches")
  44696. },
  44697. {
  44698. name: "Human Size",
  44699. height: math.unit(5, "feet"),
  44700. default: true
  44701. },
  44702. {
  44703. name: "Big",
  44704. height: math.unit(25, "feet")
  44705. },
  44706. {
  44707. name: "Bigger",
  44708. height: math.unit(50, "feet")
  44709. },
  44710. {
  44711. name: "oh lawd",
  44712. height: math.unit(75, "feet")
  44713. },
  44714. ]
  44715. ))
  44716. characterMakers.push(() => makeCharacter(
  44717. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44718. {
  44719. front: {
  44720. height: math.unit(2 + 4/12, "feet"),
  44721. weight: math.unit(60, "lb"),
  44722. name: "Front",
  44723. image: {
  44724. source: "./media/characters/lerm/front.svg",
  44725. extra: 796/790,
  44726. bottom: 79/875
  44727. }
  44728. },
  44729. },
  44730. [
  44731. {
  44732. name: "Normal",
  44733. height: math.unit(2 + 4/12, "feet"),
  44734. default: true
  44735. },
  44736. ]
  44737. ))
  44738. characterMakers.push(() => makeCharacter(
  44739. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44740. {
  44741. front: {
  44742. height: math.unit(5.5, "feet"),
  44743. weight: math.unit(130, "lb"),
  44744. name: "Front",
  44745. image: {
  44746. source: "./media/characters/xena-nebadon/front.svg",
  44747. extra: 1828/1730,
  44748. bottom: 79/1907
  44749. }
  44750. },
  44751. },
  44752. [
  44753. {
  44754. name: "Tiny Puppy",
  44755. height: math.unit(3, "inches")
  44756. },
  44757. {
  44758. name: "Normal",
  44759. height: math.unit(5.5, "feet"),
  44760. default: true
  44761. },
  44762. {
  44763. name: "Lotta Lady",
  44764. height: math.unit(12, "feet")
  44765. },
  44766. {
  44767. name: "Pretty Big",
  44768. height: math.unit(100, "feet")
  44769. },
  44770. {
  44771. name: "Big",
  44772. height: math.unit(500, "feet")
  44773. },
  44774. {
  44775. name: "Skyscraper Toys",
  44776. height: math.unit(2500, "feet")
  44777. },
  44778. {
  44779. name: "Plane Catcher",
  44780. height: math.unit(8, "miles")
  44781. },
  44782. {
  44783. name: "Planet Toys",
  44784. height: math.unit(15, "earths")
  44785. },
  44786. {
  44787. name: "Stardust",
  44788. height: math.unit(0.25, "galaxies")
  44789. },
  44790. {
  44791. name: "Snacks",
  44792. height: math.unit(70, "universes")
  44793. },
  44794. ]
  44795. ))
  44796. characterMakers.push(() => makeCharacter(
  44797. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44798. {
  44799. front: {
  44800. height: math.unit(1.6, "meters"),
  44801. weight: math.unit(60, "kg"),
  44802. name: "Front",
  44803. image: {
  44804. source: "./media/characters/bounty/front.svg",
  44805. extra: 1426/1308,
  44806. bottom: 15/1441
  44807. }
  44808. },
  44809. back: {
  44810. height: math.unit(1.6, "meters"),
  44811. weight: math.unit(60, "kg"),
  44812. name: "Back",
  44813. image: {
  44814. source: "./media/characters/bounty/back.svg",
  44815. extra: 1417/1307,
  44816. bottom: 8/1425
  44817. }
  44818. },
  44819. },
  44820. [
  44821. {
  44822. name: "Normal",
  44823. height: math.unit(1.6, "meters"),
  44824. default: true
  44825. },
  44826. {
  44827. name: "Macro",
  44828. height: math.unit(300, "meters")
  44829. },
  44830. ]
  44831. ))
  44832. characterMakers.push(() => makeCharacter(
  44833. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44834. {
  44835. front: {
  44836. height: math.unit(2 + 8/12, "feet"),
  44837. weight: math.unit(15, "lb"),
  44838. name: "Front",
  44839. image: {
  44840. source: "./media/characters/mochi/front.svg",
  44841. extra: 1022/852,
  44842. bottom: 435/1457
  44843. }
  44844. },
  44845. back: {
  44846. height: math.unit(2 + 8/12, "feet"),
  44847. weight: math.unit(15, "lb"),
  44848. name: "Back",
  44849. image: {
  44850. source: "./media/characters/mochi/back.svg",
  44851. extra: 1335/1119,
  44852. bottom: 39/1374
  44853. }
  44854. },
  44855. bird: {
  44856. height: math.unit(2 + 8/12, "feet"),
  44857. weight: math.unit(15, "lb"),
  44858. name: "Bird",
  44859. image: {
  44860. source: "./media/characters/mochi/bird.svg",
  44861. extra: 1251/1113,
  44862. bottom: 178/1429
  44863. }
  44864. },
  44865. kaiju: {
  44866. height: math.unit(154, "feet"),
  44867. weight: math.unit(1e7, "lb"),
  44868. name: "Kaiju",
  44869. image: {
  44870. source: "./media/characters/mochi/kaiju.svg",
  44871. extra: 460/324,
  44872. bottom: 40/500
  44873. }
  44874. },
  44875. head: {
  44876. height: math.unit(1.21, "feet"),
  44877. name: "Head",
  44878. image: {
  44879. source: "./media/characters/mochi/head.svg"
  44880. }
  44881. },
  44882. alternateTail: {
  44883. height: math.unit(2 + 8/12, "feet"),
  44884. weight: math.unit(45, "lb"),
  44885. name: "Alternate Tail",
  44886. image: {
  44887. source: "./media/characters/mochi/alternate-tail.svg",
  44888. extra: 139/76,
  44889. bottom: 45/184
  44890. }
  44891. },
  44892. },
  44893. [
  44894. {
  44895. name: "Micro",
  44896. height: math.unit(2, "inches")
  44897. },
  44898. {
  44899. name: "Normal",
  44900. height: math.unit(2 + 8/12, "feet"),
  44901. default: true
  44902. },
  44903. {
  44904. name: "Macro",
  44905. height: math.unit(106, "feet")
  44906. },
  44907. ]
  44908. ))
  44909. characterMakers.push(() => makeCharacter(
  44910. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44911. {
  44912. front: {
  44913. height: math.unit(5.67, "feet"),
  44914. weight: math.unit(135, "lb"),
  44915. name: "Front",
  44916. image: {
  44917. source: "./media/characters/sarel/front.svg",
  44918. extra: 865/788,
  44919. bottom: 97/962
  44920. }
  44921. },
  44922. back: {
  44923. height: math.unit(5.67, "feet"),
  44924. weight: math.unit(135, "lb"),
  44925. name: "Back",
  44926. image: {
  44927. source: "./media/characters/sarel/back.svg",
  44928. extra: 857/777,
  44929. bottom: 32/889
  44930. }
  44931. },
  44932. chozoan: {
  44933. height: math.unit(5.67, "feet"),
  44934. weight: math.unit(135, "lb"),
  44935. name: "Chozoan",
  44936. image: {
  44937. source: "./media/characters/sarel/chozoan.svg",
  44938. extra: 865/788,
  44939. bottom: 97/962
  44940. }
  44941. },
  44942. current: {
  44943. height: math.unit(5.67, "feet"),
  44944. weight: math.unit(135, "lb"),
  44945. name: "Current",
  44946. image: {
  44947. source: "./media/characters/sarel/current.svg",
  44948. extra: 865/788,
  44949. bottom: 97/962
  44950. }
  44951. },
  44952. head: {
  44953. height: math.unit(1.77, "feet"),
  44954. name: "Head",
  44955. image: {
  44956. source: "./media/characters/sarel/head.svg"
  44957. }
  44958. },
  44959. claws: {
  44960. height: math.unit(1.8, "feet"),
  44961. name: "Claws",
  44962. image: {
  44963. source: "./media/characters/sarel/claws.svg"
  44964. }
  44965. },
  44966. clawsAlt: {
  44967. height: math.unit(1.8, "feet"),
  44968. name: "Claws-alt",
  44969. image: {
  44970. source: "./media/characters/sarel/claws-alt.svg"
  44971. }
  44972. },
  44973. },
  44974. [
  44975. {
  44976. name: "Normal",
  44977. height: math.unit(5.67, "feet"),
  44978. default: true
  44979. },
  44980. ]
  44981. ))
  44982. characterMakers.push(() => makeCharacter(
  44983. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44984. {
  44985. front: {
  44986. height: math.unit(5500, "feet"),
  44987. name: "Front",
  44988. image: {
  44989. source: "./media/characters/alyonia/front.svg",
  44990. extra: 1200/1135,
  44991. bottom: 29/1229
  44992. }
  44993. },
  44994. back: {
  44995. height: math.unit(5500, "feet"),
  44996. name: "Back",
  44997. image: {
  44998. source: "./media/characters/alyonia/back.svg",
  44999. extra: 1205/1138,
  45000. bottom: 10/1215
  45001. }
  45002. },
  45003. },
  45004. [
  45005. {
  45006. name: "Small",
  45007. height: math.unit(10, "feet")
  45008. },
  45009. {
  45010. name: "Macro",
  45011. height: math.unit(500, "feet")
  45012. },
  45013. {
  45014. name: "Mega Macro",
  45015. height: math.unit(5500, "feet"),
  45016. default: true
  45017. },
  45018. {
  45019. name: "Mega Macro+",
  45020. height: math.unit(500000, "feet")
  45021. },
  45022. {
  45023. name: "Giga Macro",
  45024. height: math.unit(3000, "miles")
  45025. },
  45026. {
  45027. name: "Tera Macro",
  45028. height: math.unit(2.8e6, "miles")
  45029. },
  45030. {
  45031. name: "Galactic",
  45032. height: math.unit(120000, "lightyears")
  45033. },
  45034. ]
  45035. ))
  45036. characterMakers.push(() => makeCharacter(
  45037. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45038. {
  45039. werewolf: {
  45040. height: math.unit(8, "feet"),
  45041. weight: math.unit(425, "lb"),
  45042. name: "Werewolf",
  45043. image: {
  45044. source: "./media/characters/autumn/werewolf.svg",
  45045. extra: 2154/2031,
  45046. bottom: 160/2314
  45047. }
  45048. },
  45049. human: {
  45050. height: math.unit(5 + 8/12, "feet"),
  45051. weight: math.unit(150, "lb"),
  45052. name: "Human",
  45053. image: {
  45054. source: "./media/characters/autumn/human.svg",
  45055. extra: 1200/1149,
  45056. bottom: 30/1230
  45057. }
  45058. },
  45059. },
  45060. [
  45061. {
  45062. name: "Normal",
  45063. height: math.unit(8, "feet"),
  45064. default: true
  45065. },
  45066. ]
  45067. ))
  45068. characterMakers.push(() => makeCharacter(
  45069. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45070. {
  45071. front: {
  45072. height: math.unit(8 + 5/12, "feet"),
  45073. weight: math.unit(825, "lb"),
  45074. name: "Front",
  45075. image: {
  45076. source: "./media/characters/cobalt-charizard/front.svg",
  45077. extra: 1268/1155,
  45078. bottom: 122/1390
  45079. }
  45080. },
  45081. side: {
  45082. height: math.unit(8 + 5/12, "feet"),
  45083. weight: math.unit(825, "lb"),
  45084. name: "Side",
  45085. image: {
  45086. source: "./media/characters/cobalt-charizard/side.svg",
  45087. extra: 1348/1257,
  45088. bottom: 58/1406
  45089. }
  45090. },
  45091. gMax: {
  45092. height: math.unit(134 + 11/12, "feet"),
  45093. name: "G-Max",
  45094. image: {
  45095. source: "./media/characters/cobalt-charizard/g-max.svg",
  45096. extra: 1835/1541,
  45097. bottom: 151/1986
  45098. }
  45099. },
  45100. },
  45101. [
  45102. {
  45103. name: "Normal",
  45104. height: math.unit(8 + 5/12, "feet"),
  45105. default: true
  45106. },
  45107. ]
  45108. ))
  45109. characterMakers.push(() => makeCharacter(
  45110. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45111. {
  45112. front: {
  45113. height: math.unit(6 + 3/12, "feet"),
  45114. weight: math.unit(210, "lb"),
  45115. name: "Front",
  45116. image: {
  45117. source: "./media/characters/stella/front.svg",
  45118. extra: 3549/3335,
  45119. bottom: 51/3600
  45120. }
  45121. },
  45122. },
  45123. [
  45124. {
  45125. name: "Normal",
  45126. height: math.unit(6 + 3/12, "feet"),
  45127. default: true
  45128. },
  45129. ]
  45130. ))
  45131. characterMakers.push(() => makeCharacter(
  45132. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45133. {
  45134. front: {
  45135. height: math.unit(5, "feet"),
  45136. weight: math.unit(90, "lb"),
  45137. name: "Front",
  45138. image: {
  45139. source: "./media/characters/riley-bishop/front.svg",
  45140. extra: 1450/1428,
  45141. bottom: 152/1602
  45142. }
  45143. },
  45144. },
  45145. [
  45146. {
  45147. name: "Normal",
  45148. height: math.unit(5, "feet"),
  45149. default: true
  45150. },
  45151. ]
  45152. ))
  45153. characterMakers.push(() => makeCharacter(
  45154. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45155. {
  45156. side: {
  45157. height: math.unit(8 + 2/12, "feet"),
  45158. weight: math.unit(500, "kg"),
  45159. name: "Side",
  45160. image: {
  45161. source: "./media/characters/theo-arcanine/side.svg",
  45162. extra: 1342/1074,
  45163. bottom: 111/1453
  45164. }
  45165. },
  45166. },
  45167. [
  45168. {
  45169. name: "Normal",
  45170. height: math.unit(8 + 2/12, "feet"),
  45171. default: true
  45172. },
  45173. ]
  45174. ))
  45175. characterMakers.push(() => makeCharacter(
  45176. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45177. {
  45178. front: {
  45179. height: math.unit(4, "feet"),
  45180. name: "Front",
  45181. image: {
  45182. source: "./media/characters/kali/front.svg",
  45183. extra: 1921/1357,
  45184. bottom: 70/1991
  45185. }
  45186. },
  45187. },
  45188. [
  45189. {
  45190. name: "Normal",
  45191. height: math.unit(4, "feet"),
  45192. default: true
  45193. },
  45194. {
  45195. name: "Macro",
  45196. height: math.unit(32, "meters")
  45197. },
  45198. {
  45199. name: "Macro+",
  45200. height: math.unit(150, "meters")
  45201. },
  45202. {
  45203. name: "Megamacro",
  45204. height: math.unit(7500, "meters")
  45205. },
  45206. {
  45207. name: "Megamacro+",
  45208. height: math.unit(80, "kilometers")
  45209. },
  45210. ]
  45211. ))
  45212. characterMakers.push(() => makeCharacter(
  45213. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45214. {
  45215. side: {
  45216. height: math.unit(5 + 11/12, "feet"),
  45217. weight: math.unit(236, "lb"),
  45218. name: "Side",
  45219. image: {
  45220. source: "./media/characters/gapp/side.svg",
  45221. extra: 775/340,
  45222. bottom: 58/833
  45223. }
  45224. },
  45225. mouth: {
  45226. height: math.unit(2.98, "feet"),
  45227. name: "Mouth",
  45228. image: {
  45229. source: "./media/characters/gapp/mouth.svg"
  45230. }
  45231. },
  45232. },
  45233. [
  45234. {
  45235. name: "Normal",
  45236. height: math.unit(5 + 1/12, "feet"),
  45237. default: true
  45238. },
  45239. ]
  45240. ))
  45241. characterMakers.push(() => makeCharacter(
  45242. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45243. {
  45244. front: {
  45245. height: math.unit(6, "feet"),
  45246. name: "Front",
  45247. image: {
  45248. source: "./media/characters/persephone/front.svg",
  45249. extra: 1895/1717,
  45250. bottom: 96/1991
  45251. }
  45252. },
  45253. back: {
  45254. height: math.unit(6, "feet"),
  45255. name: "Back",
  45256. image: {
  45257. source: "./media/characters/persephone/back.svg",
  45258. extra: 1868/1679,
  45259. bottom: 26/1894
  45260. }
  45261. },
  45262. casual: {
  45263. height: math.unit(6, "feet"),
  45264. name: "Casual",
  45265. image: {
  45266. source: "./media/characters/persephone/casual.svg",
  45267. extra: 1713/1541,
  45268. bottom: 76/1789
  45269. }
  45270. },
  45271. },
  45272. [
  45273. {
  45274. name: "Human Size",
  45275. height: math.unit(6, "feet")
  45276. },
  45277. {
  45278. name: "Big Steppy",
  45279. height: math.unit(600, "meters"),
  45280. default: true
  45281. },
  45282. {
  45283. name: "Galaxy Brain",
  45284. height: math.unit(1, "zettameter")
  45285. },
  45286. ]
  45287. ))
  45288. characterMakers.push(() => makeCharacter(
  45289. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45290. {
  45291. front: {
  45292. height: math.unit(1.85, "meters"),
  45293. name: "Front",
  45294. image: {
  45295. source: "./media/characters/riley-foxthing/front.svg",
  45296. extra: 1495/1354,
  45297. bottom: 122/1617
  45298. }
  45299. },
  45300. frontAlt: {
  45301. height: math.unit(1.85, "meters"),
  45302. name: "Front (Alt)",
  45303. image: {
  45304. source: "./media/characters/riley-foxthing/front-alt.svg",
  45305. extra: 1572/1389,
  45306. bottom: 116/1688
  45307. }
  45308. },
  45309. },
  45310. [
  45311. {
  45312. name: "Normal Sized",
  45313. height: math.unit(1.85, "meters"),
  45314. default: true
  45315. },
  45316. {
  45317. name: "Quite Sizable",
  45318. height: math.unit(5, "meters")
  45319. },
  45320. {
  45321. name: "Rather Large",
  45322. height: math.unit(20, "meters")
  45323. },
  45324. {
  45325. name: "Macro",
  45326. height: math.unit(450, "meters")
  45327. },
  45328. {
  45329. name: "Giga",
  45330. height: math.unit(5, "km")
  45331. },
  45332. ]
  45333. ))
  45334. characterMakers.push(() => makeCharacter(
  45335. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45336. {
  45337. front: {
  45338. height: math.unit(6, "feet"),
  45339. weight: math.unit(200, "lb"),
  45340. name: "Front",
  45341. image: {
  45342. source: "./media/characters/blizzard/front.svg",
  45343. extra: 1136/990,
  45344. bottom: 136/1272
  45345. }
  45346. },
  45347. back: {
  45348. height: math.unit(6, "feet"),
  45349. weight: math.unit(200, "lb"),
  45350. name: "Back",
  45351. image: {
  45352. source: "./media/characters/blizzard/back.svg",
  45353. extra: 1175/1034,
  45354. bottom: 97/1272
  45355. }
  45356. },
  45357. sitting: {
  45358. height: math.unit(3.725, "feet"),
  45359. weight: math.unit(200, "lb"),
  45360. name: "Sitting",
  45361. image: {
  45362. source: "./media/characters/blizzard/sitting.svg",
  45363. extra: 581/485,
  45364. bottom: 90/671
  45365. }
  45366. },
  45367. frontWizard: {
  45368. height: math.unit(7.9, "feet"),
  45369. weight: math.unit(200, "lb"),
  45370. name: "Front (Wizard)",
  45371. image: {
  45372. source: "./media/characters/blizzard/front-wizard.svg"
  45373. }
  45374. },
  45375. backWizard: {
  45376. height: math.unit(7.9, "feet"),
  45377. weight: math.unit(200, "lb"),
  45378. name: "Back (Wizard)",
  45379. image: {
  45380. source: "./media/characters/blizzard/back-wizard.svg"
  45381. }
  45382. },
  45383. frontNsfw: {
  45384. height: math.unit(6, "feet"),
  45385. weight: math.unit(200, "lb"),
  45386. name: "Front (NSFW)",
  45387. image: {
  45388. source: "./media/characters/blizzard/front-nsfw.svg",
  45389. extra: 1136/990,
  45390. bottom: 136/1272
  45391. }
  45392. },
  45393. backNsfw: {
  45394. height: math.unit(6, "feet"),
  45395. weight: math.unit(200, "lb"),
  45396. name: "Back (NSFW)",
  45397. image: {
  45398. source: "./media/characters/blizzard/back-nsfw.svg",
  45399. extra: 1175/1034,
  45400. bottom: 97/1272
  45401. }
  45402. },
  45403. sittingNsfw: {
  45404. height: math.unit(3.725, "feet"),
  45405. weight: math.unit(200, "lb"),
  45406. name: "Sitting (NSFW)",
  45407. image: {
  45408. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45409. extra: 581/485,
  45410. bottom: 90/671
  45411. }
  45412. },
  45413. wizardFrontNsfw: {
  45414. height: math.unit(7.9, "feet"),
  45415. weight: math.unit(200, "lb"),
  45416. name: "Wizard (Front, NSFW)",
  45417. image: {
  45418. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45419. }
  45420. },
  45421. },
  45422. [
  45423. {
  45424. name: "Normal",
  45425. height: math.unit(6, "feet"),
  45426. default: true
  45427. },
  45428. ]
  45429. ))
  45430. characterMakers.push(() => makeCharacter(
  45431. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45432. {
  45433. front: {
  45434. height: math.unit(5 + 2/12, "feet"),
  45435. name: "Front",
  45436. image: {
  45437. source: "./media/characters/lumi/front.svg",
  45438. extra: 1328/1268,
  45439. bottom: 103/1431
  45440. }
  45441. },
  45442. back: {
  45443. height: math.unit(5 + 2/12, "feet"),
  45444. name: "Back",
  45445. image: {
  45446. source: "./media/characters/lumi/back.svg",
  45447. extra: 1381/1327,
  45448. bottom: 43/1424
  45449. }
  45450. },
  45451. },
  45452. [
  45453. {
  45454. name: "Normal",
  45455. height: math.unit(5 + 2/12, "feet"),
  45456. default: true
  45457. },
  45458. ]
  45459. ))
  45460. characterMakers.push(() => makeCharacter(
  45461. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45462. {
  45463. front: {
  45464. height: math.unit(5 + 9/12, "feet"),
  45465. name: "Front",
  45466. image: {
  45467. source: "./media/characters/aliya-cotton/front.svg",
  45468. extra: 577/564,
  45469. bottom: 29/606
  45470. }
  45471. },
  45472. },
  45473. [
  45474. {
  45475. name: "Normal",
  45476. height: math.unit(5 + 9/12, "feet"),
  45477. default: true
  45478. },
  45479. ]
  45480. ))
  45481. characterMakers.push(() => makeCharacter(
  45482. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45483. {
  45484. front: {
  45485. height: math.unit(2.7, "meters"),
  45486. weight: math.unit(25000, "lb"),
  45487. name: "Front",
  45488. image: {
  45489. source: "./media/characters/noah-luxray/front.svg",
  45490. extra: 1644/825,
  45491. bottom: 339/1983
  45492. }
  45493. },
  45494. side: {
  45495. height: math.unit(2.97, "meters"),
  45496. weight: math.unit(25000, "lb"),
  45497. name: "Side",
  45498. image: {
  45499. source: "./media/characters/noah-luxray/side.svg",
  45500. extra: 1319/650,
  45501. bottom: 163/1482
  45502. }
  45503. },
  45504. dick: {
  45505. height: math.unit(7.4, "feet"),
  45506. weight: math.unit(2500, "lb"),
  45507. name: "Dick",
  45508. image: {
  45509. source: "./media/characters/noah-luxray/dick.svg"
  45510. }
  45511. },
  45512. dickAlt: {
  45513. height: math.unit(10.83, "feet"),
  45514. weight: math.unit(2500, "lb"),
  45515. name: "Dick-alt",
  45516. image: {
  45517. source: "./media/characters/noah-luxray/dick-alt.svg"
  45518. }
  45519. },
  45520. },
  45521. [
  45522. {
  45523. name: "BIG",
  45524. height: math.unit(2.7, "meters"),
  45525. default: true
  45526. },
  45527. ]
  45528. ))
  45529. characterMakers.push(() => makeCharacter(
  45530. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45531. {
  45532. standing: {
  45533. height: math.unit(183, "cm"),
  45534. weight: math.unit(68, "kg"),
  45535. name: "Standing",
  45536. image: {
  45537. source: "./media/characters/arion/standing.svg",
  45538. extra: 1869/1807,
  45539. bottom: 93/1962
  45540. }
  45541. },
  45542. reclining: {
  45543. height: math.unit(70.5, "cm"),
  45544. weight: math.unit(68, "lb"),
  45545. name: "Reclining",
  45546. image: {
  45547. source: "./media/characters/arion/reclining.svg",
  45548. extra: 937/870,
  45549. bottom: 63/1000
  45550. }
  45551. },
  45552. },
  45553. [
  45554. {
  45555. name: "Colossus Size, Low",
  45556. height: math.unit(33, "meters"),
  45557. default: true
  45558. },
  45559. {
  45560. name: "Colossus Size, Mid",
  45561. height: math.unit(52, "meters")
  45562. },
  45563. {
  45564. name: "Colossus Size, High",
  45565. height: math.unit(60, "meters")
  45566. },
  45567. {
  45568. name: "Titan Size, Low",
  45569. height: math.unit(91, "meters"),
  45570. },
  45571. {
  45572. name: "Titan Size, Mid",
  45573. height: math.unit(122, "meters")
  45574. },
  45575. {
  45576. name: "Titan Size, High",
  45577. height: math.unit(162, "meters")
  45578. },
  45579. ]
  45580. ))
  45581. characterMakers.push(() => makeCharacter(
  45582. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45583. {
  45584. front: {
  45585. height: math.unit(53, "meters"),
  45586. name: "Front",
  45587. image: {
  45588. source: "./media/characters/stellar-marbey/front.svg",
  45589. extra: 1913/1805,
  45590. bottom: 92/2005
  45591. }
  45592. },
  45593. back: {
  45594. height: math.unit(53, "meters"),
  45595. name: "Back",
  45596. image: {
  45597. source: "./media/characters/stellar-marbey/back.svg",
  45598. extra: 1960/1851,
  45599. bottom: 28/1988
  45600. }
  45601. },
  45602. mouth: {
  45603. height: math.unit(3.5, "meters"),
  45604. name: "Mouth",
  45605. image: {
  45606. source: "./media/characters/stellar-marbey/mouth.svg"
  45607. }
  45608. },
  45609. },
  45610. [
  45611. {
  45612. name: "Macro",
  45613. height: math.unit(53, "meters"),
  45614. default: true
  45615. },
  45616. ]
  45617. ))
  45618. characterMakers.push(() => makeCharacter(
  45619. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45620. {
  45621. front: {
  45622. height: math.unit(8 + 1/12, "feet"),
  45623. weight: math.unit(233, "lb"),
  45624. name: "Front",
  45625. image: {
  45626. source: "./media/characters/matsu/front.svg",
  45627. extra: 832/772,
  45628. bottom: 40/872
  45629. }
  45630. },
  45631. back: {
  45632. height: math.unit(8 + 1/12, "feet"),
  45633. weight: math.unit(233, "lb"),
  45634. name: "Back",
  45635. image: {
  45636. source: "./media/characters/matsu/back.svg",
  45637. extra: 839/780,
  45638. bottom: 47/886
  45639. }
  45640. },
  45641. },
  45642. [
  45643. {
  45644. name: "Normal",
  45645. height: math.unit(8 + 1/12, "feet"),
  45646. default: true
  45647. },
  45648. ]
  45649. ))
  45650. characterMakers.push(() => makeCharacter(
  45651. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45652. {
  45653. front: {
  45654. height: math.unit(4, "feet"),
  45655. weight: math.unit(148, "lb"),
  45656. name: "Front",
  45657. image: {
  45658. source: "./media/characters/thiz/front.svg",
  45659. extra: 1913/1748,
  45660. bottom: 62/1975
  45661. }
  45662. },
  45663. },
  45664. [
  45665. {
  45666. name: "Normal",
  45667. height: math.unit(4, "feet"),
  45668. default: true
  45669. },
  45670. ]
  45671. ))
  45672. characterMakers.push(() => makeCharacter(
  45673. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45674. {
  45675. front: {
  45676. height: math.unit(7 + 6/12, "feet"),
  45677. weight: math.unit(267, "lb"),
  45678. name: "Front",
  45679. image: {
  45680. source: "./media/characters/marcel/front.svg",
  45681. extra: 1221/1096,
  45682. bottom: 76/1297
  45683. }
  45684. },
  45685. },
  45686. [
  45687. {
  45688. name: "Normal",
  45689. height: math.unit(7 + 6/12, "feet"),
  45690. default: true
  45691. },
  45692. ]
  45693. ))
  45694. characterMakers.push(() => makeCharacter(
  45695. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45696. {
  45697. side: {
  45698. height: math.unit(42, "meters"),
  45699. name: "Side",
  45700. image: {
  45701. source: "./media/characters/flake/side.svg",
  45702. extra: 1525/1306,
  45703. bottom: 209/1734
  45704. }
  45705. },
  45706. },
  45707. [
  45708. {
  45709. name: "Normal",
  45710. height: math.unit(42, "meters"),
  45711. default: true
  45712. },
  45713. ]
  45714. ))
  45715. characterMakers.push(() => makeCharacter(
  45716. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45717. {
  45718. dressed: {
  45719. height: math.unit(6 + 4/12, "feet"),
  45720. weight: math.unit(520, "lb"),
  45721. name: "Dressed",
  45722. image: {
  45723. source: "./media/characters/someonne/dressed.svg",
  45724. extra: 1020/1010,
  45725. bottom: 178/1198
  45726. }
  45727. },
  45728. undressed: {
  45729. height: math.unit(6 + 4/12, "feet"),
  45730. weight: math.unit(520, "lb"),
  45731. name: "Undressed",
  45732. image: {
  45733. source: "./media/characters/someonne/undressed.svg",
  45734. extra: 1019/1014,
  45735. bottom: 169/1188
  45736. }
  45737. },
  45738. },
  45739. [
  45740. {
  45741. name: "Normal",
  45742. height: math.unit(6 + 4/12, "feet"),
  45743. default: true
  45744. },
  45745. ]
  45746. ))
  45747. characterMakers.push(() => makeCharacter(
  45748. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45749. {
  45750. front: {
  45751. height: math.unit(3, "feet"),
  45752. weight: math.unit(30, "lb"),
  45753. name: "Front",
  45754. image: {
  45755. source: "./media/characters/till/front.svg",
  45756. extra: 892/823,
  45757. bottom: 55/947
  45758. }
  45759. },
  45760. },
  45761. [
  45762. {
  45763. name: "Normal",
  45764. height: math.unit(3, "feet"),
  45765. default: true
  45766. },
  45767. ]
  45768. ))
  45769. characterMakers.push(() => makeCharacter(
  45770. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45771. {
  45772. front: {
  45773. height: math.unit(9 + 8/12, "feet"),
  45774. weight: math.unit(800, "lb"),
  45775. name: "Front",
  45776. image: {
  45777. source: "./media/characters/sydney-heki/front.svg",
  45778. extra: 1360/1300,
  45779. bottom: 22/1382
  45780. }
  45781. },
  45782. back: {
  45783. height: math.unit(9 + 8/12, "feet"),
  45784. weight: math.unit(800, "lb"),
  45785. name: "Back",
  45786. image: {
  45787. source: "./media/characters/sydney-heki/back.svg",
  45788. extra: 1356/1293,
  45789. bottom: 12/1368
  45790. }
  45791. },
  45792. frontDressed: {
  45793. height: math.unit(9 + 8/12, "feet"),
  45794. weight: math.unit(800, "lb"),
  45795. name: "Front-dressed",
  45796. image: {
  45797. source: "./media/characters/sydney-heki/front-dressed.svg",
  45798. extra: 1360/1300,
  45799. bottom: 22/1382
  45800. }
  45801. },
  45802. },
  45803. [
  45804. {
  45805. name: "Normal",
  45806. height: math.unit(9 + 8/12, "feet"),
  45807. default: true
  45808. },
  45809. {
  45810. name: "Macro",
  45811. height: math.unit(500, "feet")
  45812. },
  45813. {
  45814. name: "Megamacro",
  45815. height: math.unit(3.6, "miles")
  45816. },
  45817. ]
  45818. ))
  45819. characterMakers.push(() => makeCharacter(
  45820. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45821. {
  45822. front: {
  45823. height: math.unit(200, "cm"),
  45824. weight: math.unit(250, "lb"),
  45825. name: "Front",
  45826. image: {
  45827. source: "./media/characters/fowler-karlsson/front.svg",
  45828. extra: 897/845,
  45829. bottom: 123/1020
  45830. }
  45831. },
  45832. back: {
  45833. height: math.unit(200, "cm"),
  45834. weight: math.unit(250, "lb"),
  45835. name: "Back",
  45836. image: {
  45837. source: "./media/characters/fowler-karlsson/back.svg",
  45838. extra: 999/944,
  45839. bottom: 26/1025
  45840. }
  45841. },
  45842. dick: {
  45843. height: math.unit(1.92, "feet"),
  45844. weight: math.unit(150, "lb"),
  45845. name: "Dick",
  45846. image: {
  45847. source: "./media/characters/fowler-karlsson/dick.svg"
  45848. }
  45849. },
  45850. },
  45851. [
  45852. {
  45853. name: "Normal",
  45854. height: math.unit(200, "cm"),
  45855. default: true
  45856. },
  45857. {
  45858. name: "Smaller Macro",
  45859. height: math.unit(90, "m")
  45860. },
  45861. {
  45862. name: "Macro",
  45863. height: math.unit(150, "m")
  45864. },
  45865. {
  45866. name: "Bigger Macro",
  45867. height: math.unit(300, "m")
  45868. },
  45869. ]
  45870. ))
  45871. characterMakers.push(() => makeCharacter(
  45872. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45873. {
  45874. side: {
  45875. height: math.unit(8 + 2/12, "feet"),
  45876. weight: math.unit(1, "tonne"),
  45877. name: "Side",
  45878. image: {
  45879. source: "./media/characters/rylide/side.svg",
  45880. extra: 1318/1034,
  45881. bottom: 106/1424
  45882. }
  45883. },
  45884. sitting: {
  45885. height: math.unit(303, "cm"),
  45886. weight: math.unit(1, "tonne"),
  45887. name: "Sitting",
  45888. image: {
  45889. source: "./media/characters/rylide/sitting.svg",
  45890. extra: 1303/1103,
  45891. bottom: 36/1339
  45892. }
  45893. },
  45894. },
  45895. [
  45896. {
  45897. name: "Normal",
  45898. height: math.unit(8 + 2/12, "feet"),
  45899. default: true
  45900. },
  45901. ]
  45902. ))
  45903. characterMakers.push(() => makeCharacter(
  45904. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45905. {
  45906. front: {
  45907. height: math.unit(5 + 10/12, "feet"),
  45908. weight: math.unit(160, "lb"),
  45909. name: "Front",
  45910. image: {
  45911. source: "./media/characters/pudask/front.svg",
  45912. extra: 1616/1590,
  45913. bottom: 161/1777
  45914. }
  45915. },
  45916. },
  45917. [
  45918. {
  45919. name: "Ferret Height",
  45920. height: math.unit(2 + 5/12, "feet")
  45921. },
  45922. {
  45923. name: "Canon Height",
  45924. height: math.unit(5 + 10/12, "feet"),
  45925. default: true
  45926. },
  45927. ]
  45928. ))
  45929. characterMakers.push(() => makeCharacter(
  45930. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45931. {
  45932. front: {
  45933. height: math.unit(3 + 6/12, "feet"),
  45934. weight: math.unit(60, "lb"),
  45935. name: "Front",
  45936. image: {
  45937. source: "./media/characters/ramita/front.svg",
  45938. extra: 1402/1232,
  45939. bottom: 62/1464
  45940. }
  45941. },
  45942. dressed: {
  45943. height: math.unit(3 + 6/12, "feet"),
  45944. weight: math.unit(60, "lb"),
  45945. name: "Dressed",
  45946. image: {
  45947. source: "./media/characters/ramita/dressed.svg",
  45948. extra: 1534/1249,
  45949. bottom: 50/1584
  45950. }
  45951. },
  45952. },
  45953. [
  45954. {
  45955. name: "Normal",
  45956. height: math.unit(3 + 6/12, "feet"),
  45957. default: true
  45958. },
  45959. ]
  45960. ))
  45961. characterMakers.push(() => makeCharacter(
  45962. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45963. {
  45964. front: {
  45965. height: math.unit(8, "feet"),
  45966. name: "Front",
  45967. image: {
  45968. source: "./media/characters/ark/front.svg",
  45969. extra: 772/693,
  45970. bottom: 45/817
  45971. }
  45972. },
  45973. },
  45974. [
  45975. {
  45976. name: "Normal",
  45977. height: math.unit(8, "feet"),
  45978. default: true
  45979. },
  45980. ]
  45981. ))
  45982. characterMakers.push(() => makeCharacter(
  45983. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45984. {
  45985. front: {
  45986. height: math.unit(6, "feet"),
  45987. weight: math.unit(250, "lb"),
  45988. volume: math.unit(5/8, "gallons"),
  45989. name: "Front",
  45990. image: {
  45991. source: "./media/characters/ludwig-horn/front.svg",
  45992. extra: 1782/1635,
  45993. bottom: 96/1878
  45994. }
  45995. },
  45996. back: {
  45997. height: math.unit(6, "feet"),
  45998. weight: math.unit(250, "lb"),
  45999. volume: math.unit(5/8, "gallons"),
  46000. name: "Back",
  46001. image: {
  46002. source: "./media/characters/ludwig-horn/back.svg",
  46003. extra: 1874/1729,
  46004. bottom: 27/1901
  46005. }
  46006. },
  46007. dick: {
  46008. height: math.unit(1.05, "feet"),
  46009. weight: math.unit(15, "lb"),
  46010. volume: math.unit(5/8, "gallons"),
  46011. name: "Dick",
  46012. image: {
  46013. source: "./media/characters/ludwig-horn/dick.svg"
  46014. }
  46015. },
  46016. },
  46017. [
  46018. {
  46019. name: "Small",
  46020. height: math.unit(6, "feet")
  46021. },
  46022. {
  46023. name: "Typical",
  46024. height: math.unit(12, "feet"),
  46025. default: true
  46026. },
  46027. {
  46028. name: "Building",
  46029. height: math.unit(80, "feet")
  46030. },
  46031. {
  46032. name: "Town",
  46033. height: math.unit(800, "feet")
  46034. },
  46035. {
  46036. name: "Kingdom",
  46037. height: math.unit(80000, "feet")
  46038. },
  46039. {
  46040. name: "Planet",
  46041. height: math.unit(8000000, "feet")
  46042. },
  46043. {
  46044. name: "Universe",
  46045. height: math.unit(8000000000, "feet")
  46046. },
  46047. {
  46048. name: "Transcended",
  46049. height: math.unit(8e27, "feet")
  46050. },
  46051. ]
  46052. ))
  46053. characterMakers.push(() => makeCharacter(
  46054. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46055. {
  46056. front: {
  46057. height: math.unit(5, "feet"),
  46058. weight: math.unit(50, "kg"),
  46059. name: "Front",
  46060. image: {
  46061. source: "./media/characters/biot-avery/front.svg",
  46062. extra: 1295/1232,
  46063. bottom: 86/1381
  46064. }
  46065. },
  46066. },
  46067. [
  46068. {
  46069. name: "Normal",
  46070. height: math.unit(5, "feet"),
  46071. default: true
  46072. },
  46073. ]
  46074. ))
  46075. characterMakers.push(() => makeCharacter(
  46076. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46077. {
  46078. front: {
  46079. height: math.unit(6, "feet"),
  46080. name: "Front",
  46081. image: {
  46082. source: "./media/characters/kitsune-kiro/front.svg",
  46083. extra: 1270/1158,
  46084. bottom: 42/1312
  46085. }
  46086. },
  46087. frontAlt: {
  46088. height: math.unit(6, "feet"),
  46089. name: "Front-alt",
  46090. image: {
  46091. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46092. extra: 1130/1081,
  46093. bottom: 36/1166
  46094. }
  46095. },
  46096. },
  46097. [
  46098. {
  46099. name: "Smol",
  46100. height: math.unit(3, "feet")
  46101. },
  46102. {
  46103. name: "Normal",
  46104. height: math.unit(6, "feet"),
  46105. default: true
  46106. },
  46107. ]
  46108. ))
  46109. characterMakers.push(() => makeCharacter(
  46110. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46111. {
  46112. front: {
  46113. height: math.unit(6, "feet"),
  46114. weight: math.unit(125, "lb"),
  46115. name: "Front",
  46116. image: {
  46117. source: "./media/characters/jack-thatcher/front.svg",
  46118. extra: 1474/1370,
  46119. bottom: 26/1500
  46120. }
  46121. },
  46122. back: {
  46123. height: math.unit(6, "feet"),
  46124. weight: math.unit(125, "lb"),
  46125. name: "Back",
  46126. image: {
  46127. source: "./media/characters/jack-thatcher/back.svg",
  46128. extra: 1489/1384,
  46129. bottom: 18/1507
  46130. }
  46131. },
  46132. },
  46133. [
  46134. {
  46135. name: "Normal",
  46136. height: math.unit(6, "feet"),
  46137. default: true
  46138. },
  46139. {
  46140. name: "Macro",
  46141. height: math.unit(75, "feet")
  46142. },
  46143. {
  46144. name: "Macro-er",
  46145. height: math.unit(250, "feet")
  46146. },
  46147. ]
  46148. ))
  46149. characterMakers.push(() => makeCharacter(
  46150. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46151. {
  46152. front: {
  46153. height: math.unit(7, "feet"),
  46154. weight: math.unit(110, "kg"),
  46155. name: "Front",
  46156. image: {
  46157. source: "./media/characters/max-hyper/front.svg",
  46158. extra: 1969/1881,
  46159. bottom: 49/2018
  46160. }
  46161. },
  46162. },
  46163. [
  46164. {
  46165. name: "Normal",
  46166. height: math.unit(7, "feet"),
  46167. default: true
  46168. },
  46169. ]
  46170. ))
  46171. characterMakers.push(() => makeCharacter(
  46172. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46173. {
  46174. front: {
  46175. height: math.unit(5 + 5/12, "feet"),
  46176. weight: math.unit(160, "lb"),
  46177. name: "Front",
  46178. image: {
  46179. source: "./media/characters/spook/front.svg",
  46180. extra: 794/791,
  46181. bottom: 54/848
  46182. }
  46183. },
  46184. back: {
  46185. height: math.unit(5 + 5/12, "feet"),
  46186. weight: math.unit(160, "lb"),
  46187. name: "Back",
  46188. image: {
  46189. source: "./media/characters/spook/back.svg",
  46190. extra: 812/798,
  46191. bottom: 32/844
  46192. }
  46193. },
  46194. },
  46195. [
  46196. {
  46197. name: "Normal",
  46198. height: math.unit(5 + 5/12, "feet"),
  46199. default: true
  46200. },
  46201. ]
  46202. ))
  46203. characterMakers.push(() => makeCharacter(
  46204. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46205. {
  46206. front: {
  46207. height: math.unit(18, "feet"),
  46208. name: "Front",
  46209. image: {
  46210. source: "./media/characters/xeaduulix/front.svg",
  46211. extra: 1380/1166,
  46212. bottom: 110/1490
  46213. }
  46214. },
  46215. back: {
  46216. height: math.unit(18, "feet"),
  46217. name: "Back",
  46218. image: {
  46219. source: "./media/characters/xeaduulix/back.svg",
  46220. extra: 1592/1170,
  46221. bottom: 128/1720
  46222. }
  46223. },
  46224. frontNsfw: {
  46225. height: math.unit(18, "feet"),
  46226. name: "Front (NSFW)",
  46227. image: {
  46228. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46229. extra: 1380/1166,
  46230. bottom: 110/1490
  46231. }
  46232. },
  46233. backNsfw: {
  46234. height: math.unit(18, "feet"),
  46235. name: "Back (NSFW)",
  46236. image: {
  46237. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46238. extra: 1592/1170,
  46239. bottom: 128/1720
  46240. }
  46241. },
  46242. },
  46243. [
  46244. {
  46245. name: "Normal",
  46246. height: math.unit(18, "feet"),
  46247. default: true
  46248. },
  46249. ]
  46250. ))
  46251. characterMakers.push(() => makeCharacter(
  46252. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46253. {
  46254. spreadWings: {
  46255. height: math.unit(20, "feet"),
  46256. name: "Spread Wings",
  46257. image: {
  46258. source: "./media/characters/fledge/spread-wings.svg",
  46259. extra: 693/635,
  46260. bottom: 26/719
  46261. }
  46262. },
  46263. front: {
  46264. height: math.unit(20, "feet"),
  46265. name: "Front",
  46266. image: {
  46267. source: "./media/characters/fledge/front.svg",
  46268. extra: 684/637,
  46269. bottom: 18/702
  46270. }
  46271. },
  46272. frontAlt: {
  46273. height: math.unit(20, "feet"),
  46274. name: "Front (Alt)",
  46275. image: {
  46276. source: "./media/characters/fledge/front-alt.svg",
  46277. extra: 708/664,
  46278. bottom: 13/721
  46279. }
  46280. },
  46281. back: {
  46282. height: math.unit(20, "feet"),
  46283. name: "Back",
  46284. image: {
  46285. source: "./media/characters/fledge/back.svg",
  46286. extra: 718/634,
  46287. bottom: 22/740
  46288. }
  46289. },
  46290. head: {
  46291. height: math.unit(5.55, "feet"),
  46292. name: "Head",
  46293. image: {
  46294. source: "./media/characters/fledge/head.svg"
  46295. }
  46296. },
  46297. headAlt: {
  46298. height: math.unit(5.1, "feet"),
  46299. name: "Head (Alt)",
  46300. image: {
  46301. source: "./media/characters/fledge/head-alt.svg"
  46302. }
  46303. },
  46304. },
  46305. [
  46306. {
  46307. name: "Small",
  46308. height: math.unit(6 + 2/12, "feet")
  46309. },
  46310. {
  46311. name: "Big",
  46312. height: math.unit(20, "feet"),
  46313. default: true
  46314. },
  46315. {
  46316. name: "Giant",
  46317. height: math.unit(100, "feet")
  46318. },
  46319. {
  46320. name: "Macro",
  46321. height: math.unit(200, "feet")
  46322. },
  46323. ]
  46324. ))
  46325. characterMakers.push(() => makeCharacter(
  46326. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46327. {
  46328. front: {
  46329. height: math.unit(1, "meter"),
  46330. name: "Front",
  46331. image: {
  46332. source: "./media/characters/atlas-morenai/front.svg",
  46333. extra: 1275/1043,
  46334. bottom: 19/1294
  46335. }
  46336. },
  46337. back: {
  46338. height: math.unit(1, "meter"),
  46339. name: "Back",
  46340. image: {
  46341. source: "./media/characters/atlas-morenai/back.svg",
  46342. extra: 1141/1001,
  46343. bottom: 25/1166
  46344. }
  46345. },
  46346. },
  46347. [
  46348. {
  46349. name: "Normal",
  46350. height: math.unit(1, "meter"),
  46351. default: true
  46352. },
  46353. {
  46354. name: "Magic-Infused",
  46355. height: math.unit(5, "meters")
  46356. },
  46357. ]
  46358. ))
  46359. characterMakers.push(() => makeCharacter(
  46360. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46361. {
  46362. front: {
  46363. height: math.unit(5, "meters"),
  46364. name: "Front",
  46365. image: {
  46366. source: "./media/characters/cintia/front.svg",
  46367. extra: 1312/1228,
  46368. bottom: 38/1350
  46369. }
  46370. },
  46371. back: {
  46372. height: math.unit(5, "meters"),
  46373. name: "Back",
  46374. image: {
  46375. source: "./media/characters/cintia/back.svg",
  46376. extra: 1260/1166,
  46377. bottom: 98/1358
  46378. }
  46379. },
  46380. frontDick: {
  46381. height: math.unit(5, "meters"),
  46382. name: "Front (Dick)",
  46383. image: {
  46384. source: "./media/characters/cintia/front-dick.svg",
  46385. extra: 1312/1228,
  46386. bottom: 38/1350
  46387. }
  46388. },
  46389. backDick: {
  46390. height: math.unit(5, "meters"),
  46391. name: "Back (Dick)",
  46392. image: {
  46393. source: "./media/characters/cintia/back-dick.svg",
  46394. extra: 1260/1166,
  46395. bottom: 98/1358
  46396. }
  46397. },
  46398. bust: {
  46399. height: math.unit(1.97, "meters"),
  46400. name: "Bust",
  46401. image: {
  46402. source: "./media/characters/cintia/bust.svg",
  46403. extra: 617/565,
  46404. bottom: 0/617
  46405. }
  46406. },
  46407. },
  46408. [
  46409. {
  46410. name: "Normal",
  46411. height: math.unit(5, "meters"),
  46412. default: true
  46413. },
  46414. ]
  46415. ))
  46416. characterMakers.push(() => makeCharacter(
  46417. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46418. {
  46419. side: {
  46420. height: math.unit(100, "feet"),
  46421. name: "Side",
  46422. image: {
  46423. source: "./media/characters/denora/side.svg",
  46424. extra: 875/803,
  46425. bottom: 9/884
  46426. }
  46427. },
  46428. },
  46429. [
  46430. {
  46431. name: "Standard",
  46432. height: math.unit(100, "feet"),
  46433. default: true
  46434. },
  46435. {
  46436. name: "Grand",
  46437. height: math.unit(1000, "feet")
  46438. },
  46439. {
  46440. name: "Conquering",
  46441. height: math.unit(10000, "feet")
  46442. },
  46443. ]
  46444. ))
  46445. characterMakers.push(() => makeCharacter(
  46446. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46447. {
  46448. dressed: {
  46449. height: math.unit(8 + 5/12, "feet"),
  46450. weight: math.unit(700, "lb"),
  46451. name: "Dressed",
  46452. image: {
  46453. source: "./media/characters/kiva/dressed.svg",
  46454. extra: 1102/1055,
  46455. bottom: 60/1162
  46456. }
  46457. },
  46458. nude: {
  46459. height: math.unit(8 + 5/12, "feet"),
  46460. weight: math.unit(700, "lb"),
  46461. name: "Nude",
  46462. image: {
  46463. source: "./media/characters/kiva/nude.svg",
  46464. extra: 1102/1055,
  46465. bottom: 60/1162
  46466. }
  46467. },
  46468. },
  46469. [
  46470. {
  46471. name: "Base Height",
  46472. height: math.unit(8 + 5/12, "feet"),
  46473. default: true
  46474. },
  46475. {
  46476. name: "Macro",
  46477. height: math.unit(100, "feet")
  46478. },
  46479. {
  46480. name: "Max",
  46481. height: math.unit(3280, "feet")
  46482. },
  46483. ]
  46484. ))
  46485. characterMakers.push(() => makeCharacter(
  46486. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46487. {
  46488. front: {
  46489. height: math.unit(6 + 8/12, "feet"),
  46490. weight: math.unit(250, "lb"),
  46491. name: "Front",
  46492. image: {
  46493. source: "./media/characters/ztragon/front.svg",
  46494. extra: 1825/1684,
  46495. bottom: 98/1923
  46496. }
  46497. },
  46498. },
  46499. [
  46500. {
  46501. name: "Normal",
  46502. height: math.unit(6 + 8/12, "feet"),
  46503. default: true
  46504. },
  46505. {
  46506. name: "Macro",
  46507. height: math.unit(80, "feet")
  46508. },
  46509. ]
  46510. ))
  46511. characterMakers.push(() => makeCharacter(
  46512. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46513. {
  46514. front: {
  46515. height: math.unit(10.4, "feet"),
  46516. weight: math.unit(2, "tons"),
  46517. name: "Front",
  46518. image: {
  46519. source: "./media/characters/yesenia/front.svg",
  46520. extra: 1479/1474,
  46521. bottom: 233/1712
  46522. }
  46523. },
  46524. },
  46525. [
  46526. {
  46527. name: "Normal",
  46528. height: math.unit(10.4, "feet"),
  46529. default: true
  46530. },
  46531. ]
  46532. ))
  46533. characterMakers.push(() => makeCharacter(
  46534. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46535. {
  46536. normal: {
  46537. height: math.unit(6 + 1/12, "feet"),
  46538. weight: math.unit(180, "lb"),
  46539. name: "Normal",
  46540. image: {
  46541. source: "./media/characters/leanne-lycheborne/normal.svg",
  46542. extra: 1748/1660,
  46543. bottom: 98/1846
  46544. }
  46545. },
  46546. were: {
  46547. height: math.unit(12, "feet"),
  46548. weight: math.unit(1600, "lb"),
  46549. name: "Were",
  46550. image: {
  46551. source: "./media/characters/leanne-lycheborne/were.svg",
  46552. extra: 1485/1432,
  46553. bottom: 66/1551
  46554. }
  46555. },
  46556. },
  46557. [
  46558. {
  46559. name: "Normal",
  46560. height: math.unit(6 + 1/12, "feet"),
  46561. default: true
  46562. },
  46563. ]
  46564. ))
  46565. characterMakers.push(() => makeCharacter(
  46566. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46567. {
  46568. side: {
  46569. height: math.unit(13, "feet"),
  46570. name: "Side",
  46571. image: {
  46572. source: "./media/characters/kira-tyler/side.svg",
  46573. extra: 693/393,
  46574. bottom: 58/751
  46575. }
  46576. },
  46577. },
  46578. [
  46579. {
  46580. name: "Normal",
  46581. height: math.unit(13, "feet"),
  46582. default: true
  46583. },
  46584. ]
  46585. ))
  46586. characterMakers.push(() => makeCharacter(
  46587. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46588. {
  46589. front: {
  46590. height: math.unit(10.3, "feet"),
  46591. weight: math.unit(150, "lb"),
  46592. name: "Front",
  46593. image: {
  46594. source: "./media/characters/blaze/front.svg",
  46595. extra: 1378/1286,
  46596. bottom: 172/1550
  46597. }
  46598. },
  46599. },
  46600. [
  46601. {
  46602. name: "Normal",
  46603. height: math.unit(10.3, "feet"),
  46604. default: true
  46605. },
  46606. ]
  46607. ))
  46608. characterMakers.push(() => makeCharacter(
  46609. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46610. {
  46611. side: {
  46612. height: math.unit(2, "meters"),
  46613. weight: math.unit(400, "kg"),
  46614. name: "Side",
  46615. image: {
  46616. source: "./media/characters/anu/side.svg",
  46617. extra: 506/394,
  46618. bottom: 18/524
  46619. }
  46620. },
  46621. },
  46622. [
  46623. {
  46624. name: "Humanoid",
  46625. height: math.unit(2, "meters")
  46626. },
  46627. {
  46628. name: "Normal",
  46629. height: math.unit(5, "meters"),
  46630. default: true
  46631. },
  46632. ]
  46633. ))
  46634. characterMakers.push(() => makeCharacter(
  46635. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46636. {
  46637. front: {
  46638. height: math.unit(5 + 5/12, "feet"),
  46639. weight: math.unit(170, "lb"),
  46640. name: "Front",
  46641. image: {
  46642. source: "./media/characters/synx-the-lynx/front.svg",
  46643. extra: 1893/1745,
  46644. bottom: 17/1910
  46645. }
  46646. },
  46647. side: {
  46648. height: math.unit(5 + 5/12, "feet"),
  46649. weight: math.unit(170, "lb"),
  46650. name: "Side",
  46651. image: {
  46652. source: "./media/characters/synx-the-lynx/side.svg",
  46653. extra: 1884/1740,
  46654. bottom: 39/1923
  46655. }
  46656. },
  46657. back: {
  46658. height: math.unit(5 + 5/12, "feet"),
  46659. weight: math.unit(170, "lb"),
  46660. name: "Back",
  46661. image: {
  46662. source: "./media/characters/synx-the-lynx/back.svg",
  46663. extra: 1903/1755,
  46664. bottom: 14/1917
  46665. }
  46666. },
  46667. },
  46668. [
  46669. {
  46670. name: "Normal",
  46671. height: math.unit(5 + 5/12, "feet"),
  46672. default: true
  46673. },
  46674. ]
  46675. ))
  46676. characterMakers.push(() => makeCharacter(
  46677. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46678. {
  46679. back: {
  46680. height: math.unit(15, "feet"),
  46681. name: "Back",
  46682. image: {
  46683. source: "./media/characters/nadezda-fex/back.svg",
  46684. extra: 1695/1481,
  46685. bottom: 25/1720
  46686. }
  46687. },
  46688. },
  46689. [
  46690. {
  46691. name: "Normal",
  46692. height: math.unit(15, "feet"),
  46693. default: true
  46694. },
  46695. {
  46696. name: "Macro",
  46697. height: math.unit(2.5, "miles")
  46698. },
  46699. {
  46700. name: "Goddess",
  46701. height: math.unit(2, "multiverses")
  46702. },
  46703. ]
  46704. ))
  46705. characterMakers.push(() => makeCharacter(
  46706. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46707. {
  46708. front: {
  46709. height: math.unit(216, "cm"),
  46710. name: "Front",
  46711. image: {
  46712. source: "./media/characters/lev/front.svg",
  46713. extra: 1728/1670,
  46714. bottom: 82/1810
  46715. }
  46716. },
  46717. back: {
  46718. height: math.unit(216, "cm"),
  46719. name: "Back",
  46720. image: {
  46721. source: "./media/characters/lev/back.svg",
  46722. extra: 1738/1675,
  46723. bottom: 24/1762
  46724. }
  46725. },
  46726. dressed: {
  46727. height: math.unit(216, "cm"),
  46728. name: "Dressed",
  46729. image: {
  46730. source: "./media/characters/lev/dressed.svg",
  46731. extra: 1397/1351,
  46732. bottom: 73/1470
  46733. }
  46734. },
  46735. head: {
  46736. height: math.unit(0.51, "meter"),
  46737. name: "Head",
  46738. image: {
  46739. source: "./media/characters/lev/head.svg"
  46740. }
  46741. },
  46742. },
  46743. [
  46744. {
  46745. name: "Normal",
  46746. height: math.unit(216, "cm"),
  46747. default: true
  46748. },
  46749. {
  46750. name: "Relatively Macro",
  46751. height: math.unit(80, "meters")
  46752. },
  46753. {
  46754. name: "Megamacro",
  46755. height: math.unit(21600, "meters")
  46756. },
  46757. {
  46758. name: "Megamacro+",
  46759. height: math.unit(64800, "meters")
  46760. },
  46761. ]
  46762. ))
  46763. characterMakers.push(() => makeCharacter(
  46764. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46765. {
  46766. front: {
  46767. height: math.unit(2, "meters"),
  46768. weight: math.unit(80, "kg"),
  46769. name: "Front",
  46770. image: {
  46771. source: "./media/characters/moka/front.svg",
  46772. extra: 1337/1255,
  46773. bottom: 58/1395
  46774. }
  46775. },
  46776. },
  46777. [
  46778. {
  46779. name: "Micro",
  46780. height: math.unit(15, "cm")
  46781. },
  46782. {
  46783. name: "Normal",
  46784. height: math.unit(2, "meters"),
  46785. default: true
  46786. },
  46787. {
  46788. name: "Macro",
  46789. height: math.unit(20, "meters"),
  46790. },
  46791. ]
  46792. ))
  46793. characterMakers.push(() => makeCharacter(
  46794. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46795. {
  46796. front: {
  46797. height: math.unit(9, "feet"),
  46798. weight: math.unit(240, "lb"),
  46799. name: "Front",
  46800. image: {
  46801. source: "./media/characters/kuzco/front.svg",
  46802. extra: 1593/1487,
  46803. bottom: 32/1625
  46804. }
  46805. },
  46806. side: {
  46807. height: math.unit(9, "feet"),
  46808. weight: math.unit(240, "lb"),
  46809. name: "Side",
  46810. image: {
  46811. source: "./media/characters/kuzco/side.svg",
  46812. extra: 1575/1485,
  46813. bottom: 30/1605
  46814. }
  46815. },
  46816. back: {
  46817. height: math.unit(9, "feet"),
  46818. weight: math.unit(240, "lb"),
  46819. name: "Back",
  46820. image: {
  46821. source: "./media/characters/kuzco/back.svg",
  46822. extra: 1603/1514,
  46823. bottom: 14/1617
  46824. }
  46825. },
  46826. },
  46827. [
  46828. {
  46829. name: "Normal",
  46830. height: math.unit(9, "feet"),
  46831. default: true
  46832. },
  46833. ]
  46834. ))
  46835. characterMakers.push(() => makeCharacter(
  46836. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46837. {
  46838. side: {
  46839. height: math.unit(2, "meters"),
  46840. weight: math.unit(300, "kg"),
  46841. name: "Side",
  46842. image: {
  46843. source: "./media/characters/ceruleus/side.svg",
  46844. extra: 1068/974,
  46845. bottom: 126/1194
  46846. }
  46847. },
  46848. maw: {
  46849. height: math.unit(0.8125, "meter"),
  46850. name: "Maw",
  46851. image: {
  46852. source: "./media/characters/ceruleus/maw.svg"
  46853. }
  46854. },
  46855. },
  46856. [
  46857. {
  46858. name: "Normal",
  46859. height: math.unit(16, "meters"),
  46860. default: true
  46861. },
  46862. ]
  46863. ))
  46864. characterMakers.push(() => makeCharacter(
  46865. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46866. {
  46867. front: {
  46868. height: math.unit(9, "feet"),
  46869. weight: math.unit(500, "kg"),
  46870. name: "Front",
  46871. image: {
  46872. source: "./media/characters/acouya/front.svg",
  46873. extra: 1660/1473,
  46874. bottom: 28/1688
  46875. }
  46876. },
  46877. },
  46878. [
  46879. {
  46880. name: "Normal",
  46881. height: math.unit(9, "feet"),
  46882. default: true
  46883. },
  46884. ]
  46885. ))
  46886. characterMakers.push(() => makeCharacter(
  46887. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46888. {
  46889. front: {
  46890. height: math.unit(5 + 6/12, "feet"),
  46891. weight: math.unit(195, "lb"),
  46892. name: "Front",
  46893. image: {
  46894. source: "./media/characters/vant/front.svg",
  46895. extra: 1396/1320,
  46896. bottom: 20/1416
  46897. }
  46898. },
  46899. back: {
  46900. height: math.unit(5 + 6/12, "feet"),
  46901. weight: math.unit(195, "lb"),
  46902. name: "Back",
  46903. image: {
  46904. source: "./media/characters/vant/back.svg",
  46905. extra: 1396/1320,
  46906. bottom: 20/1416
  46907. }
  46908. },
  46909. maw: {
  46910. height: math.unit(0.75, "feet"),
  46911. name: "Maw",
  46912. image: {
  46913. source: "./media/characters/vant/maw.svg"
  46914. }
  46915. },
  46916. paw: {
  46917. height: math.unit(1.07, "feet"),
  46918. name: "Paw",
  46919. image: {
  46920. source: "./media/characters/vant/paw.svg"
  46921. }
  46922. },
  46923. },
  46924. [
  46925. {
  46926. name: "Micro",
  46927. height: math.unit(0.25, "inches")
  46928. },
  46929. {
  46930. name: "Normal",
  46931. height: math.unit(5 + 6/12, "feet"),
  46932. default: true
  46933. },
  46934. {
  46935. name: "Macro",
  46936. height: math.unit(75, "feet")
  46937. },
  46938. ]
  46939. ))
  46940. characterMakers.push(() => makeCharacter(
  46941. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46942. {
  46943. front: {
  46944. height: math.unit(30, "meters"),
  46945. weight: math.unit(363, "tons"),
  46946. name: "Front",
  46947. image: {
  46948. source: "./media/characters/ahra/front.svg",
  46949. extra: 1914/1814,
  46950. bottom: 46/1960
  46951. }
  46952. },
  46953. },
  46954. [
  46955. {
  46956. name: "Macro",
  46957. height: math.unit(30, "meters"),
  46958. default: true
  46959. },
  46960. ]
  46961. ))
  46962. characterMakers.push(() => makeCharacter(
  46963. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46964. {
  46965. undressed: {
  46966. height: math.unit(2, "m"),
  46967. weight: math.unit(250, "kg"),
  46968. name: "Undressed",
  46969. image: {
  46970. source: "./media/characters/coriander/undressed.svg",
  46971. extra: 1757/1606,
  46972. bottom: 107/1864
  46973. }
  46974. },
  46975. dressed: {
  46976. height: math.unit(2, "m"),
  46977. weight: math.unit(250, "kg"),
  46978. name: "Dressed",
  46979. image: {
  46980. source: "./media/characters/coriander/dressed.svg",
  46981. extra: 1757/1606,
  46982. bottom: 107/1864
  46983. }
  46984. },
  46985. },
  46986. [
  46987. {
  46988. name: "Normal",
  46989. height: math.unit(4, "meters"),
  46990. default: true
  46991. },
  46992. {
  46993. name: "XL",
  46994. height: math.unit(6, "meters")
  46995. },
  46996. {
  46997. name: "XXL",
  46998. height: math.unit(8, "meters")
  46999. },
  47000. ]
  47001. ))
  47002. characterMakers.push(() => makeCharacter(
  47003. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47004. {
  47005. front: {
  47006. height: math.unit(6, "feet"),
  47007. name: "Front",
  47008. image: {
  47009. source: "./media/characters/syrinx/front.svg",
  47010. extra: 1557/1259,
  47011. bottom: 171/1728
  47012. }
  47013. },
  47014. },
  47015. [
  47016. {
  47017. name: "Normal",
  47018. height: math.unit(6 + 3/12, "feet"),
  47019. default: true
  47020. },
  47021. ]
  47022. ))
  47023. characterMakers.push(() => makeCharacter(
  47024. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47025. {
  47026. front: {
  47027. height: math.unit(11 + 6/12, "feet"),
  47028. weight: math.unit(1.5, "tons"),
  47029. name: "Front",
  47030. image: {
  47031. source: "./media/characters/bor/front.svg",
  47032. extra: 1189/1109,
  47033. bottom: 170/1359
  47034. }
  47035. },
  47036. },
  47037. [
  47038. {
  47039. name: "Normal",
  47040. height: math.unit(11 + 6/12, "feet"),
  47041. default: true
  47042. },
  47043. {
  47044. name: "Macro",
  47045. height: math.unit(32 + 9/12, "feet")
  47046. },
  47047. ]
  47048. ))
  47049. characterMakers.push(() => makeCharacter(
  47050. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47051. {
  47052. anthro: {
  47053. height: math.unit(9, "feet"),
  47054. weight: math.unit(2076, "lb"),
  47055. name: "Anthro",
  47056. image: {
  47057. source: "./media/characters/abacus/anthro.svg",
  47058. extra: 1540/1494,
  47059. bottom: 233/1773
  47060. }
  47061. },
  47062. pigeon: {
  47063. height: math.unit(1, "feet"),
  47064. name: "Pigeon",
  47065. image: {
  47066. source: "./media/characters/abacus/pigeon.svg",
  47067. extra: 528/525,
  47068. bottom: 46/574
  47069. }
  47070. },
  47071. },
  47072. [
  47073. {
  47074. name: "Normal",
  47075. height: math.unit(9, "feet"),
  47076. default: true
  47077. },
  47078. ]
  47079. ))
  47080. characterMakers.push(() => makeCharacter(
  47081. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47082. {
  47083. side: {
  47084. height: math.unit(6, "feet"),
  47085. name: "Side",
  47086. image: {
  47087. source: "./media/characters/delkhan/side.svg",
  47088. extra: 1884/1786,
  47089. bottom: 308/2192
  47090. }
  47091. },
  47092. head: {
  47093. height: math.unit(3.38, "feet"),
  47094. name: "Head",
  47095. image: {
  47096. source: "./media/characters/delkhan/head.svg"
  47097. }
  47098. },
  47099. },
  47100. [
  47101. {
  47102. name: "Normal",
  47103. height: math.unit(72, "feet"),
  47104. default: true
  47105. },
  47106. {
  47107. name: "Giant",
  47108. height: math.unit(172, "feet")
  47109. },
  47110. ]
  47111. ))
  47112. characterMakers.push(() => makeCharacter(
  47113. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47114. {
  47115. standing: {
  47116. height: math.unit(6, "feet"),
  47117. name: "Standing",
  47118. image: {
  47119. source: "./media/characters/euchidat/standing.svg",
  47120. extra: 1612/1553,
  47121. bottom: 116/1728
  47122. }
  47123. },
  47124. leaning: {
  47125. height: math.unit(6, "feet"),
  47126. name: "Leaning",
  47127. image: {
  47128. source: "./media/characters/euchidat/leaning.svg",
  47129. extra: 1719/1674,
  47130. bottom: 27/1746
  47131. }
  47132. },
  47133. },
  47134. [
  47135. {
  47136. name: "Normal",
  47137. height: math.unit(175, "feet"),
  47138. default: true
  47139. },
  47140. {
  47141. name: "Megamacro",
  47142. height: math.unit(190, "miles")
  47143. },
  47144. {
  47145. name: "Gigamacro",
  47146. height: math.unit(190000, "miles")
  47147. },
  47148. ]
  47149. ))
  47150. characterMakers.push(() => makeCharacter(
  47151. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47152. {
  47153. front: {
  47154. height: math.unit(6, "feet"),
  47155. weight: math.unit(150, "lb"),
  47156. name: "Front",
  47157. image: {
  47158. source: "./media/characters/rebecca-stack/front.svg",
  47159. extra: 1256/1201,
  47160. bottom: 18/1274
  47161. }
  47162. },
  47163. },
  47164. [
  47165. {
  47166. name: "Normal",
  47167. height: math.unit(5 + 8/12, "feet"),
  47168. default: true
  47169. },
  47170. {
  47171. name: "Demolitionist",
  47172. height: math.unit(200, "feet")
  47173. },
  47174. {
  47175. name: "Out of Control",
  47176. height: math.unit(2, "miles")
  47177. },
  47178. {
  47179. name: "Giga",
  47180. height: math.unit(7200, "miles")
  47181. },
  47182. ]
  47183. ))
  47184. characterMakers.push(() => makeCharacter(
  47185. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47186. {
  47187. front: {
  47188. height: math.unit(6, "feet"),
  47189. weight: math.unit(150, "lb"),
  47190. name: "Front",
  47191. image: {
  47192. source: "./media/characters/jenny-cartwright/front.svg",
  47193. extra: 1384/1376,
  47194. bottom: 58/1442
  47195. }
  47196. },
  47197. },
  47198. [
  47199. {
  47200. name: "Normal",
  47201. height: math.unit(6 + 7/12, "feet"),
  47202. default: true
  47203. },
  47204. {
  47205. name: "Librarian",
  47206. height: math.unit(55, "feet")
  47207. },
  47208. {
  47209. name: "Sightseer",
  47210. height: math.unit(50, "miles")
  47211. },
  47212. {
  47213. name: "Giga",
  47214. height: math.unit(30000, "miles")
  47215. },
  47216. ]
  47217. ))
  47218. characterMakers.push(() => makeCharacter(
  47219. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47220. {
  47221. nude: {
  47222. height: math.unit(8, "feet"),
  47223. weight: math.unit(225, "lb"),
  47224. name: "Nude",
  47225. image: {
  47226. source: "./media/characters/marvy/nude.svg",
  47227. extra: 1900/1683,
  47228. bottom: 89/1989
  47229. }
  47230. },
  47231. dressed: {
  47232. height: math.unit(8, "feet"),
  47233. weight: math.unit(225, "lb"),
  47234. name: "Dressed",
  47235. image: {
  47236. source: "./media/characters/marvy/dressed.svg",
  47237. extra: 1900/1683,
  47238. bottom: 89/1989
  47239. }
  47240. },
  47241. head: {
  47242. height: math.unit(2.85, "feet"),
  47243. name: "Head",
  47244. image: {
  47245. source: "./media/characters/marvy/head.svg"
  47246. }
  47247. },
  47248. },
  47249. [
  47250. {
  47251. name: "Normal",
  47252. height: math.unit(8, "feet"),
  47253. default: true
  47254. },
  47255. ]
  47256. ))
  47257. characterMakers.push(() => makeCharacter(
  47258. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47259. {
  47260. front: {
  47261. height: math.unit(8, "feet"),
  47262. weight: math.unit(250, "lb"),
  47263. name: "Front",
  47264. image: {
  47265. source: "./media/characters/leah/front.svg",
  47266. extra: 1257/1149,
  47267. bottom: 109/1366
  47268. }
  47269. },
  47270. },
  47271. [
  47272. {
  47273. name: "Normal",
  47274. height: math.unit(8, "feet"),
  47275. default: true
  47276. },
  47277. {
  47278. name: "Minimacro",
  47279. height: math.unit(40, "feet")
  47280. },
  47281. {
  47282. name: "Macro",
  47283. height: math.unit(124, "feet")
  47284. },
  47285. {
  47286. name: "Megamacro",
  47287. height: math.unit(850, "feet")
  47288. },
  47289. ]
  47290. ))
  47291. characterMakers.push(() => makeCharacter(
  47292. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47293. {
  47294. side: {
  47295. height: math.unit(13 + 6/12, "feet"),
  47296. weight: math.unit(3200, "lb"),
  47297. name: "Side",
  47298. image: {
  47299. source: "./media/characters/alvir/side.svg",
  47300. extra: 896/589,
  47301. bottom: 26/922
  47302. }
  47303. },
  47304. },
  47305. [
  47306. {
  47307. name: "Normal",
  47308. height: math.unit(13 + 6/12, "feet"),
  47309. default: true
  47310. },
  47311. ]
  47312. ))
  47313. characterMakers.push(() => makeCharacter(
  47314. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47315. {
  47316. front: {
  47317. height: math.unit(5 + 4/12, "feet"),
  47318. weight: math.unit(236, "lb"),
  47319. name: "Front",
  47320. image: {
  47321. source: "./media/characters/zaina-khalil/front.svg",
  47322. extra: 1533/1485,
  47323. bottom: 94/1627
  47324. }
  47325. },
  47326. side: {
  47327. height: math.unit(5 + 4/12, "feet"),
  47328. weight: math.unit(236, "lb"),
  47329. name: "Side",
  47330. image: {
  47331. source: "./media/characters/zaina-khalil/side.svg",
  47332. extra: 1537/1498,
  47333. bottom: 66/1603
  47334. }
  47335. },
  47336. back: {
  47337. height: math.unit(5 + 4/12, "feet"),
  47338. weight: math.unit(236, "lb"),
  47339. name: "Back",
  47340. image: {
  47341. source: "./media/characters/zaina-khalil/back.svg",
  47342. extra: 1546/1494,
  47343. bottom: 89/1635
  47344. }
  47345. },
  47346. },
  47347. [
  47348. {
  47349. name: "Normal",
  47350. height: math.unit(5 + 4/12, "feet"),
  47351. default: true
  47352. },
  47353. ]
  47354. ))
  47355. characterMakers.push(() => makeCharacter(
  47356. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47357. {
  47358. side: {
  47359. height: math.unit(12, "feet"),
  47360. weight: math.unit(4000, "lb"),
  47361. name: "Side",
  47362. image: {
  47363. source: "./media/characters/terry/side.svg",
  47364. extra: 1518/1439,
  47365. bottom: 149/1667
  47366. }
  47367. },
  47368. },
  47369. [
  47370. {
  47371. name: "Normal",
  47372. height: math.unit(12, "feet"),
  47373. default: true
  47374. },
  47375. ]
  47376. ))
  47377. characterMakers.push(() => makeCharacter(
  47378. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47379. {
  47380. front: {
  47381. height: math.unit(12, "feet"),
  47382. weight: math.unit(1500, "lb"),
  47383. name: "Front",
  47384. image: {
  47385. source: "./media/characters/kahea/front.svg",
  47386. extra: 1722/1617,
  47387. bottom: 179/1901
  47388. }
  47389. },
  47390. },
  47391. [
  47392. {
  47393. name: "Normal",
  47394. height: math.unit(12, "feet"),
  47395. default: true
  47396. },
  47397. ]
  47398. ))
  47399. characterMakers.push(() => makeCharacter(
  47400. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47401. {
  47402. demonFront: {
  47403. height: math.unit(36, "feet"),
  47404. name: "Front",
  47405. image: {
  47406. source: "./media/characters/alex-xuria/demon-front.svg",
  47407. extra: 1705/1673,
  47408. bottom: 198/1903
  47409. },
  47410. form: "demon",
  47411. default: true
  47412. },
  47413. demonBack: {
  47414. height: math.unit(36, "feet"),
  47415. name: "Back",
  47416. image: {
  47417. source: "./media/characters/alex-xuria/demon-back.svg",
  47418. extra: 1725/1693,
  47419. bottom: 70/1795
  47420. },
  47421. form: "demon"
  47422. },
  47423. demonHead: {
  47424. height: math.unit(2.14, "meters"),
  47425. name: "Head",
  47426. image: {
  47427. source: "./media/characters/alex-xuria/demon-head.svg"
  47428. },
  47429. form: "demon"
  47430. },
  47431. demonHand: {
  47432. height: math.unit(1.61, "meters"),
  47433. name: "Hand",
  47434. image: {
  47435. source: "./media/characters/alex-xuria/demon-hand.svg"
  47436. },
  47437. form: "demon"
  47438. },
  47439. demonPaw: {
  47440. height: math.unit(1.35, "meters"),
  47441. name: "Paw",
  47442. image: {
  47443. source: "./media/characters/alex-xuria/demon-paw.svg"
  47444. },
  47445. form: "demon"
  47446. },
  47447. demonFoot: {
  47448. height: math.unit(2.2, "meters"),
  47449. name: "Foot",
  47450. image: {
  47451. source: "./media/characters/alex-xuria/demon-foot.svg"
  47452. },
  47453. form: "demon"
  47454. },
  47455. demonCock: {
  47456. height: math.unit(1.74, "meters"),
  47457. name: "Cock",
  47458. image: {
  47459. source: "./media/characters/alex-xuria/demon-cock.svg"
  47460. },
  47461. form: "demon"
  47462. },
  47463. demonTailClosed: {
  47464. height: math.unit(1.47, "meters"),
  47465. name: "Tail (Closed)",
  47466. image: {
  47467. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47468. },
  47469. form: "demon"
  47470. },
  47471. demonTailOpen: {
  47472. height: math.unit(2.85, "meters"),
  47473. name: "Tail (Open)",
  47474. image: {
  47475. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47476. },
  47477. form: "demon"
  47478. },
  47479. incubusFront: {
  47480. height: math.unit(12, "feet"),
  47481. name: "Front",
  47482. image: {
  47483. source: "./media/characters/alex-xuria/incubus-front.svg",
  47484. extra: 1754/1677,
  47485. bottom: 125/1879
  47486. },
  47487. form: "incubus",
  47488. default: true
  47489. },
  47490. incubusBack: {
  47491. height: math.unit(12, "feet"),
  47492. name: "Back",
  47493. image: {
  47494. source: "./media/characters/alex-xuria/incubus-back.svg",
  47495. extra: 1702/1647,
  47496. bottom: 30/1732
  47497. },
  47498. form: "incubus"
  47499. },
  47500. incubusHead: {
  47501. height: math.unit(3.45, "feet"),
  47502. name: "Head",
  47503. image: {
  47504. source: "./media/characters/alex-xuria/incubus-head.svg"
  47505. },
  47506. form: "incubus"
  47507. },
  47508. rabbitFront: {
  47509. height: math.unit(6, "feet"),
  47510. name: "Front",
  47511. image: {
  47512. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47513. extra: 1369/1349,
  47514. bottom: 45/1414
  47515. },
  47516. form: "rabbit",
  47517. default: true
  47518. },
  47519. rabbitSide: {
  47520. height: math.unit(6, "feet"),
  47521. name: "Side",
  47522. image: {
  47523. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47524. extra: 1370/1356,
  47525. bottom: 37/1407
  47526. },
  47527. form: "rabbit"
  47528. },
  47529. rabbitBack: {
  47530. height: math.unit(6, "feet"),
  47531. name: "Back",
  47532. image: {
  47533. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47534. extra: 1375/1358,
  47535. bottom: 43/1418
  47536. },
  47537. form: "rabbit"
  47538. },
  47539. },
  47540. [
  47541. {
  47542. name: "Normal",
  47543. height: math.unit(6, "feet"),
  47544. default: true,
  47545. form: "rabbit"
  47546. },
  47547. {
  47548. name: "Incubus",
  47549. height: math.unit(12, "feet"),
  47550. default: true,
  47551. form: "incubus"
  47552. },
  47553. {
  47554. name: "Demon",
  47555. height: math.unit(36, "feet"),
  47556. default: true,
  47557. form: "demon"
  47558. }
  47559. ],
  47560. {
  47561. "demon": {
  47562. name: "Demon",
  47563. default: true
  47564. },
  47565. "incubus": {
  47566. name: "Incubus",
  47567. },
  47568. "rabbit": {
  47569. name: "Rabbit"
  47570. }
  47571. }
  47572. ))
  47573. characterMakers.push(() => makeCharacter(
  47574. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47575. {
  47576. front: {
  47577. height: math.unit(7 + 5/12, "feet"),
  47578. weight: math.unit(510, "lb"),
  47579. name: "Front",
  47580. image: {
  47581. source: "./media/characters/syrup/front.svg",
  47582. extra: 932/916,
  47583. bottom: 26/958
  47584. }
  47585. },
  47586. },
  47587. [
  47588. {
  47589. name: "Normal",
  47590. height: math.unit(7 + 5/12, "feet"),
  47591. default: true
  47592. },
  47593. {
  47594. name: "Big",
  47595. height: math.unit(50, "feet")
  47596. },
  47597. {
  47598. name: "Macro",
  47599. height: math.unit(300, "feet")
  47600. },
  47601. {
  47602. name: "Megamacro",
  47603. height: math.unit(1, "mile")
  47604. },
  47605. ]
  47606. ))
  47607. characterMakers.push(() => makeCharacter(
  47608. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47609. {
  47610. front: {
  47611. height: math.unit(6 + 9/12, "feet"),
  47612. name: "Front",
  47613. image: {
  47614. source: "./media/characters/zeimne/front.svg",
  47615. extra: 1969/1806,
  47616. bottom: 53/2022
  47617. }
  47618. },
  47619. },
  47620. [
  47621. {
  47622. name: "Normal",
  47623. height: math.unit(6 + 9/12, "feet"),
  47624. default: true
  47625. },
  47626. {
  47627. name: "Giant",
  47628. height: math.unit(550, "feet")
  47629. },
  47630. {
  47631. name: "Mega",
  47632. height: math.unit(3, "miles")
  47633. },
  47634. {
  47635. name: "Giga",
  47636. height: math.unit(250, "miles")
  47637. },
  47638. {
  47639. name: "Tera",
  47640. height: math.unit(1, "AU")
  47641. },
  47642. ]
  47643. ))
  47644. characterMakers.push(() => makeCharacter(
  47645. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47646. {
  47647. front: {
  47648. height: math.unit(5 + 2/12, "feet"),
  47649. name: "Front",
  47650. image: {
  47651. source: "./media/characters/grar/front.svg",
  47652. extra: 1331/1119,
  47653. bottom: 60/1391
  47654. }
  47655. },
  47656. back: {
  47657. height: math.unit(5 + 2/12, "feet"),
  47658. name: "Back",
  47659. image: {
  47660. source: "./media/characters/grar/back.svg",
  47661. extra: 1385/1169,
  47662. bottom: 23/1408
  47663. }
  47664. },
  47665. },
  47666. [
  47667. {
  47668. name: "Normal",
  47669. height: math.unit(5 + 2/12, "feet"),
  47670. default: true
  47671. },
  47672. ]
  47673. ))
  47674. characterMakers.push(() => makeCharacter(
  47675. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47676. {
  47677. front: {
  47678. height: math.unit(13 + 7/12, "feet"),
  47679. weight: math.unit(2200, "lb"),
  47680. name: "Front",
  47681. image: {
  47682. source: "./media/characters/endraya/front.svg",
  47683. extra: 1289/1215,
  47684. bottom: 50/1339
  47685. }
  47686. },
  47687. nude: {
  47688. height: math.unit(13 + 7/12, "feet"),
  47689. weight: math.unit(2200, "lb"),
  47690. name: "Nude",
  47691. image: {
  47692. source: "./media/characters/endraya/nude.svg",
  47693. extra: 1247/1171,
  47694. bottom: 40/1287
  47695. }
  47696. },
  47697. head: {
  47698. height: math.unit(2.6, "feet"),
  47699. name: "Head",
  47700. image: {
  47701. source: "./media/characters/endraya/head.svg"
  47702. }
  47703. },
  47704. slit: {
  47705. height: math.unit(3.4, "feet"),
  47706. name: "Slit",
  47707. image: {
  47708. source: "./media/characters/endraya/slit.svg"
  47709. }
  47710. },
  47711. },
  47712. [
  47713. {
  47714. name: "Normal",
  47715. height: math.unit(13 + 7/12, "feet"),
  47716. default: true
  47717. },
  47718. {
  47719. name: "Macro",
  47720. height: math.unit(200, "feet")
  47721. },
  47722. ]
  47723. ))
  47724. characterMakers.push(() => makeCharacter(
  47725. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47726. {
  47727. front: {
  47728. height: math.unit(1.81, "meters"),
  47729. weight: math.unit(69, "kg"),
  47730. name: "Front",
  47731. image: {
  47732. source: "./media/characters/rodryana/front.svg",
  47733. extra: 2002/1921,
  47734. bottom: 53/2055
  47735. }
  47736. },
  47737. back: {
  47738. height: math.unit(1.81, "meters"),
  47739. weight: math.unit(69, "kg"),
  47740. name: "Back",
  47741. image: {
  47742. source: "./media/characters/rodryana/back.svg",
  47743. extra: 1993/1926,
  47744. bottom: 48/2041
  47745. }
  47746. },
  47747. maw: {
  47748. height: math.unit(0.19769417475, "meters"),
  47749. name: "Maw",
  47750. image: {
  47751. source: "./media/characters/rodryana/maw.svg"
  47752. }
  47753. },
  47754. slit: {
  47755. height: math.unit(0.31631067961, "meters"),
  47756. name: "Slit",
  47757. image: {
  47758. source: "./media/characters/rodryana/slit.svg"
  47759. }
  47760. },
  47761. },
  47762. [
  47763. {
  47764. name: "Normal",
  47765. height: math.unit(1.81, "meters")
  47766. },
  47767. {
  47768. name: "Mini Macro",
  47769. height: math.unit(181, "meters")
  47770. },
  47771. {
  47772. name: "Macro",
  47773. height: math.unit(452, "meters"),
  47774. default: true
  47775. },
  47776. {
  47777. name: "Mega Macro",
  47778. height: math.unit(1.375, "km")
  47779. },
  47780. {
  47781. name: "Giga Macro",
  47782. height: math.unit(13.575, "km")
  47783. },
  47784. ]
  47785. ))
  47786. characterMakers.push(() => makeCharacter(
  47787. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47788. {
  47789. front: {
  47790. height: math.unit(6, "feet"),
  47791. weight: math.unit(1000, "lb"),
  47792. name: "Front",
  47793. image: {
  47794. source: "./media/characters/asaya/front.svg",
  47795. extra: 1460/1200,
  47796. bottom: 71/1531
  47797. }
  47798. },
  47799. },
  47800. [
  47801. {
  47802. name: "Normal",
  47803. height: math.unit(8, "km"),
  47804. default: true
  47805. },
  47806. ]
  47807. ))
  47808. characterMakers.push(() => makeCharacter(
  47809. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47810. {
  47811. front: {
  47812. height: math.unit(3.5, "meters"),
  47813. name: "Front",
  47814. image: {
  47815. source: "./media/characters/sarzu-and-israz/front.svg",
  47816. extra: 1570/1558,
  47817. bottom: 150/1720
  47818. },
  47819. },
  47820. back: {
  47821. height: math.unit(3.5, "meters"),
  47822. name: "Back",
  47823. image: {
  47824. source: "./media/characters/sarzu-and-israz/back.svg",
  47825. extra: 1523/1509,
  47826. bottom: 132/1655
  47827. },
  47828. },
  47829. frontFemale: {
  47830. height: math.unit(3.5, "meters"),
  47831. name: "Front (Female)",
  47832. image: {
  47833. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47834. extra: 1570/1558,
  47835. bottom: 150/1720
  47836. },
  47837. },
  47838. frontHerm: {
  47839. height: math.unit(3.5, "meters"),
  47840. name: "Front (Herm)",
  47841. image: {
  47842. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47843. extra: 1570/1558,
  47844. bottom: 150/1720
  47845. },
  47846. },
  47847. },
  47848. [
  47849. {
  47850. name: "Normal",
  47851. height: math.unit(3.5, "meters"),
  47852. default: true,
  47853. },
  47854. {
  47855. name: "Macro",
  47856. height: math.unit(65.5, "meters"),
  47857. },
  47858. ],
  47859. ))
  47860. characterMakers.push(() => makeCharacter(
  47861. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47862. {
  47863. front: {
  47864. height: math.unit(6, "feet"),
  47865. weight: math.unit(250, "lb"),
  47866. name: "Front",
  47867. image: {
  47868. source: "./media/characters/zenimma/front.svg",
  47869. extra: 1346/1320,
  47870. bottom: 58/1404
  47871. }
  47872. },
  47873. back: {
  47874. height: math.unit(6, "feet"),
  47875. weight: math.unit(250, "lb"),
  47876. name: "Back",
  47877. image: {
  47878. source: "./media/characters/zenimma/back.svg",
  47879. extra: 1324/1308,
  47880. bottom: 44/1368
  47881. }
  47882. },
  47883. dick: {
  47884. height: math.unit(1.44, "feet"),
  47885. name: "Dick",
  47886. image: {
  47887. source: "./media/characters/zenimma/dick.svg"
  47888. }
  47889. },
  47890. },
  47891. [
  47892. {
  47893. name: "Canon Height",
  47894. height: math.unit(66, "miles"),
  47895. default: true
  47896. },
  47897. ]
  47898. ))
  47899. characterMakers.push(() => makeCharacter(
  47900. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47901. {
  47902. nude: {
  47903. height: math.unit(6, "feet"),
  47904. weight: math.unit(150, "lb"),
  47905. name: "Nude",
  47906. image: {
  47907. source: "./media/characters/shavon/nude.svg",
  47908. extra: 1242/1096,
  47909. bottom: 98/1340
  47910. }
  47911. },
  47912. dressed: {
  47913. height: math.unit(6, "feet"),
  47914. weight: math.unit(150, "lb"),
  47915. name: "Dressed",
  47916. image: {
  47917. source: "./media/characters/shavon/dressed.svg",
  47918. extra: 1242/1096,
  47919. bottom: 98/1340
  47920. }
  47921. },
  47922. },
  47923. [
  47924. {
  47925. name: "Macro",
  47926. height: math.unit(255, "feet"),
  47927. default: true
  47928. },
  47929. ]
  47930. ))
  47931. characterMakers.push(() => makeCharacter(
  47932. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47933. {
  47934. front: {
  47935. height: math.unit(6, "feet"),
  47936. name: "Front",
  47937. image: {
  47938. source: "./media/characters/steph/front.svg",
  47939. extra: 1430/1330,
  47940. bottom: 54/1484
  47941. }
  47942. },
  47943. },
  47944. [
  47945. {
  47946. name: "Normal",
  47947. height: math.unit(6, "feet"),
  47948. default: true
  47949. },
  47950. ]
  47951. ))
  47952. characterMakers.push(() => makeCharacter(
  47953. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47954. {
  47955. front: {
  47956. height: math.unit(9, "feet"),
  47957. weight: math.unit(400, "lb"),
  47958. name: "Front",
  47959. image: {
  47960. source: "./media/characters/kil'aman/front.svg",
  47961. extra: 1210/1159,
  47962. bottom: 109/1319
  47963. }
  47964. },
  47965. head: {
  47966. height: math.unit(2.14, "feet"),
  47967. name: "Head",
  47968. image: {
  47969. source: "./media/characters/kil'aman/head.svg"
  47970. }
  47971. },
  47972. maw: {
  47973. height: math.unit(1.21, "feet"),
  47974. name: "Maw",
  47975. image: {
  47976. source: "./media/characters/kil'aman/maw.svg"
  47977. }
  47978. },
  47979. foot: {
  47980. height: math.unit(1.7, "feet"),
  47981. name: "Foot",
  47982. image: {
  47983. source: "./media/characters/kil'aman/foot.svg"
  47984. }
  47985. },
  47986. dick: {
  47987. height: math.unit(2.1, "feet"),
  47988. name: "Dick",
  47989. image: {
  47990. source: "./media/characters/kil'aman/dick.svg"
  47991. }
  47992. },
  47993. },
  47994. [
  47995. {
  47996. name: "Normal",
  47997. height: math.unit(9, "feet")
  47998. },
  47999. {
  48000. name: "Canon Height",
  48001. height: math.unit(10, "miles"),
  48002. default: true
  48003. },
  48004. {
  48005. name: "Maximum",
  48006. height: math.unit(6e9, "miles")
  48007. },
  48008. ]
  48009. ))
  48010. characterMakers.push(() => makeCharacter(
  48011. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48012. {
  48013. front: {
  48014. height: math.unit(90, "feet"),
  48015. weight: math.unit(675000, "lb"),
  48016. name: "Front",
  48017. image: {
  48018. source: "./media/characters/qadan/front.svg",
  48019. extra: 1012/1004,
  48020. bottom: 78/1090
  48021. }
  48022. },
  48023. back: {
  48024. height: math.unit(90, "feet"),
  48025. weight: math.unit(675000, "lb"),
  48026. name: "Back",
  48027. image: {
  48028. source: "./media/characters/qadan/back.svg",
  48029. extra: 1042/1031,
  48030. bottom: 55/1097
  48031. }
  48032. },
  48033. armored: {
  48034. height: math.unit(90, "feet"),
  48035. weight: math.unit(675000, "lb"),
  48036. name: "Armored",
  48037. image: {
  48038. source: "./media/characters/qadan/armored.svg",
  48039. extra: 1047/1037,
  48040. bottom: 48/1095
  48041. }
  48042. },
  48043. },
  48044. [
  48045. {
  48046. name: "Normal",
  48047. height: math.unit(90, "feet"),
  48048. default: true
  48049. },
  48050. ]
  48051. ))
  48052. characterMakers.push(() => makeCharacter(
  48053. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48054. {
  48055. front: {
  48056. height: math.unit(6, "feet"),
  48057. weight: math.unit(225, "lb"),
  48058. name: "Front",
  48059. image: {
  48060. source: "./media/characters/brooke/front.svg",
  48061. extra: 1050/1010,
  48062. bottom: 66/1116
  48063. }
  48064. },
  48065. back: {
  48066. height: math.unit(6, "feet"),
  48067. weight: math.unit(225, "lb"),
  48068. name: "Back",
  48069. image: {
  48070. source: "./media/characters/brooke/back.svg",
  48071. extra: 1053/1013,
  48072. bottom: 41/1094
  48073. }
  48074. },
  48075. dressed: {
  48076. height: math.unit(6, "feet"),
  48077. weight: math.unit(225, "lb"),
  48078. name: "Dressed",
  48079. image: {
  48080. source: "./media/characters/brooke/dressed.svg",
  48081. extra: 1050/1010,
  48082. bottom: 66/1116
  48083. }
  48084. },
  48085. },
  48086. [
  48087. {
  48088. name: "Canon Height",
  48089. height: math.unit(500, "miles"),
  48090. default: true
  48091. },
  48092. ]
  48093. ))
  48094. characterMakers.push(() => makeCharacter(
  48095. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48096. {
  48097. front: {
  48098. height: math.unit(6 + 2/12, "feet"),
  48099. weight: math.unit(210, "lb"),
  48100. name: "Front",
  48101. image: {
  48102. source: "./media/characters/wubs/front.svg",
  48103. extra: 1345/1325,
  48104. bottom: 70/1415
  48105. }
  48106. },
  48107. back: {
  48108. height: math.unit(6 + 2/12, "feet"),
  48109. weight: math.unit(210, "lb"),
  48110. name: "Back",
  48111. image: {
  48112. source: "./media/characters/wubs/back.svg",
  48113. extra: 1296/1275,
  48114. bottom: 58/1354
  48115. }
  48116. },
  48117. },
  48118. [
  48119. {
  48120. name: "Normal",
  48121. height: math.unit(6 + 2/12, "feet"),
  48122. default: true
  48123. },
  48124. {
  48125. name: "Macro",
  48126. height: math.unit(1000, "feet")
  48127. },
  48128. {
  48129. name: "Megamacro",
  48130. height: math.unit(1, "mile")
  48131. },
  48132. ]
  48133. ))
  48134. characterMakers.push(() => makeCharacter(
  48135. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48136. {
  48137. front: {
  48138. height: math.unit(4, "feet"),
  48139. weight: math.unit(120, "lb"),
  48140. name: "Front",
  48141. image: {
  48142. source: "./media/characters/blue/front.svg",
  48143. extra: 1636/1525,
  48144. bottom: 43/1679
  48145. }
  48146. },
  48147. back: {
  48148. height: math.unit(4, "feet"),
  48149. weight: math.unit(120, "lb"),
  48150. name: "Back",
  48151. image: {
  48152. source: "./media/characters/blue/back.svg",
  48153. extra: 1660/1560,
  48154. bottom: 57/1717
  48155. }
  48156. },
  48157. paws: {
  48158. height: math.unit(0.826, "feet"),
  48159. name: "Paws",
  48160. image: {
  48161. source: "./media/characters/blue/paws.svg"
  48162. }
  48163. },
  48164. },
  48165. [
  48166. {
  48167. name: "Micro",
  48168. height: math.unit(3, "inches")
  48169. },
  48170. {
  48171. name: "Normal",
  48172. height: math.unit(4, "feet"),
  48173. default: true
  48174. },
  48175. {
  48176. name: "Femenine Form",
  48177. height: math.unit(14, "feet")
  48178. },
  48179. {
  48180. name: "Werebat Form",
  48181. height: math.unit(18, "feet")
  48182. },
  48183. ]
  48184. ))
  48185. characterMakers.push(() => makeCharacter(
  48186. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48187. {
  48188. female: {
  48189. height: math.unit(7 + 4/12, "feet"),
  48190. weight: math.unit(243, "lb"),
  48191. name: "Female",
  48192. image: {
  48193. source: "./media/characters/kaya/female.svg",
  48194. extra: 975/898,
  48195. bottom: 34/1009
  48196. }
  48197. },
  48198. herm: {
  48199. height: math.unit(7 + 4/12, "feet"),
  48200. weight: math.unit(243, "lb"),
  48201. name: "Herm",
  48202. image: {
  48203. source: "./media/characters/kaya/herm.svg",
  48204. extra: 975/898,
  48205. bottom: 34/1009
  48206. }
  48207. },
  48208. },
  48209. [
  48210. {
  48211. name: "Normal",
  48212. height: math.unit(7 + 4/12, "feet"),
  48213. default: true
  48214. },
  48215. ]
  48216. ))
  48217. characterMakers.push(() => makeCharacter(
  48218. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48219. {
  48220. female: {
  48221. height: math.unit(9 + 4/12, "feet"),
  48222. weight: math.unit(398, "lb"),
  48223. name: "Female",
  48224. image: {
  48225. source: "./media/characters/kassandra/female.svg",
  48226. extra: 908/839,
  48227. bottom: 61/969
  48228. }
  48229. },
  48230. intersex: {
  48231. height: math.unit(9 + 4/12, "feet"),
  48232. weight: math.unit(398, "lb"),
  48233. name: "Intersex",
  48234. image: {
  48235. source: "./media/characters/kassandra/intersex.svg",
  48236. extra: 908/839,
  48237. bottom: 61/969
  48238. }
  48239. },
  48240. },
  48241. [
  48242. {
  48243. name: "Normal",
  48244. height: math.unit(9 + 4/12, "feet"),
  48245. default: true
  48246. },
  48247. ]
  48248. ))
  48249. characterMakers.push(() => makeCharacter(
  48250. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48251. {
  48252. front: {
  48253. height: math.unit(3, "meters"),
  48254. name: "Front",
  48255. image: {
  48256. source: "./media/characters/amy/front.svg",
  48257. extra: 1380/1343,
  48258. bottom: 70/1450
  48259. }
  48260. },
  48261. back: {
  48262. height: math.unit(3, "meters"),
  48263. name: "Back",
  48264. image: {
  48265. source: "./media/characters/amy/back.svg",
  48266. extra: 1380/1347,
  48267. bottom: 66/1446
  48268. }
  48269. },
  48270. },
  48271. [
  48272. {
  48273. name: "Normal",
  48274. height: math.unit(3, "meters"),
  48275. default: true
  48276. },
  48277. ]
  48278. ))
  48279. characterMakers.push(() => makeCharacter(
  48280. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48281. {
  48282. side: {
  48283. height: math.unit(47, "cm"),
  48284. weight: math.unit(10.8, "kg"),
  48285. name: "Side",
  48286. image: {
  48287. source: "./media/characters/alphaschakal/side.svg",
  48288. extra: 1058/568,
  48289. bottom: 62/1120
  48290. }
  48291. },
  48292. back: {
  48293. height: math.unit(78, "cm"),
  48294. weight: math.unit(10.8, "kg"),
  48295. name: "Back",
  48296. image: {
  48297. source: "./media/characters/alphaschakal/back.svg",
  48298. extra: 1102/942,
  48299. bottom: 185/1287
  48300. }
  48301. },
  48302. head: {
  48303. height: math.unit(28, "cm"),
  48304. name: "Head",
  48305. image: {
  48306. source: "./media/characters/alphaschakal/head.svg",
  48307. extra: 696/508,
  48308. bottom: 0/696
  48309. }
  48310. },
  48311. paw: {
  48312. height: math.unit(16, "cm"),
  48313. name: "Paw",
  48314. image: {
  48315. source: "./media/characters/alphaschakal/paw.svg"
  48316. }
  48317. },
  48318. },
  48319. [
  48320. {
  48321. name: "Normal",
  48322. height: math.unit(47, "cm"),
  48323. default: true
  48324. },
  48325. {
  48326. name: "Macro",
  48327. height: math.unit(340, "cm")
  48328. },
  48329. ]
  48330. ))
  48331. characterMakers.push(() => makeCharacter(
  48332. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48333. {
  48334. front: {
  48335. height: math.unit(36, "earths"),
  48336. name: "Front",
  48337. image: {
  48338. source: "./media/characters/ecobyss/front.svg",
  48339. extra: 1282/1215,
  48340. bottom: 11/1293
  48341. }
  48342. },
  48343. back: {
  48344. height: math.unit(36, "earths"),
  48345. name: "Back",
  48346. image: {
  48347. source: "./media/characters/ecobyss/back.svg",
  48348. extra: 1291/1222,
  48349. bottom: 8/1299
  48350. }
  48351. },
  48352. },
  48353. [
  48354. {
  48355. name: "Normal",
  48356. height: math.unit(36, "earths"),
  48357. default: true
  48358. },
  48359. ]
  48360. ))
  48361. characterMakers.push(() => makeCharacter(
  48362. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48363. {
  48364. front: {
  48365. height: math.unit(12, "feet"),
  48366. name: "Front",
  48367. image: {
  48368. source: "./media/characters/vasuk/front.svg",
  48369. extra: 1326/1207,
  48370. bottom: 64/1390
  48371. }
  48372. },
  48373. },
  48374. [
  48375. {
  48376. name: "Normal",
  48377. height: math.unit(12, "feet"),
  48378. default: true
  48379. },
  48380. ]
  48381. ))
  48382. characterMakers.push(() => makeCharacter(
  48383. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48384. {
  48385. side: {
  48386. height: math.unit(100, "feet"),
  48387. name: "Side",
  48388. image: {
  48389. source: "./media/characters/linneaus/side.svg",
  48390. extra: 987/807,
  48391. bottom: 47/1034
  48392. }
  48393. },
  48394. },
  48395. [
  48396. {
  48397. name: "Macro",
  48398. height: math.unit(100, "feet"),
  48399. default: true
  48400. },
  48401. ]
  48402. ))
  48403. characterMakers.push(() => makeCharacter(
  48404. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48405. {
  48406. front: {
  48407. height: math.unit(8, "feet"),
  48408. weight: math.unit(1200, "lb"),
  48409. name: "Front",
  48410. image: {
  48411. source: "./media/characters/nyterious-daligdig/front.svg",
  48412. extra: 1284/1094,
  48413. bottom: 84/1368
  48414. }
  48415. },
  48416. back: {
  48417. height: math.unit(8, "feet"),
  48418. weight: math.unit(1200, "lb"),
  48419. name: "Back",
  48420. image: {
  48421. source: "./media/characters/nyterious-daligdig/back.svg",
  48422. extra: 1301/1121,
  48423. bottom: 129/1430
  48424. }
  48425. },
  48426. mouth: {
  48427. height: math.unit(1.464, "feet"),
  48428. name: "Mouth",
  48429. image: {
  48430. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48431. }
  48432. },
  48433. },
  48434. [
  48435. {
  48436. name: "Small",
  48437. height: math.unit(8, "feet"),
  48438. default: true
  48439. },
  48440. {
  48441. name: "Normal",
  48442. height: math.unit(15, "feet")
  48443. },
  48444. {
  48445. name: "Macro",
  48446. height: math.unit(90, "feet")
  48447. },
  48448. ]
  48449. ))
  48450. characterMakers.push(() => makeCharacter(
  48451. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48452. {
  48453. front: {
  48454. height: math.unit(7 + 4/12, "feet"),
  48455. weight: math.unit(252, "lb"),
  48456. name: "Front",
  48457. image: {
  48458. source: "./media/characters/bandel/front.svg",
  48459. extra: 1946/1775,
  48460. bottom: 26/1972
  48461. }
  48462. },
  48463. back: {
  48464. height: math.unit(7 + 4/12, "feet"),
  48465. weight: math.unit(252, "lb"),
  48466. name: "Back",
  48467. image: {
  48468. source: "./media/characters/bandel/back.svg",
  48469. extra: 1940/1770,
  48470. bottom: 25/1965
  48471. }
  48472. },
  48473. maw: {
  48474. height: math.unit(2.15, "feet"),
  48475. name: "Maw",
  48476. image: {
  48477. source: "./media/characters/bandel/maw.svg"
  48478. }
  48479. },
  48480. stomach: {
  48481. height: math.unit(1.95, "feet"),
  48482. name: "Stomach",
  48483. image: {
  48484. source: "./media/characters/bandel/stomach.svg"
  48485. }
  48486. },
  48487. },
  48488. [
  48489. {
  48490. name: "Normal",
  48491. height: math.unit(7 + 4/12, "feet"),
  48492. default: true
  48493. },
  48494. ]
  48495. ))
  48496. characterMakers.push(() => makeCharacter(
  48497. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48498. {
  48499. front: {
  48500. height: math.unit(10 + 5/12, "feet"),
  48501. weight: math.unit(773.5, "kg"),
  48502. name: "Front",
  48503. image: {
  48504. source: "./media/characters/zed/front.svg",
  48505. extra: 987/941,
  48506. bottom: 52/1039
  48507. }
  48508. },
  48509. },
  48510. [
  48511. {
  48512. name: "Short",
  48513. height: math.unit(5 + 4/12, "feet")
  48514. },
  48515. {
  48516. name: "Average",
  48517. height: math.unit(10 + 5/12, "feet"),
  48518. default: true
  48519. },
  48520. {
  48521. name: "Mini-Macro",
  48522. height: math.unit(24 + 9/12, "feet")
  48523. },
  48524. {
  48525. name: "Macro",
  48526. height: math.unit(249, "feet")
  48527. },
  48528. {
  48529. name: "Mega-Macro",
  48530. height: math.unit(12490, "feet")
  48531. },
  48532. {
  48533. name: "Giga-Macro",
  48534. height: math.unit(24.9, "miles")
  48535. },
  48536. {
  48537. name: "Tera-Macro",
  48538. height: math.unit(24900, "miles")
  48539. },
  48540. {
  48541. name: "Cosmic Scale",
  48542. height: math.unit(38.9, "lightyears")
  48543. },
  48544. {
  48545. name: "Universal Scale",
  48546. height: math.unit(138e12, "lightyears")
  48547. },
  48548. ]
  48549. ))
  48550. characterMakers.push(() => makeCharacter(
  48551. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48552. {
  48553. front: {
  48554. height: math.unit(1561, "inches"),
  48555. name: "Front",
  48556. image: {
  48557. source: "./media/characters/ivan/front.svg",
  48558. extra: 1126/1071,
  48559. bottom: 26/1152
  48560. }
  48561. },
  48562. back: {
  48563. height: math.unit(1561, "inches"),
  48564. name: "Back",
  48565. image: {
  48566. source: "./media/characters/ivan/back.svg",
  48567. extra: 1134/1079,
  48568. bottom: 30/1164
  48569. }
  48570. },
  48571. },
  48572. [
  48573. {
  48574. name: "Normal",
  48575. height: math.unit(1561, "inches"),
  48576. default: true
  48577. },
  48578. ]
  48579. ))
  48580. characterMakers.push(() => makeCharacter(
  48581. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48582. {
  48583. front: {
  48584. height: math.unit(5 + 7/12, "feet"),
  48585. weight: math.unit(150, "lb"),
  48586. name: "Front",
  48587. image: {
  48588. source: "./media/characters/robin-arctic-hare/front.svg",
  48589. extra: 1148/974,
  48590. bottom: 20/1168
  48591. }
  48592. },
  48593. },
  48594. [
  48595. {
  48596. name: "Normal",
  48597. height: math.unit(5 + 7/12, "feet"),
  48598. default: true
  48599. },
  48600. ]
  48601. ))
  48602. characterMakers.push(() => makeCharacter(
  48603. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48604. {
  48605. side: {
  48606. height: math.unit(5, "feet"),
  48607. name: "Side",
  48608. image: {
  48609. source: "./media/characters/birch/side.svg",
  48610. extra: 985/796,
  48611. bottom: 111/1096
  48612. }
  48613. },
  48614. },
  48615. [
  48616. {
  48617. name: "Normal",
  48618. height: math.unit(5, "feet"),
  48619. default: true
  48620. },
  48621. ]
  48622. ))
  48623. characterMakers.push(() => makeCharacter(
  48624. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48625. {
  48626. front: {
  48627. height: math.unit(4, "feet"),
  48628. name: "Front",
  48629. image: {
  48630. source: "./media/characters/rasp/front.svg",
  48631. extra: 561/478,
  48632. bottom: 74/635
  48633. }
  48634. },
  48635. },
  48636. [
  48637. {
  48638. name: "Normal",
  48639. height: math.unit(4, "feet"),
  48640. default: true
  48641. },
  48642. ]
  48643. ))
  48644. characterMakers.push(() => makeCharacter(
  48645. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48646. {
  48647. front: {
  48648. height: math.unit(4 + 6/12, "feet"),
  48649. name: "Front",
  48650. image: {
  48651. source: "./media/characters/agatha/front.svg",
  48652. extra: 947/933,
  48653. bottom: 42/989
  48654. }
  48655. },
  48656. back: {
  48657. height: math.unit(4 + 6/12, "feet"),
  48658. name: "Back",
  48659. image: {
  48660. source: "./media/characters/agatha/back.svg",
  48661. extra: 935/922,
  48662. bottom: 48/983
  48663. }
  48664. },
  48665. },
  48666. [
  48667. {
  48668. name: "Normal",
  48669. height: math.unit(4 + 6 /12, "feet"),
  48670. default: true
  48671. },
  48672. {
  48673. name: "Max Size",
  48674. height: math.unit(500, "feet")
  48675. },
  48676. ]
  48677. ))
  48678. characterMakers.push(() => makeCharacter(
  48679. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48680. {
  48681. side: {
  48682. height: math.unit(30, "feet"),
  48683. name: "Side",
  48684. image: {
  48685. source: "./media/characters/roggy/side.svg",
  48686. extra: 909/643,
  48687. bottom: 63/972
  48688. }
  48689. },
  48690. lounging: {
  48691. height: math.unit(20, "feet"),
  48692. name: "Lounging",
  48693. image: {
  48694. source: "./media/characters/roggy/lounging.svg",
  48695. extra: 643/479,
  48696. bottom: 145/788
  48697. }
  48698. },
  48699. handpaw: {
  48700. height: math.unit(13.1, "feet"),
  48701. name: "Handpaw",
  48702. image: {
  48703. source: "./media/characters/roggy/handpaw.svg"
  48704. }
  48705. },
  48706. footpaw: {
  48707. height: math.unit(15.8, "feet"),
  48708. name: "Footpaw",
  48709. image: {
  48710. source: "./media/characters/roggy/footpaw.svg"
  48711. }
  48712. },
  48713. },
  48714. [
  48715. {
  48716. name: "Menacing",
  48717. height: math.unit(30, "feet"),
  48718. default: true
  48719. },
  48720. ]
  48721. ))
  48722. characterMakers.push(() => makeCharacter(
  48723. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48724. {
  48725. front: {
  48726. height: math.unit(5 + 7/12, "feet"),
  48727. weight: math.unit(135, "lb"),
  48728. name: "Front",
  48729. image: {
  48730. source: "./media/characters/naomi/front.svg",
  48731. extra: 1209/1154,
  48732. bottom: 129/1338
  48733. }
  48734. },
  48735. back: {
  48736. height: math.unit(5 + 7/12, "feet"),
  48737. weight: math.unit(135, "lb"),
  48738. name: "Back",
  48739. image: {
  48740. source: "./media/characters/naomi/back.svg",
  48741. extra: 1252/1190,
  48742. bottom: 23/1275
  48743. }
  48744. },
  48745. },
  48746. [
  48747. {
  48748. name: "Normal",
  48749. height: math.unit(5 + 7 /12, "feet"),
  48750. default: true
  48751. },
  48752. ]
  48753. ))
  48754. characterMakers.push(() => makeCharacter(
  48755. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48756. {
  48757. side: {
  48758. height: math.unit(35, "meters"),
  48759. name: "Side",
  48760. image: {
  48761. source: "./media/characters/kimpi/side.svg",
  48762. extra: 419/382,
  48763. bottom: 63/482
  48764. }
  48765. },
  48766. hand: {
  48767. height: math.unit(8.96, "meters"),
  48768. name: "Hand",
  48769. image: {
  48770. source: "./media/characters/kimpi/hand.svg"
  48771. }
  48772. },
  48773. },
  48774. [
  48775. {
  48776. name: "Normal",
  48777. height: math.unit(35, "meters"),
  48778. default: true
  48779. },
  48780. ]
  48781. ))
  48782. characterMakers.push(() => makeCharacter(
  48783. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48784. {
  48785. front: {
  48786. height: math.unit(4 + 4/12, "feet"),
  48787. name: "Front",
  48788. image: {
  48789. source: "./media/characters/pepper-purrloin/front.svg",
  48790. extra: 1141/1024,
  48791. bottom: 21/1162
  48792. }
  48793. },
  48794. },
  48795. [
  48796. {
  48797. name: "Normal",
  48798. height: math.unit(4 + 4/12, "feet"),
  48799. default: true
  48800. },
  48801. ]
  48802. ))
  48803. characterMakers.push(() => makeCharacter(
  48804. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48805. {
  48806. front: {
  48807. height: math.unit(6 + 2/12, "feet"),
  48808. name: "Front",
  48809. image: {
  48810. source: "./media/characters/raphael/front.svg",
  48811. extra: 1101/962,
  48812. bottom: 59/1160
  48813. }
  48814. },
  48815. },
  48816. [
  48817. {
  48818. name: "Normal",
  48819. height: math.unit(6 + 2/12, "feet"),
  48820. default: true
  48821. },
  48822. ]
  48823. ))
  48824. characterMakers.push(() => makeCharacter(
  48825. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48826. {
  48827. front: {
  48828. height: math.unit(6, "feet"),
  48829. weight: math.unit(150, "lb"),
  48830. name: "Front",
  48831. image: {
  48832. source: "./media/characters/victor-williams/front.svg",
  48833. extra: 1894/1825,
  48834. bottom: 67/1961
  48835. }
  48836. },
  48837. },
  48838. [
  48839. {
  48840. name: "Normal",
  48841. height: math.unit(6, "feet"),
  48842. default: true
  48843. },
  48844. ]
  48845. ))
  48846. characterMakers.push(() => makeCharacter(
  48847. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48848. {
  48849. front: {
  48850. height: math.unit(5 + 8/12, "feet"),
  48851. weight: math.unit(150, "lb"),
  48852. name: "Front",
  48853. image: {
  48854. source: "./media/characters/rachel/front.svg",
  48855. extra: 1902/1787,
  48856. bottom: 46/1948
  48857. }
  48858. },
  48859. },
  48860. [
  48861. {
  48862. name: "Base Height",
  48863. height: math.unit(5 + 8/12, "feet"),
  48864. default: true
  48865. },
  48866. {
  48867. name: "Macro",
  48868. height: math.unit(200, "feet")
  48869. },
  48870. {
  48871. name: "Mega Macro",
  48872. height: math.unit(1, "mile")
  48873. },
  48874. {
  48875. name: "Giga Macro",
  48876. height: math.unit(1500, "miles")
  48877. },
  48878. {
  48879. name: "Tera Macro",
  48880. height: math.unit(8000, "miles")
  48881. },
  48882. {
  48883. name: "Tera Macro+",
  48884. height: math.unit(2e5, "miles")
  48885. },
  48886. ]
  48887. ))
  48888. characterMakers.push(() => makeCharacter(
  48889. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48890. {
  48891. front: {
  48892. height: math.unit(6.5, "feet"),
  48893. name: "Front",
  48894. image: {
  48895. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48896. extra: 860/819,
  48897. bottom: 307/1167
  48898. }
  48899. },
  48900. back: {
  48901. height: math.unit(6.5, "feet"),
  48902. name: "Back",
  48903. image: {
  48904. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48905. extra: 880/837,
  48906. bottom: 395/1275
  48907. }
  48908. },
  48909. sleeping: {
  48910. height: math.unit(2.79, "feet"),
  48911. name: "Sleeping",
  48912. image: {
  48913. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48914. extra: 465/383,
  48915. bottom: 263/728
  48916. }
  48917. },
  48918. maw: {
  48919. height: math.unit(2.52, "feet"),
  48920. name: "Maw",
  48921. image: {
  48922. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48923. }
  48924. },
  48925. },
  48926. [
  48927. {
  48928. name: "Normal",
  48929. height: math.unit(6.5, "feet"),
  48930. default: true
  48931. },
  48932. ]
  48933. ))
  48934. characterMakers.push(() => makeCharacter(
  48935. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48936. {
  48937. front: {
  48938. height: math.unit(5, "feet"),
  48939. name: "Front",
  48940. image: {
  48941. source: "./media/characters/nova-nerium/front.svg",
  48942. extra: 1548/1392,
  48943. bottom: 374/1922
  48944. }
  48945. },
  48946. back: {
  48947. height: math.unit(5, "feet"),
  48948. name: "Back",
  48949. image: {
  48950. source: "./media/characters/nova-nerium/back.svg",
  48951. extra: 1658/1468,
  48952. bottom: 257/1915
  48953. }
  48954. },
  48955. },
  48956. [
  48957. {
  48958. name: "Normal",
  48959. height: math.unit(5, "feet"),
  48960. default: true
  48961. },
  48962. ]
  48963. ))
  48964. characterMakers.push(() => makeCharacter(
  48965. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48966. {
  48967. front: {
  48968. height: math.unit(5 + 4/12, "feet"),
  48969. name: "Front",
  48970. image: {
  48971. source: "./media/characters/ashe-pyriph/front.svg",
  48972. extra: 1935/1747,
  48973. bottom: 60/1995
  48974. }
  48975. },
  48976. },
  48977. [
  48978. {
  48979. name: "Normal",
  48980. height: math.unit(5 + 4/12, "feet"),
  48981. default: true
  48982. },
  48983. ]
  48984. ))
  48985. characterMakers.push(() => makeCharacter(
  48986. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48987. {
  48988. front: {
  48989. height: math.unit(8.7, "feet"),
  48990. name: "Front",
  48991. image: {
  48992. source: "./media/characters/flicker-wisp/front.svg",
  48993. extra: 1835/1613,
  48994. bottom: 449/2284
  48995. }
  48996. },
  48997. side: {
  48998. height: math.unit(8.7, "feet"),
  48999. name: "Side",
  49000. image: {
  49001. source: "./media/characters/flicker-wisp/side.svg",
  49002. extra: 1841/1642,
  49003. bottom: 336/2177
  49004. },
  49005. default: true
  49006. },
  49007. maw: {
  49008. height: math.unit(3.35, "feet"),
  49009. name: "Maw",
  49010. image: {
  49011. source: "./media/characters/flicker-wisp/maw.svg",
  49012. extra: 2338/1506,
  49013. bottom: 0/2338
  49014. }
  49015. },
  49016. ovipositor: {
  49017. height: math.unit(4.95, "feet"),
  49018. name: "Ovipositor",
  49019. image: {
  49020. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49021. }
  49022. },
  49023. egg: {
  49024. height: math.unit(0.385, "feet"),
  49025. weight: math.unit(2, "lb"),
  49026. name: "Egg",
  49027. image: {
  49028. source: "./media/characters/flicker-wisp/egg.svg"
  49029. }
  49030. },
  49031. },
  49032. [
  49033. {
  49034. name: "Normal",
  49035. height: math.unit(8.7, "feet"),
  49036. default: true
  49037. },
  49038. ]
  49039. ))
  49040. characterMakers.push(() => makeCharacter(
  49041. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49042. {
  49043. side: {
  49044. height: math.unit(11, "feet"),
  49045. name: "Side",
  49046. image: {
  49047. source: "./media/characters/faefnul/side.svg",
  49048. extra: 1100/1007,
  49049. bottom: 0/1100
  49050. }
  49051. },
  49052. },
  49053. [
  49054. {
  49055. name: "Normal",
  49056. height: math.unit(11, "feet"),
  49057. default: true
  49058. },
  49059. ]
  49060. ))
  49061. characterMakers.push(() => makeCharacter(
  49062. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49063. {
  49064. front: {
  49065. height: math.unit(6 + 2/12, "feet"),
  49066. name: "Front",
  49067. image: {
  49068. source: "./media/characters/shady/front.svg",
  49069. extra: 502/461,
  49070. bottom: 9/511
  49071. }
  49072. },
  49073. kneeling: {
  49074. height: math.unit(4.6, "feet"),
  49075. name: "Kneeling",
  49076. image: {
  49077. source: "./media/characters/shady/kneeling.svg",
  49078. extra: 1328/1219,
  49079. bottom: 117/1445
  49080. }
  49081. },
  49082. maw: {
  49083. height: math.unit(2, "feet"),
  49084. name: "Maw",
  49085. image: {
  49086. source: "./media/characters/shady/maw.svg"
  49087. }
  49088. },
  49089. },
  49090. [
  49091. {
  49092. name: "Nano",
  49093. height: math.unit(1, "mm")
  49094. },
  49095. {
  49096. name: "Micro",
  49097. height: math.unit(12, "mm")
  49098. },
  49099. {
  49100. name: "Tiny",
  49101. height: math.unit(3, "inches")
  49102. },
  49103. {
  49104. name: "Normal",
  49105. height: math.unit(6 + 2/12, "feet"),
  49106. default: true
  49107. },
  49108. {
  49109. name: "Big",
  49110. height: math.unit(15, "feet")
  49111. },
  49112. {
  49113. name: "Macro",
  49114. height: math.unit(150, "feet")
  49115. },
  49116. {
  49117. name: "Titanic",
  49118. height: math.unit(500, "feet")
  49119. },
  49120. ]
  49121. ))
  49122. characterMakers.push(() => makeCharacter(
  49123. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49124. {
  49125. front: {
  49126. height: math.unit(12, "feet"),
  49127. name: "Front",
  49128. image: {
  49129. source: "./media/characters/fenrir/front.svg",
  49130. extra: 968/875,
  49131. bottom: 22/990
  49132. }
  49133. },
  49134. },
  49135. [
  49136. {
  49137. name: "Big",
  49138. height: math.unit(12, "feet"),
  49139. default: true
  49140. },
  49141. ]
  49142. ))
  49143. characterMakers.push(() => makeCharacter(
  49144. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49145. {
  49146. front: {
  49147. height: math.unit(5 + 4/12, "feet"),
  49148. name: "Front",
  49149. image: {
  49150. source: "./media/characters/makar/front.svg",
  49151. extra: 1181/1112,
  49152. bottom: 78/1259
  49153. }
  49154. },
  49155. },
  49156. [
  49157. {
  49158. name: "Normal",
  49159. height: math.unit(5 + 4/12, "feet"),
  49160. default: true
  49161. },
  49162. ]
  49163. ))
  49164. characterMakers.push(() => makeCharacter(
  49165. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49166. {
  49167. front: {
  49168. height: math.unit(5 + 7/12, "feet"),
  49169. name: "Front",
  49170. image: {
  49171. source: "./media/characters/callow/front.svg",
  49172. extra: 1482/1304,
  49173. bottom: 23/1505
  49174. }
  49175. },
  49176. back: {
  49177. height: math.unit(5 + 7/12, "feet"),
  49178. name: "Back",
  49179. image: {
  49180. source: "./media/characters/callow/back.svg",
  49181. extra: 1484/1296,
  49182. bottom: 25/1509
  49183. }
  49184. },
  49185. },
  49186. [
  49187. {
  49188. name: "Micro",
  49189. height: math.unit(3, "inches"),
  49190. default: true
  49191. },
  49192. {
  49193. name: "Normal",
  49194. height: math.unit(5 + 7/12, "feet")
  49195. },
  49196. ]
  49197. ))
  49198. characterMakers.push(() => makeCharacter(
  49199. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49200. {
  49201. front: {
  49202. height: math.unit(6 + 2/12, "feet"),
  49203. name: "Front",
  49204. image: {
  49205. source: "./media/characters/natel/front.svg",
  49206. extra: 1833/1692,
  49207. bottom: 166/1999
  49208. }
  49209. },
  49210. },
  49211. [
  49212. {
  49213. name: "Normal",
  49214. height: math.unit(6 + 2/12, "feet"),
  49215. default: true
  49216. },
  49217. ]
  49218. ))
  49219. characterMakers.push(() => makeCharacter(
  49220. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49221. {
  49222. front: {
  49223. height: math.unit(1.75, "meters"),
  49224. name: "Front",
  49225. image: {
  49226. source: "./media/characters/misu/front.svg",
  49227. extra: 1690/1558,
  49228. bottom: 234/1924
  49229. }
  49230. },
  49231. back: {
  49232. height: math.unit(1.75, "meters"),
  49233. name: "Back",
  49234. image: {
  49235. source: "./media/characters/misu/back.svg",
  49236. extra: 1762/1618,
  49237. bottom: 146/1908
  49238. }
  49239. },
  49240. frontNude: {
  49241. height: math.unit(1.75, "meters"),
  49242. name: "Front (Nude)",
  49243. image: {
  49244. source: "./media/characters/misu/front-nude.svg",
  49245. extra: 1690/1558,
  49246. bottom: 234/1924
  49247. }
  49248. },
  49249. backNude: {
  49250. height: math.unit(1.75, "meters"),
  49251. name: "Back (Nude)",
  49252. image: {
  49253. source: "./media/characters/misu/back-nude.svg",
  49254. extra: 1762/1618,
  49255. bottom: 146/1908
  49256. }
  49257. },
  49258. frontErect: {
  49259. height: math.unit(1.75, "meters"),
  49260. name: "Front (Erect)",
  49261. image: {
  49262. source: "./media/characters/misu/front-erect.svg",
  49263. extra: 1690/1558,
  49264. bottom: 234/1924
  49265. }
  49266. },
  49267. maw: {
  49268. height: math.unit(0.47, "meters"),
  49269. name: "Maw",
  49270. image: {
  49271. source: "./media/characters/misu/maw.svg"
  49272. }
  49273. },
  49274. head: {
  49275. height: math.unit(0.35, "meters"),
  49276. name: "Head",
  49277. image: {
  49278. source: "./media/characters/misu/head.svg"
  49279. }
  49280. },
  49281. rear: {
  49282. height: math.unit(0.47, "meters"),
  49283. name: "Rear",
  49284. image: {
  49285. source: "./media/characters/misu/rear.svg"
  49286. }
  49287. },
  49288. },
  49289. [
  49290. {
  49291. name: "Normal",
  49292. height: math.unit(1.75, "meters")
  49293. },
  49294. {
  49295. name: "Not good for the people",
  49296. height: math.unit(42, "meters")
  49297. },
  49298. {
  49299. name: "Not good for the neighborhood",
  49300. height: math.unit(135, "meters")
  49301. },
  49302. {
  49303. name: "Bit bigger problem",
  49304. height: math.unit(380, "meters"),
  49305. default: true
  49306. },
  49307. {
  49308. name: "Not good for the city",
  49309. height: math.unit(1.5, "km")
  49310. },
  49311. {
  49312. name: "Not good for the county",
  49313. height: math.unit(5.5, "km")
  49314. },
  49315. {
  49316. name: "Not good for the state",
  49317. height: math.unit(25, "km")
  49318. },
  49319. {
  49320. name: "Not good for the country",
  49321. height: math.unit(125, "km")
  49322. },
  49323. {
  49324. name: "Not good for the continent",
  49325. height: math.unit(2100, "km")
  49326. },
  49327. {
  49328. name: "Not good for the planet",
  49329. height: math.unit(35000, "km")
  49330. },
  49331. {
  49332. name: "Just no",
  49333. height: math.unit(8.5e18, "km")
  49334. },
  49335. ]
  49336. ))
  49337. characterMakers.push(() => makeCharacter(
  49338. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49339. {
  49340. front: {
  49341. height: math.unit(6.5, "feet"),
  49342. name: "Front",
  49343. image: {
  49344. source: "./media/characters/poppy/front.svg",
  49345. extra: 1878/1812,
  49346. bottom: 43/1921
  49347. }
  49348. },
  49349. feet: {
  49350. height: math.unit(1.06, "feet"),
  49351. name: "Feet",
  49352. image: {
  49353. source: "./media/characters/poppy/feet.svg",
  49354. extra: 1083/1083,
  49355. bottom: 87/1170
  49356. }
  49357. },
  49358. },
  49359. [
  49360. {
  49361. name: "Human",
  49362. height: math.unit(6.5, "feet")
  49363. },
  49364. {
  49365. name: "Default",
  49366. height: math.unit(300, "feet"),
  49367. default: true
  49368. },
  49369. {
  49370. name: "Huge",
  49371. height: math.unit(850, "feet")
  49372. },
  49373. {
  49374. name: "Mega",
  49375. height: math.unit(8000, "feet")
  49376. },
  49377. {
  49378. name: "Giga",
  49379. height: math.unit(300, "miles")
  49380. },
  49381. ]
  49382. ))
  49383. characterMakers.push(() => makeCharacter(
  49384. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49385. {
  49386. bipedal: {
  49387. height: math.unit(7, "feet"),
  49388. name: "Bipedal",
  49389. image: {
  49390. source: "./media/characters/zener/bipedal.svg",
  49391. extra: 874/805,
  49392. bottom: 109/983
  49393. }
  49394. },
  49395. quadrupedal: {
  49396. height: math.unit(4.64, "feet"),
  49397. name: "Quadrupedal",
  49398. image: {
  49399. source: "./media/characters/zener/quadrupedal.svg",
  49400. extra: 638/507,
  49401. bottom: 190/828
  49402. }
  49403. },
  49404. cock: {
  49405. height: math.unit(18, "inches"),
  49406. name: "Cock",
  49407. image: {
  49408. source: "./media/characters/zener/cock.svg"
  49409. }
  49410. },
  49411. },
  49412. [
  49413. {
  49414. name: "Normal",
  49415. height: math.unit(7, "feet"),
  49416. default: true
  49417. },
  49418. ]
  49419. ))
  49420. characterMakers.push(() => makeCharacter(
  49421. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49422. {
  49423. nude: {
  49424. height: math.unit(5 + 6/12, "feet"),
  49425. name: "Nude",
  49426. image: {
  49427. source: "./media/characters/charlie-dog/nude.svg",
  49428. extra: 768/734,
  49429. bottom: 26/794
  49430. }
  49431. },
  49432. dressed: {
  49433. height: math.unit(5 + 6/12, "feet"),
  49434. name: "Dressed",
  49435. image: {
  49436. source: "./media/characters/charlie-dog/dressed.svg",
  49437. extra: 768/734,
  49438. bottom: 26/794
  49439. }
  49440. },
  49441. },
  49442. [
  49443. {
  49444. name: "Normal",
  49445. height: math.unit(5 + 6/12, "feet"),
  49446. default: true
  49447. },
  49448. ]
  49449. ))
  49450. characterMakers.push(() => makeCharacter(
  49451. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49452. {
  49453. front: {
  49454. height: math.unit(6 + 4/12, "feet"),
  49455. name: "Front",
  49456. image: {
  49457. source: "./media/characters/ir'istrasz/front.svg",
  49458. extra: 1014/977,
  49459. bottom: 65/1079
  49460. }
  49461. },
  49462. back: {
  49463. height: math.unit(6 + 4/12, "feet"),
  49464. name: "Back",
  49465. image: {
  49466. source: "./media/characters/ir'istrasz/back.svg",
  49467. extra: 1024/992,
  49468. bottom: 34/1058
  49469. }
  49470. },
  49471. },
  49472. [
  49473. {
  49474. name: "Normal",
  49475. height: math.unit(6 + 4/12, "feet"),
  49476. default: true
  49477. },
  49478. ]
  49479. ))
  49480. characterMakers.push(() => makeCharacter(
  49481. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49482. {
  49483. front: {
  49484. height: math.unit(5 + 8/12, "feet"),
  49485. name: "Front",
  49486. image: {
  49487. source: "./media/characters/dee-ditto/front.svg",
  49488. extra: 1874/1785,
  49489. bottom: 68/1942
  49490. }
  49491. },
  49492. back: {
  49493. height: math.unit(5 + 8/12, "feet"),
  49494. name: "Back",
  49495. image: {
  49496. source: "./media/characters/dee-ditto/back.svg",
  49497. extra: 1870/1783,
  49498. bottom: 77/1947
  49499. }
  49500. },
  49501. },
  49502. [
  49503. {
  49504. name: "Normal",
  49505. height: math.unit(5 + 8/12, "feet"),
  49506. default: true
  49507. },
  49508. ]
  49509. ))
  49510. characterMakers.push(() => makeCharacter(
  49511. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49512. {
  49513. front: {
  49514. height: math.unit(7 + 6/12, "feet"),
  49515. name: "Front",
  49516. image: {
  49517. source: "./media/characters/fey/front.svg",
  49518. extra: 995/979,
  49519. bottom: 30/1025
  49520. }
  49521. },
  49522. back: {
  49523. height: math.unit(7 + 6/12, "feet"),
  49524. name: "Back",
  49525. image: {
  49526. source: "./media/characters/fey/back.svg",
  49527. extra: 1079/1008,
  49528. bottom: 5/1084
  49529. }
  49530. },
  49531. dressed: {
  49532. height: math.unit(7 + 6/12, "feet"),
  49533. name: "Dressed",
  49534. image: {
  49535. source: "./media/characters/fey/dressed.svg",
  49536. extra: 995/979,
  49537. bottom: 30/1025
  49538. }
  49539. },
  49540. },
  49541. [
  49542. {
  49543. name: "Normal",
  49544. height: math.unit(7 + 6/12, "feet"),
  49545. default: true
  49546. },
  49547. ]
  49548. ))
  49549. characterMakers.push(() => makeCharacter(
  49550. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49551. {
  49552. standing: {
  49553. height: math.unit(17, "feet"),
  49554. name: "Standing",
  49555. image: {
  49556. source: "./media/characters/aster/standing.svg",
  49557. extra: 1798/1598,
  49558. bottom: 117/1915
  49559. }
  49560. },
  49561. },
  49562. [
  49563. {
  49564. name: "Normal",
  49565. height: math.unit(17, "feet"),
  49566. default: true
  49567. },
  49568. {
  49569. name: "Homewrecker",
  49570. height: math.unit(95, "feet")
  49571. },
  49572. {
  49573. name: "Planet Devourer",
  49574. height: math.unit(1008000, "miles")
  49575. },
  49576. ]
  49577. ))
  49578. characterMakers.push(() => makeCharacter(
  49579. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49580. {
  49581. front: {
  49582. height: math.unit(6 + 5/12, "feet"),
  49583. weight: math.unit(265, "lb"),
  49584. name: "Front",
  49585. image: {
  49586. source: "./media/characters/devon-childs/front.svg",
  49587. extra: 1795/1721,
  49588. bottom: 41/1836
  49589. }
  49590. },
  49591. side: {
  49592. height: math.unit(6 + 5/12, "feet"),
  49593. weight: math.unit(265, "lb"),
  49594. name: "Side",
  49595. image: {
  49596. source: "./media/characters/devon-childs/side.svg",
  49597. extra: 1812/1738,
  49598. bottom: 30/1842
  49599. }
  49600. },
  49601. back: {
  49602. height: math.unit(6 + 5/12, "feet"),
  49603. weight: math.unit(265, "lb"),
  49604. name: "Back",
  49605. image: {
  49606. source: "./media/characters/devon-childs/back.svg",
  49607. extra: 1808/1735,
  49608. bottom: 23/1831
  49609. }
  49610. },
  49611. hand: {
  49612. height: math.unit(1.464, "feet"),
  49613. name: "Hand",
  49614. image: {
  49615. source: "./media/characters/devon-childs/hand.svg"
  49616. }
  49617. },
  49618. foot: {
  49619. height: math.unit(1.6, "feet"),
  49620. name: "Foot",
  49621. image: {
  49622. source: "./media/characters/devon-childs/foot.svg"
  49623. }
  49624. },
  49625. },
  49626. [
  49627. {
  49628. name: "Micro",
  49629. height: math.unit(7, "cm")
  49630. },
  49631. {
  49632. name: "Normal",
  49633. height: math.unit(6 + 5/12, "feet"),
  49634. default: true
  49635. },
  49636. {
  49637. name: "Macro",
  49638. height: math.unit(154, "feet")
  49639. },
  49640. ]
  49641. ))
  49642. characterMakers.push(() => makeCharacter(
  49643. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49644. {
  49645. front: {
  49646. height: math.unit(6, "feet"),
  49647. weight: math.unit(180, "lb"),
  49648. name: "Front",
  49649. image: {
  49650. source: "./media/characters/lydemox-vir/front.svg",
  49651. extra: 1632/1435,
  49652. bottom: 58/1690
  49653. }
  49654. },
  49655. frontSFW: {
  49656. height: math.unit(6, "feet"),
  49657. weight: math.unit(180, "lb"),
  49658. name: "Front (SFW)",
  49659. image: {
  49660. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49661. extra: 1632/1435,
  49662. bottom: 58/1690
  49663. }
  49664. },
  49665. back: {
  49666. height: math.unit(6, "feet"),
  49667. weight: math.unit(180, "lb"),
  49668. name: "Back",
  49669. image: {
  49670. source: "./media/characters/lydemox-vir/back.svg",
  49671. extra: 1593/1408,
  49672. bottom: 31/1624
  49673. }
  49674. },
  49675. paw: {
  49676. height: math.unit(1.85, "feet"),
  49677. name: "Paw",
  49678. image: {
  49679. source: "./media/characters/lydemox-vir/paw.svg"
  49680. }
  49681. },
  49682. dick: {
  49683. height: math.unit(1.8, "feet"),
  49684. name: "Dick",
  49685. image: {
  49686. source: "./media/characters/lydemox-vir/dick.svg"
  49687. }
  49688. },
  49689. },
  49690. [
  49691. {
  49692. name: "Macro",
  49693. height: math.unit(100, "feet"),
  49694. default: true
  49695. },
  49696. {
  49697. name: "Teramacro",
  49698. height: math.unit(1, "earth")
  49699. },
  49700. {
  49701. name: "Planetary",
  49702. height: math.unit(20, "earths")
  49703. },
  49704. ]
  49705. ))
  49706. characterMakers.push(() => makeCharacter(
  49707. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49708. {
  49709. front: {
  49710. height: math.unit(15 + 8/12, "feet"),
  49711. weight: math.unit(1237, "kg"),
  49712. name: "Front",
  49713. image: {
  49714. source: "./media/characters/mia/front.svg",
  49715. extra: 1573/1446,
  49716. bottom: 58/1631
  49717. }
  49718. },
  49719. },
  49720. [
  49721. {
  49722. name: "Small",
  49723. height: math.unit(9 + 5/12, "feet")
  49724. },
  49725. {
  49726. name: "Normal",
  49727. height: math.unit(15 + 8/12, "feet"),
  49728. default: true
  49729. },
  49730. ]
  49731. ))
  49732. characterMakers.push(() => makeCharacter(
  49733. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49734. {
  49735. front: {
  49736. height: math.unit(10 + 6/12, "feet"),
  49737. weight: math.unit(1.3, "tons"),
  49738. name: "Front",
  49739. image: {
  49740. source: "./media/characters/mr-graves/front.svg",
  49741. extra: 1779/1695,
  49742. bottom: 198/1977
  49743. }
  49744. },
  49745. },
  49746. [
  49747. {
  49748. name: "Normal",
  49749. height: math.unit(10 + 6 /12, "feet"),
  49750. default: true
  49751. },
  49752. ]
  49753. ))
  49754. characterMakers.push(() => makeCharacter(
  49755. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49756. {
  49757. dressedFront: {
  49758. height: math.unit(5 + 8/12, "feet"),
  49759. weight: math.unit(125, "lb"),
  49760. name: "Dressed (Front)",
  49761. image: {
  49762. source: "./media/characters/jess/dressed-front.svg",
  49763. extra: 1176/1152,
  49764. bottom: 42/1218
  49765. }
  49766. },
  49767. dressedSide: {
  49768. height: math.unit(5 + 8/12, "feet"),
  49769. weight: math.unit(125, "lb"),
  49770. name: "Dressed (Side)",
  49771. image: {
  49772. source: "./media/characters/jess/dressed-side.svg",
  49773. extra: 1204/1190,
  49774. bottom: 6/1210
  49775. }
  49776. },
  49777. nudeFront: {
  49778. height: math.unit(5 + 8/12, "feet"),
  49779. weight: math.unit(125, "lb"),
  49780. name: "Nude (Front)",
  49781. image: {
  49782. source: "./media/characters/jess/nude-front.svg",
  49783. extra: 1176/1152,
  49784. bottom: 42/1218
  49785. }
  49786. },
  49787. nudeSide: {
  49788. height: math.unit(5 + 8/12, "feet"),
  49789. weight: math.unit(125, "lb"),
  49790. name: "Nude (Side)",
  49791. image: {
  49792. source: "./media/characters/jess/nude-side.svg",
  49793. extra: 1204/1190,
  49794. bottom: 6/1210
  49795. }
  49796. },
  49797. organsFront: {
  49798. height: math.unit(2.83799342105, "feet"),
  49799. name: "Organs (Front)",
  49800. image: {
  49801. source: "./media/characters/jess/organs-front.svg"
  49802. }
  49803. },
  49804. organsSide: {
  49805. height: math.unit(2.64225290474, "feet"),
  49806. name: "Organs (Side)",
  49807. image: {
  49808. source: "./media/characters/jess/organs-side.svg"
  49809. }
  49810. },
  49811. digestiveTractFront: {
  49812. height: math.unit(2.8106580871, "feet"),
  49813. name: "Digestive Tract (Front)",
  49814. image: {
  49815. source: "./media/characters/jess/digestive-tract-front.svg"
  49816. }
  49817. },
  49818. digestiveTractSide: {
  49819. height: math.unit(2.54365045014, "feet"),
  49820. name: "Digestive Tract (Side)",
  49821. image: {
  49822. source: "./media/characters/jess/digestive-tract-side.svg"
  49823. }
  49824. },
  49825. respiratorySystemFront: {
  49826. height: math.unit(1.11196233456, "feet"),
  49827. name: "Respiratory System (Front)",
  49828. image: {
  49829. source: "./media/characters/jess/respiratory-system-front.svg"
  49830. }
  49831. },
  49832. respiratorySystemSide: {
  49833. height: math.unit(0.89327966297, "feet"),
  49834. name: "Respiratory System (Side)",
  49835. image: {
  49836. source: "./media/characters/jess/respiratory-system-side.svg"
  49837. }
  49838. },
  49839. urinaryTractFront: {
  49840. height: math.unit(1.16126356186, "feet"),
  49841. name: "Urinary Tract (Front)",
  49842. image: {
  49843. source: "./media/characters/jess/urinary-tract-front.svg"
  49844. }
  49845. },
  49846. urinaryTractSide: {
  49847. height: math.unit(1.20910039627, "feet"),
  49848. name: "Urinary Tract (Side)",
  49849. image: {
  49850. source: "./media/characters/jess/urinary-tract-side.svg"
  49851. }
  49852. },
  49853. reproductiveOrgansFront: {
  49854. height: math.unit(0.48422591566, "feet"),
  49855. name: "Reproductive Organs (Front)",
  49856. image: {
  49857. source: "./media/characters/jess/reproductive-organs-front.svg"
  49858. }
  49859. },
  49860. reproductiveOrgansSide: {
  49861. height: math.unit(0.61553314481, "feet"),
  49862. name: "Reproductive Organs (Side)",
  49863. image: {
  49864. source: "./media/characters/jess/reproductive-organs-side.svg"
  49865. }
  49866. },
  49867. breastsFront: {
  49868. height: math.unit(0.47690395121, "feet"),
  49869. name: "Breasts (Front)",
  49870. image: {
  49871. source: "./media/characters/jess/breasts-front.svg"
  49872. }
  49873. },
  49874. breastsSide: {
  49875. height: math.unit(0.30556998307, "feet"),
  49876. name: "Breasts (Side)",
  49877. image: {
  49878. source: "./media/characters/jess/breasts-side.svg"
  49879. }
  49880. },
  49881. heartFront: {
  49882. height: math.unit(0.53011022622, "feet"),
  49883. name: "Heart (Front)",
  49884. image: {
  49885. source: "./media/characters/jess/heart-front.svg"
  49886. }
  49887. },
  49888. heartSide: {
  49889. height: math.unit(0.51790695213, "feet"),
  49890. name: "Heart (Side)",
  49891. image: {
  49892. source: "./media/characters/jess/heart-side.svg"
  49893. }
  49894. },
  49895. earsAndNoseFront: {
  49896. height: math.unit(0.29385483995, "feet"),
  49897. name: "Ears and Nose (Front)",
  49898. image: {
  49899. source: "./media/characters/jess/ears-and-nose-front.svg"
  49900. }
  49901. },
  49902. earsAndNoseSide: {
  49903. height: math.unit(0.18109658741, "feet"),
  49904. name: "Ears and Nose (Side)",
  49905. image: {
  49906. source: "./media/characters/jess/ears-and-nose-side.svg"
  49907. }
  49908. },
  49909. },
  49910. [
  49911. {
  49912. name: "Normal",
  49913. height: math.unit(5 + 8/12, "feet"),
  49914. default: true
  49915. },
  49916. ]
  49917. ))
  49918. characterMakers.push(() => makeCharacter(
  49919. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49920. {
  49921. front: {
  49922. height: math.unit(6, "feet"),
  49923. weight: math.unit(6.64467e-7, "grams"),
  49924. name: "Front",
  49925. image: {
  49926. source: "./media/characters/wimpering/front.svg",
  49927. extra: 597/587,
  49928. bottom: 34/631
  49929. }
  49930. },
  49931. },
  49932. [
  49933. {
  49934. name: "Micro",
  49935. height: math.unit(0.4, "mm"),
  49936. default: true
  49937. },
  49938. ]
  49939. ))
  49940. characterMakers.push(() => makeCharacter(
  49941. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49942. {
  49943. front: {
  49944. height: math.unit(5 + 2/12, "feet"),
  49945. weight: math.unit(110, "lb"),
  49946. name: "Front",
  49947. image: {
  49948. source: "./media/characters/keltre/front.svg",
  49949. extra: 1099/1057,
  49950. bottom: 22/1121
  49951. }
  49952. },
  49953. back: {
  49954. height: math.unit(5 + 2/12, "feet"),
  49955. weight: math.unit(110, "lb"),
  49956. name: "Back",
  49957. image: {
  49958. source: "./media/characters/keltre/back.svg",
  49959. extra: 1095/1053,
  49960. bottom: 17/1112
  49961. }
  49962. },
  49963. dressed: {
  49964. height: math.unit(5 + 2/12, "feet"),
  49965. weight: math.unit(110, "lb"),
  49966. name: "Dressed",
  49967. image: {
  49968. source: "./media/characters/keltre/dressed.svg",
  49969. extra: 1099/1057,
  49970. bottom: 22/1121
  49971. }
  49972. },
  49973. winter: {
  49974. height: math.unit(5 + 2/12, "feet"),
  49975. weight: math.unit(110, "lb"),
  49976. name: "Winter",
  49977. image: {
  49978. source: "./media/characters/keltre/winter.svg",
  49979. extra: 1099/1057,
  49980. bottom: 22/1121
  49981. }
  49982. },
  49983. head: {
  49984. height: math.unit(1.61 * 0.86, "feet"),
  49985. name: "Head",
  49986. image: {
  49987. source: "./media/characters/keltre/head.svg",
  49988. extra: 534/421,
  49989. bottom: 0/534
  49990. }
  49991. },
  49992. hand: {
  49993. height: math.unit(1.3 * 0.86, "feet"),
  49994. name: "Hand",
  49995. image: {
  49996. source: "./media/characters/keltre/hand.svg"
  49997. }
  49998. },
  49999. foot: {
  50000. height: math.unit(1.8 * 0.86, "feet"),
  50001. name: "Foot",
  50002. image: {
  50003. source: "./media/characters/keltre/foot.svg"
  50004. }
  50005. },
  50006. },
  50007. [
  50008. {
  50009. name: "Fine",
  50010. height: math.unit(1, "inch")
  50011. },
  50012. {
  50013. name: "Dimnutive",
  50014. height: math.unit(4, "inches")
  50015. },
  50016. {
  50017. name: "Tiny",
  50018. height: math.unit(1, "foot")
  50019. },
  50020. {
  50021. name: "Small",
  50022. height: math.unit(3, "feet")
  50023. },
  50024. {
  50025. name: "Normal",
  50026. height: math.unit(5 + 2/12, "feet"),
  50027. default: true
  50028. },
  50029. ]
  50030. ))
  50031. characterMakers.push(() => makeCharacter(
  50032. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50033. {
  50034. front: {
  50035. height: math.unit(6 + 2/12, "feet"),
  50036. name: "Front",
  50037. image: {
  50038. source: "./media/characters/nox/front.svg",
  50039. extra: 1917/1830,
  50040. bottom: 74/1991
  50041. }
  50042. },
  50043. back: {
  50044. height: math.unit(6 + 2/12, "feet"),
  50045. name: "Back",
  50046. image: {
  50047. source: "./media/characters/nox/back.svg",
  50048. extra: 1896/1815,
  50049. bottom: 21/1917
  50050. }
  50051. },
  50052. head: {
  50053. height: math.unit(1.1, "feet"),
  50054. name: "Head",
  50055. image: {
  50056. source: "./media/characters/nox/head.svg",
  50057. extra: 874/704,
  50058. bottom: 0/874
  50059. }
  50060. },
  50061. tattoo: {
  50062. height: math.unit(0.729, "feet"),
  50063. name: "Tattoo",
  50064. image: {
  50065. source: "./media/characters/nox/tattoo.svg"
  50066. }
  50067. },
  50068. },
  50069. [
  50070. {
  50071. name: "Normal",
  50072. height: math.unit(6 + 2/12, "feet")
  50073. },
  50074. {
  50075. name: "Gigamacro",
  50076. height: math.unit(2, "earths"),
  50077. default: true
  50078. },
  50079. {
  50080. name: "Cosmic",
  50081. height: math.unit(867, "yottameters")
  50082. },
  50083. ]
  50084. ))
  50085. characterMakers.push(() => makeCharacter(
  50086. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50087. {
  50088. front: {
  50089. height: math.unit(6, "feet"),
  50090. weight: math.unit(150, "lb"),
  50091. name: "Front",
  50092. image: {
  50093. source: "./media/characters/caspian/front.svg",
  50094. extra: 1443/1359,
  50095. bottom: 0/1443
  50096. }
  50097. },
  50098. back: {
  50099. height: math.unit(6, "feet"),
  50100. weight: math.unit(150, "lb"),
  50101. name: "Back",
  50102. image: {
  50103. source: "./media/characters/caspian/back.svg",
  50104. extra: 1379/1309,
  50105. bottom: 0/1379
  50106. }
  50107. },
  50108. head: {
  50109. height: math.unit(0.9, "feet"),
  50110. name: "Head",
  50111. image: {
  50112. source: "./media/characters/caspian/head.svg",
  50113. extra: 692/492,
  50114. bottom: 0/692
  50115. }
  50116. },
  50117. headAlt: {
  50118. height: math.unit(0.95, "feet"),
  50119. name: "Head (Alt)",
  50120. image: {
  50121. source: "./media/characters/caspian/head-alt.svg",
  50122. extra: 668/508,
  50123. bottom: 0/668
  50124. }
  50125. },
  50126. hand: {
  50127. height: math.unit(0.8, "feet"),
  50128. name: "Hand",
  50129. image: {
  50130. source: "./media/characters/caspian/hand.svg"
  50131. }
  50132. },
  50133. paw: {
  50134. height: math.unit(0.95, "feet"),
  50135. name: "Paw",
  50136. image: {
  50137. source: "./media/characters/caspian/paw.svg"
  50138. }
  50139. },
  50140. },
  50141. [
  50142. {
  50143. name: "Normal",
  50144. height: math.unit(162, "feet"),
  50145. default: true
  50146. },
  50147. ]
  50148. ))
  50149. characterMakers.push(() => makeCharacter(
  50150. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50151. {
  50152. front: {
  50153. height: math.unit(6, "feet"),
  50154. name: "Front",
  50155. image: {
  50156. source: "./media/characters/myra-aisling/front.svg",
  50157. extra: 1268/1166,
  50158. bottom: 73/1341
  50159. }
  50160. },
  50161. back: {
  50162. height: math.unit(6, "feet"),
  50163. name: "Back",
  50164. image: {
  50165. source: "./media/characters/myra-aisling/back.svg",
  50166. extra: 1249/1149,
  50167. bottom: 79/1328
  50168. }
  50169. },
  50170. dressed: {
  50171. height: math.unit(6, "feet"),
  50172. name: "Dressed",
  50173. image: {
  50174. source: "./media/characters/myra-aisling/dressed.svg",
  50175. extra: 1290/1189,
  50176. bottom: 47/1337
  50177. }
  50178. },
  50179. hand: {
  50180. height: math.unit(1.1, "feet"),
  50181. name: "Hand",
  50182. image: {
  50183. source: "./media/characters/myra-aisling/hand.svg"
  50184. }
  50185. },
  50186. paw: {
  50187. height: math.unit(1.23, "feet"),
  50188. name: "Paw",
  50189. image: {
  50190. source: "./media/characters/myra-aisling/paw.svg"
  50191. }
  50192. },
  50193. },
  50194. [
  50195. {
  50196. name: "Normal",
  50197. height: math.unit(160, "feet"),
  50198. default: true
  50199. },
  50200. ]
  50201. ))
  50202. characterMakers.push(() => makeCharacter(
  50203. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50204. {
  50205. front: {
  50206. height: math.unit(6, "feet"),
  50207. name: "Front",
  50208. image: {
  50209. source: "./media/characters/tenley-sidero/front.svg",
  50210. extra: 1365/1276,
  50211. bottom: 47/1412
  50212. }
  50213. },
  50214. back: {
  50215. height: math.unit(6, "feet"),
  50216. name: "Back",
  50217. image: {
  50218. source: "./media/characters/tenley-sidero/back.svg",
  50219. extra: 1383/1283,
  50220. bottom: 35/1418
  50221. }
  50222. },
  50223. dressed: {
  50224. height: math.unit(6, "feet"),
  50225. name: "Dressed",
  50226. image: {
  50227. source: "./media/characters/tenley-sidero/dressed.svg",
  50228. extra: 1364/1275,
  50229. bottom: 42/1406
  50230. }
  50231. },
  50232. head: {
  50233. height: math.unit(1.47, "feet"),
  50234. name: "Head",
  50235. image: {
  50236. source: "./media/characters/tenley-sidero/head.svg",
  50237. extra: 610/490,
  50238. bottom: 0/610
  50239. }
  50240. },
  50241. },
  50242. [
  50243. {
  50244. name: "Normal",
  50245. height: math.unit(154, "feet"),
  50246. default: true
  50247. },
  50248. ]
  50249. ))
  50250. characterMakers.push(() => makeCharacter(
  50251. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50252. {
  50253. front: {
  50254. height: math.unit(5, "inches"),
  50255. name: "Front",
  50256. image: {
  50257. source: "./media/characters/mallory/front.svg",
  50258. extra: 1919/1678,
  50259. bottom: 29/1948
  50260. }
  50261. },
  50262. hand: {
  50263. height: math.unit(0.73, "inches"),
  50264. name: "Hand",
  50265. image: {
  50266. source: "./media/characters/mallory/hand.svg"
  50267. }
  50268. },
  50269. paw: {
  50270. height: math.unit(0.68, "inches"),
  50271. name: "Paw",
  50272. image: {
  50273. source: "./media/characters/mallory/paw.svg"
  50274. }
  50275. },
  50276. },
  50277. [
  50278. {
  50279. name: "Small",
  50280. height: math.unit(5, "inches"),
  50281. default: true
  50282. },
  50283. ]
  50284. ))
  50285. characterMakers.push(() => makeCharacter(
  50286. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50287. {
  50288. naked: {
  50289. height: math.unit(6, "feet"),
  50290. name: "Naked",
  50291. image: {
  50292. source: "./media/characters/mab/naked.svg",
  50293. extra: 1855/1757,
  50294. bottom: 208/2063
  50295. }
  50296. },
  50297. outside: {
  50298. height: math.unit(6, "feet"),
  50299. name: "Outside",
  50300. image: {
  50301. source: "./media/characters/mab/outside.svg",
  50302. extra: 1855/1757,
  50303. bottom: 208/2063
  50304. }
  50305. },
  50306. party: {
  50307. height: math.unit(6, "feet"),
  50308. name: "Party",
  50309. image: {
  50310. source: "./media/characters/mab/party.svg",
  50311. extra: 1855/1757,
  50312. bottom: 208/2063
  50313. }
  50314. },
  50315. },
  50316. [
  50317. {
  50318. name: "Normal",
  50319. height: math.unit(165, "feet"),
  50320. default: true
  50321. },
  50322. ]
  50323. ))
  50324. characterMakers.push(() => makeCharacter(
  50325. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50326. {
  50327. feral: {
  50328. height: math.unit(12, "feet"),
  50329. weight: math.unit(20000, "lb"),
  50330. name: "Side",
  50331. image: {
  50332. source: "./media/characters/winter/feral.svg",
  50333. extra: 1286/943,
  50334. bottom: 112/1398
  50335. },
  50336. form: "feral",
  50337. default: true
  50338. },
  50339. feralNsfw: {
  50340. height: math.unit(12, "feet"),
  50341. weight: math.unit(20000, "lb"),
  50342. name: "Side (NSFW)",
  50343. image: {
  50344. source: "./media/characters/winter/feral-nsfw.svg",
  50345. extra: 1286/943,
  50346. bottom: 112/1398
  50347. },
  50348. form: "feral"
  50349. },
  50350. dick: {
  50351. height: math.unit(3.79, "feet"),
  50352. name: "Dick",
  50353. image: {
  50354. source: "./media/characters/winter/dick.svg"
  50355. },
  50356. form: "feral"
  50357. },
  50358. anthro: {
  50359. height: math.unit(12, "feet"),
  50360. weight: math.unit(10, "tons"),
  50361. name: "Anthro",
  50362. image: {
  50363. source: "./media/characters/winter/anthro.svg",
  50364. extra: 1701/1553,
  50365. bottom: 64/1765
  50366. },
  50367. form: "anthro",
  50368. default: true
  50369. },
  50370. },
  50371. [
  50372. {
  50373. name: "Big",
  50374. height: math.unit(12, "feet"),
  50375. default: true,
  50376. form: "feral"
  50377. },
  50378. {
  50379. name: "Big",
  50380. height: math.unit(12, "feet"),
  50381. default: true,
  50382. form: "anthro"
  50383. },
  50384. ],
  50385. {
  50386. "feral": {
  50387. name: "Feral",
  50388. default: true
  50389. },
  50390. "anthro": {
  50391. name: "Anthro"
  50392. }
  50393. }
  50394. ))
  50395. characterMakers.push(() => makeCharacter(
  50396. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50397. {
  50398. front: {
  50399. height: math.unit(4.1, "inches"),
  50400. name: "Front",
  50401. image: {
  50402. source: "./media/characters/alto/front.svg",
  50403. extra: 736/627,
  50404. bottom: 90/826
  50405. }
  50406. },
  50407. },
  50408. [
  50409. {
  50410. name: "Normal",
  50411. height: math.unit(4.1, "inches"),
  50412. default: true
  50413. },
  50414. ]
  50415. ))
  50416. characterMakers.push(() => makeCharacter(
  50417. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50418. {
  50419. sitting: {
  50420. height: math.unit(3, "feet"),
  50421. name: "Sitting",
  50422. image: {
  50423. source: "./media/characters/ratstrid-v/sitting.svg",
  50424. extra: 355/310,
  50425. bottom: 136/491
  50426. }
  50427. },
  50428. },
  50429. [
  50430. {
  50431. name: "Normal",
  50432. height: math.unit(3, "feet"),
  50433. default: true
  50434. },
  50435. ]
  50436. ))
  50437. characterMakers.push(() => makeCharacter(
  50438. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50439. {
  50440. back: {
  50441. height: math.unit(6, "feet"),
  50442. weight: math.unit(450, "lb"),
  50443. name: "Back",
  50444. image: {
  50445. source: "./media/characters/siz/back.svg",
  50446. extra: 1449/1274,
  50447. bottom: 13/1462
  50448. }
  50449. },
  50450. },
  50451. [
  50452. {
  50453. name: "Smallest",
  50454. height: math.unit(18 + 3/12, "feet")
  50455. },
  50456. {
  50457. name: "Modest",
  50458. height: math.unit(56 + 8/12, "feet"),
  50459. default: true
  50460. },
  50461. {
  50462. name: "Largest",
  50463. height: math.unit(3590, "feet")
  50464. },
  50465. ]
  50466. ))
  50467. characterMakers.push(() => makeCharacter(
  50468. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50469. {
  50470. front: {
  50471. height: math.unit(5 + 9/12, "feet"),
  50472. weight: math.unit(150, "lb"),
  50473. name: "Front",
  50474. image: {
  50475. source: "./media/characters/ven/front.svg",
  50476. extra: 1372/1320,
  50477. bottom: 73/1445
  50478. }
  50479. },
  50480. side: {
  50481. height: math.unit(5 + 9/12, "feet"),
  50482. weight: math.unit(1150, "lb"),
  50483. name: "Side",
  50484. image: {
  50485. source: "./media/characters/ven/side.svg",
  50486. extra: 1119/1070,
  50487. bottom: 42/1161
  50488. },
  50489. default: true
  50490. },
  50491. },
  50492. [
  50493. {
  50494. name: "Normal",
  50495. height: math.unit(5 + 9/12, "feet"),
  50496. default: true
  50497. },
  50498. ]
  50499. ))
  50500. characterMakers.push(() => makeCharacter(
  50501. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50502. {
  50503. front: {
  50504. height: math.unit(12, "feet"),
  50505. weight: math.unit(1000, "kg"),
  50506. name: "Front",
  50507. image: {
  50508. source: "./media/characters/maple/front.svg",
  50509. extra: 1193/1081,
  50510. bottom: 22/1215
  50511. }
  50512. },
  50513. },
  50514. [
  50515. {
  50516. name: "Compressed",
  50517. height: math.unit(7, "feet")
  50518. },
  50519. {
  50520. name: "Normal",
  50521. height: math.unit(12, "feet"),
  50522. default: true
  50523. },
  50524. ]
  50525. ))
  50526. characterMakers.push(() => makeCharacter(
  50527. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50528. {
  50529. front: {
  50530. height: math.unit(9, "feet"),
  50531. weight: math.unit(1500, "lb"),
  50532. name: "Front",
  50533. image: {
  50534. source: "./media/characters/nora/front.svg",
  50535. extra: 1348/1286,
  50536. bottom: 218/1566
  50537. }
  50538. },
  50539. erect: {
  50540. height: math.unit(9, "feet"),
  50541. weight: math.unit(11500, "lb"),
  50542. name: "Erect",
  50543. image: {
  50544. source: "./media/characters/nora/erect.svg",
  50545. extra: 1488/1433,
  50546. bottom: 133/1621
  50547. }
  50548. },
  50549. },
  50550. [
  50551. {
  50552. name: "Normal",
  50553. height: math.unit(9, "feet"),
  50554. default: true
  50555. },
  50556. ]
  50557. ))
  50558. characterMakers.push(() => makeCharacter(
  50559. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50560. {
  50561. front: {
  50562. height: math.unit(25, "feet"),
  50563. weight: math.unit(27500, "lb"),
  50564. name: "Front",
  50565. image: {
  50566. source: "./media/characters/north-caudin/front.svg",
  50567. extra: 1184/1082,
  50568. bottom: 23/1207
  50569. }
  50570. },
  50571. },
  50572. [
  50573. {
  50574. name: "Compressed",
  50575. height: math.unit(10, "feet")
  50576. },
  50577. {
  50578. name: "Normal",
  50579. height: math.unit(25, "feet"),
  50580. default: true
  50581. },
  50582. ]
  50583. ))
  50584. characterMakers.push(() => makeCharacter(
  50585. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50586. {
  50587. front: {
  50588. height: math.unit(9, "feet"),
  50589. weight: math.unit(1250, "lb"),
  50590. name: "Front",
  50591. image: {
  50592. source: "./media/characters/merrian/front.svg",
  50593. extra: 2393/2304,
  50594. bottom: 40/2433
  50595. }
  50596. },
  50597. },
  50598. [
  50599. {
  50600. name: "Normal",
  50601. height: math.unit(9, "feet"),
  50602. default: true
  50603. },
  50604. ]
  50605. ))
  50606. characterMakers.push(() => makeCharacter(
  50607. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50608. {
  50609. front: {
  50610. height: math.unit(9, "feet"),
  50611. weight: math.unit(1000, "lb"),
  50612. name: "Front",
  50613. image: {
  50614. source: "./media/characters/hazel/front.svg",
  50615. extra: 2351/2298,
  50616. bottom: 38/2389
  50617. }
  50618. },
  50619. },
  50620. [
  50621. {
  50622. name: "Normal",
  50623. height: math.unit(9, "feet"),
  50624. default: true
  50625. },
  50626. ]
  50627. ))
  50628. characterMakers.push(() => makeCharacter(
  50629. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50630. {
  50631. front: {
  50632. height: math.unit(13, "feet"),
  50633. weight: math.unit(3200, "lb"),
  50634. name: "Front",
  50635. image: {
  50636. source: "./media/characters/emma/front.svg",
  50637. extra: 2263/2029,
  50638. bottom: 68/2331
  50639. }
  50640. },
  50641. },
  50642. [
  50643. {
  50644. name: "Normal",
  50645. height: math.unit(13, "feet"),
  50646. default: true
  50647. },
  50648. ]
  50649. ))
  50650. characterMakers.push(() => makeCharacter(
  50651. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50652. {
  50653. front: {
  50654. height: math.unit(11 + 9/12, "feet"),
  50655. weight: math.unit(2500, "lb"),
  50656. name: "Front",
  50657. image: {
  50658. source: "./media/characters/ilumina/front.svg",
  50659. extra: 2248/2209,
  50660. bottom: 164/2412
  50661. }
  50662. },
  50663. },
  50664. [
  50665. {
  50666. name: "Normal",
  50667. height: math.unit(11 + 9/12, "feet"),
  50668. default: true
  50669. },
  50670. ]
  50671. ))
  50672. characterMakers.push(() => makeCharacter(
  50673. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50674. {
  50675. front: {
  50676. height: math.unit(8 + 10/12, "feet"),
  50677. weight: math.unit(1350, "lb"),
  50678. name: "Front",
  50679. image: {
  50680. source: "./media/characters/moonshine/front.svg",
  50681. extra: 2395/2288,
  50682. bottom: 40/2435
  50683. }
  50684. },
  50685. },
  50686. [
  50687. {
  50688. name: "Normal",
  50689. height: math.unit(8 + 10/12, "feet"),
  50690. default: true
  50691. },
  50692. ]
  50693. ))
  50694. characterMakers.push(() => makeCharacter(
  50695. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50696. {
  50697. front: {
  50698. height: math.unit(14, "feet"),
  50699. weight: math.unit(3400, "lb"),
  50700. name: "Front",
  50701. image: {
  50702. source: "./media/characters/aletia/front.svg",
  50703. extra: 1185/1052,
  50704. bottom: 21/1206
  50705. }
  50706. },
  50707. },
  50708. [
  50709. {
  50710. name: "Compressed",
  50711. height: math.unit(8, "feet")
  50712. },
  50713. {
  50714. name: "Normal",
  50715. height: math.unit(14, "feet"),
  50716. default: true
  50717. },
  50718. ]
  50719. ))
  50720. characterMakers.push(() => makeCharacter(
  50721. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50722. {
  50723. front: {
  50724. height: math.unit(17, "feet"),
  50725. weight: math.unit(6500, "lb"),
  50726. name: "Front",
  50727. image: {
  50728. source: "./media/characters/deidra/front.svg",
  50729. extra: 1201/1081,
  50730. bottom: 16/1217
  50731. }
  50732. },
  50733. },
  50734. [
  50735. {
  50736. name: "Compressed",
  50737. height: math.unit(9 + 6/12, "feet")
  50738. },
  50739. {
  50740. name: "Normal",
  50741. height: math.unit(17, "feet"),
  50742. default: true
  50743. },
  50744. ]
  50745. ))
  50746. characterMakers.push(() => makeCharacter(
  50747. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50748. {
  50749. front: {
  50750. height: math.unit(7 + 4/12, "feet"),
  50751. weight: math.unit(280, "lb"),
  50752. name: "Front",
  50753. image: {
  50754. source: "./media/characters/freki-yrmori/front.svg",
  50755. extra: 1286/1182,
  50756. bottom: 29/1315
  50757. }
  50758. },
  50759. maw: {
  50760. height: math.unit(0.9, "feet"),
  50761. name: "Maw",
  50762. image: {
  50763. source: "./media/characters/freki-yrmori/maw.svg"
  50764. }
  50765. },
  50766. },
  50767. [
  50768. {
  50769. name: "Normal",
  50770. height: math.unit(7 + 4/12, "feet"),
  50771. default: true
  50772. },
  50773. {
  50774. name: "Macro",
  50775. height: math.unit(38.5, "meters")
  50776. },
  50777. ]
  50778. ))
  50779. characterMakers.push(() => makeCharacter(
  50780. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50781. {
  50782. side: {
  50783. height: math.unit(47.2, "meters"),
  50784. weight: math.unit(10000, "tons"),
  50785. name: "Side",
  50786. image: {
  50787. source: "./media/characters/aetherios/side.svg",
  50788. extra: 2363/642,
  50789. bottom: 221/2584
  50790. }
  50791. },
  50792. top: {
  50793. height: math.unit(240, "meters"),
  50794. weight: math.unit(10000, "tons"),
  50795. name: "Top",
  50796. image: {
  50797. source: "./media/characters/aetherios/top.svg"
  50798. }
  50799. },
  50800. bottom: {
  50801. height: math.unit(240, "meters"),
  50802. weight: math.unit(10000, "tons"),
  50803. name: "Bottom",
  50804. image: {
  50805. source: "./media/characters/aetherios/bottom.svg"
  50806. }
  50807. },
  50808. head: {
  50809. height: math.unit(38.6, "meters"),
  50810. name: "Head",
  50811. image: {
  50812. source: "./media/characters/aetherios/head.svg",
  50813. extra: 1335/1112,
  50814. bottom: 0/1335
  50815. }
  50816. },
  50817. front: {
  50818. height: math.unit(29, "meters"),
  50819. name: "Front",
  50820. image: {
  50821. source: "./media/characters/aetherios/front.svg",
  50822. extra: 1266/953,
  50823. bottom: 158/1424
  50824. }
  50825. },
  50826. maw: {
  50827. height: math.unit(16.37, "meters"),
  50828. name: "Maw",
  50829. image: {
  50830. source: "./media/characters/aetherios/maw.svg",
  50831. extra: 748/637,
  50832. bottom: 0/748
  50833. },
  50834. extraAttributes: {
  50835. preyCapacity: {
  50836. name: "Capacity",
  50837. power: 3,
  50838. type: "volume",
  50839. base: math.unit(1000, "people")
  50840. },
  50841. tongueSize: {
  50842. name: "Tongue Size",
  50843. power: 2,
  50844. type: "area",
  50845. base: math.unit(21, "m^2")
  50846. }
  50847. }
  50848. },
  50849. forepaw: {
  50850. height: math.unit(18, "meters"),
  50851. name: "Forepaw",
  50852. image: {
  50853. source: "./media/characters/aetherios/forepaw.svg"
  50854. }
  50855. },
  50856. hindpaw: {
  50857. height: math.unit(23, "meters"),
  50858. name: "Hindpaw",
  50859. image: {
  50860. source: "./media/characters/aetherios/hindpaw.svg"
  50861. }
  50862. },
  50863. genitals: {
  50864. height: math.unit(42, "meters"),
  50865. name: "Genitals",
  50866. image: {
  50867. source: "./media/characters/aetherios/genitals.svg"
  50868. }
  50869. },
  50870. },
  50871. [
  50872. {
  50873. name: "Normal",
  50874. height: math.unit(47.2, "meters"),
  50875. default: true
  50876. },
  50877. {
  50878. name: "Macro",
  50879. height: math.unit(160, "meters")
  50880. },
  50881. {
  50882. name: "Mega",
  50883. height: math.unit(1.87, "km")
  50884. },
  50885. {
  50886. name: "Giga",
  50887. height: math.unit(40000, "km")
  50888. },
  50889. {
  50890. name: "Stellar",
  50891. height: math.unit(158000000, "km")
  50892. },
  50893. {
  50894. name: "Cosmic",
  50895. height: math.unit(9.46e12, "km")
  50896. },
  50897. ]
  50898. ))
  50899. characterMakers.push(() => makeCharacter(
  50900. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50901. {
  50902. front: {
  50903. height: math.unit(5 + 4/12, "feet"),
  50904. weight: math.unit(80, "lb"),
  50905. name: "Front",
  50906. image: {
  50907. source: "./media/characters/mizu-gieeg/front.svg",
  50908. extra: 850/709,
  50909. bottom: 52/902
  50910. }
  50911. },
  50912. back: {
  50913. height: math.unit(5 + 4/12, "feet"),
  50914. weight: math.unit(80, "lb"),
  50915. name: "Back",
  50916. image: {
  50917. source: "./media/characters/mizu-gieeg/back.svg",
  50918. extra: 882/745,
  50919. bottom: 25/907
  50920. }
  50921. },
  50922. },
  50923. [
  50924. {
  50925. name: "Normal",
  50926. height: math.unit(5 + 4/12, "feet"),
  50927. default: true
  50928. },
  50929. ]
  50930. ))
  50931. characterMakers.push(() => makeCharacter(
  50932. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50933. {
  50934. front: {
  50935. height: math.unit(6, "feet"),
  50936. name: "Front",
  50937. image: {
  50938. source: "./media/characters/roselle-st-papier/front.svg",
  50939. extra: 1430/1280,
  50940. bottom: 37/1467
  50941. }
  50942. },
  50943. back: {
  50944. height: math.unit(6, "feet"),
  50945. name: "Back",
  50946. image: {
  50947. source: "./media/characters/roselle-st-papier/back.svg",
  50948. extra: 1491/1296,
  50949. bottom: 23/1514
  50950. }
  50951. },
  50952. ear: {
  50953. height: math.unit(1.26, "feet"),
  50954. name: "Ear",
  50955. image: {
  50956. source: "./media/characters/roselle-st-papier/ear.svg"
  50957. }
  50958. },
  50959. },
  50960. [
  50961. {
  50962. name: "Normal",
  50963. height: math.unit(150, "feet"),
  50964. default: true
  50965. },
  50966. ]
  50967. ))
  50968. characterMakers.push(() => makeCharacter(
  50969. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50970. {
  50971. front: {
  50972. height: math.unit(1, "inches"),
  50973. name: "Front",
  50974. image: {
  50975. source: "./media/characters/valargent/front.svg",
  50976. extra: 1825/1694,
  50977. bottom: 62/1887
  50978. }
  50979. },
  50980. back: {
  50981. height: math.unit(1, "inches"),
  50982. name: "Back",
  50983. image: {
  50984. source: "./media/characters/valargent/back.svg",
  50985. extra: 1775/1682,
  50986. bottom: 88/1863
  50987. }
  50988. },
  50989. },
  50990. [
  50991. {
  50992. name: "Micro",
  50993. height: math.unit(1, "inch"),
  50994. default: true
  50995. },
  50996. ]
  50997. ))
  50998. characterMakers.push(() => makeCharacter(
  50999. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51000. {
  51001. front: {
  51002. height: math.unit(3.4, "meters"),
  51003. name: "Front",
  51004. image: {
  51005. source: "./media/characters/zarina/front.svg",
  51006. extra: 1733/1425,
  51007. bottom: 93/1826
  51008. }
  51009. },
  51010. squatting: {
  51011. height: math.unit(2.14, "meters"),
  51012. name: "Squatting",
  51013. image: {
  51014. source: "./media/characters/zarina/squatting.svg",
  51015. extra: 1073/788,
  51016. bottom: 63/1136
  51017. }
  51018. },
  51019. back: {
  51020. height: math.unit(2.14, "meters"),
  51021. name: "Back",
  51022. image: {
  51023. source: "./media/characters/zarina/back.svg",
  51024. extra: 1128/885,
  51025. bottom: 0/1128
  51026. }
  51027. },
  51028. },
  51029. [
  51030. {
  51031. name: "Normal",
  51032. height: math.unit(3.4, "meters"),
  51033. default: true
  51034. },
  51035. {
  51036. name: "Big",
  51037. height: math.unit(5, "meters")
  51038. },
  51039. {
  51040. name: "Macro",
  51041. height: math.unit(110, "meters")
  51042. },
  51043. ]
  51044. ))
  51045. characterMakers.push(() => makeCharacter(
  51046. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51047. {
  51048. front: {
  51049. height: math.unit(7, "feet"),
  51050. name: "Front",
  51051. image: {
  51052. source: "./media/characters/ventus-astro-fox/front.svg",
  51053. extra: 1792/1623,
  51054. bottom: 28/1820
  51055. }
  51056. },
  51057. back: {
  51058. height: math.unit(7, "feet"),
  51059. name: "Back",
  51060. image: {
  51061. source: "./media/characters/ventus-astro-fox/back.svg",
  51062. extra: 1789/1620,
  51063. bottom: 31/1820
  51064. }
  51065. },
  51066. outfit: {
  51067. height: math.unit(7, "feet"),
  51068. name: "Outfit",
  51069. image: {
  51070. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51071. extra: 1054/925,
  51072. bottom: 15/1069
  51073. }
  51074. },
  51075. head: {
  51076. height: math.unit(1.12, "feet"),
  51077. name: "Head",
  51078. image: {
  51079. source: "./media/characters/ventus-astro-fox/head.svg",
  51080. extra: 866/504,
  51081. bottom: 0/866
  51082. }
  51083. },
  51084. hand: {
  51085. height: math.unit(1, "feet"),
  51086. name: "Hand",
  51087. image: {
  51088. source: "./media/characters/ventus-astro-fox/hand.svg"
  51089. }
  51090. },
  51091. paw: {
  51092. height: math.unit(1.5, "feet"),
  51093. name: "Paw",
  51094. image: {
  51095. source: "./media/characters/ventus-astro-fox/paw.svg"
  51096. }
  51097. },
  51098. },
  51099. [
  51100. {
  51101. name: "Normal",
  51102. height: math.unit(7, "feet"),
  51103. default: true
  51104. },
  51105. {
  51106. name: "Macro",
  51107. height: math.unit(200, "feet")
  51108. },
  51109. {
  51110. name: "Cosmic",
  51111. height: math.unit(3, "universes")
  51112. },
  51113. ]
  51114. ))
  51115. characterMakers.push(() => makeCharacter(
  51116. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51117. {
  51118. front: {
  51119. height: math.unit(3, "meters"),
  51120. weight: math.unit(7000, "lb"),
  51121. name: "Front",
  51122. image: {
  51123. source: "./media/characters/core-t/front.svg",
  51124. extra: 5729/4941,
  51125. bottom: 1129/6858
  51126. }
  51127. },
  51128. },
  51129. [
  51130. {
  51131. name: "Big",
  51132. height: math.unit(3, "meters"),
  51133. default: true
  51134. },
  51135. ]
  51136. ))
  51137. characterMakers.push(() => makeCharacter(
  51138. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51139. {
  51140. normal: {
  51141. height: math.unit(6 + 6/12, "feet"),
  51142. weight: math.unit(275, "lb"),
  51143. name: "Front",
  51144. image: {
  51145. source: "./media/characters/cadbunny/normal.svg",
  51146. extra: 1129/947,
  51147. bottom: 93/1222
  51148. },
  51149. default: true,
  51150. form: "normal"
  51151. },
  51152. gigantamax: {
  51153. height: math.unit(26, "feet"),
  51154. weight: math.unit(16000, "lb"),
  51155. name: "Front",
  51156. image: {
  51157. source: "./media/characters/cadbunny/gigantamax.svg",
  51158. extra: 1133/944,
  51159. bottom: 90/1223
  51160. },
  51161. default: true,
  51162. form: "gigantamax"
  51163. },
  51164. },
  51165. [
  51166. {
  51167. name: "Normal",
  51168. height: math.unit(6 + 6/12, "feet"),
  51169. default: true,
  51170. form: "normal"
  51171. },
  51172. {
  51173. name: "Small",
  51174. height: math.unit(26, "feet"),
  51175. default: true,
  51176. form: "gigantamax"
  51177. },
  51178. {
  51179. name: "Large",
  51180. height: math.unit(78, "feet"),
  51181. form: "gigantamax"
  51182. },
  51183. ],
  51184. {
  51185. "normal": {
  51186. name: "Normal",
  51187. default: true
  51188. },
  51189. "gigantamax": {
  51190. name: "Gigantamax"
  51191. }
  51192. }
  51193. ))
  51194. characterMakers.push(() => makeCharacter(
  51195. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51196. {
  51197. anthroFront: {
  51198. height: math.unit(8, "feet"),
  51199. weight: math.unit(300, "lb"),
  51200. name: "Front",
  51201. image: {
  51202. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51203. extra: 1272/1176,
  51204. bottom: 53/1325
  51205. },
  51206. form: "anthro",
  51207. default: true
  51208. },
  51209. feralSide: {
  51210. height: math.unit(4, "feet"),
  51211. weight: math.unit(250, "lb"),
  51212. name: "Side",
  51213. image: {
  51214. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51215. extra: 731/621,
  51216. bottom: 0/731
  51217. },
  51218. form: "feral",
  51219. default: true
  51220. },
  51221. },
  51222. [
  51223. {
  51224. name: "Regular",
  51225. height: math.unit(8, "feet"),
  51226. form: "anthro"
  51227. },
  51228. {
  51229. name: "Macro",
  51230. height: math.unit(250, "feet"),
  51231. form: "anthro",
  51232. default: true
  51233. },
  51234. {
  51235. name: "Regular",
  51236. height: math.unit(4, "feet"),
  51237. form: "feral"
  51238. },
  51239. {
  51240. name: "Macro",
  51241. height: math.unit(125, "feet"),
  51242. form: "feral",
  51243. default: true
  51244. },
  51245. ],
  51246. {
  51247. "anthro": {
  51248. name: "Anthro",
  51249. default: true
  51250. },
  51251. "feral": {
  51252. name: "Feral",
  51253. },
  51254. }
  51255. ))
  51256. characterMakers.push(() => makeCharacter(
  51257. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51258. {
  51259. front: {
  51260. height: math.unit(11 + 10/12, "feet"),
  51261. weight: math.unit(1587, "kg"),
  51262. name: "Front",
  51263. image: {
  51264. source: "./media/characters/maple-javira-dragon/front.svg",
  51265. extra: 1136/744,
  51266. bottom: 73/1209
  51267. }
  51268. },
  51269. side: {
  51270. height: math.unit(11 + 10/12, "feet"),
  51271. weight: math.unit(1587, "kg"),
  51272. name: "Side",
  51273. image: {
  51274. source: "./media/characters/maple-javira-dragon/side.svg",
  51275. extra: 712/505,
  51276. bottom: 17/729
  51277. }
  51278. },
  51279. head: {
  51280. height: math.unit(8.05, "feet"),
  51281. name: "Head",
  51282. image: {
  51283. source: "./media/characters/maple-javira-dragon/head.svg",
  51284. extra: 1420/1344,
  51285. bottom: 0/1420
  51286. }
  51287. },
  51288. },
  51289. [
  51290. {
  51291. name: "Normal",
  51292. height: math.unit(11 + 10/12, "feet"),
  51293. default: true
  51294. },
  51295. ]
  51296. ))
  51297. characterMakers.push(() => makeCharacter(
  51298. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51299. {
  51300. front: {
  51301. height: math.unit(117, "cm"),
  51302. weight: math.unit(50, "kg"),
  51303. name: "Front",
  51304. image: {
  51305. source: "./media/characters/sonia-wyverntail/front.svg",
  51306. extra: 708/592,
  51307. bottom: 25/733
  51308. }
  51309. },
  51310. },
  51311. [
  51312. {
  51313. name: "Normal",
  51314. height: math.unit(117, "cm"),
  51315. default: true
  51316. },
  51317. ]
  51318. ))
  51319. characterMakers.push(() => makeCharacter(
  51320. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51321. {
  51322. front: {
  51323. height: math.unit(6 + 5/12, "feet"),
  51324. name: "Front",
  51325. image: {
  51326. source: "./media/characters/micah/front.svg",
  51327. extra: 1758/1546,
  51328. bottom: 214/1972
  51329. }
  51330. },
  51331. },
  51332. [
  51333. {
  51334. name: "Normal",
  51335. height: math.unit(6 + 5/12, "feet"),
  51336. default: true
  51337. },
  51338. ]
  51339. ))
  51340. characterMakers.push(() => makeCharacter(
  51341. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51342. {
  51343. front: {
  51344. height: math.unit(1.75, "meters"),
  51345. weight: math.unit(100, "kg"),
  51346. name: "Front",
  51347. image: {
  51348. source: "./media/characters/zarya/front.svg",
  51349. extra: 741/735,
  51350. bottom: 44/785
  51351. },
  51352. extraAttributes: {
  51353. "tailLength": {
  51354. name: "Tail Length",
  51355. power: 1,
  51356. type: "length",
  51357. base: math.unit(180, "cm")
  51358. },
  51359. "pawLength": {
  51360. name: "Paw Length",
  51361. power: 1,
  51362. type: "length",
  51363. base: math.unit(31, "cm")
  51364. },
  51365. }
  51366. },
  51367. side: {
  51368. height: math.unit(1.75, "meters"),
  51369. weight: math.unit(100, "kg"),
  51370. name: "Side",
  51371. image: {
  51372. source: "./media/characters/zarya/side.svg",
  51373. extra: 776/770,
  51374. bottom: 17/793
  51375. },
  51376. extraAttributes: {
  51377. "tailLength": {
  51378. name: "Tail Length",
  51379. power: 1,
  51380. type: "length",
  51381. base: math.unit(180, "cm")
  51382. },
  51383. "pawLength": {
  51384. name: "Paw Length",
  51385. power: 1,
  51386. type: "length",
  51387. base: math.unit(31, "cm")
  51388. },
  51389. }
  51390. },
  51391. back: {
  51392. height: math.unit(1.75, "meters"),
  51393. weight: math.unit(100, "kg"),
  51394. name: "Back",
  51395. image: {
  51396. source: "./media/characters/zarya/back.svg",
  51397. extra: 741/735,
  51398. bottom: 44/785
  51399. },
  51400. extraAttributes: {
  51401. "tailLength": {
  51402. name: "Tail Length",
  51403. power: 1,
  51404. type: "length",
  51405. base: math.unit(180, "cm")
  51406. },
  51407. "pawLength": {
  51408. name: "Paw Length",
  51409. power: 1,
  51410. type: "length",
  51411. base: math.unit(31, "cm")
  51412. },
  51413. }
  51414. },
  51415. frontNoTail: {
  51416. height: math.unit(1.75, "meters"),
  51417. weight: math.unit(100, "kg"),
  51418. name: "Front (No Tail)",
  51419. image: {
  51420. source: "./media/characters/zarya/front-no-tail.svg",
  51421. extra: 741/735,
  51422. bottom: 44/785
  51423. },
  51424. extraAttributes: {
  51425. "tailLength": {
  51426. name: "Tail Length",
  51427. power: 1,
  51428. type: "length",
  51429. base: math.unit(180, "cm")
  51430. },
  51431. "pawLength": {
  51432. name: "Paw Length",
  51433. power: 1,
  51434. type: "length",
  51435. base: math.unit(31, "cm")
  51436. },
  51437. }
  51438. },
  51439. dressed: {
  51440. height: math.unit(1.75, "meters"),
  51441. weight: math.unit(100, "kg"),
  51442. name: "Dressed",
  51443. image: {
  51444. source: "./media/characters/zarya/dressed.svg",
  51445. extra: 683/672,
  51446. bottom: 79/762
  51447. },
  51448. extraAttributes: {
  51449. "tailLength": {
  51450. name: "Tail Length",
  51451. power: 1,
  51452. type: "length",
  51453. base: math.unit(180, "cm")
  51454. },
  51455. "pawLength": {
  51456. name: "Paw Length",
  51457. power: 1,
  51458. type: "length",
  51459. base: math.unit(31, "cm")
  51460. },
  51461. }
  51462. },
  51463. },
  51464. [
  51465. {
  51466. name: "Micro",
  51467. height: math.unit(5, "cm")
  51468. },
  51469. {
  51470. name: "Normal",
  51471. height: math.unit(1.75, "meters"),
  51472. default: true
  51473. },
  51474. {
  51475. name: "Macro",
  51476. height: math.unit(122, "meters")
  51477. },
  51478. ]
  51479. ))
  51480. characterMakers.push(() => makeCharacter(
  51481. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51482. {
  51483. front: {
  51484. height: math.unit(7.5, "feet"),
  51485. name: "Front",
  51486. image: {
  51487. source: "./media/characters/sven-hatisson/front.svg",
  51488. extra: 917/857,
  51489. bottom: 42/959
  51490. }
  51491. },
  51492. back: {
  51493. height: math.unit(7.5, "feet"),
  51494. name: "Back",
  51495. image: {
  51496. source: "./media/characters/sven-hatisson/back.svg",
  51497. extra: 903/856,
  51498. bottom: 15/918
  51499. }
  51500. },
  51501. },
  51502. [
  51503. {
  51504. name: "Base Height",
  51505. height: math.unit(7.5, "feet")
  51506. },
  51507. {
  51508. name: "Usual Height",
  51509. height: math.unit(13.5, "feet"),
  51510. default: true
  51511. },
  51512. {
  51513. name: "Smaller Macro",
  51514. height: math.unit(85, "feet")
  51515. },
  51516. {
  51517. name: "Moderate Macro",
  51518. height: math.unit(320, "feet")
  51519. },
  51520. {
  51521. name: "Large Macro",
  51522. height: math.unit(1000, "feet")
  51523. },
  51524. {
  51525. name: "Largest Size",
  51526. height: math.unit(2, "miles")
  51527. },
  51528. ]
  51529. ))
  51530. characterMakers.push(() => makeCharacter(
  51531. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51532. {
  51533. side: {
  51534. height: math.unit(1.8, "meters"),
  51535. weight: math.unit(275, "kg"),
  51536. name: "Side",
  51537. image: {
  51538. source: "./media/characters/terra/side.svg",
  51539. extra: 1273/1147,
  51540. bottom: 0/1273
  51541. }
  51542. },
  51543. },
  51544. [
  51545. {
  51546. name: "Normal",
  51547. height: math.unit(16.2, "meters"),
  51548. default: true
  51549. },
  51550. ]
  51551. ))
  51552. characterMakers.push(() => makeCharacter(
  51553. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51554. {
  51555. borzoiFront: {
  51556. height: math.unit(6 + 9/12, "feet"),
  51557. name: "Front",
  51558. image: {
  51559. source: "./media/characters/rae/borzoi-front.svg",
  51560. extra: 1161/1098,
  51561. bottom: 31/1192
  51562. },
  51563. form: "borzoi",
  51564. default: true
  51565. },
  51566. werewolfFront: {
  51567. height: math.unit(8 + 7/12, "feet"),
  51568. name: "Front",
  51569. image: {
  51570. source: "./media/characters/rae/werewolf-front.svg",
  51571. extra: 1411/1334,
  51572. bottom: 127/1538
  51573. },
  51574. form: "werewolf",
  51575. default: true
  51576. },
  51577. },
  51578. [
  51579. {
  51580. name: "Normal",
  51581. height: math.unit(6 + 9/12, "feet"),
  51582. default: true,
  51583. form: "borzoi"
  51584. },
  51585. {
  51586. name: "Normal",
  51587. height: math.unit(8 + 7/12, "feet"),
  51588. default: true,
  51589. form: "werewolf"
  51590. },
  51591. ],
  51592. {
  51593. "borzoi": {
  51594. name: "Borzoi",
  51595. default: true
  51596. },
  51597. "werewolf": {
  51598. name: "Werewolf",
  51599. },
  51600. }
  51601. ))
  51602. characterMakers.push(() => makeCharacter(
  51603. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51604. {
  51605. front: {
  51606. height: math.unit(8 + 7/12, "feet"),
  51607. weight: math.unit(482, "lb"),
  51608. name: "Front",
  51609. image: {
  51610. source: "./media/characters/kit/front.svg",
  51611. extra: 1247/1103,
  51612. bottom: 41/1288
  51613. }
  51614. },
  51615. back: {
  51616. height: math.unit(8 + 7/12, "feet"),
  51617. weight: math.unit(482, "lb"),
  51618. name: "Back",
  51619. image: {
  51620. source: "./media/characters/kit/back.svg",
  51621. extra: 1252/1123,
  51622. bottom: 21/1273
  51623. }
  51624. },
  51625. paw: {
  51626. height: math.unit(1.46, "feet"),
  51627. name: "Paw",
  51628. image: {
  51629. source: "./media/characters/kit/paw.svg"
  51630. }
  51631. },
  51632. },
  51633. [
  51634. {
  51635. name: "Normal",
  51636. height: math.unit(2.61, "meters"),
  51637. default: true
  51638. },
  51639. {
  51640. name: "\"Tall\"",
  51641. height: math.unit(8.21, "meters")
  51642. },
  51643. {
  51644. name: "Tall",
  51645. height: math.unit(19.6, "meters")
  51646. },
  51647. {
  51648. name: "Very Tall",
  51649. height: math.unit(57.91, "meters")
  51650. },
  51651. {
  51652. name: "Semi-Macro",
  51653. height: math.unit(138.64, "meters")
  51654. },
  51655. {
  51656. name: "Macro",
  51657. height: math.unit(831.99, "meters")
  51658. },
  51659. {
  51660. name: "EX-Macro",
  51661. height: math.unit(96451121, "meters")
  51662. },
  51663. {
  51664. name: "S1-Omnipotent",
  51665. height: math.unit(4.42074e+9, "meters")
  51666. },
  51667. {
  51668. name: "S2-Omnipotent",
  51669. height: math.unit(9.42074e+17, "meters")
  51670. },
  51671. {
  51672. name: "Omnipotent",
  51673. height: math.unit(4.23112e+24, "meters")
  51674. },
  51675. {
  51676. name: "Hypergod",
  51677. height: math.unit(5.05176e+27, "meters")
  51678. },
  51679. {
  51680. name: "Hypergod-EX",
  51681. height: math.unit(9.45532e+49, "meters")
  51682. },
  51683. {
  51684. name: "Hypergod-SP",
  51685. height: math.unit(9.45532e+195, "meters")
  51686. },
  51687. ]
  51688. ))
  51689. characterMakers.push(() => makeCharacter(
  51690. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51691. {
  51692. side: {
  51693. height: math.unit(0.6, "meters"),
  51694. weight: math.unit(24, "kg"),
  51695. name: "Side",
  51696. image: {
  51697. source: "./media/characters/celeste/side.svg",
  51698. extra: 810/517,
  51699. bottom: 53/863
  51700. }
  51701. },
  51702. },
  51703. [
  51704. {
  51705. name: "Velociraptor",
  51706. height: math.unit(0.6, "meters"),
  51707. default: true
  51708. },
  51709. {
  51710. name: "Utahraptor",
  51711. height: math.unit(1.8, "meters")
  51712. },
  51713. {
  51714. name: "Gallimimus",
  51715. height: math.unit(4.0, "meters")
  51716. },
  51717. {
  51718. name: "Large",
  51719. height: math.unit(20, "meters")
  51720. },
  51721. {
  51722. name: "Planetary",
  51723. height: math.unit(50, "megameters")
  51724. },
  51725. {
  51726. name: "Stellar",
  51727. height: math.unit(1.5, "gigameters")
  51728. },
  51729. {
  51730. name: "Galactic",
  51731. height: math.unit(100, "exameters")
  51732. },
  51733. ]
  51734. ))
  51735. characterMakers.push(() => makeCharacter(
  51736. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51737. {
  51738. front: {
  51739. height: math.unit(6, "feet"),
  51740. weight: math.unit(210, "lb"),
  51741. name: "Front",
  51742. image: {
  51743. source: "./media/characters/glacia/front.svg",
  51744. extra: 958/901,
  51745. bottom: 45/1003
  51746. }
  51747. },
  51748. },
  51749. [
  51750. {
  51751. name: "Macro",
  51752. height: math.unit(1000, "meters"),
  51753. default: true
  51754. },
  51755. ]
  51756. ))
  51757. characterMakers.push(() => makeCharacter(
  51758. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51759. {
  51760. front: {
  51761. height: math.unit(4, "meters"),
  51762. name: "Front",
  51763. image: {
  51764. source: "./media/characters/giri/front.svg",
  51765. extra: 966/894,
  51766. bottom: 21/987
  51767. }
  51768. },
  51769. },
  51770. [
  51771. {
  51772. name: "Normal",
  51773. height: math.unit(4, "meters"),
  51774. default: true
  51775. },
  51776. ]
  51777. ))
  51778. characterMakers.push(() => makeCharacter(
  51779. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51780. {
  51781. back: {
  51782. height: math.unit(4, "feet"),
  51783. weight: math.unit(37, "lb"),
  51784. name: "Back",
  51785. image: {
  51786. source: "./media/characters/tin/back.svg",
  51787. extra: 845/780,
  51788. bottom: 28/873
  51789. }
  51790. },
  51791. },
  51792. [
  51793. {
  51794. name: "Normal",
  51795. height: math.unit(4, "feet"),
  51796. default: true
  51797. },
  51798. ]
  51799. ))
  51800. characterMakers.push(() => makeCharacter(
  51801. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51802. {
  51803. front: {
  51804. height: math.unit(25, "feet"),
  51805. name: "Front",
  51806. image: {
  51807. source: "./media/characters/cadenza-vivace/front.svg",
  51808. extra: 1842/1578,
  51809. bottom: 30/1872
  51810. }
  51811. },
  51812. },
  51813. [
  51814. {
  51815. name: "Macro",
  51816. height: math.unit(25, "feet"),
  51817. default: true
  51818. },
  51819. ]
  51820. ))
  51821. characterMakers.push(() => makeCharacter(
  51822. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51823. {
  51824. front: {
  51825. height: math.unit(10, "feet"),
  51826. weight: math.unit(625, "kg"),
  51827. name: "Front",
  51828. image: {
  51829. source: "./media/characters/zain/front.svg",
  51830. extra: 1682/1498,
  51831. bottom: 223/1905
  51832. }
  51833. },
  51834. back: {
  51835. height: math.unit(10, "feet"),
  51836. weight: math.unit(625, "kg"),
  51837. name: "Back",
  51838. image: {
  51839. source: "./media/characters/zain/back.svg",
  51840. extra: 1814/1657,
  51841. bottom: 152/1966
  51842. }
  51843. },
  51844. head: {
  51845. height: math.unit(10, "feet"),
  51846. weight: math.unit(625, "kg"),
  51847. name: "Head",
  51848. image: {
  51849. source: "./media/characters/zain/head.svg",
  51850. extra: 1059/762,
  51851. bottom: 0/1059
  51852. }
  51853. },
  51854. },
  51855. [
  51856. {
  51857. name: "Normal",
  51858. height: math.unit(10, "feet"),
  51859. default: true
  51860. },
  51861. ]
  51862. ))
  51863. characterMakers.push(() => makeCharacter(
  51864. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51865. {
  51866. front: {
  51867. height: math.unit(6 + 5/12, "feet"),
  51868. weight: math.unit(750, "lb"),
  51869. name: "Front",
  51870. image: {
  51871. source: "./media/characters/ruchex/front.svg",
  51872. extra: 877/820,
  51873. bottom: 17/894
  51874. },
  51875. extraAttributes: {
  51876. "width": {
  51877. name: "Width",
  51878. power: 1,
  51879. type: "length",
  51880. base: math.unit(4.757, "feet")
  51881. },
  51882. }
  51883. },
  51884. },
  51885. [
  51886. {
  51887. name: "Normal",
  51888. height: math.unit(6 + 5/12, "feet"),
  51889. default: true
  51890. },
  51891. ]
  51892. ))
  51893. characterMakers.push(() => makeCharacter(
  51894. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51895. {
  51896. dressedFront: {
  51897. height: math.unit(191, "cm"),
  51898. weight: math.unit(80, "kg"),
  51899. name: "Front",
  51900. image: {
  51901. source: "./media/characters/buster/dressed-front.svg",
  51902. extra: 1022/973,
  51903. bottom: 69/1091
  51904. }
  51905. },
  51906. dressedBack: {
  51907. height: math.unit(191, "cm"),
  51908. weight: math.unit(80, "kg"),
  51909. name: "Back",
  51910. image: {
  51911. source: "./media/characters/buster/dressed-back.svg",
  51912. extra: 1018/970,
  51913. bottom: 55/1073
  51914. }
  51915. },
  51916. nudeFront: {
  51917. height: math.unit(191, "cm"),
  51918. weight: math.unit(80, "kg"),
  51919. name: "Front (Nude)",
  51920. image: {
  51921. source: "./media/characters/buster/nude-front.svg",
  51922. extra: 1022/973,
  51923. bottom: 69/1091
  51924. }
  51925. },
  51926. nudeBack: {
  51927. height: math.unit(191, "cm"),
  51928. weight: math.unit(80, "kg"),
  51929. name: "Back (Nude)",
  51930. image: {
  51931. source: "./media/characters/buster/nude-back.svg",
  51932. extra: 1018/970,
  51933. bottom: 55/1073
  51934. }
  51935. },
  51936. dick: {
  51937. height: math.unit(2.59, "feet"),
  51938. name: "Dick",
  51939. image: {
  51940. source: "./media/characters/buster/dick.svg"
  51941. }
  51942. },
  51943. ass: {
  51944. height: math.unit(1.2, "feet"),
  51945. name: "Ass",
  51946. image: {
  51947. source: "./media/characters/buster/ass.svg"
  51948. }
  51949. },
  51950. },
  51951. [
  51952. {
  51953. name: "Normal",
  51954. height: math.unit(191, "cm"),
  51955. default: true
  51956. },
  51957. ]
  51958. ))
  51959. characterMakers.push(() => makeCharacter(
  51960. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51961. {
  51962. side: {
  51963. height: math.unit(8.1, "feet"),
  51964. weight: math.unit(3500, "lb"),
  51965. name: "Side",
  51966. image: {
  51967. source: "./media/characters/sonya/side.svg",
  51968. extra: 1730/1317,
  51969. bottom: 86/1816
  51970. }
  51971. },
  51972. },
  51973. [
  51974. {
  51975. name: "Normal",
  51976. height: math.unit(8.1, "feet"),
  51977. default: true
  51978. },
  51979. ]
  51980. ))
  51981. characterMakers.push(() => makeCharacter(
  51982. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51983. {
  51984. front: {
  51985. height: math.unit(6, "feet"),
  51986. weight: math.unit(150, "lb"),
  51987. name: "Front",
  51988. image: {
  51989. source: "./media/characters/cadence-andrysiak/front.svg",
  51990. extra: 1164/1121,
  51991. bottom: 60/1224
  51992. }
  51993. },
  51994. back: {
  51995. height: math.unit(6, "feet"),
  51996. weight: math.unit(150, "lb"),
  51997. name: "Back",
  51998. image: {
  51999. source: "./media/characters/cadence-andrysiak/back.svg",
  52000. extra: 1200/1165,
  52001. bottom: 9/1209
  52002. }
  52003. },
  52004. dressed: {
  52005. height: math.unit(6, "feet"),
  52006. weight: math.unit(150, "lb"),
  52007. name: "Dressed",
  52008. image: {
  52009. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52010. extra: 1164/1121,
  52011. bottom: 60/1224
  52012. }
  52013. },
  52014. },
  52015. [
  52016. {
  52017. name: "Micro",
  52018. height: math.unit(1, "mm")
  52019. },
  52020. {
  52021. name: "Normal",
  52022. height: math.unit(6, "feet"),
  52023. default: true
  52024. },
  52025. ]
  52026. ))
  52027. characterMakers.push(() => makeCharacter(
  52028. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52029. {
  52030. front: {
  52031. height: math.unit(60, "inches"),
  52032. weight: math.unit(16, "lb"),
  52033. preyCapacity: math.unit(80, "liters"),
  52034. name: "Front",
  52035. image: {
  52036. source: "./media/characters/penny-lynx/front.svg",
  52037. extra: 1959/1769,
  52038. bottom: 49/2008
  52039. }
  52040. },
  52041. },
  52042. [
  52043. {
  52044. name: "Nokia",
  52045. height: math.unit(2, "inches")
  52046. },
  52047. {
  52048. name: "Desktop",
  52049. height: math.unit(24, "inches")
  52050. },
  52051. {
  52052. name: "TV",
  52053. height: math.unit(60, "inches")
  52054. },
  52055. {
  52056. name: "Jumbotron",
  52057. height: math.unit(12, "feet")
  52058. },
  52059. {
  52060. name: "Billboard",
  52061. height: math.unit(48, "feet"),
  52062. default: true
  52063. },
  52064. {
  52065. name: "IMAX",
  52066. height: math.unit(96, "feet")
  52067. },
  52068. {
  52069. name: "SINGULARITY",
  52070. height: math.unit(864938, "miles")
  52071. },
  52072. ]
  52073. ))
  52074. characterMakers.push(() => makeCharacter(
  52075. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52076. {
  52077. front: {
  52078. height: math.unit(5 + 4/12, "feet"),
  52079. weight: math.unit(230, "lb"),
  52080. name: "Front",
  52081. image: {
  52082. source: "./media/characters/sukebe/front.svg",
  52083. extra: 2130/2038,
  52084. bottom: 90/2220
  52085. }
  52086. },
  52087. back: {
  52088. height: math.unit(3.48, "feet"),
  52089. weight: math.unit(230, "lb"),
  52090. name: "Back",
  52091. image: {
  52092. source: "./media/characters/sukebe/back.svg",
  52093. extra: 1670/1604,
  52094. bottom: 0/1670
  52095. }
  52096. },
  52097. },
  52098. [
  52099. {
  52100. name: "Normal",
  52101. height: math.unit(5 + 4/12, "feet"),
  52102. default: true
  52103. },
  52104. ]
  52105. ))
  52106. characterMakers.push(() => makeCharacter(
  52107. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52108. {
  52109. front: {
  52110. height: math.unit(6, "feet"),
  52111. name: "Front",
  52112. image: {
  52113. source: "./media/characters/nylla/front.svg",
  52114. extra: 1868/1699,
  52115. bottom: 97/1965
  52116. }
  52117. },
  52118. back: {
  52119. height: math.unit(6, "feet"),
  52120. name: "Back",
  52121. image: {
  52122. source: "./media/characters/nylla/back.svg",
  52123. extra: 1889/1712,
  52124. bottom: 93/1982
  52125. }
  52126. },
  52127. frontNsfw: {
  52128. height: math.unit(6, "feet"),
  52129. name: "Front (NSFW)",
  52130. image: {
  52131. source: "./media/characters/nylla/front-nsfw.svg",
  52132. extra: 1868/1699,
  52133. bottom: 97/1965
  52134. },
  52135. extraAttributes: {
  52136. "dickLength": {
  52137. name: "Dick Length",
  52138. power: 1,
  52139. type: "length",
  52140. base: math.unit(1.4, "feet")
  52141. },
  52142. "cumVolume": {
  52143. name: "Cum Volume",
  52144. power: 3,
  52145. type: "volume",
  52146. base: math.unit(100, "mL")
  52147. },
  52148. }
  52149. },
  52150. backNsfw: {
  52151. height: math.unit(6, "feet"),
  52152. name: "Back (NSFW)",
  52153. image: {
  52154. source: "./media/characters/nylla/back-nsfw.svg",
  52155. extra: 1889/1712,
  52156. bottom: 93/1982
  52157. }
  52158. },
  52159. maw: {
  52160. height: math.unit(2.10, "feet"),
  52161. name: "Maw",
  52162. image: {
  52163. source: "./media/characters/nylla/maw.svg"
  52164. }
  52165. },
  52166. paws: {
  52167. height: math.unit(2.06, "feet"),
  52168. name: "Paws",
  52169. image: {
  52170. source: "./media/characters/nylla/paws.svg"
  52171. }
  52172. },
  52173. muzzle: {
  52174. height: math.unit(0.61, "feet"),
  52175. name: "Muzzle",
  52176. image: {
  52177. source: "./media/characters/nylla/muzzle.svg"
  52178. }
  52179. },
  52180. sheath: {
  52181. height: math.unit(1.305, "feet"),
  52182. name: "Sheath",
  52183. image: {
  52184. source: "./media/characters/nylla/sheath.svg"
  52185. }
  52186. },
  52187. },
  52188. [
  52189. {
  52190. name: "Micro",
  52191. height: math.unit(7.5, "inches")
  52192. },
  52193. {
  52194. name: "Normal",
  52195. height: math.unit(7, "feet"),
  52196. default: true
  52197. },
  52198. {
  52199. name: "Macro",
  52200. height: math.unit(60, "feet")
  52201. },
  52202. {
  52203. name: "Mega",
  52204. height: math.unit(200, "feet")
  52205. },
  52206. ]
  52207. ))
  52208. characterMakers.push(() => makeCharacter(
  52209. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52210. {
  52211. front: {
  52212. height: math.unit(10, "feet"),
  52213. weight: math.unit(2300, "lb"),
  52214. name: "Front",
  52215. image: {
  52216. source: "./media/characters/hunt3r/front.svg",
  52217. extra: 1909/1742,
  52218. bottom: 46/1955
  52219. }
  52220. },
  52221. },
  52222. [
  52223. {
  52224. name: "Normal",
  52225. height: math.unit(10, "feet"),
  52226. default: true
  52227. },
  52228. ]
  52229. ))
  52230. characterMakers.push(() => makeCharacter(
  52231. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52232. {
  52233. dressed: {
  52234. height: math.unit(11, "feet"),
  52235. weight: math.unit(18500, "lb"),
  52236. preyCapacity: math.unit(9, "people"),
  52237. name: "Dressed",
  52238. image: {
  52239. source: "./media/characters/cylphis/dressed.svg",
  52240. extra: 1028/1003,
  52241. bottom: 75/1103
  52242. },
  52243. },
  52244. undressed: {
  52245. height: math.unit(11, "feet"),
  52246. weight: math.unit(18500, "lb"),
  52247. preyCapacity: math.unit(9, "people"),
  52248. name: "Undressed",
  52249. image: {
  52250. source: "./media/characters/cylphis/undressed.svg",
  52251. extra: 1028/1003,
  52252. bottom: 75/1103
  52253. }
  52254. },
  52255. full: {
  52256. height: math.unit(11, "feet"),
  52257. weight: math.unit(18500 + 150*9, "lb"),
  52258. preyCapacity: math.unit(9, "people"),
  52259. name: "Full",
  52260. image: {
  52261. source: "./media/characters/cylphis/full.svg",
  52262. extra: 1028/1003,
  52263. bottom: 75/1103
  52264. }
  52265. },
  52266. },
  52267. [
  52268. {
  52269. name: "Small",
  52270. height: math.unit(8, "feet")
  52271. },
  52272. {
  52273. name: "Normal",
  52274. height: math.unit(11, "feet"),
  52275. default: true
  52276. },
  52277. ]
  52278. ))
  52279. characterMakers.push(() => makeCharacter(
  52280. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52281. {
  52282. front: {
  52283. height: math.unit(2 + 7/12, "feet"),
  52284. name: "Front",
  52285. image: {
  52286. source: "./media/characters/orishan/front.svg",
  52287. extra: 1058/1023,
  52288. bottom: 23/1081
  52289. }
  52290. },
  52291. back: {
  52292. height: math.unit(2 + 7/12, "feet"),
  52293. name: "Back",
  52294. image: {
  52295. source: "./media/characters/orishan/back.svg",
  52296. extra: 1058/1023,
  52297. bottom: 23/1081
  52298. }
  52299. },
  52300. },
  52301. [
  52302. {
  52303. name: "Micro",
  52304. height: math.unit(2, "cm")
  52305. },
  52306. {
  52307. name: "Normal",
  52308. height: math.unit(2 + 7/12, "feet"),
  52309. default: true
  52310. },
  52311. ]
  52312. ))
  52313. characterMakers.push(() => makeCharacter(
  52314. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52315. {
  52316. front: {
  52317. height: math.unit(3, "meters"),
  52318. weight: math.unit(508, "kg"),
  52319. name: "Front",
  52320. image: {
  52321. source: "./media/characters/seranis/front.svg",
  52322. extra: 1478/1454,
  52323. bottom: 41/1519
  52324. }
  52325. },
  52326. },
  52327. [
  52328. {
  52329. name: "Normal",
  52330. height: math.unit(3, "meters"),
  52331. default: true
  52332. },
  52333. {
  52334. name: "Macro",
  52335. height: math.unit(108, "meters")
  52336. },
  52337. {
  52338. name: "Megamacro",
  52339. height: math.unit(1250, "meters")
  52340. },
  52341. ]
  52342. ))
  52343. characterMakers.push(() => makeCharacter(
  52344. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52345. {
  52346. undressed: {
  52347. height: math.unit(5 + 3/12, "feet"),
  52348. name: "Undressed",
  52349. image: {
  52350. source: "./media/characters/ankou/undressed.svg",
  52351. extra: 1301/1213,
  52352. bottom: 87/1388
  52353. }
  52354. },
  52355. dressed: {
  52356. height: math.unit(5 + 3/12, "feet"),
  52357. name: "Dressed",
  52358. image: {
  52359. source: "./media/characters/ankou/dressed.svg",
  52360. extra: 1301/1213,
  52361. bottom: 87/1388
  52362. }
  52363. },
  52364. head: {
  52365. height: math.unit(1.61, "feet"),
  52366. name: "Head",
  52367. image: {
  52368. source: "./media/characters/ankou/head.svg"
  52369. }
  52370. },
  52371. },
  52372. [
  52373. {
  52374. name: "Normal",
  52375. height: math.unit(5 + 3/12, "feet"),
  52376. default: true
  52377. },
  52378. ]
  52379. ))
  52380. characterMakers.push(() => makeCharacter(
  52381. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52382. {
  52383. side: {
  52384. height: math.unit(6 + 3/12, "feet"),
  52385. weight: math.unit(200, "kg"),
  52386. name: "Side",
  52387. image: {
  52388. source: "./media/characters/juniper-skunktaur/side.svg",
  52389. extra: 1574/1229,
  52390. bottom: 38/1612
  52391. }
  52392. },
  52393. front: {
  52394. height: math.unit(6 + 3/12, "feet"),
  52395. weight: math.unit(200, "kg"),
  52396. name: "Front",
  52397. image: {
  52398. source: "./media/characters/juniper-skunktaur/front.svg",
  52399. extra: 1337/1278,
  52400. bottom: 22/1359
  52401. }
  52402. },
  52403. back: {
  52404. height: math.unit(6 + 3/12, "feet"),
  52405. weight: math.unit(200, "kg"),
  52406. name: "Back",
  52407. image: {
  52408. source: "./media/characters/juniper-skunktaur/back.svg",
  52409. extra: 1618/1273,
  52410. bottom: 13/1631
  52411. }
  52412. },
  52413. top: {
  52414. height: math.unit(2.62, "feet"),
  52415. weight: math.unit(200, "kg"),
  52416. name: "Top",
  52417. image: {
  52418. source: "./media/characters/juniper-skunktaur/top.svg"
  52419. }
  52420. },
  52421. },
  52422. [
  52423. {
  52424. name: "Normal",
  52425. height: math.unit(6 + 3/12, "feet"),
  52426. default: true
  52427. },
  52428. ]
  52429. ))
  52430. characterMakers.push(() => makeCharacter(
  52431. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52432. {
  52433. front: {
  52434. height: math.unit(20.5, "feet"),
  52435. name: "Front",
  52436. image: {
  52437. source: "./media/characters/rei/front.svg",
  52438. extra: 1349/1195,
  52439. bottom: 31/1380
  52440. }
  52441. },
  52442. back: {
  52443. height: math.unit(20.5, "feet"),
  52444. name: "Back",
  52445. image: {
  52446. source: "./media/characters/rei/back.svg",
  52447. extra: 1358/1204,
  52448. bottom: 22/1380
  52449. }
  52450. },
  52451. pawsDigi: {
  52452. height: math.unit(3.45, "feet"),
  52453. name: "Paws (Digi)",
  52454. image: {
  52455. source: "./media/characters/rei/paws-digi.svg"
  52456. }
  52457. },
  52458. pawsPlanti: {
  52459. height: math.unit(3.45, "feet"),
  52460. name: "Paws (Planti)",
  52461. image: {
  52462. source: "./media/characters/rei/paws-planti.svg"
  52463. }
  52464. },
  52465. },
  52466. [
  52467. {
  52468. name: "Normal",
  52469. height: math.unit(20.5, "feet"),
  52470. default: true
  52471. },
  52472. ]
  52473. ))
  52474. characterMakers.push(() => makeCharacter(
  52475. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52476. {
  52477. front: {
  52478. height: math.unit(5 + 11/12, "feet"),
  52479. name: "Front",
  52480. image: {
  52481. source: "./media/characters/carina/front.svg",
  52482. extra: 1720/1449,
  52483. bottom: 14/1734
  52484. }
  52485. },
  52486. back: {
  52487. height: math.unit(5 + 11/12, "feet"),
  52488. name: "Back",
  52489. image: {
  52490. source: "./media/characters/carina/back.svg",
  52491. extra: 1493/1445,
  52492. bottom: 17/1510
  52493. }
  52494. },
  52495. paw: {
  52496. height: math.unit(0.92, "feet"),
  52497. name: "Paw",
  52498. image: {
  52499. source: "./media/characters/carina/paw.svg"
  52500. }
  52501. },
  52502. },
  52503. [
  52504. {
  52505. name: "Normal",
  52506. height: math.unit(5 + 11/12, "feet"),
  52507. default: true
  52508. },
  52509. ]
  52510. ))
  52511. characterMakers.push(() => makeCharacter(
  52512. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52513. {
  52514. front: {
  52515. height: math.unit(4.88, "meters"),
  52516. name: "Front",
  52517. image: {
  52518. source: "./media/characters/maya/front.svg",
  52519. extra: 1222/1145,
  52520. bottom: 57/1279
  52521. }
  52522. },
  52523. },
  52524. [
  52525. {
  52526. name: "Normal",
  52527. height: math.unit(4.88, "meters"),
  52528. default: true
  52529. },
  52530. {
  52531. name: "Macro",
  52532. height: math.unit(38.1, "meters")
  52533. },
  52534. {
  52535. name: "Macro+",
  52536. height: math.unit(152.4, "meters")
  52537. },
  52538. {
  52539. name: "Macro++",
  52540. height: math.unit(16.09, "km")
  52541. },
  52542. {
  52543. name: "Mega-macro",
  52544. height: math.unit(700, "megameters")
  52545. },
  52546. ]
  52547. ))
  52548. characterMakers.push(() => makeCharacter(
  52549. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52550. {
  52551. front: {
  52552. height: math.unit(6 + 2/12, "feet"),
  52553. weight: math.unit(500, "lb"),
  52554. preyCapacity: math.unit(4, "people"),
  52555. name: "Front",
  52556. image: {
  52557. source: "./media/characters/yepir/front.svg"
  52558. }
  52559. },
  52560. side: {
  52561. height: math.unit(6 + 2/12, "feet"),
  52562. weight: math.unit(500, "lb"),
  52563. preyCapacity: math.unit(4, "people"),
  52564. name: "Side",
  52565. image: {
  52566. source: "./media/characters/yepir/side.svg"
  52567. }
  52568. },
  52569. paw: {
  52570. height: math.unit(1.05, "feet"),
  52571. name: "Paw",
  52572. image: {
  52573. source: "./media/characters/yepir/paw.svg"
  52574. }
  52575. },
  52576. },
  52577. [
  52578. {
  52579. name: "Normal",
  52580. height: math.unit(6 + 2/12, "feet"),
  52581. default: true
  52582. },
  52583. ]
  52584. ))
  52585. characterMakers.push(() => makeCharacter(
  52586. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52587. {
  52588. front: {
  52589. height: math.unit(5 + 4/12, "feet"),
  52590. name: "Front",
  52591. image: {
  52592. source: "./media/characters/russec/front.svg",
  52593. extra: 1926/1626,
  52594. bottom: 72/1998
  52595. }
  52596. },
  52597. back: {
  52598. height: math.unit(5 + 4/12, "feet"),
  52599. name: "Back",
  52600. image: {
  52601. source: "./media/characters/russec/back.svg",
  52602. extra: 1910/1591,
  52603. bottom: 48/1958
  52604. }
  52605. },
  52606. },
  52607. [
  52608. {
  52609. name: "Small",
  52610. height: math.unit(5 + 4/12, "feet")
  52611. },
  52612. {
  52613. name: "Normal",
  52614. height: math.unit(72, "feet"),
  52615. default: true
  52616. },
  52617. ]
  52618. ))
  52619. characterMakers.push(() => makeCharacter(
  52620. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52621. {
  52622. side: {
  52623. height: math.unit(12, "feet"),
  52624. name: "Side",
  52625. image: {
  52626. source: "./media/characters/cianus/side.svg",
  52627. extra: 808/526,
  52628. bottom: 61/869
  52629. }
  52630. },
  52631. },
  52632. [
  52633. {
  52634. name: "Normal",
  52635. height: math.unit(12, "feet"),
  52636. default: true
  52637. },
  52638. ]
  52639. ))
  52640. characterMakers.push(() => makeCharacter(
  52641. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52642. {
  52643. front: {
  52644. height: math.unit(9 + 6/12, "feet"),
  52645. weight: math.unit(300, "lb"),
  52646. name: "Front",
  52647. image: {
  52648. source: "./media/characters/ahab/front.svg",
  52649. extra: 1897/1868,
  52650. bottom: 121/2018
  52651. }
  52652. },
  52653. frontNsfw: {
  52654. height: math.unit(9 + 6/12, "feet"),
  52655. weight: math.unit(300, "lb"),
  52656. name: "Front-nsfw",
  52657. image: {
  52658. source: "./media/characters/ahab/front-nsfw.svg",
  52659. extra: 1897/1868,
  52660. bottom: 121/2018
  52661. }
  52662. },
  52663. },
  52664. [
  52665. {
  52666. name: "Normal",
  52667. height: math.unit(9 + 6/12, "feet")
  52668. },
  52669. {
  52670. name: "Macro",
  52671. height: math.unit(657, "feet"),
  52672. default: true
  52673. },
  52674. ]
  52675. ))
  52676. characterMakers.push(() => makeCharacter(
  52677. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52678. {
  52679. front: {
  52680. height: math.unit(2.69, "meters"),
  52681. weight: math.unit(132, "kg"),
  52682. name: "Front",
  52683. image: {
  52684. source: "./media/characters/aarkus/front.svg",
  52685. extra: 1400/1231,
  52686. bottom: 34/1434
  52687. }
  52688. },
  52689. back: {
  52690. height: math.unit(2.69, "meters"),
  52691. weight: math.unit(132, "kg"),
  52692. name: "Back",
  52693. image: {
  52694. source: "./media/characters/aarkus/back.svg",
  52695. extra: 1381/1218,
  52696. bottom: 30/1411
  52697. }
  52698. },
  52699. frontNsfw: {
  52700. height: math.unit(2.69, "meters"),
  52701. weight: math.unit(132, "kg"),
  52702. name: "Front (NSFW)",
  52703. image: {
  52704. source: "./media/characters/aarkus/front-nsfw.svg",
  52705. extra: 1400/1231,
  52706. bottom: 34/1434
  52707. }
  52708. },
  52709. foot: {
  52710. height: math.unit(1.45, "feet"),
  52711. name: "Foot",
  52712. image: {
  52713. source: "./media/characters/aarkus/foot.svg"
  52714. }
  52715. },
  52716. head: {
  52717. height: math.unit(2.85, "feet"),
  52718. name: "Head",
  52719. image: {
  52720. source: "./media/characters/aarkus/head.svg"
  52721. }
  52722. },
  52723. headAlt: {
  52724. height: math.unit(3.07, "feet"),
  52725. name: "Head (Alt)",
  52726. image: {
  52727. source: "./media/characters/aarkus/head-alt.svg"
  52728. }
  52729. },
  52730. mouth: {
  52731. height: math.unit(1.25, "feet"),
  52732. name: "Mouth",
  52733. image: {
  52734. source: "./media/characters/aarkus/mouth.svg"
  52735. }
  52736. },
  52737. dick: {
  52738. height: math.unit(1.77, "feet"),
  52739. name: "Dick",
  52740. image: {
  52741. source: "./media/characters/aarkus/dick.svg"
  52742. }
  52743. },
  52744. },
  52745. [
  52746. {
  52747. name: "Normal",
  52748. height: math.unit(2.69, "meters"),
  52749. default: true
  52750. },
  52751. {
  52752. name: "Macro",
  52753. height: math.unit(269, "meters")
  52754. },
  52755. {
  52756. name: "Macro+",
  52757. height: math.unit(672.5, "meters")
  52758. },
  52759. {
  52760. name: "Megamacro",
  52761. height: math.unit(2.017, "km")
  52762. },
  52763. ]
  52764. ))
  52765. characterMakers.push(() => makeCharacter(
  52766. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52767. {
  52768. front: {
  52769. height: math.unit(23.47, "cm"),
  52770. weight: math.unit(600, "grams"),
  52771. name: "Front",
  52772. image: {
  52773. source: "./media/characters/diode/front.svg",
  52774. extra: 1778/1396,
  52775. bottom: 95/1873
  52776. }
  52777. },
  52778. side: {
  52779. height: math.unit(23.47, "cm"),
  52780. weight: math.unit(600, "grams"),
  52781. name: "Side",
  52782. image: {
  52783. source: "./media/characters/diode/side.svg",
  52784. extra: 1831/1404,
  52785. bottom: 86/1917
  52786. }
  52787. },
  52788. wings: {
  52789. height: math.unit(0.683, "feet"),
  52790. name: "Wings",
  52791. image: {
  52792. source: "./media/characters/diode/wings.svg"
  52793. }
  52794. },
  52795. },
  52796. [
  52797. {
  52798. name: "Normal",
  52799. height: math.unit(23.47, "cm"),
  52800. default: true
  52801. },
  52802. ]
  52803. ))
  52804. characterMakers.push(() => makeCharacter(
  52805. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52806. {
  52807. front: {
  52808. height: math.unit(6 + 3/12, "feet"),
  52809. weight: math.unit(250, "lb"),
  52810. name: "Front",
  52811. image: {
  52812. source: "./media/characters/reika/front.svg",
  52813. extra: 1120/1078,
  52814. bottom: 86/1206
  52815. }
  52816. },
  52817. },
  52818. [
  52819. {
  52820. name: "Normal",
  52821. height: math.unit(6 + 3/12, "feet"),
  52822. default: true
  52823. },
  52824. ]
  52825. ))
  52826. characterMakers.push(() => makeCharacter(
  52827. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52828. {
  52829. front: {
  52830. height: math.unit(16 + 8/12, "feet"),
  52831. weight: math.unit(9000, "lb"),
  52832. name: "Front",
  52833. image: {
  52834. source: "./media/characters/lokuto-takama/front.svg",
  52835. extra: 1774/1632,
  52836. bottom: 147/1921
  52837. },
  52838. extraAttributes: {
  52839. "bustWidth": {
  52840. name: "Bust Width",
  52841. power: 1,
  52842. type: "length",
  52843. base: math.unit(2.4, "meters")
  52844. },
  52845. "breastWeight": {
  52846. name: "Breast Weight",
  52847. power: 3,
  52848. type: "mass",
  52849. base: math.unit(1000, "kg")
  52850. },
  52851. }
  52852. },
  52853. },
  52854. [
  52855. {
  52856. name: "Normal",
  52857. height: math.unit(16 + 8/12, "feet"),
  52858. default: true
  52859. },
  52860. ]
  52861. ))
  52862. characterMakers.push(() => makeCharacter(
  52863. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52864. {
  52865. front: {
  52866. height: math.unit(10, "cm"),
  52867. weight: math.unit(850, "grams"),
  52868. name: "Front",
  52869. image: {
  52870. source: "./media/characters/owak-bone/front.svg",
  52871. extra: 1965/1801,
  52872. bottom: 31/1996
  52873. }
  52874. },
  52875. },
  52876. [
  52877. {
  52878. name: "Normal",
  52879. height: math.unit(10, "cm"),
  52880. default: true
  52881. },
  52882. ]
  52883. ))
  52884. characterMakers.push(() => makeCharacter(
  52885. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52886. {
  52887. front: {
  52888. height: math.unit(2 + 6/12, "feet"),
  52889. weight: math.unit(9, "lb"),
  52890. name: "Front",
  52891. image: {
  52892. source: "./media/characters/muffin/front.svg",
  52893. extra: 1220/1195,
  52894. bottom: 84/1304
  52895. }
  52896. },
  52897. },
  52898. [
  52899. {
  52900. name: "Normal",
  52901. height: math.unit(2 + 6/12, "feet"),
  52902. default: true
  52903. },
  52904. ]
  52905. ))
  52906. characterMakers.push(() => makeCharacter(
  52907. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52908. {
  52909. front: {
  52910. height: math.unit(7, "feet"),
  52911. name: "Front",
  52912. image: {
  52913. source: "./media/characters/chimera/front.svg",
  52914. extra: 1752/1614,
  52915. bottom: 68/1820
  52916. }
  52917. },
  52918. },
  52919. [
  52920. {
  52921. name: "Normal",
  52922. height: math.unit(7, "feet")
  52923. },
  52924. {
  52925. name: "Gigamacro",
  52926. height: math.unit(2.9, "gigameters"),
  52927. default: true
  52928. },
  52929. {
  52930. name: "Universal",
  52931. height: math.unit(1.56e26, "yottameters")
  52932. },
  52933. ]
  52934. ))
  52935. characterMakers.push(() => makeCharacter(
  52936. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52937. {
  52938. front: {
  52939. height: math.unit(3, "feet"),
  52940. weight: math.unit(20, "lb"),
  52941. name: "Front",
  52942. image: {
  52943. source: "./media/characters/kit-fennec-fox/front.svg",
  52944. extra: 1027/932,
  52945. bottom: 16/1043
  52946. }
  52947. },
  52948. back: {
  52949. height: math.unit(3, "feet"),
  52950. weight: math.unit(20, "lb"),
  52951. name: "Back",
  52952. image: {
  52953. source: "./media/characters/kit-fennec-fox/back.svg",
  52954. extra: 1027/932,
  52955. bottom: 16/1043
  52956. }
  52957. },
  52958. },
  52959. [
  52960. {
  52961. name: "Normal",
  52962. height: math.unit(3, "feet"),
  52963. default: true
  52964. },
  52965. ]
  52966. ))
  52967. characterMakers.push(() => makeCharacter(
  52968. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52969. {
  52970. front: {
  52971. height: math.unit(167, "cm"),
  52972. name: "Front",
  52973. image: {
  52974. source: "./media/characters/blue-otter/front.svg",
  52975. extra: 1951/1920,
  52976. bottom: 31/1982
  52977. }
  52978. },
  52979. },
  52980. [
  52981. {
  52982. name: "Otter-Sized",
  52983. height: math.unit(100, "cm")
  52984. },
  52985. {
  52986. name: "Normal",
  52987. height: math.unit(167, "cm"),
  52988. default: true
  52989. },
  52990. ]
  52991. ))
  52992. characterMakers.push(() => makeCharacter(
  52993. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52994. {
  52995. front: {
  52996. height: math.unit(4 + 4/12, "feet"),
  52997. name: "Front",
  52998. image: {
  52999. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53000. extra: 1072/1067,
  53001. bottom: 117/1189
  53002. }
  53003. },
  53004. back: {
  53005. height: math.unit(4 + 4/12, "feet"),
  53006. name: "Back",
  53007. image: {
  53008. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53009. extra: 1135/1129,
  53010. bottom: 57/1192
  53011. }
  53012. },
  53013. head: {
  53014. height: math.unit(1.77, "feet"),
  53015. name: "Head",
  53016. image: {
  53017. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53018. }
  53019. },
  53020. },
  53021. [
  53022. {
  53023. name: "Normal",
  53024. height: math.unit(4 + 4/12, "feet"),
  53025. default: true
  53026. },
  53027. ]
  53028. ))
  53029. characterMakers.push(() => makeCharacter(
  53030. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53031. {
  53032. front: {
  53033. height: math.unit(2, "inches"),
  53034. name: "Front",
  53035. image: {
  53036. source: "./media/characters/carley-hartford/front.svg",
  53037. extra: 1035/988,
  53038. bottom: 23/1058
  53039. }
  53040. },
  53041. back: {
  53042. height: math.unit(2, "inches"),
  53043. name: "Back",
  53044. image: {
  53045. source: "./media/characters/carley-hartford/back.svg",
  53046. extra: 1035/988,
  53047. bottom: 23/1058
  53048. }
  53049. },
  53050. dressed: {
  53051. height: math.unit(2, "inches"),
  53052. name: "Dressed",
  53053. image: {
  53054. source: "./media/characters/carley-hartford/dressed.svg",
  53055. extra: 651/620,
  53056. bottom: 0/651
  53057. }
  53058. },
  53059. },
  53060. [
  53061. {
  53062. name: "Micro",
  53063. height: math.unit(2, "inches"),
  53064. default: true
  53065. },
  53066. {
  53067. name: "Macro",
  53068. height: math.unit(6 + 3/12, "feet")
  53069. },
  53070. ]
  53071. ))
  53072. characterMakers.push(() => makeCharacter(
  53073. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53074. {
  53075. front: {
  53076. height: math.unit(2 + 3/12, "feet"),
  53077. weight: math.unit(15 + 7/16, "lb"),
  53078. name: "Front",
  53079. image: {
  53080. source: "./media/characters/duke/front.svg",
  53081. extra: 910/815,
  53082. bottom: 30/940
  53083. }
  53084. },
  53085. },
  53086. [
  53087. {
  53088. name: "Normal",
  53089. height: math.unit(2 + 3/12, "feet"),
  53090. default: true
  53091. },
  53092. ]
  53093. ))
  53094. characterMakers.push(() => makeCharacter(
  53095. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53096. {
  53097. front: {
  53098. height: math.unit(5 + 4/12, "feet"),
  53099. weight: math.unit(156, "lb"),
  53100. name: "Front",
  53101. image: {
  53102. source: "./media/characters/dein/front.svg",
  53103. extra: 855/815,
  53104. bottom: 48/903
  53105. }
  53106. },
  53107. side: {
  53108. height: math.unit(5 + 4/12, "feet"),
  53109. weight: math.unit(156, "lb"),
  53110. name: "side",
  53111. image: {
  53112. source: "./media/characters/dein/side.svg",
  53113. extra: 846/803,
  53114. bottom: 25/871
  53115. }
  53116. },
  53117. maw: {
  53118. height: math.unit(1.45, "feet"),
  53119. name: "Maw",
  53120. image: {
  53121. source: "./media/characters/dein/maw.svg"
  53122. }
  53123. },
  53124. },
  53125. [
  53126. {
  53127. name: "Ferret Sized",
  53128. height: math.unit(2 + 5/12, "feet")
  53129. },
  53130. {
  53131. name: "Normal",
  53132. height: math.unit(5 + 4/12, "feet"),
  53133. default: true
  53134. },
  53135. ]
  53136. ))
  53137. characterMakers.push(() => makeCharacter(
  53138. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53139. {
  53140. front: {
  53141. height: math.unit(84 + 8/12, "feet"),
  53142. weight: math.unit(942180, "lb"),
  53143. name: "Front",
  53144. image: {
  53145. source: "./media/characters/daurine-arima/front.svg",
  53146. extra: 1989/1782,
  53147. bottom: 37/2026
  53148. }
  53149. },
  53150. side: {
  53151. height: math.unit(84 + 8/12, "feet"),
  53152. weight: math.unit(942180, "lb"),
  53153. name: "Side",
  53154. image: {
  53155. source: "./media/characters/daurine-arima/side.svg",
  53156. extra: 1997/1790,
  53157. bottom: 21/2018
  53158. }
  53159. },
  53160. back: {
  53161. height: math.unit(84 + 8/12, "feet"),
  53162. weight: math.unit(942180, "lb"),
  53163. name: "Back",
  53164. image: {
  53165. source: "./media/characters/daurine-arima/back.svg",
  53166. extra: 1992/1800,
  53167. bottom: 12/2004
  53168. }
  53169. },
  53170. head: {
  53171. height: math.unit(15.5, "feet"),
  53172. name: "Head",
  53173. image: {
  53174. source: "./media/characters/daurine-arima/head.svg"
  53175. }
  53176. },
  53177. headAlt: {
  53178. height: math.unit(19.19, "feet"),
  53179. name: "Head (Alt)",
  53180. image: {
  53181. source: "./media/characters/daurine-arima/head-alt.svg"
  53182. }
  53183. },
  53184. },
  53185. [
  53186. {
  53187. name: "Minimum height",
  53188. height: math.unit(8 + 10/12, "feet")
  53189. },
  53190. {
  53191. name: "Comfort height",
  53192. height: math.unit(19 + 6 /12, "feet")
  53193. },
  53194. {
  53195. name: "\"Normal\" height",
  53196. height: math.unit(28 + 10/12, "feet")
  53197. },
  53198. {
  53199. name: "Base height",
  53200. height: math.unit(84 + 8/12, "feet"),
  53201. default: true
  53202. },
  53203. {
  53204. name: "Mini-macro",
  53205. height: math.unit(2360, "feet")
  53206. },
  53207. {
  53208. name: "Macro",
  53209. height: math.unit(10, "miles")
  53210. },
  53211. {
  53212. name: "Goddess",
  53213. height: math.unit(9.99e40, "yottameters")
  53214. },
  53215. ]
  53216. ))
  53217. characterMakers.push(() => makeCharacter(
  53218. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53219. {
  53220. front: {
  53221. height: math.unit(2.3, "meters"),
  53222. name: "Front",
  53223. image: {
  53224. source: "./media/characters/cilenomon/front.svg",
  53225. extra: 1963/1778,
  53226. bottom: 54/2017
  53227. }
  53228. },
  53229. },
  53230. [
  53231. {
  53232. name: "Normal",
  53233. height: math.unit(2.3, "meters"),
  53234. default: true
  53235. },
  53236. {
  53237. name: "Big",
  53238. height: math.unit(5, "meters")
  53239. },
  53240. {
  53241. name: "Macro",
  53242. height: math.unit(30, "meters")
  53243. },
  53244. {
  53245. name: "True",
  53246. height: math.unit(1, "universe")
  53247. },
  53248. ]
  53249. ))
  53250. characterMakers.push(() => makeCharacter(
  53251. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53252. {
  53253. front: {
  53254. height: math.unit(5, "feet"),
  53255. name: "Front",
  53256. image: {
  53257. source: "./media/characters/sen-mink/front.svg",
  53258. extra: 1727/1675,
  53259. bottom: 35/1762
  53260. }
  53261. },
  53262. },
  53263. [
  53264. {
  53265. name: "Normal",
  53266. height: math.unit(5, "feet"),
  53267. default: true
  53268. },
  53269. ]
  53270. ))
  53271. characterMakers.push(() => makeCharacter(
  53272. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53273. {
  53274. front: {
  53275. height: math.unit(5.42999, "feet"),
  53276. weight: math.unit(100, "lb"),
  53277. name: "Front",
  53278. image: {
  53279. source: "./media/characters/ophois/front.svg",
  53280. extra: 1429/1286,
  53281. bottom: 60/1489
  53282. }
  53283. },
  53284. },
  53285. [
  53286. {
  53287. name: "Normal",
  53288. height: math.unit(5.42999, "feet"),
  53289. default: true
  53290. },
  53291. ]
  53292. ))
  53293. characterMakers.push(() => makeCharacter(
  53294. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53295. {
  53296. front: {
  53297. height: math.unit(2, "meters"),
  53298. name: "Front",
  53299. image: {
  53300. source: "./media/characters/riley/front.svg",
  53301. extra: 1779/1754,
  53302. bottom: 139/1918
  53303. }
  53304. },
  53305. },
  53306. [
  53307. {
  53308. name: "Normal",
  53309. height: math.unit(2, "meters"),
  53310. default: true
  53311. },
  53312. ]
  53313. ))
  53314. characterMakers.push(() => makeCharacter(
  53315. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53316. {
  53317. front: {
  53318. height: math.unit(6 + 2/12, "feet"),
  53319. weight: math.unit(195, "lb"),
  53320. preyCapacity: math.unit(6, "people"),
  53321. name: "Front",
  53322. image: {
  53323. source: "./media/characters/shuken-flash/front.svg",
  53324. extra: 1905/1739,
  53325. bottom: 65/1970
  53326. }
  53327. },
  53328. back: {
  53329. height: math.unit(6 + 2/12, "feet"),
  53330. weight: math.unit(195, "lb"),
  53331. preyCapacity: math.unit(6, "people"),
  53332. name: "Back",
  53333. image: {
  53334. source: "./media/characters/shuken-flash/back.svg",
  53335. extra: 1912/1751,
  53336. bottom: 13/1925
  53337. }
  53338. },
  53339. },
  53340. [
  53341. {
  53342. name: "Normal",
  53343. height: math.unit(6 + 2/12, "feet"),
  53344. default: true
  53345. },
  53346. ]
  53347. ))
  53348. characterMakers.push(() => makeCharacter(
  53349. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53350. {
  53351. front: {
  53352. height: math.unit(5 + 9/12, "feet"),
  53353. weight: math.unit(150, "lb"),
  53354. name: "Front",
  53355. image: {
  53356. source: "./media/characters/plat/front.svg",
  53357. extra: 1816/1703,
  53358. bottom: 43/1859
  53359. }
  53360. },
  53361. side: {
  53362. height: math.unit(5 + 9/12, "feet"),
  53363. weight: math.unit(300, "lb"),
  53364. name: "Side",
  53365. image: {
  53366. source: "./media/characters/plat/side.svg",
  53367. extra: 1824/1699,
  53368. bottom: 18/1842
  53369. }
  53370. },
  53371. },
  53372. [
  53373. {
  53374. name: "Normal",
  53375. height: math.unit(5 + 9/12, "feet"),
  53376. default: true
  53377. },
  53378. ]
  53379. ))
  53380. characterMakers.push(() => makeCharacter(
  53381. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53382. {
  53383. front: {
  53384. height: math.unit(9, "feet"),
  53385. weight: math.unit(1800, "lb"),
  53386. name: "Front",
  53387. image: {
  53388. source: "./media/characters/elaine/front.svg",
  53389. extra: 1833/1354,
  53390. bottom: 25/1858
  53391. }
  53392. },
  53393. back: {
  53394. height: math.unit(8.8, "feet"),
  53395. weight: math.unit(1800, "lb"),
  53396. name: "Back",
  53397. image: {
  53398. source: "./media/characters/elaine/back.svg",
  53399. extra: 1641/1233,
  53400. bottom: 53/1694
  53401. }
  53402. },
  53403. },
  53404. [
  53405. {
  53406. name: "Normal",
  53407. height: math.unit(9, "feet"),
  53408. default: true
  53409. },
  53410. ]
  53411. ))
  53412. characterMakers.push(() => makeCharacter(
  53413. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53414. {
  53415. front: {
  53416. height: math.unit(17 + 9/12, "feet"),
  53417. weight: math.unit(8000, "lb"),
  53418. name: "Front",
  53419. image: {
  53420. source: "./media/characters/vera-raven/front.svg",
  53421. extra: 1457/1412,
  53422. bottom: 121/1578
  53423. }
  53424. },
  53425. side: {
  53426. height: math.unit(17 + 9/12, "feet"),
  53427. weight: math.unit(8000, "lb"),
  53428. name: "Side",
  53429. image: {
  53430. source: "./media/characters/vera-raven/side.svg",
  53431. extra: 1510/1464,
  53432. bottom: 54/1564
  53433. }
  53434. },
  53435. },
  53436. [
  53437. {
  53438. name: "Normal",
  53439. height: math.unit(17 + 9/12, "feet"),
  53440. default: true
  53441. },
  53442. ]
  53443. ))
  53444. characterMakers.push(() => makeCharacter(
  53445. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53446. {
  53447. dressed: {
  53448. height: math.unit(6 + 9/12, "feet"),
  53449. name: "Dressed",
  53450. image: {
  53451. source: "./media/characters/nakisha/dressed.svg",
  53452. extra: 1909/1757,
  53453. bottom: 48/1957
  53454. }
  53455. },
  53456. nude: {
  53457. height: math.unit(6 + 9/12, "feet"),
  53458. name: "Nude",
  53459. image: {
  53460. source: "./media/characters/nakisha/nude.svg",
  53461. extra: 1917/1765,
  53462. bottom: 34/1951
  53463. }
  53464. },
  53465. },
  53466. [
  53467. {
  53468. name: "Normal",
  53469. height: math.unit(6 + 9/12, "feet"),
  53470. default: true
  53471. },
  53472. ]
  53473. ))
  53474. characterMakers.push(() => makeCharacter(
  53475. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53476. {
  53477. front: {
  53478. height: math.unit(87, "meters"),
  53479. name: "Front",
  53480. image: {
  53481. source: "./media/characters/serafin/front.svg",
  53482. extra: 1919/1776,
  53483. bottom: 65/1984
  53484. }
  53485. },
  53486. },
  53487. [
  53488. {
  53489. name: "Normal",
  53490. height: math.unit(87, "meters"),
  53491. default: true
  53492. },
  53493. ]
  53494. ))
  53495. characterMakers.push(() => makeCharacter(
  53496. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53497. {
  53498. front: {
  53499. height: math.unit(6, "feet"),
  53500. weight: math.unit(200, "lb"),
  53501. name: "Front",
  53502. image: {
  53503. source: "./media/characters/poptart/front.svg",
  53504. extra: 615/583,
  53505. bottom: 23/638
  53506. }
  53507. },
  53508. back: {
  53509. height: math.unit(6, "feet"),
  53510. weight: math.unit(200, "lb"),
  53511. name: "Back",
  53512. image: {
  53513. source: "./media/characters/poptart/back.svg",
  53514. extra: 617/584,
  53515. bottom: 22/639
  53516. }
  53517. },
  53518. frontNsfw: {
  53519. height: math.unit(6, "feet"),
  53520. weight: math.unit(200, "lb"),
  53521. name: "Front (NSFW)",
  53522. image: {
  53523. source: "./media/characters/poptart/front-nsfw.svg",
  53524. extra: 615/583,
  53525. bottom: 23/638
  53526. }
  53527. },
  53528. backNsfw: {
  53529. height: math.unit(6, "feet"),
  53530. weight: math.unit(200, "lb"),
  53531. name: "Back (NSFW)",
  53532. image: {
  53533. source: "./media/characters/poptart/back-nsfw.svg",
  53534. extra: 617/584,
  53535. bottom: 22/639
  53536. }
  53537. },
  53538. hand: {
  53539. height: math.unit(1.14, "feet"),
  53540. name: "Hand",
  53541. image: {
  53542. source: "./media/characters/poptart/hand.svg"
  53543. }
  53544. },
  53545. foot: {
  53546. height: math.unit(1.5, "feet"),
  53547. name: "Foot",
  53548. image: {
  53549. source: "./media/characters/poptart/foot.svg"
  53550. }
  53551. },
  53552. },
  53553. [
  53554. {
  53555. name: "Normal",
  53556. height: math.unit(6, "feet"),
  53557. default: true
  53558. },
  53559. {
  53560. name: "Grande",
  53561. height: math.unit(350, "feet")
  53562. },
  53563. {
  53564. name: "Massif",
  53565. height: math.unit(967, "feet")
  53566. },
  53567. ]
  53568. ))
  53569. characterMakers.push(() => makeCharacter(
  53570. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53571. {
  53572. hyenaSide: {
  53573. height: math.unit(120, "cm"),
  53574. weight: math.unit(120, "lb"),
  53575. name: "Side",
  53576. image: {
  53577. source: "./media/characters/trance/hyena-side.svg",
  53578. extra: 998/904,
  53579. bottom: 76/1074
  53580. }
  53581. },
  53582. },
  53583. [
  53584. {
  53585. name: "Normal",
  53586. height: math.unit(120, "cm"),
  53587. default: true
  53588. },
  53589. {
  53590. name: "Dire",
  53591. height: math.unit(230, "cm")
  53592. },
  53593. {
  53594. name: "Macro",
  53595. height: math.unit(37, "feet")
  53596. },
  53597. ]
  53598. ))
  53599. characterMakers.push(() => makeCharacter(
  53600. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53601. {
  53602. front: {
  53603. height: math.unit(6 + 3/12, "feet"),
  53604. name: "Front",
  53605. image: {
  53606. source: "./media/characters/michael-berretta/front.svg",
  53607. extra: 515/494,
  53608. bottom: 20/535
  53609. }
  53610. },
  53611. back: {
  53612. height: math.unit(6 + 3/12, "feet"),
  53613. name: "Back",
  53614. image: {
  53615. source: "./media/characters/michael-berretta/back.svg",
  53616. extra: 520/497,
  53617. bottom: 21/541
  53618. }
  53619. },
  53620. frontNsfw: {
  53621. height: math.unit(6 + 3/12, "feet"),
  53622. name: "Front (NSFW)",
  53623. image: {
  53624. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53625. extra: 515/494,
  53626. bottom: 20/535
  53627. }
  53628. },
  53629. dick: {
  53630. height: math.unit(1, "feet"),
  53631. name: "Dick",
  53632. image: {
  53633. source: "./media/characters/michael-berretta/dick.svg"
  53634. }
  53635. },
  53636. },
  53637. [
  53638. {
  53639. name: "Normal",
  53640. height: math.unit(6 + 3/12, "feet"),
  53641. default: true
  53642. },
  53643. {
  53644. name: "Big",
  53645. height: math.unit(12, "feet")
  53646. },
  53647. {
  53648. name: "Macro",
  53649. height: math.unit(187.5, "feet")
  53650. },
  53651. ]
  53652. ))
  53653. characterMakers.push(() => makeCharacter(
  53654. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53655. {
  53656. front: {
  53657. height: math.unit(9 + 9/12, "feet"),
  53658. weight: math.unit(1244, "lb"),
  53659. name: "Front",
  53660. image: {
  53661. source: "./media/characters/stella-edgecomb/front.svg",
  53662. extra: 1835/1706,
  53663. bottom: 49/1884
  53664. }
  53665. },
  53666. pen: {
  53667. height: math.unit(0.95, "feet"),
  53668. name: "Pen",
  53669. image: {
  53670. source: "./media/characters/stella-edgecomb/pen.svg"
  53671. }
  53672. },
  53673. },
  53674. [
  53675. {
  53676. name: "Cozy Bear",
  53677. height: math.unit(0.5, "inches")
  53678. },
  53679. {
  53680. name: "Normal",
  53681. height: math.unit(9 + 9/12, "feet"),
  53682. default: true
  53683. },
  53684. {
  53685. name: "Giga Bear",
  53686. height: math.unit(1, "mile")
  53687. },
  53688. {
  53689. name: "Great Bear",
  53690. height: math.unit(53, "miles")
  53691. },
  53692. {
  53693. name: "Goddess Bear",
  53694. height: math.unit(40000, "miles")
  53695. },
  53696. {
  53697. name: "Sun Bear",
  53698. height: math.unit(900000, "miles")
  53699. },
  53700. ]
  53701. ))
  53702. characterMakers.push(() => makeCharacter(
  53703. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53704. {
  53705. anthroFront: {
  53706. height: math.unit(556, "cm"),
  53707. weight: math.unit(2650, "kg"),
  53708. preyCapacity: math.unit(3, "people"),
  53709. name: "Front",
  53710. image: {
  53711. source: "./media/characters/ash´iika/front.svg",
  53712. extra: 710/673,
  53713. bottom: 15/725
  53714. },
  53715. form: "anthro",
  53716. default: true
  53717. },
  53718. anthroSide: {
  53719. height: math.unit(556, "cm"),
  53720. weight: math.unit(2650, "kg"),
  53721. preyCapacity: math.unit(3, "people"),
  53722. name: "Side",
  53723. image: {
  53724. source: "./media/characters/ash´iika/side.svg",
  53725. extra: 696/676,
  53726. bottom: 13/709
  53727. },
  53728. form: "anthro"
  53729. },
  53730. anthroDressed: {
  53731. height: math.unit(556, "cm"),
  53732. weight: math.unit(2650, "kg"),
  53733. preyCapacity: math.unit(3, "people"),
  53734. name: "Dressed",
  53735. image: {
  53736. source: "./media/characters/ash´iika/dressed.svg",
  53737. extra: 710/673,
  53738. bottom: 15/725
  53739. },
  53740. form: "anthro"
  53741. },
  53742. anthroHead: {
  53743. height: math.unit(3.5, "feet"),
  53744. name: "Head",
  53745. image: {
  53746. source: "./media/characters/ash´iika/head.svg",
  53747. extra: 348/291,
  53748. bottom: 45/393
  53749. },
  53750. form: "anthro"
  53751. },
  53752. feralSide: {
  53753. height: math.unit(870, "cm"),
  53754. weight: math.unit(17500, "kg"),
  53755. preyCapacity: math.unit(15, "people"),
  53756. name: "Side",
  53757. image: {
  53758. source: "./media/characters/ash´iika/feral.svg",
  53759. extra: 595/199,
  53760. bottom: 7/602
  53761. },
  53762. form: "feral",
  53763. default: true,
  53764. },
  53765. },
  53766. [
  53767. {
  53768. name: "Normal",
  53769. height: math.unit(556, "cm"),
  53770. default: true,
  53771. form: "anthro"
  53772. },
  53773. {
  53774. name: "Macro",
  53775. height: math.unit(88, "meters"),
  53776. form: "anthro"
  53777. },
  53778. {
  53779. name: "Normal",
  53780. height: math.unit(870, "cm"),
  53781. default: true,
  53782. form: "feral"
  53783. },
  53784. {
  53785. name: "Large",
  53786. height: math.unit(25, "meters"),
  53787. form: "feral"
  53788. },
  53789. ],
  53790. {
  53791. "anthro": {
  53792. name: "Anthro",
  53793. default: true
  53794. },
  53795. "feral": {
  53796. name: "Feral",
  53797. },
  53798. }
  53799. ))
  53800. characterMakers.push(() => makeCharacter(
  53801. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53802. {
  53803. front: {
  53804. height: math.unit(10, "feet"),
  53805. weight: math.unit(800, "lb"),
  53806. name: "Front",
  53807. image: {
  53808. source: "./media/characters/yen/front.svg",
  53809. extra: 443/411,
  53810. bottom: 6/449
  53811. }
  53812. },
  53813. sleeping: {
  53814. height: math.unit(10, "feet"),
  53815. weight: math.unit(800, "lb"),
  53816. name: "Sleeping",
  53817. image: {
  53818. source: "./media/characters/yen/sleeping.svg",
  53819. extra: 470/422,
  53820. bottom: 0/470
  53821. }
  53822. },
  53823. head: {
  53824. height: math.unit(2.2, "feet"),
  53825. name: "Head",
  53826. image: {
  53827. source: "./media/characters/yen/head.svg"
  53828. }
  53829. },
  53830. headAlt: {
  53831. height: math.unit(2.1, "feet"),
  53832. name: "Head (Alt)",
  53833. image: {
  53834. source: "./media/characters/yen/head-alt.svg"
  53835. }
  53836. },
  53837. },
  53838. [
  53839. {
  53840. name: "Normal",
  53841. height: math.unit(10, "feet"),
  53842. default: true
  53843. },
  53844. ]
  53845. ))
  53846. characterMakers.push(() => makeCharacter(
  53847. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53848. {
  53849. front: {
  53850. height: math.unit(12, "feet"),
  53851. name: "Front",
  53852. image: {
  53853. source: "./media/characters/citra/front.svg",
  53854. extra: 1950/1710,
  53855. bottom: 47/1997
  53856. }
  53857. },
  53858. },
  53859. [
  53860. {
  53861. name: "Normal",
  53862. height: math.unit(12, "feet"),
  53863. default: true
  53864. },
  53865. ]
  53866. ))
  53867. characterMakers.push(() => makeCharacter(
  53868. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53869. {
  53870. side: {
  53871. height: math.unit(7 + 10/12, "feet"),
  53872. name: "Side",
  53873. image: {
  53874. source: "./media/characters/sholstim/side.svg",
  53875. extra: 786/682,
  53876. bottom: 40/826
  53877. }
  53878. },
  53879. },
  53880. [
  53881. {
  53882. name: "Normal",
  53883. height: math.unit(7 + 10/12, "feet"),
  53884. default: true
  53885. },
  53886. ]
  53887. ))
  53888. characterMakers.push(() => makeCharacter(
  53889. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53890. {
  53891. front: {
  53892. height: math.unit(3.10, "meters"),
  53893. name: "Front",
  53894. image: {
  53895. source: "./media/characters/aggyn/front.svg",
  53896. extra: 1188/963,
  53897. bottom: 24/1212
  53898. }
  53899. },
  53900. },
  53901. [
  53902. {
  53903. name: "Normal",
  53904. height: math.unit(3.10, "meters"),
  53905. default: true
  53906. },
  53907. ]
  53908. ))
  53909. characterMakers.push(() => makeCharacter(
  53910. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53911. {
  53912. front: {
  53913. height: math.unit(7 + 5/12, "feet"),
  53914. weight: math.unit(687, "lb"),
  53915. name: "Front",
  53916. image: {
  53917. source: "./media/characters/alsandair-hergenroether/front.svg",
  53918. extra: 1251/1186,
  53919. bottom: 75/1326
  53920. }
  53921. },
  53922. back: {
  53923. height: math.unit(7 + 5/12, "feet"),
  53924. weight: math.unit(687, "lb"),
  53925. name: "Back",
  53926. image: {
  53927. source: "./media/characters/alsandair-hergenroether/back.svg",
  53928. extra: 1290/1229,
  53929. bottom: 17/1307
  53930. }
  53931. },
  53932. },
  53933. [
  53934. {
  53935. name: "Max Compression",
  53936. height: math.unit(7 + 5/12, "feet"),
  53937. default: true
  53938. },
  53939. {
  53940. name: "\"Normal\"",
  53941. height: math.unit(2, "universes")
  53942. },
  53943. ]
  53944. ))
  53945. characterMakers.push(() => makeCharacter(
  53946. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53947. {
  53948. front: {
  53949. height: math.unit(4 + 1/12, "feet"),
  53950. weight: math.unit(92, "lb"),
  53951. name: "Front",
  53952. image: {
  53953. source: "./media/characters/ie/front.svg",
  53954. extra: 1585/1352,
  53955. bottom: 91/1676
  53956. }
  53957. },
  53958. },
  53959. [
  53960. {
  53961. name: "Normal",
  53962. height: math.unit(4 + 1/12, "feet"),
  53963. default: true
  53964. },
  53965. ]
  53966. ))
  53967. characterMakers.push(() => makeCharacter(
  53968. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53969. {
  53970. anthro: {
  53971. height: math.unit(6, "feet"),
  53972. weight: math.unit(150, "lb"),
  53973. name: "Front",
  53974. image: {
  53975. source: "./media/characters/willow/anthro.svg",
  53976. extra: 1073/986,
  53977. bottom: 34/1107
  53978. },
  53979. form: "anthro",
  53980. default: true
  53981. },
  53982. taur: {
  53983. height: math.unit(6, "feet"),
  53984. weight: math.unit(150, "lb"),
  53985. name: "Side",
  53986. image: {
  53987. source: "./media/characters/willow/taur.svg",
  53988. extra: 647/512,
  53989. bottom: 136/783
  53990. },
  53991. form: "taur",
  53992. default: true
  53993. },
  53994. },
  53995. [
  53996. {
  53997. name: "Humanoid",
  53998. height: math.unit(2.7, "meters"),
  53999. form: "anthro"
  54000. },
  54001. {
  54002. name: "Normal",
  54003. height: math.unit(9, "meters"),
  54004. form: "anthro",
  54005. default: true
  54006. },
  54007. {
  54008. name: "Humanoid",
  54009. height: math.unit(2.1, "meters"),
  54010. form: "taur"
  54011. },
  54012. {
  54013. name: "Normal",
  54014. height: math.unit(7, "meters"),
  54015. form: "taur",
  54016. default: true
  54017. },
  54018. ],
  54019. {
  54020. "anthro": {
  54021. name: "Anthro",
  54022. default: true
  54023. },
  54024. "taur": {
  54025. name: "Taur",
  54026. },
  54027. }
  54028. ))
  54029. characterMakers.push(() => makeCharacter(
  54030. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54031. {
  54032. front: {
  54033. height: math.unit(2 + 5/12, "feet"),
  54034. name: "Front",
  54035. image: {
  54036. source: "./media/characters/kyan/front.svg",
  54037. extra: 460/334,
  54038. bottom: 23/483
  54039. },
  54040. extraAttributes: {
  54041. "toeLength": {
  54042. name: "Toe Length",
  54043. power: 1,
  54044. type: "length",
  54045. base: math.unit(7, "cm")
  54046. },
  54047. "toeclawLength": {
  54048. name: "Toeclaw Length",
  54049. power: 1,
  54050. type: "length",
  54051. base: math.unit(4.7, "cm")
  54052. },
  54053. "earHeight": {
  54054. name: "Ear Height",
  54055. power: 1,
  54056. type: "length",
  54057. base: math.unit(14.1, "cm")
  54058. },
  54059. }
  54060. },
  54061. paws: {
  54062. height: math.unit(0.45, "feet"),
  54063. name: "Paws",
  54064. image: {
  54065. source: "./media/characters/kyan/paws.svg",
  54066. extra: 581/581,
  54067. bottom: 114/695
  54068. }
  54069. },
  54070. },
  54071. [
  54072. {
  54073. name: "Normal",
  54074. height: math.unit(2 + 5/12, "feet"),
  54075. default: true
  54076. },
  54077. ]
  54078. ))
  54079. characterMakers.push(() => makeCharacter(
  54080. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54081. {
  54082. front: {
  54083. height: math.unit(2 + 2/3, "feet"),
  54084. name: "Front",
  54085. image: {
  54086. source: "./media/characters/xazzon/front.svg",
  54087. extra: 1109/984,
  54088. bottom: 42/1151
  54089. }
  54090. },
  54091. back: {
  54092. height: math.unit(2 + 2/3, "feet"),
  54093. name: "Back",
  54094. image: {
  54095. source: "./media/characters/xazzon/back.svg",
  54096. extra: 1095/971,
  54097. bottom: 23/1118
  54098. }
  54099. },
  54100. },
  54101. [
  54102. {
  54103. name: "Normal",
  54104. height: math.unit(2 + 2/3, "feet"),
  54105. default: true
  54106. },
  54107. ]
  54108. ))
  54109. characterMakers.push(() => makeCharacter(
  54110. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54111. {
  54112. dressed: {
  54113. height: math.unit(5 + 7/12, "feet"),
  54114. weight: math.unit(173, "lb"),
  54115. name: "Dressed",
  54116. image: {
  54117. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54118. extra: 3262/2862,
  54119. bottom: 188/3450
  54120. }
  54121. },
  54122. undressed: {
  54123. height: math.unit(5 + 7/12, "feet"),
  54124. weight: math.unit(173, "lb"),
  54125. name: "Undressed",
  54126. image: {
  54127. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54128. extra: 3262/2862,
  54129. bottom: 188/3450
  54130. }
  54131. },
  54132. },
  54133. [
  54134. {
  54135. name: "The void",
  54136. height: math.unit(7.29193e-34, "angstroms")
  54137. },
  54138. {
  54139. name: "Uh-Oh.",
  54140. height: math.unit(5.734e-7, "angstroms")
  54141. },
  54142. {
  54143. name: "Pico",
  54144. height: math.unit(0.876, "angstroms")
  54145. },
  54146. {
  54147. name: "Nano",
  54148. height: math.unit(0.000134200, "mm")
  54149. },
  54150. {
  54151. name: "Micro",
  54152. height: math.unit(0.0673020, "mm")
  54153. },
  54154. {
  54155. name: "Tiny",
  54156. height: math.unit(2.4, "mm")
  54157. },
  54158. {
  54159. name: "Actual Normal",
  54160. height: math.unit(3, "inches"),
  54161. default: true
  54162. },
  54163. {
  54164. name: "Normal",
  54165. height: math.unit(5 + 8/12, "feet")
  54166. },
  54167. {
  54168. name: "Giant",
  54169. height: math.unit(12, "feet")
  54170. },
  54171. {
  54172. name: "City Ruler",
  54173. height: math.unit(270, "meters")
  54174. },
  54175. {
  54176. name: "Giga",
  54177. height: math.unit(1117.6, "km")
  54178. },
  54179. {
  54180. name: "All-Powerful Queen",
  54181. height: math.unit(70.8, "gigameters")
  54182. },
  54183. {
  54184. name: "'Goddess'",
  54185. height: math.unit(600, "yottameters")
  54186. },
  54187. {
  54188. name: "Biggest!",
  54189. height: math.unit(4.23e5, "yottameters")
  54190. },
  54191. ]
  54192. ))
  54193. characterMakers.push(() => makeCharacter(
  54194. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54195. {
  54196. front: {
  54197. height: math.unit(8, "feet"),
  54198. weight: math.unit(300, "lb"),
  54199. name: "Front",
  54200. image: {
  54201. source: "./media/characters/khyla-shadowsong/front.svg",
  54202. extra: 861/798,
  54203. bottom: 32/893
  54204. }
  54205. },
  54206. side: {
  54207. height: math.unit(8, "feet"),
  54208. weight: math.unit(300, "lb"),
  54209. name: "Side",
  54210. image: {
  54211. source: "./media/characters/khyla-shadowsong/side.svg",
  54212. extra: 790/750,
  54213. bottom: 87/877
  54214. }
  54215. },
  54216. back: {
  54217. height: math.unit(8, "feet"),
  54218. weight: math.unit(300, "lb"),
  54219. name: "Back",
  54220. image: {
  54221. source: "./media/characters/khyla-shadowsong/back.svg",
  54222. extra: 855/808,
  54223. bottom: 14/869
  54224. }
  54225. },
  54226. head: {
  54227. height: math.unit(2.7, "feet"),
  54228. name: "Head",
  54229. image: {
  54230. source: "./media/characters/khyla-shadowsong/head.svg"
  54231. }
  54232. },
  54233. },
  54234. [
  54235. {
  54236. name: "Micro",
  54237. height: math.unit(6, "inches")
  54238. },
  54239. {
  54240. name: "Normal",
  54241. height: math.unit(8, "feet"),
  54242. default: true
  54243. },
  54244. ]
  54245. ))
  54246. characterMakers.push(() => makeCharacter(
  54247. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54248. {
  54249. hyperFront: {
  54250. height: math.unit(9 + 4/12, "feet"),
  54251. weight: math.unit(2000, "lb"),
  54252. name: "Front",
  54253. image: {
  54254. source: "./media/characters/tiden/hyper-front.svg",
  54255. extra: 400/382,
  54256. bottom: 6/406
  54257. },
  54258. form: "hyper",
  54259. },
  54260. regularFront: {
  54261. height: math.unit(7 + 10/12, "feet"),
  54262. weight: math.unit(470, "lb"),
  54263. name: "Front",
  54264. image: {
  54265. source: "./media/characters/tiden/regular-front.svg",
  54266. extra: 468/442,
  54267. bottom: 6/474
  54268. },
  54269. form: "regular",
  54270. },
  54271. },
  54272. [
  54273. {
  54274. name: "Normal",
  54275. height: math.unit(9 + 4/12, "feet"),
  54276. default: true,
  54277. form: "hyper"
  54278. },
  54279. {
  54280. name: "Normal",
  54281. height: math.unit(7 + 10/12, "feet"),
  54282. default: true,
  54283. form: "regular"
  54284. },
  54285. ],
  54286. {
  54287. "hyper": {
  54288. name: "Hyper",
  54289. default: true
  54290. },
  54291. "regular": {
  54292. name: "Regular",
  54293. },
  54294. }
  54295. ))
  54296. characterMakers.push(() => makeCharacter(
  54297. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54298. {
  54299. side: {
  54300. height: math.unit(6, "feet"),
  54301. weight: math.unit(150, "lb"),
  54302. name: "Side",
  54303. image: {
  54304. source: "./media/characters/jason-crowe/side.svg",
  54305. extra: 1771/766,
  54306. bottom: 219/1990
  54307. }
  54308. },
  54309. },
  54310. [
  54311. {
  54312. name: "Pocket Gryphon",
  54313. height: math.unit(6, "cm")
  54314. },
  54315. {
  54316. name: "Raven",
  54317. height: math.unit(60, "cm")
  54318. },
  54319. {
  54320. name: "Normal",
  54321. height: math.unit(1, "meter"),
  54322. default: true
  54323. },
  54324. ]
  54325. ))
  54326. characterMakers.push(() => makeCharacter(
  54327. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54328. {
  54329. front: {
  54330. height: math.unit(9 + 6/12, "feet"),
  54331. weight: math.unit(1100, "lb"),
  54332. name: "Front",
  54333. image: {
  54334. source: "./media/characters/django/front.svg",
  54335. extra: 1231/1136,
  54336. bottom: 34/1265
  54337. }
  54338. },
  54339. side: {
  54340. height: math.unit(9 + 6/12, "feet"),
  54341. weight: math.unit(1100, "lb"),
  54342. name: "Side",
  54343. image: {
  54344. source: "./media/characters/django/side.svg",
  54345. extra: 1267/1174,
  54346. bottom: 9/1276
  54347. }
  54348. },
  54349. },
  54350. [
  54351. {
  54352. name: "Normal",
  54353. height: math.unit(9 + 6/12, "feet"),
  54354. default: true
  54355. },
  54356. {
  54357. name: "Macro 1",
  54358. height: math.unit(50, "feet")
  54359. },
  54360. {
  54361. name: "Macro 2",
  54362. height: math.unit(500, "feet")
  54363. },
  54364. {
  54365. name: "Mega Macro",
  54366. height: math.unit(5300, "feet")
  54367. },
  54368. ]
  54369. ))
  54370. characterMakers.push(() => makeCharacter(
  54371. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54372. {
  54373. frontSfw: {
  54374. height: math.unit(120, "cm"),
  54375. weight: math.unit(15, "kg"),
  54376. name: "Front (SFW)",
  54377. image: {
  54378. source: "./media/characters/eri/front-sfw.svg",
  54379. extra: 1014/939,
  54380. bottom: 37/1051
  54381. },
  54382. form: "moth",
  54383. },
  54384. frontNsfw: {
  54385. height: math.unit(120, "cm"),
  54386. weight: math.unit(15, "kg"),
  54387. name: "Front (NSFW)",
  54388. image: {
  54389. source: "./media/characters/eri/front-nsfw.svg",
  54390. extra: 1014/939,
  54391. bottom: 37/1051
  54392. },
  54393. form: "moth",
  54394. default: true
  54395. },
  54396. egg: {
  54397. height: math.unit(10, "cm"),
  54398. name: "Egg",
  54399. image: {
  54400. source: "./media/characters/eri/egg.svg"
  54401. },
  54402. form: "egg",
  54403. default: true
  54404. },
  54405. },
  54406. [
  54407. {
  54408. name: "Normal",
  54409. height: math.unit(120, "cm"),
  54410. default: true,
  54411. form: "moth"
  54412. },
  54413. {
  54414. name: "Normal",
  54415. height: math.unit(10, "cm"),
  54416. default: true,
  54417. form: "egg"
  54418. },
  54419. ],
  54420. {
  54421. "moth": {
  54422. name: "Moth",
  54423. default: true
  54424. },
  54425. "egg": {
  54426. name: "Egg",
  54427. },
  54428. }
  54429. ))
  54430. characterMakers.push(() => makeCharacter(
  54431. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54432. {
  54433. front: {
  54434. height: math.unit(200, "feet"),
  54435. name: "Front",
  54436. image: {
  54437. source: "./media/characters/bishop-dowser/front.svg",
  54438. extra: 933/868,
  54439. bottom: 106/1039
  54440. }
  54441. },
  54442. },
  54443. [
  54444. {
  54445. name: "Giant",
  54446. height: math.unit(200, "feet"),
  54447. default: true
  54448. },
  54449. ]
  54450. ))
  54451. characterMakers.push(() => makeCharacter(
  54452. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54453. {
  54454. front: {
  54455. height: math.unit(2, "meters"),
  54456. preyCapacity: math.unit(3, "people"),
  54457. name: "Front",
  54458. image: {
  54459. source: "./media/characters/fryra/front.svg",
  54460. extra: 1025/948,
  54461. bottom: 30/1055
  54462. },
  54463. extraAttributes: {
  54464. "breastVolume": {
  54465. name: "Breast Volume",
  54466. power: 3,
  54467. type: "volume",
  54468. base: math.unit(8, "liters")
  54469. },
  54470. }
  54471. },
  54472. back: {
  54473. height: math.unit(2, "meters"),
  54474. preyCapacity: math.unit(3, "people"),
  54475. name: "Back",
  54476. image: {
  54477. source: "./media/characters/fryra/back.svg",
  54478. extra: 993/938,
  54479. bottom: 38/1031
  54480. },
  54481. extraAttributes: {
  54482. "breastVolume": {
  54483. name: "Breast Volume",
  54484. power: 3,
  54485. type: "volume",
  54486. base: math.unit(8, "liters")
  54487. },
  54488. }
  54489. },
  54490. head: {
  54491. height: math.unit(1.33, "feet"),
  54492. name: "Head",
  54493. image: {
  54494. source: "./media/characters/fryra/head.svg"
  54495. }
  54496. },
  54497. maw: {
  54498. height: math.unit(0.56, "feet"),
  54499. name: "Maw",
  54500. image: {
  54501. source: "./media/characters/fryra/maw.svg"
  54502. }
  54503. },
  54504. },
  54505. [
  54506. {
  54507. name: "Micro",
  54508. height: math.unit(5, "cm")
  54509. },
  54510. {
  54511. name: "Normal",
  54512. height: math.unit(2, "meters"),
  54513. default: true
  54514. },
  54515. {
  54516. name: "Small Macro",
  54517. height: math.unit(8, "meters")
  54518. },
  54519. {
  54520. name: "Macro",
  54521. height: math.unit(50, "meters")
  54522. },
  54523. {
  54524. name: "Megamacro",
  54525. height: math.unit(1, "km")
  54526. },
  54527. {
  54528. name: "Planetary",
  54529. height: math.unit(300000, "km")
  54530. },
  54531. {
  54532. name: "Universal",
  54533. height: math.unit(250, "lightyears")
  54534. },
  54535. {
  54536. name: "Fabric of Reality",
  54537. height: math.unit(1000, "multiverses")
  54538. },
  54539. ]
  54540. ))
  54541. characterMakers.push(() => makeCharacter(
  54542. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54543. {
  54544. frontDressed: {
  54545. height: math.unit(6 + 2/12, "feet"),
  54546. name: "Front (Dressed)",
  54547. image: {
  54548. source: "./media/characters/fiera/front-dressed.svg",
  54549. extra: 1883/1793,
  54550. bottom: 70/1953
  54551. }
  54552. },
  54553. backDressed: {
  54554. height: math.unit(6 + 2/12, "feet"),
  54555. name: "Back (Dressed)",
  54556. image: {
  54557. source: "./media/characters/fiera/back-dressed.svg",
  54558. extra: 1847/1780,
  54559. bottom: 70/1917
  54560. }
  54561. },
  54562. frontNude: {
  54563. height: math.unit(6 + 2/12, "feet"),
  54564. name: "Front (Nude)",
  54565. image: {
  54566. source: "./media/characters/fiera/front-nude.svg",
  54567. extra: 1875/1785,
  54568. bottom: 66/1941
  54569. }
  54570. },
  54571. backNude: {
  54572. height: math.unit(6 + 2/12, "feet"),
  54573. name: "Back (Nude)",
  54574. image: {
  54575. source: "./media/characters/fiera/back-nude.svg",
  54576. extra: 1855/1788,
  54577. bottom: 44/1899
  54578. }
  54579. },
  54580. maw: {
  54581. height: math.unit(1.3, "feet"),
  54582. name: "Maw",
  54583. image: {
  54584. source: "./media/characters/fiera/maw.svg"
  54585. }
  54586. },
  54587. paw: {
  54588. height: math.unit(1, "feet"),
  54589. name: "Paw",
  54590. image: {
  54591. source: "./media/characters/fiera/paw.svg"
  54592. }
  54593. },
  54594. shoe: {
  54595. height: math.unit(1.05, "feet"),
  54596. name: "Shoe",
  54597. image: {
  54598. source: "./media/characters/fiera/shoe.svg"
  54599. }
  54600. },
  54601. },
  54602. [
  54603. {
  54604. name: "Normal",
  54605. height: math.unit(6 + 2/12, "feet"),
  54606. default: true
  54607. },
  54608. {
  54609. name: "Size Difference",
  54610. height: math.unit(13, "feet")
  54611. },
  54612. {
  54613. name: "Macro",
  54614. height: math.unit(60, "feet")
  54615. },
  54616. {
  54617. name: "Mega Macro",
  54618. height: math.unit(200, "feet")
  54619. },
  54620. ]
  54621. ))
  54622. characterMakers.push(() => makeCharacter(
  54623. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54624. {
  54625. back: {
  54626. height: math.unit(6, "feet"),
  54627. name: "Back",
  54628. image: {
  54629. source: "./media/characters/flare/back.svg",
  54630. extra: 1883/1765,
  54631. bottom: 32/1915
  54632. }
  54633. },
  54634. },
  54635. [
  54636. {
  54637. name: "Normal",
  54638. height: math.unit(6 + 2/12, "feet"),
  54639. default: true
  54640. },
  54641. {
  54642. name: "Size Difference",
  54643. height: math.unit(13, "feet")
  54644. },
  54645. {
  54646. name: "Macro",
  54647. height: math.unit(60, "feet")
  54648. },
  54649. {
  54650. name: "Macro 2",
  54651. height: math.unit(100, "feet")
  54652. },
  54653. {
  54654. name: "Mega Macro",
  54655. height: math.unit(200, "feet")
  54656. },
  54657. ]
  54658. ))
  54659. characterMakers.push(() => makeCharacter(
  54660. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54661. {
  54662. front: {
  54663. height: math.unit(2.2, "m"),
  54664. weight: math.unit(300, "kg"),
  54665. name: "Front",
  54666. image: {
  54667. source: "./media/characters/hanna/front.svg",
  54668. extra: 1696/1502,
  54669. bottom: 206/1902
  54670. }
  54671. },
  54672. },
  54673. [
  54674. {
  54675. name: "Humanoid",
  54676. height: math.unit(2.2, "meters")
  54677. },
  54678. {
  54679. name: "Normal",
  54680. height: math.unit(4.8, "meters"),
  54681. default: true
  54682. },
  54683. ]
  54684. ))
  54685. characterMakers.push(() => makeCharacter(
  54686. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54687. {
  54688. front: {
  54689. height: math.unit(2.8, "meters"),
  54690. name: "Front",
  54691. image: {
  54692. source: "./media/characters/argo/front.svg",
  54693. extra: 731/518,
  54694. bottom: 84/815
  54695. }
  54696. },
  54697. },
  54698. [
  54699. {
  54700. name: "Normal",
  54701. height: math.unit(3, "meters"),
  54702. default: true
  54703. },
  54704. ]
  54705. ))
  54706. characterMakers.push(() => makeCharacter(
  54707. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54708. {
  54709. side: {
  54710. height: math.unit(3.8, "meters"),
  54711. name: "Side",
  54712. image: {
  54713. source: "./media/characters/sybil/side.svg",
  54714. extra: 382/361,
  54715. bottom: 25/407
  54716. }
  54717. },
  54718. },
  54719. [
  54720. {
  54721. name: "Normal",
  54722. height: math.unit(3.8, "meters"),
  54723. default: true
  54724. },
  54725. ]
  54726. ))
  54727. characterMakers.push(() => makeCharacter(
  54728. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54729. {
  54730. side: {
  54731. height: math.unit(6, "meters"),
  54732. name: "Side",
  54733. image: {
  54734. source: "./media/characters/plum/side.svg",
  54735. extra: 858/755,
  54736. bottom: 45/903
  54737. },
  54738. form: "taur",
  54739. default: true
  54740. },
  54741. back: {
  54742. height: math.unit(6.3, "meters"),
  54743. name: "Back",
  54744. image: {
  54745. source: "./media/characters/plum/back.svg",
  54746. extra: 887/813,
  54747. bottom: 32/919
  54748. },
  54749. form: "taur",
  54750. },
  54751. feral: {
  54752. height: math.unit(5.5, "meter"),
  54753. name: "Front",
  54754. image: {
  54755. source: "./media/characters/plum/feral.svg",
  54756. extra: 568/403,
  54757. bottom: 51/619
  54758. },
  54759. form: "feral",
  54760. default: true
  54761. },
  54762. head: {
  54763. height: math.unit(1.46, "meter"),
  54764. name: "Head",
  54765. image: {
  54766. source: "./media/characters/plum/head.svg"
  54767. },
  54768. form: "taur"
  54769. },
  54770. tailTop: {
  54771. height: math.unit(5.6, "meter"),
  54772. name: "Tail (Top)",
  54773. image: {
  54774. source: "./media/characters/plum/tail-top.svg"
  54775. },
  54776. form: "taur",
  54777. },
  54778. tailBottom: {
  54779. height: math.unit(5.6, "meter"),
  54780. name: "Tail (Bottom)",
  54781. image: {
  54782. source: "./media/characters/plum/tail-bottom.svg"
  54783. },
  54784. form: "taur",
  54785. },
  54786. feralHead: {
  54787. height: math.unit(2.56549521, "meter"),
  54788. name: "Head",
  54789. image: {
  54790. source: "./media/characters/plum/head.svg"
  54791. },
  54792. form: "feral"
  54793. },
  54794. feralTailTop: {
  54795. height: math.unit(5.44728435, "meter"),
  54796. name: "Tail (Top)",
  54797. image: {
  54798. source: "./media/characters/plum/tail-top.svg"
  54799. },
  54800. form: "feral",
  54801. },
  54802. feralTailBottom: {
  54803. height: math.unit(5.44728435, "meter"),
  54804. name: "Tail (Bottom)",
  54805. image: {
  54806. source: "./media/characters/plum/tail-bottom.svg"
  54807. },
  54808. form: "feral",
  54809. },
  54810. },
  54811. [
  54812. {
  54813. name: "Normal",
  54814. height: math.unit(6, "meters"),
  54815. default: true,
  54816. form: "taur"
  54817. },
  54818. {
  54819. name: "Normal",
  54820. height: math.unit(5.5, "meters"),
  54821. default: true,
  54822. form: "feral"
  54823. },
  54824. ],
  54825. {
  54826. "taur": {
  54827. name: "Taur",
  54828. default: true
  54829. },
  54830. "feral": {
  54831. name: "Feral",
  54832. },
  54833. }
  54834. ))
  54835. characterMakers.push(() => makeCharacter(
  54836. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54837. {
  54838. front: {
  54839. height: math.unit(6, "feet"),
  54840. weight: math.unit(115, "lb"),
  54841. name: "Front",
  54842. image: {
  54843. source: "./media/characters/celeste-kitsune/front.svg",
  54844. extra: 393/366,
  54845. bottom: 7/400
  54846. }
  54847. },
  54848. side: {
  54849. height: math.unit(6, "feet"),
  54850. weight: math.unit(115, "lb"),
  54851. name: "Side",
  54852. image: {
  54853. source: "./media/characters/celeste-kitsune/side.svg",
  54854. extra: 818/765,
  54855. bottom: 40/858
  54856. }
  54857. },
  54858. },
  54859. [
  54860. {
  54861. name: "Megamacro",
  54862. height: math.unit(1500, "miles"),
  54863. default: true
  54864. },
  54865. ]
  54866. ))
  54867. characterMakers.push(() => makeCharacter(
  54868. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54869. {
  54870. front: {
  54871. height: math.unit(8, "meters"),
  54872. name: "Front",
  54873. image: {
  54874. source: "./media/characters/io/front.svg",
  54875. extra: 865/722,
  54876. bottom: 58/923
  54877. }
  54878. },
  54879. back: {
  54880. height: math.unit(8, "meters"),
  54881. name: "Back",
  54882. image: {
  54883. source: "./media/characters/io/back.svg",
  54884. extra: 920/776,
  54885. bottom: 42/962
  54886. }
  54887. },
  54888. head: {
  54889. height: math.unit(5.09, "meters"),
  54890. name: "Head",
  54891. image: {
  54892. source: "./media/characters/io/head.svg"
  54893. }
  54894. },
  54895. hand: {
  54896. height: math.unit(1.6, "meters"),
  54897. name: "Hand",
  54898. image: {
  54899. source: "./media/characters/io/hand.svg"
  54900. }
  54901. },
  54902. foot: {
  54903. height: math.unit(2.4, "meters"),
  54904. name: "Foot",
  54905. image: {
  54906. source: "./media/characters/io/foot.svg"
  54907. }
  54908. },
  54909. },
  54910. [
  54911. {
  54912. name: "Normal",
  54913. height: math.unit(8, "meters"),
  54914. default: true
  54915. },
  54916. ]
  54917. ))
  54918. characterMakers.push(() => makeCharacter(
  54919. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54920. {
  54921. side: {
  54922. height: math.unit(6 + 3/12, "feet"),
  54923. weight: math.unit(225, "lb"),
  54924. name: "Side",
  54925. image: {
  54926. source: "./media/characters/silas/side.svg",
  54927. extra: 703/653,
  54928. bottom: 23/726
  54929. },
  54930. extraAttributes: {
  54931. "pawLength": {
  54932. name: "Paw Length",
  54933. power: 1,
  54934. type: "length",
  54935. base: math.unit(12, "inches")
  54936. },
  54937. "pawWidth": {
  54938. name: "Paw Width",
  54939. power: 1,
  54940. type: "length",
  54941. base: math.unit(4.5, "inches")
  54942. },
  54943. "pawArea": {
  54944. name: "Paw Area",
  54945. power: 2,
  54946. type: "area",
  54947. base: math.unit(12 * 4.5, "inches^2")
  54948. },
  54949. }
  54950. },
  54951. },
  54952. [
  54953. {
  54954. name: "Normal",
  54955. height: math.unit(6 + 3/12, "feet"),
  54956. default: true
  54957. },
  54958. ]
  54959. ))
  54960. characterMakers.push(() => makeCharacter(
  54961. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54962. {
  54963. back: {
  54964. height: math.unit(1.6, "meters"),
  54965. weight: math.unit(150, "lb"),
  54966. name: "Back",
  54967. image: {
  54968. source: "./media/characters/zari/back.svg",
  54969. extra: 424/411,
  54970. bottom: 32/456
  54971. },
  54972. extraAttributes: {
  54973. "bladderCapacity": {
  54974. name: "Bladder Size",
  54975. power: 3,
  54976. type: "volume",
  54977. base: math.unit(500, "mL")
  54978. },
  54979. "bladderFlow": {
  54980. name: "Flow Rate",
  54981. power: 3,
  54982. type: "volume",
  54983. base: math.unit(25, "mL")
  54984. },
  54985. }
  54986. },
  54987. },
  54988. [
  54989. {
  54990. name: "Normal",
  54991. height: math.unit(1.6, "meters"),
  54992. default: true
  54993. },
  54994. ]
  54995. ))
  54996. characterMakers.push(() => makeCharacter(
  54997. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54998. {
  54999. front: {
  55000. height: math.unit(25, "feet"),
  55001. weight: math.unit(5, "tons"),
  55002. name: "Front",
  55003. image: {
  55004. source: "./media/characters/charlie-human/front.svg",
  55005. extra: 1870/1740,
  55006. bottom: 102/1972
  55007. },
  55008. extraAttributes: {
  55009. "dickLength": {
  55010. name: "Dick Length",
  55011. power: 1,
  55012. type: "length",
  55013. base: math.unit(9, "feet")
  55014. },
  55015. }
  55016. },
  55017. back: {
  55018. height: math.unit(25, "feet"),
  55019. weight: math.unit(5, "tons"),
  55020. name: "Back",
  55021. image: {
  55022. source: "./media/characters/charlie-human/back.svg",
  55023. extra: 1858/1733,
  55024. bottom: 105/1963
  55025. },
  55026. extraAttributes: {
  55027. "dickLength": {
  55028. name: "Dick Length",
  55029. power: 1,
  55030. type: "length",
  55031. base: math.unit(9, "feet")
  55032. },
  55033. }
  55034. },
  55035. },
  55036. [
  55037. {
  55038. name: "\"Normal\"",
  55039. height: math.unit(6 + 4/12, "feet")
  55040. },
  55041. {
  55042. name: "Big",
  55043. height: math.unit(25, "feet"),
  55044. default: true
  55045. },
  55046. ]
  55047. ))
  55048. characterMakers.push(() => makeCharacter(
  55049. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55050. {
  55051. front: {
  55052. height: math.unit(6 + 4/12, "feet"),
  55053. weight: math.unit(320, "lb"),
  55054. name: "Front",
  55055. image: {
  55056. source: "./media/characters/ookitsu/front.svg",
  55057. extra: 1160/976,
  55058. bottom: 38/1198
  55059. }
  55060. },
  55061. frontNsfw: {
  55062. height: math.unit(6 + 4/12, "feet"),
  55063. weight: math.unit(320, "lb"),
  55064. name: "Front (NSFW)",
  55065. image: {
  55066. source: "./media/characters/ookitsu/front-nsfw.svg",
  55067. extra: 1160/976,
  55068. bottom: 38/1198
  55069. }
  55070. },
  55071. back: {
  55072. height: math.unit(6 + 4/12, "feet"),
  55073. weight: math.unit(320, "lb"),
  55074. name: "Back",
  55075. image: {
  55076. source: "./media/characters/ookitsu/back.svg",
  55077. extra: 1030/975,
  55078. bottom: 70/1100
  55079. }
  55080. },
  55081. head: {
  55082. height: math.unit(1.79, "feet"),
  55083. name: "Head",
  55084. image: {
  55085. source: "./media/characters/ookitsu/head.svg"
  55086. }
  55087. },
  55088. hand: {
  55089. height: math.unit(0.92, "feet"),
  55090. name: "Hand",
  55091. image: {
  55092. source: "./media/characters/ookitsu/hand.svg"
  55093. }
  55094. },
  55095. tails: {
  55096. height: math.unit(3.3, "feet"),
  55097. name: "Tails",
  55098. image: {
  55099. source: "./media/characters/ookitsu/tails.svg"
  55100. }
  55101. },
  55102. dick: {
  55103. height: math.unit(1.10833, "feet"),
  55104. name: "Dick",
  55105. image: {
  55106. source: "./media/characters/ookitsu/dick.svg"
  55107. }
  55108. },
  55109. },
  55110. [
  55111. {
  55112. name: "Normal",
  55113. height: math.unit(6 + 4/12, "feet"),
  55114. default: true
  55115. },
  55116. {
  55117. name: "Macro",
  55118. height: math.unit(30, "feet")
  55119. },
  55120. ]
  55121. ))
  55122. characterMakers.push(() => makeCharacter(
  55123. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55124. {
  55125. anthroFront: {
  55126. height: math.unit(6, "feet"),
  55127. weight: math.unit(250, "lb"),
  55128. name: "Front",
  55129. image: {
  55130. source: "./media/characters/jhusky/anthro-front.svg",
  55131. extra: 474/439,
  55132. bottom: 7/481
  55133. },
  55134. form: "anthro",
  55135. default: true
  55136. },
  55137. taurSideSfw: {
  55138. height: math.unit(6 + 4/12, "feet"),
  55139. weight: math.unit(500, "lb"),
  55140. name: "Side (SFW)",
  55141. image: {
  55142. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55143. extra: 1741/1629,
  55144. bottom: 196/1937
  55145. },
  55146. form: "taur",
  55147. default: true
  55148. },
  55149. taurSideNsfw: {
  55150. height: math.unit(6 + 4/12, "feet"),
  55151. weight: math.unit(500, "lb"),
  55152. name: "Taur (NSFW)",
  55153. image: {
  55154. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55155. extra: 1741/1629,
  55156. bottom: 196/1937
  55157. },
  55158. form: "taur",
  55159. },
  55160. },
  55161. [
  55162. {
  55163. name: "Huge",
  55164. height: math.unit(500, "feet"),
  55165. form: "anthro"
  55166. },
  55167. {
  55168. name: "Macro",
  55169. height: math.unit(1000, "feet"),
  55170. default: true,
  55171. form: "anthro"
  55172. },
  55173. {
  55174. name: "Megamacro",
  55175. height: math.unit(10000, "feet"),
  55176. form: "anthro"
  55177. },
  55178. {
  55179. name: "Huge",
  55180. height: math.unit(528, "feet"),
  55181. form: "taur"
  55182. },
  55183. {
  55184. name: "Macro",
  55185. height: math.unit(1056, "feet"),
  55186. default: true,
  55187. form: "taur"
  55188. },
  55189. {
  55190. name: "Megamacro",
  55191. height: math.unit(10556, "feet"),
  55192. form: "taur"
  55193. },
  55194. ],
  55195. {
  55196. "anthro": {
  55197. name: "Anthro",
  55198. default: true
  55199. },
  55200. "taur": {
  55201. name: "Taur",
  55202. },
  55203. }
  55204. ))
  55205. characterMakers.push(() => makeCharacter(
  55206. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55207. {
  55208. front: {
  55209. height: math.unit(8, "feet"),
  55210. weight: math.unit(500, "lb"),
  55211. name: "Front",
  55212. image: {
  55213. source: "./media/characters/armail/front.svg",
  55214. extra: 1753/1669,
  55215. bottom: 155/1908
  55216. }
  55217. },
  55218. back: {
  55219. height: math.unit(8, "feet"),
  55220. weight: math.unit(500, "lb"),
  55221. name: "Back",
  55222. image: {
  55223. source: "./media/characters/armail/back.svg",
  55224. extra: 1872/1803,
  55225. bottom: 63/1935
  55226. }
  55227. },
  55228. },
  55229. [
  55230. {
  55231. name: "Micro",
  55232. height: math.unit(0.25, "feet")
  55233. },
  55234. {
  55235. name: "Normal",
  55236. height: math.unit(8, "feet"),
  55237. default: true
  55238. },
  55239. {
  55240. name: "Mini-macro",
  55241. height: math.unit(30, "feet")
  55242. },
  55243. {
  55244. name: "Macro",
  55245. height: math.unit(400, "feet")
  55246. },
  55247. {
  55248. name: "Mega-macro",
  55249. height: math.unit(6000, "feet")
  55250. },
  55251. ]
  55252. ))
  55253. characterMakers.push(() => makeCharacter(
  55254. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55255. {
  55256. front: {
  55257. height: math.unit(6 + 7/12, "feet"),
  55258. weight: math.unit(210, "lb"),
  55259. name: "Front",
  55260. image: {
  55261. source: "./media/characters/wilfred-t-buxton/front.svg",
  55262. extra: 1068/882,
  55263. bottom: 28/1096
  55264. }
  55265. },
  55266. },
  55267. [
  55268. {
  55269. name: "Normal",
  55270. height: math.unit(6 + 7/12, "feet"),
  55271. default: true
  55272. },
  55273. ]
  55274. ))
  55275. characterMakers.push(() => makeCharacter(
  55276. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55277. {
  55278. front: {
  55279. height: math.unit(5 + 2/12, "feet"),
  55280. weight: math.unit(120, "lb"),
  55281. name: "Front",
  55282. image: {
  55283. source: "./media/characters/leighton-marrow/front.svg",
  55284. extra: 441/409,
  55285. bottom: 37/478
  55286. }
  55287. },
  55288. },
  55289. [
  55290. {
  55291. name: "Normal",
  55292. height: math.unit(5 + 2/12, "feet"),
  55293. default: true
  55294. },
  55295. ]
  55296. ))
  55297. characterMakers.push(() => makeCharacter(
  55298. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55299. {
  55300. front: {
  55301. height: math.unit(4, "meters"),
  55302. weight: math.unit(1200, "kg"),
  55303. name: "Front",
  55304. image: {
  55305. source: "./media/characters/licos/front.svg",
  55306. extra: 1727/1604,
  55307. bottom: 101/1828
  55308. },
  55309. form: "anthro",
  55310. default: true
  55311. },
  55312. taur_side: {
  55313. height: math.unit(20, "meters"),
  55314. weight: math.unit(1100000, "kg"),
  55315. name: "Side",
  55316. image: {
  55317. source: "./media/characters/licos/taur.svg",
  55318. extra: 1158/1091,
  55319. bottom: 80/1238
  55320. },
  55321. form: "taur",
  55322. default: true
  55323. },
  55324. },
  55325. [
  55326. {
  55327. name: "Normal",
  55328. height: math.unit(4, "meters"),
  55329. default: true,
  55330. form: "anthro"
  55331. },
  55332. {
  55333. name: "Normal",
  55334. height: math.unit(20, "meters"),
  55335. default: true,
  55336. form: "taur"
  55337. },
  55338. ],
  55339. {
  55340. "anthro": {
  55341. name: "Anthro",
  55342. default: true
  55343. },
  55344. "taur": {
  55345. name: "Taur",
  55346. },
  55347. }
  55348. ))
  55349. characterMakers.push(() => makeCharacter(
  55350. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55351. {
  55352. front: {
  55353. height: math.unit(10 + 3/12, "feet"),
  55354. name: "Front",
  55355. image: {
  55356. source: "./media/characters/theo-monkey/front.svg",
  55357. extra: 1735/1658,
  55358. bottom: 73/1808
  55359. }
  55360. },
  55361. back: {
  55362. height: math.unit(10 + 3/12, "feet"),
  55363. name: "Back",
  55364. image: {
  55365. source: "./media/characters/theo-monkey/back.svg",
  55366. extra: 1742/1664,
  55367. bottom: 33/1775
  55368. }
  55369. },
  55370. head: {
  55371. height: math.unit(2.29, "feet"),
  55372. name: "Head",
  55373. image: {
  55374. source: "./media/characters/theo-monkey/head.svg"
  55375. }
  55376. },
  55377. handPalm: {
  55378. height: math.unit(1.73, "feet"),
  55379. name: "Hand (Palm)",
  55380. image: {
  55381. source: "./media/characters/theo-monkey/hand-palm.svg"
  55382. }
  55383. },
  55384. handBack: {
  55385. height: math.unit(1.63, "feet"),
  55386. name: "Hand (Back)",
  55387. image: {
  55388. source: "./media/characters/theo-monkey/hand-back.svg"
  55389. }
  55390. },
  55391. footSole: {
  55392. height: math.unit(2.15, "feet"),
  55393. name: "Foot (Sole)",
  55394. image: {
  55395. source: "./media/characters/theo-monkey/foot-sole.svg"
  55396. }
  55397. },
  55398. footSide: {
  55399. height: math.unit(1.6, "feet"),
  55400. name: "Foot (Side)",
  55401. image: {
  55402. source: "./media/characters/theo-monkey/foot-side.svg"
  55403. }
  55404. },
  55405. },
  55406. [
  55407. {
  55408. name: "Normal",
  55409. height: math.unit(10 + 3/12, "feet"),
  55410. default: true
  55411. },
  55412. ]
  55413. ))
  55414. characterMakers.push(() => makeCharacter(
  55415. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55416. {
  55417. front: {
  55418. height: math.unit(11, "feet"),
  55419. weight: math.unit(3000, "lb"),
  55420. preyCapacity: math.unit(10, "people"),
  55421. name: "Front",
  55422. image: {
  55423. source: "./media/characters/brook/front.svg",
  55424. extra: 909/835,
  55425. bottom: 108/1017
  55426. }
  55427. },
  55428. back: {
  55429. height: math.unit(11, "feet"),
  55430. weight: math.unit(3000, "lb"),
  55431. preyCapacity: math.unit(10, "people"),
  55432. name: "Back",
  55433. image: {
  55434. source: "./media/characters/brook/back.svg",
  55435. extra: 976/916,
  55436. bottom: 34/1010
  55437. }
  55438. },
  55439. backAlt: {
  55440. height: math.unit(11, "feet"),
  55441. weight: math.unit(3000, "lb"),
  55442. preyCapacity: math.unit(10, "people"),
  55443. name: "Back (Alt)",
  55444. image: {
  55445. source: "./media/characters/brook/back-alt.svg",
  55446. extra: 1283/1213,
  55447. bottom: 35/1318
  55448. }
  55449. },
  55450. bust: {
  55451. height: math.unit(9.0859030837, "feet"),
  55452. weight: math.unit(3000, "lb"),
  55453. preyCapacity: math.unit(10, "people"),
  55454. name: "Bust",
  55455. image: {
  55456. source: "./media/characters/brook/bust.svg",
  55457. extra: 2043/1923,
  55458. bottom: 0/2043
  55459. }
  55460. },
  55461. },
  55462. [
  55463. {
  55464. name: "Small",
  55465. height: math.unit(11, "feet"),
  55466. default: true
  55467. },
  55468. {
  55469. name: "Towering",
  55470. height: math.unit(5, "km")
  55471. },
  55472. {
  55473. name: "Enormous",
  55474. height: math.unit(25, "earths")
  55475. },
  55476. ]
  55477. ))
  55478. characterMakers.push(() => makeCharacter(
  55479. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55480. {
  55481. front: {
  55482. height: math.unit(4, "feet"),
  55483. weight: math.unit(150, "lb"),
  55484. name: "Front",
  55485. image: {
  55486. source: "./media/characters/squishi/front.svg",
  55487. extra: 1428/1271,
  55488. bottom: 30/1458
  55489. },
  55490. extraAttributes: {
  55491. "pawSize": {
  55492. name: "Paw Size",
  55493. power: 1,
  55494. type: "length",
  55495. base: math.unit(14, "ShoeSizeMensUS"),
  55496. defaultUnit: "ShoeSizeMensUS"
  55497. },
  55498. }
  55499. },
  55500. side: {
  55501. height: math.unit(4, "feet"),
  55502. weight: math.unit(150, "lb"),
  55503. name: "Side",
  55504. image: {
  55505. source: "./media/characters/squishi/side.svg",
  55506. extra: 1428/1271,
  55507. bottom: 30/1458
  55508. },
  55509. extraAttributes: {
  55510. "pawSize": {
  55511. name: "Paw Size",
  55512. power: 1,
  55513. type: "length",
  55514. base: math.unit(14, "ShoeSizeMensUS"),
  55515. defaultUnit: "ShoeSizeMensUS"
  55516. },
  55517. }
  55518. },
  55519. back: {
  55520. height: math.unit(4, "feet"),
  55521. weight: math.unit(150, "lb"),
  55522. name: "Back",
  55523. image: {
  55524. source: "./media/characters/squishi/back.svg",
  55525. extra: 1428/1271,
  55526. bottom: 30/1458
  55527. },
  55528. extraAttributes: {
  55529. "pawSize": {
  55530. name: "Paw Size",
  55531. power: 1,
  55532. type: "length",
  55533. base: math.unit(14, "ShoeSizeMensUS"),
  55534. defaultUnit: "ShoeSizeMensUS"
  55535. },
  55536. }
  55537. },
  55538. },
  55539. [
  55540. {
  55541. name: "Normal",
  55542. height: math.unit(4, "feet"),
  55543. default: true
  55544. },
  55545. ]
  55546. ))
  55547. characterMakers.push(() => makeCharacter(
  55548. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55549. {
  55550. front: {
  55551. height: math.unit(7 + 8/12, "feet"),
  55552. weight: math.unit(333, "lb"),
  55553. name: "Front",
  55554. image: {
  55555. source: "./media/characters/vincent-vasroc/front.svg",
  55556. extra: 1962/1860,
  55557. bottom: 41/2003
  55558. }
  55559. },
  55560. back: {
  55561. height: math.unit(7 + 8/12, "feet"),
  55562. weight: math.unit(333, "lb"),
  55563. name: "Back",
  55564. image: {
  55565. source: "./media/characters/vincent-vasroc/back.svg",
  55566. extra: 1952/1815,
  55567. bottom: 33/1985
  55568. }
  55569. },
  55570. paw: {
  55571. height: math.unit(1.24, "feet"),
  55572. name: "Paw",
  55573. image: {
  55574. source: "./media/characters/vincent-vasroc/paw.svg"
  55575. }
  55576. },
  55577. ear: {
  55578. height: math.unit(0.75, "feet"),
  55579. name: "Ear",
  55580. image: {
  55581. source: "./media/characters/vincent-vasroc/ear.svg"
  55582. }
  55583. },
  55584. },
  55585. [
  55586. {
  55587. name: "Nano",
  55588. height: math.unit(92, "micrometers")
  55589. },
  55590. {
  55591. name: "Normal",
  55592. height: math.unit(7 + 8/12, "feet"),
  55593. default: true
  55594. },
  55595. ]
  55596. ))
  55597. characterMakers.push(() => makeCharacter(
  55598. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55599. {
  55600. frontNsfw: {
  55601. height: math.unit(40, "feet"),
  55602. weight: math.unit(58, "tons"),
  55603. name: "Front (NSFW)",
  55604. image: {
  55605. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55606. extra: 1265/965,
  55607. bottom: 155/1420
  55608. }
  55609. },
  55610. frontSfw: {
  55611. height: math.unit(40, "feet"),
  55612. weight: math.unit(58, "tons"),
  55613. name: "Front (SFW)",
  55614. image: {
  55615. source: "./media/characters/ru-kahn/front-sfw.svg",
  55616. extra: 1265/965,
  55617. bottom: 80/1345
  55618. }
  55619. },
  55620. },
  55621. [
  55622. {
  55623. name: "Small",
  55624. height: math.unit(4, "feet")
  55625. },
  55626. {
  55627. name: "Normal",
  55628. height: math.unit(40, "feet"),
  55629. default: true
  55630. },
  55631. {
  55632. name: "Macro",
  55633. height: math.unit(400, "feet")
  55634. },
  55635. ]
  55636. ))
  55637. characterMakers.push(() => makeCharacter(
  55638. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55639. {
  55640. frontNude: {
  55641. height: math.unit(6 + 5/12, "feet"),
  55642. name: "Front (Nude)",
  55643. image: {
  55644. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55645. extra: 1369/1366,
  55646. bottom: 68/1437
  55647. }
  55648. },
  55649. frontDressed: {
  55650. height: math.unit(6 + 5/12, "feet"),
  55651. name: "Front (Dressed)",
  55652. image: {
  55653. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55654. extra: 1369/1366,
  55655. bottom: 68/1437
  55656. }
  55657. },
  55658. },
  55659. [
  55660. {
  55661. name: "Normal",
  55662. height: math.unit(6 + 5/12, "feet"),
  55663. default: true
  55664. },
  55665. {
  55666. name: "Maximum",
  55667. height: math.unit(1930, "feet")
  55668. },
  55669. ]
  55670. ))
  55671. characterMakers.push(() => makeCharacter(
  55672. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55673. {
  55674. front: {
  55675. height: math.unit(5 + 6/12, "feet"),
  55676. name: "Front",
  55677. image: {
  55678. source: "./media/characters/kaja/front.svg",
  55679. extra: 1874/1514,
  55680. bottom: 117/1991
  55681. }
  55682. },
  55683. },
  55684. [
  55685. {
  55686. name: "Normal",
  55687. height: math.unit(5 + 6/12, "feet"),
  55688. default: true
  55689. },
  55690. ]
  55691. ))
  55692. characterMakers.push(() => makeCharacter(
  55693. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55694. {
  55695. front: {
  55696. height: math.unit(5 + 9/12, "feet"),
  55697. weight: math.unit(200, "lb"),
  55698. name: "Front",
  55699. image: {
  55700. source: "./media/characters/mark-smith/front.svg",
  55701. extra: 1004/943,
  55702. bottom: 58/1062
  55703. }
  55704. },
  55705. back: {
  55706. height: math.unit(5 + 9/12, "feet"),
  55707. weight: math.unit(200, "lb"),
  55708. name: "Back",
  55709. image: {
  55710. source: "./media/characters/mark-smith/back.svg",
  55711. extra: 1023/953,
  55712. bottom: 24/1047
  55713. }
  55714. },
  55715. head: {
  55716. height: math.unit(1.82, "feet"),
  55717. name: "Head",
  55718. image: {
  55719. source: "./media/characters/mark-smith/head.svg"
  55720. }
  55721. },
  55722. hand: {
  55723. height: math.unit(1.4, "feet"),
  55724. name: "Hand",
  55725. image: {
  55726. source: "./media/characters/mark-smith/hand.svg"
  55727. }
  55728. },
  55729. paw: {
  55730. height: math.unit(1.69, "feet"),
  55731. name: "Paw",
  55732. image: {
  55733. source: "./media/characters/mark-smith/paw.svg"
  55734. }
  55735. },
  55736. },
  55737. [
  55738. {
  55739. name: "Micro",
  55740. height: math.unit(0.25, "inches")
  55741. },
  55742. {
  55743. name: "Normal",
  55744. height: math.unit(5 + 9/12, "feet"),
  55745. default: true
  55746. },
  55747. {
  55748. name: "Macro",
  55749. height: math.unit(500, "feet")
  55750. },
  55751. ]
  55752. ))
  55753. characterMakers.push(() => makeCharacter(
  55754. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55755. {
  55756. frontNude: {
  55757. height: math.unit(6, "feet"),
  55758. name: "Front (Nude)",
  55759. image: {
  55760. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55761. extra: 1384/1321,
  55762. bottom: 57/1441
  55763. }
  55764. },
  55765. frontDressed: {
  55766. height: math.unit(6, "feet"),
  55767. name: "Front (Dressed)",
  55768. image: {
  55769. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55770. extra: 1384/1321,
  55771. bottom: 57/1441
  55772. }
  55773. },
  55774. },
  55775. [
  55776. {
  55777. name: "Normal",
  55778. height: math.unit(6, "feet"),
  55779. default: true
  55780. },
  55781. {
  55782. name: "Maximum",
  55783. height: math.unit(1776, "feet")
  55784. },
  55785. ]
  55786. ))
  55787. characterMakers.push(() => makeCharacter(
  55788. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55789. {
  55790. front: {
  55791. height: math.unit(2 + 4/12, "feet"),
  55792. weight: math.unit(350, "lb"),
  55793. name: "Front",
  55794. image: {
  55795. source: "./media/characters/devos/front.svg",
  55796. extra: 958/852,
  55797. bottom: 143/1101
  55798. }
  55799. },
  55800. },
  55801. [
  55802. {
  55803. name: "Base",
  55804. height: math.unit(2 + 4/12, "feet"),
  55805. default: true
  55806. },
  55807. ]
  55808. ))
  55809. characterMakers.push(() => makeCharacter(
  55810. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55811. {
  55812. front: {
  55813. height: math.unit(9 + 2/12, "feet"),
  55814. name: "Front",
  55815. image: {
  55816. source: "./media/characters/hiveheart/front.svg",
  55817. extra: 394/364,
  55818. bottom: 65/459
  55819. }
  55820. },
  55821. back: {
  55822. height: math.unit(9 + 2/12, "feet"),
  55823. name: "Back",
  55824. image: {
  55825. source: "./media/characters/hiveheart/back.svg",
  55826. extra: 374/357,
  55827. bottom: 63/437
  55828. }
  55829. },
  55830. },
  55831. [
  55832. {
  55833. name: "Base",
  55834. height: math.unit(9 + 2/12, "feet"),
  55835. default: true
  55836. },
  55837. ]
  55838. ))
  55839. characterMakers.push(() => makeCharacter(
  55840. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55841. {
  55842. front: {
  55843. height: math.unit(2.5, "inches"),
  55844. weight: math.unit(0.6, "oz"),
  55845. name: "Front",
  55846. image: {
  55847. source: "./media/characters/bryn/front.svg",
  55848. extra: 1480/1205,
  55849. bottom: 27/1507
  55850. }
  55851. },
  55852. back: {
  55853. height: math.unit(2.5, "inches"),
  55854. weight: math.unit(0.6, "oz"),
  55855. name: "Back",
  55856. image: {
  55857. source: "./media/characters/bryn/back.svg",
  55858. extra: 1475/1201,
  55859. bottom: 39/1514
  55860. }
  55861. },
  55862. foot: {
  55863. height: math.unit(0.4, "inches"),
  55864. name: "Foot",
  55865. image: {
  55866. source: "./media/characters/bryn/foot.svg"
  55867. }
  55868. },
  55869. },
  55870. [
  55871. {
  55872. name: "Normal",
  55873. height: math.unit(2.5, "inches"),
  55874. default: true
  55875. },
  55876. ]
  55877. ))
  55878. characterMakers.push(() => makeCharacter(
  55879. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55880. {
  55881. side: {
  55882. height: math.unit(7, "feet"),
  55883. weight: math.unit(657, "kg"),
  55884. name: "Side",
  55885. image: {
  55886. source: "./media/characters/delta/side.svg",
  55887. extra: 781/212,
  55888. bottom: 7/788
  55889. },
  55890. extraAttributes: {
  55891. "wingspan": {
  55892. name: "Wingspan",
  55893. power: 1,
  55894. type: "length",
  55895. base: math.unit(48, "feet")
  55896. },
  55897. "length": {
  55898. name: "Length",
  55899. power: 1,
  55900. type: "length",
  55901. base: math.unit(21, "feet")
  55902. },
  55903. "pawSize": {
  55904. name: "Paw Size",
  55905. power: 2,
  55906. type: "area",
  55907. base: math.unit(1.5*1.4, "feet^2")
  55908. },
  55909. }
  55910. },
  55911. },
  55912. [
  55913. {
  55914. name: "Normal",
  55915. height: math.unit(6, "feet"),
  55916. default: true
  55917. },
  55918. ]
  55919. ))
  55920. characterMakers.push(() => makeCharacter(
  55921. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55922. {
  55923. front: {
  55924. height: math.unit(6, "feet"),
  55925. name: "Front",
  55926. image: {
  55927. source: "./media/characters/pyrow/front.svg",
  55928. extra: 513/486,
  55929. bottom: 14/527
  55930. }
  55931. },
  55932. frontWing: {
  55933. height: math.unit(6, "feet"),
  55934. name: "Front (Wing)",
  55935. image: {
  55936. source: "./media/characters/pyrow/front-wing.svg",
  55937. extra: 539/383,
  55938. bottom: 20/559
  55939. }
  55940. },
  55941. back: {
  55942. height: math.unit(6, "feet"),
  55943. name: "Back",
  55944. image: {
  55945. source: "./media/characters/pyrow/back.svg",
  55946. extra: 500/473,
  55947. bottom: 9/509
  55948. }
  55949. },
  55950. },
  55951. [
  55952. {
  55953. name: "Normal",
  55954. height: math.unit(6, "feet"),
  55955. default: true
  55956. },
  55957. ]
  55958. ))
  55959. characterMakers.push(() => makeCharacter(
  55960. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55961. {
  55962. front: {
  55963. height: math.unit(5, "meters"),
  55964. weight: math.unit(3, "tonnes"),
  55965. name: "Front",
  55966. image: {
  55967. source: "./media/characters/velikan/front.svg",
  55968. extra: 867/744,
  55969. bottom: 71/938
  55970. },
  55971. extraAttributes: {
  55972. "shoeSize": {
  55973. name: "Shoe Size",
  55974. power: 1,
  55975. type: "length",
  55976. base: math.unit(135, "ShoeSizeUK"),
  55977. defaultUnit: "ShoeSizeUK"
  55978. },
  55979. }
  55980. },
  55981. },
  55982. [
  55983. {
  55984. name: "Normal",
  55985. height: math.unit(5, "meters"),
  55986. default: true
  55987. },
  55988. {
  55989. name: "Macro",
  55990. height: math.unit(1, "km")
  55991. },
  55992. {
  55993. name: "Mega Macro",
  55994. height: math.unit(100, "km")
  55995. },
  55996. {
  55997. name: "Giga Macro",
  55998. height: math.unit(2, "megameters")
  55999. },
  56000. {
  56001. name: "Planetary",
  56002. height: math.unit(22, "megameters")
  56003. },
  56004. {
  56005. name: "Solar",
  56006. height: math.unit(8, "gigameters")
  56007. },
  56008. {
  56009. name: "Cosmic",
  56010. height: math.unit(10, "zettameters")
  56011. },
  56012. {
  56013. name: "Omni",
  56014. height: math.unit(9e260, "multiverses")
  56015. },
  56016. ]
  56017. ))
  56018. characterMakers.push(() => makeCharacter(
  56019. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56020. {
  56021. front: {
  56022. height: math.unit(4 + 3/12, "feet"),
  56023. weight: math.unit(90, "lb"),
  56024. name: "Front",
  56025. image: {
  56026. source: "./media/characters/sabiki/front.svg",
  56027. extra: 1662/1423,
  56028. bottom: 65/1727
  56029. }
  56030. },
  56031. },
  56032. [
  56033. {
  56034. name: "Normal",
  56035. height: math.unit(4 + 3/12, "feet"),
  56036. default: true
  56037. },
  56038. ]
  56039. ))
  56040. characterMakers.push(() => makeCharacter(
  56041. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56042. {
  56043. frontSfw: {
  56044. height: math.unit(2, "mm"),
  56045. name: "Front (SFW)",
  56046. image: {
  56047. source: "./media/characters/carmel/front-sfw.svg",
  56048. extra: 1131/1006,
  56049. bottom: 66/1197
  56050. }
  56051. },
  56052. frontNsfw: {
  56053. height: math.unit(2, "mm"),
  56054. name: "Front (NSFW)",
  56055. image: {
  56056. source: "./media/characters/carmel/front-nsfw.svg",
  56057. extra: 1131/1006,
  56058. bottom: 66/1197
  56059. }
  56060. },
  56061. foot: {
  56062. height: math.unit(0.3, "mm"),
  56063. name: "Foot",
  56064. image: {
  56065. source: "./media/characters/carmel/foot.svg"
  56066. }
  56067. },
  56068. tongue: {
  56069. height: math.unit(0.71, "mm"),
  56070. name: "Tongue",
  56071. image: {
  56072. source: "./media/characters/carmel/tongue.svg"
  56073. }
  56074. },
  56075. dick: {
  56076. height: math.unit(0.085, "mm"),
  56077. name: "Dick",
  56078. image: {
  56079. source: "./media/characters/carmel/dick.svg"
  56080. }
  56081. },
  56082. },
  56083. [
  56084. {
  56085. name: "Micro",
  56086. height: math.unit(2, "mm"),
  56087. default: true
  56088. },
  56089. {
  56090. name: "Normal",
  56091. height: math.unit(4 + 8/12, "feet")
  56092. },
  56093. {
  56094. name: "Mega Macro",
  56095. height: math.unit(250, "feet")
  56096. },
  56097. {
  56098. name: "BIGGER",
  56099. height: math.unit(1000, "feet")
  56100. },
  56101. {
  56102. name: "BIGGEST",
  56103. height: math.unit(2, "miles")
  56104. },
  56105. ]
  56106. ))
  56107. characterMakers.push(() => makeCharacter(
  56108. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56109. {
  56110. front: {
  56111. height: math.unit(6.5, "feet"),
  56112. weight: math.unit(198, "lb"),
  56113. name: "Front",
  56114. image: {
  56115. source: "./media/characters/tamani/anthro.svg",
  56116. extra: 930/890,
  56117. bottom: 34/964
  56118. },
  56119. form: "anthro",
  56120. default: true
  56121. },
  56122. side: {
  56123. height: math.unit(6, "feet"),
  56124. weight: math.unit(198*2, "lb"),
  56125. name: "Side",
  56126. image: {
  56127. source: "./media/characters/tamani/feral.svg",
  56128. extra: 559/519,
  56129. bottom: 43/602
  56130. },
  56131. form: "feral"
  56132. },
  56133. },
  56134. [
  56135. {
  56136. name: "Normal",
  56137. height: math.unit(6.5, "feet"),
  56138. default: true,
  56139. form: "anthro"
  56140. },
  56141. {
  56142. name: "Normal",
  56143. height: math.unit(6, "feet"),
  56144. default: true,
  56145. form: "feral"
  56146. },
  56147. ],
  56148. {
  56149. "anthro": {
  56150. name: "Anthro",
  56151. default: true
  56152. },
  56153. "feral": {
  56154. name: "Feral",
  56155. },
  56156. }
  56157. ))
  56158. characterMakers.push(() => makeCharacter(
  56159. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56160. {
  56161. front: {
  56162. height: math.unit(4 + 1/12, "feet"),
  56163. weight: math.unit(114, "lb"),
  56164. name: "Front",
  56165. image: {
  56166. source: "./media/characters/dex/front.svg",
  56167. extra: 787/680,
  56168. bottom: 18/805
  56169. }
  56170. },
  56171. side: {
  56172. height: math.unit(4 + 1/12, "feet"),
  56173. weight: math.unit(114, "lb"),
  56174. name: "Side",
  56175. image: {
  56176. source: "./media/characters/dex/side.svg",
  56177. extra: 785/680,
  56178. bottom: 12/797
  56179. }
  56180. },
  56181. back: {
  56182. height: math.unit(4 + 1/12, "feet"),
  56183. weight: math.unit(114, "lb"),
  56184. name: "Back",
  56185. image: {
  56186. source: "./media/characters/dex/back.svg",
  56187. extra: 785/681,
  56188. bottom: 17/802
  56189. }
  56190. },
  56191. loungewear: {
  56192. height: math.unit(4 + 1/12, "feet"),
  56193. weight: math.unit(114, "lb"),
  56194. name: "Loungewear",
  56195. image: {
  56196. source: "./media/characters/dex/loungewear.svg",
  56197. extra: 787/680,
  56198. bottom: 18/805
  56199. }
  56200. },
  56201. workout: {
  56202. height: math.unit(4 + 1/12, "feet"),
  56203. weight: math.unit(114, "lb"),
  56204. name: "Workout",
  56205. image: {
  56206. source: "./media/characters/dex/workout.svg",
  56207. extra: 787/680,
  56208. bottom: 18/805
  56209. }
  56210. },
  56211. schoolUniform: {
  56212. height: math.unit(4 + 1/12, "feet"),
  56213. weight: math.unit(114, "lb"),
  56214. name: "School-uniform",
  56215. image: {
  56216. source: "./media/characters/dex/school-uniform.svg",
  56217. extra: 787/680,
  56218. bottom: 18/805
  56219. }
  56220. },
  56221. maw: {
  56222. height: math.unit(0.55, "feet"),
  56223. name: "Maw",
  56224. image: {
  56225. source: "./media/characters/dex/maw.svg"
  56226. }
  56227. },
  56228. paw: {
  56229. height: math.unit(0.87, "feet"),
  56230. name: "Paw",
  56231. image: {
  56232. source: "./media/characters/dex/paw.svg"
  56233. }
  56234. },
  56235. bust: {
  56236. height: math.unit(1.67, "feet"),
  56237. name: "Bust",
  56238. image: {
  56239. source: "./media/characters/dex/bust.svg"
  56240. }
  56241. },
  56242. },
  56243. [
  56244. {
  56245. name: "Normal",
  56246. height: math.unit(4 + 1/12, "feet"),
  56247. default: true
  56248. },
  56249. ]
  56250. ))
  56251. characterMakers.push(() => makeCharacter(
  56252. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56253. {
  56254. front: {
  56255. height: math.unit(4 + 3/12, "feet"),
  56256. weight: math.unit(60, "lb"),
  56257. name: "Front",
  56258. image: {
  56259. source: "./media/characters/silke/front.svg",
  56260. extra: 1334/1122,
  56261. bottom: 21/1355
  56262. }
  56263. },
  56264. back: {
  56265. height: math.unit(4 + 3/12, "feet"),
  56266. weight: math.unit(60, "lb"),
  56267. name: "Back",
  56268. image: {
  56269. source: "./media/characters/silke/back.svg",
  56270. extra: 1328/1092,
  56271. bottom: 16/1344
  56272. }
  56273. },
  56274. dressed: {
  56275. height: math.unit(4 + 3/12, "feet"),
  56276. weight: math.unit(60, "lb"),
  56277. name: "Dressed",
  56278. image: {
  56279. source: "./media/characters/silke/dressed.svg",
  56280. extra: 1334/1122,
  56281. bottom: 43/1377
  56282. }
  56283. },
  56284. },
  56285. [
  56286. {
  56287. name: "Normal",
  56288. height: math.unit(4 + 3/12, "feet"),
  56289. default: true
  56290. },
  56291. ]
  56292. ))
  56293. characterMakers.push(() => makeCharacter(
  56294. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56295. {
  56296. front: {
  56297. height: math.unit(1.58, "meters"),
  56298. weight: math.unit(47, "kg"),
  56299. name: "Front",
  56300. image: {
  56301. source: "./media/characters/wireshark/front.svg",
  56302. extra: 883/838,
  56303. bottom: 66/949
  56304. }
  56305. },
  56306. },
  56307. [
  56308. {
  56309. name: "Normal",
  56310. height: math.unit(1.58, "meters"),
  56311. default: true
  56312. },
  56313. ]
  56314. ))
  56315. characterMakers.push(() => makeCharacter(
  56316. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56317. {
  56318. front: {
  56319. height: math.unit(6, "meters"),
  56320. weight: math.unit(15000, "kg"),
  56321. name: "Front",
  56322. image: {
  56323. source: "./media/characters/gallagher/front.svg",
  56324. extra: 532/493,
  56325. bottom: 0/532
  56326. }
  56327. },
  56328. },
  56329. [
  56330. {
  56331. name: "Normal",
  56332. height: math.unit(6, "meters"),
  56333. default: true
  56334. },
  56335. ]
  56336. ))
  56337. characterMakers.push(() => makeCharacter(
  56338. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56339. {
  56340. front: {
  56341. height: math.unit(2.4, "meters"),
  56342. weight: math.unit(270, "kg"),
  56343. name: "Front",
  56344. image: {
  56345. source: "./media/characters/alice/front.svg",
  56346. extra: 950/900,
  56347. bottom: 36/986
  56348. }
  56349. },
  56350. side: {
  56351. height: math.unit(2.4, "meters"),
  56352. weight: math.unit(270, "kg"),
  56353. name: "Side",
  56354. image: {
  56355. source: "./media/characters/alice/side.svg",
  56356. extra: 921/876,
  56357. bottom: 19/940
  56358. }
  56359. },
  56360. dressed: {
  56361. height: math.unit(2.4, "meters"),
  56362. weight: math.unit(270, "kg"),
  56363. name: "Dressed",
  56364. image: {
  56365. source: "./media/characters/alice/dressed.svg",
  56366. extra: 905/850,
  56367. bottom: 81/986
  56368. }
  56369. },
  56370. fishnet: {
  56371. height: math.unit(2.4, "meters"),
  56372. weight: math.unit(270, "kg"),
  56373. name: "Fishnet",
  56374. image: {
  56375. source: "./media/characters/alice/fishnet.svg",
  56376. extra: 905/850,
  56377. bottom: 81/986
  56378. }
  56379. },
  56380. },
  56381. [
  56382. {
  56383. name: "Normal",
  56384. height: math.unit(2.4, "meters"),
  56385. default: true
  56386. },
  56387. ]
  56388. ))
  56389. characterMakers.push(() => makeCharacter(
  56390. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56391. {
  56392. front: {
  56393. height: math.unit(175.25, "feet"),
  56394. name: "Front",
  56395. image: {
  56396. source: "./media/characters/fio/front.svg",
  56397. extra: 1883/1591,
  56398. bottom: 34/1917
  56399. }
  56400. },
  56401. },
  56402. [
  56403. {
  56404. name: "Normal",
  56405. height: math.unit(175.25, "cm"),
  56406. default: true
  56407. },
  56408. ]
  56409. ))
  56410. characterMakers.push(() => makeCharacter(
  56411. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56412. {
  56413. side: {
  56414. height: math.unit(6, "meters"),
  56415. weight: math.unit(3400, "kg"),
  56416. preyCapacity: math.unit(1700, "liters"),
  56417. name: "Side",
  56418. image: {
  56419. source: "./media/characters/hass/side.svg",
  56420. extra: 1058/997,
  56421. bottom: 177/1235
  56422. }
  56423. },
  56424. feeding: {
  56425. height: math.unit(6*0.63, "meters"),
  56426. weight: math.unit(3400, "kg"),
  56427. preyCapacity: math.unit(1700, "liters"),
  56428. name: "Feeding",
  56429. image: {
  56430. source: "./media/characters/hass/feeding.svg",
  56431. extra: 689/579,
  56432. bottom: 146/835
  56433. }
  56434. },
  56435. guts: {
  56436. height: math.unit(6, "meters"),
  56437. weight: math.unit(3400, "kg"),
  56438. name: "Guts",
  56439. image: {
  56440. source: "./media/characters/hass/guts.svg",
  56441. extra: 1223/1198,
  56442. bottom: 182/1405
  56443. }
  56444. },
  56445. dickFront: {
  56446. height: math.unit(1.4, "meters"),
  56447. name: "Dick (Front)",
  56448. image: {
  56449. source: "./media/characters/hass/dick-front.svg"
  56450. }
  56451. },
  56452. dickSide: {
  56453. height: math.unit(1.3, "meters"),
  56454. name: "Dick (Side)",
  56455. image: {
  56456. source: "./media/characters/hass/dick-side.svg"
  56457. }
  56458. },
  56459. dickBack: {
  56460. height: math.unit(1.4, "meters"),
  56461. name: "Dick (Back)",
  56462. image: {
  56463. source: "./media/characters/hass/dick-back.svg"
  56464. }
  56465. },
  56466. },
  56467. [
  56468. {
  56469. name: "Normal",
  56470. height: math.unit(6, "meters"),
  56471. default: true
  56472. },
  56473. ]
  56474. ))
  56475. characterMakers.push(() => makeCharacter(
  56476. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56477. {
  56478. front: {
  56479. height: math.unit(4, "feet"),
  56480. weight: math.unit(60, "lb"),
  56481. name: "Front",
  56482. image: {
  56483. source: "./media/characters/hickory-finnegan/front.svg",
  56484. extra: 444/411,
  56485. bottom: 10/454
  56486. }
  56487. },
  56488. side: {
  56489. height: math.unit(4, "feet"),
  56490. weight: math.unit(60, "lb"),
  56491. name: "Side",
  56492. image: {
  56493. source: "./media/characters/hickory-finnegan/side.svg",
  56494. extra: 444/411,
  56495. bottom: 10/454
  56496. }
  56497. },
  56498. back: {
  56499. height: math.unit(4, "feet"),
  56500. weight: math.unit(60, "lb"),
  56501. name: "Back",
  56502. image: {
  56503. source: "./media/characters/hickory-finnegan/back.svg",
  56504. extra: 444/411,
  56505. bottom: 10/454
  56506. }
  56507. },
  56508. },
  56509. [
  56510. {
  56511. name: "Normal",
  56512. height: math.unit(4, "feet"),
  56513. default: true
  56514. },
  56515. ]
  56516. ))
  56517. characterMakers.push(() => makeCharacter(
  56518. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56519. {
  56520. snivy_front: {
  56521. height: math.unit(2, "feet"),
  56522. weight: math.unit(17.9, "lb"),
  56523. name: "Front",
  56524. image: {
  56525. source: "./media/characters/robin-phox/snivy-front.svg",
  56526. extra: 569/504,
  56527. bottom: 33/602
  56528. },
  56529. form: "snivy",
  56530. default: true
  56531. },
  56532. snivy_frontNsfw: {
  56533. height: math.unit(2, "feet"),
  56534. weight: math.unit(17.9, "lb"),
  56535. name: "Front (NSFW)",
  56536. image: {
  56537. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56538. extra: 569/504,
  56539. bottom: 33/602
  56540. },
  56541. form: "snivy",
  56542. },
  56543. snivy_back: {
  56544. height: math.unit(2, "feet"),
  56545. weight: math.unit(17.9, "lb"),
  56546. name: "Back",
  56547. image: {
  56548. source: "./media/characters/robin-phox/snivy-back.svg",
  56549. extra: 577/508,
  56550. bottom: 21/598
  56551. },
  56552. form: "snivy",
  56553. },
  56554. snivy_foot: {
  56555. height: math.unit(0.68, "feet"),
  56556. name: "Foot",
  56557. image: {
  56558. source: "./media/characters/robin-phox/snivy-foot.svg"
  56559. },
  56560. form: "snivy",
  56561. },
  56562. snivy_sole: {
  56563. height: math.unit(0.68, "feet"),
  56564. name: "Sole",
  56565. image: {
  56566. source: "./media/characters/robin-phox/snivy-sole.svg"
  56567. },
  56568. form: "snivy",
  56569. },
  56570. yoshi_front: {
  56571. height: math.unit(6, "feet"),
  56572. weight: math.unit(150, "lb"),
  56573. name: "Front",
  56574. image: {
  56575. source: "./media/characters/robin-phox/yoshi-front.svg",
  56576. extra: 890/792,
  56577. bottom: 29/919
  56578. },
  56579. form: "yoshi",
  56580. default: true
  56581. },
  56582. yoshi_frontNsfw: {
  56583. height: math.unit(6, "feet"),
  56584. weight: math.unit(150, "lb"),
  56585. name: "Front (NSFW)",
  56586. image: {
  56587. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56588. extra: 890/792,
  56589. bottom: 29/919
  56590. },
  56591. form: "yoshi",
  56592. },
  56593. yoshi_back: {
  56594. height: math.unit(6, "feet"),
  56595. weight: math.unit(150, "lb"),
  56596. name: "Back",
  56597. image: {
  56598. source: "./media/characters/robin-phox/yoshi-back.svg",
  56599. extra: 890/792,
  56600. bottom: 29/919
  56601. },
  56602. form: "yoshi",
  56603. },
  56604. yoshi_foot: {
  56605. height: math.unit(1.5, "feet"),
  56606. name: "Foot",
  56607. image: {
  56608. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56609. },
  56610. form: "yoshi",
  56611. },
  56612. delphox_front: {
  56613. height: math.unit(4 + 11/12, "feet"),
  56614. weight: math.unit(86, "lb"),
  56615. name: "Front",
  56616. image: {
  56617. source: "./media/characters/robin-phox/delphox-front.svg",
  56618. extra: 1266/1069,
  56619. bottom: 32/1298
  56620. },
  56621. form: "delphox",
  56622. default: true
  56623. },
  56624. delphox_frontNsfw: {
  56625. height: math.unit(4 + 11/12, "feet"),
  56626. weight: math.unit(86, "lb"),
  56627. name: "Front (NSFW)",
  56628. image: {
  56629. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56630. extra: 1266/1069,
  56631. bottom: 32/1298
  56632. },
  56633. form: "delphox",
  56634. },
  56635. delphox_back: {
  56636. height: math.unit(4 + 11/12, "feet"),
  56637. weight: math.unit(86, "lb"),
  56638. name: "Back",
  56639. image: {
  56640. source: "./media/characters/robin-phox/delphox-back.svg",
  56641. extra: 1269/1083,
  56642. bottom: 15/1284
  56643. },
  56644. form: "delphox",
  56645. },
  56646. mienshao_front: {
  56647. height: math.unit(4 + 7/12, "feet"),
  56648. weight: math.unit(78.3, "lb"),
  56649. name: "Front",
  56650. image: {
  56651. source: "./media/characters/robin-phox/mienshao-front.svg",
  56652. extra: 1052/970,
  56653. bottom: 108/1160
  56654. },
  56655. form: "mienshao",
  56656. default: true
  56657. },
  56658. mienshao_frontNsfw: {
  56659. height: math.unit(4 + 7/12, "feet"),
  56660. weight: math.unit(78.3, "lb"),
  56661. name: "Front (NSFW)",
  56662. image: {
  56663. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56664. extra: 1052/970,
  56665. bottom: 108/1160
  56666. },
  56667. form: "mienshao",
  56668. },
  56669. mienshao_back: {
  56670. height: math.unit(4 + 7/12, "feet"),
  56671. weight: math.unit(78.3, "lb"),
  56672. name: "Back",
  56673. image: {
  56674. source: "./media/characters/robin-phox/mienshao-back.svg",
  56675. extra: 1102/982,
  56676. bottom: 32/1134
  56677. },
  56678. form: "mienshao",
  56679. },
  56680. inteleon_front: {
  56681. height: math.unit(6 + 3/12, "feet"),
  56682. weight: math.unit(99.6, "lb"),
  56683. name: "Front",
  56684. image: {
  56685. source: "./media/characters/robin-phox/inteleon-front.svg",
  56686. extra: 910/799,
  56687. bottom: 76/986
  56688. },
  56689. form: "inteleon",
  56690. default: true
  56691. },
  56692. inteleon_frontNsfw: {
  56693. height: math.unit(6 + 3/12, "feet"),
  56694. weight: math.unit(99.6, "lb"),
  56695. name: "Front (NSFW)",
  56696. image: {
  56697. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56698. extra: 910/799,
  56699. bottom: 76/986
  56700. },
  56701. form: "inteleon",
  56702. },
  56703. inteleon_back: {
  56704. height: math.unit(6 + 3/12, "feet"),
  56705. weight: math.unit(99.6, "lb"),
  56706. name: "Back",
  56707. image: {
  56708. source: "./media/characters/robin-phox/inteleon-back.svg",
  56709. extra: 907/796,
  56710. bottom: 25/932
  56711. },
  56712. form: "inteleon",
  56713. },
  56714. reshiram_front: {
  56715. height: math.unit(10 + 6/12, "feet"),
  56716. weight: math.unit(727.5, "lb"),
  56717. name: "Front",
  56718. image: {
  56719. source: "./media/characters/robin-phox/reshiram-front.svg",
  56720. extra: 1198/940,
  56721. bottom: 123/1321
  56722. },
  56723. form: "reshiram",
  56724. },
  56725. reshiram_frontNsfw: {
  56726. height: math.unit(10 + 6/12, "feet"),
  56727. weight: math.unit(727.5, "lb"),
  56728. name: "Front-nsfw",
  56729. image: {
  56730. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56731. extra: 1198/940,
  56732. bottom: 123/1321
  56733. },
  56734. form: "reshiram",
  56735. },
  56736. reshiram_back: {
  56737. height: math.unit(10 + 6/12, "feet"),
  56738. weight: math.unit(727.5, "lb"),
  56739. name: "Back",
  56740. image: {
  56741. source: "./media/characters/robin-phox/reshiram-back.svg",
  56742. extra: 1024/904,
  56743. bottom: 85/1109
  56744. },
  56745. form: "reshiram",
  56746. },
  56747. samurott_front: {
  56748. height: math.unit(8, "feet"),
  56749. weight: math.unit(208.6, "lb"),
  56750. name: "Front",
  56751. image: {
  56752. source: "./media/characters/robin-phox/samurott-front.svg",
  56753. extra: 1048/984,
  56754. bottom: 100/1148
  56755. },
  56756. form: "samurott",
  56757. },
  56758. samurott_frontNsfw: {
  56759. height: math.unit(8, "feet"),
  56760. weight: math.unit(208.6, "lb"),
  56761. name: "Front-nsfw",
  56762. image: {
  56763. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56764. extra: 1048/984,
  56765. bottom: 100/1148
  56766. },
  56767. form: "samurott",
  56768. },
  56769. samurott_back: {
  56770. height: math.unit(8, "feet"),
  56771. weight: math.unit(208.6, "lb"),
  56772. name: "Back",
  56773. image: {
  56774. source: "./media/characters/robin-phox/samurott-back.svg",
  56775. extra: 1110/1042,
  56776. bottom: 12/1122
  56777. },
  56778. form: "samurott",
  56779. },
  56780. samurott_feral: {
  56781. height: math.unit(4 + 11/12, "feet"),
  56782. weight: math.unit(208.6, "lb"),
  56783. name: "Feral",
  56784. image: {
  56785. source: "./media/characters/robin-phox/samurott-feral.svg",
  56786. extra: 766/681,
  56787. bottom: 108/874
  56788. },
  56789. form: "samurott",
  56790. },
  56791. },
  56792. [
  56793. {
  56794. name: "Normal",
  56795. height: math.unit(2, "feet"),
  56796. default: true,
  56797. form: "snivy"
  56798. },
  56799. {
  56800. name: "Normal",
  56801. height: math.unit(6, "feet"),
  56802. default: true,
  56803. form: "yoshi"
  56804. },
  56805. {
  56806. name: "Normal",
  56807. height: math.unit(4 + 11/12, "feet"),
  56808. default: true,
  56809. form: "delphox"
  56810. },
  56811. {
  56812. name: "Normal",
  56813. height: math.unit(4 + 7/12, "feet"),
  56814. default: true,
  56815. form: "mienshao"
  56816. },
  56817. {
  56818. name: "Normal",
  56819. height: math.unit(6 + 3/12, "feet"),
  56820. default: true,
  56821. form: "inteleon"
  56822. },
  56823. {
  56824. name: "Normal",
  56825. height: math.unit(10 + 6/12, "feet"),
  56826. default: true,
  56827. form: "reshiram"
  56828. },
  56829. {
  56830. name: "Normal",
  56831. height: math.unit(8, "feet"),
  56832. default: true,
  56833. form: "samurott"
  56834. },
  56835. {
  56836. name: "Macro",
  56837. height: math.unit(500, "feet"),
  56838. allForms: true
  56839. },
  56840. {
  56841. name: "Mega Macro",
  56842. height: math.unit(10, "earths"),
  56843. allForms: true
  56844. },
  56845. {
  56846. name: "Giga Macro",
  56847. height: math.unit(1, "galaxy"),
  56848. allForms: true
  56849. },
  56850. {
  56851. name: "Godly Macro",
  56852. height: math.unit(1e10, "multiverses"),
  56853. allForms: true
  56854. },
  56855. ],
  56856. {
  56857. "snivy": {
  56858. name: "Snivy",
  56859. default: true
  56860. },
  56861. "yoshi": {
  56862. name: "Yoshi",
  56863. },
  56864. "delphox": {
  56865. name: "Delphox",
  56866. },
  56867. "mienshao": {
  56868. name: "Mienshao",
  56869. },
  56870. "inteleon": {
  56871. name: "Inteleon",
  56872. },
  56873. "reshiram": {
  56874. name: "Reshiram",
  56875. },
  56876. "samurott": {
  56877. name: "Samurott",
  56878. },
  56879. }
  56880. ))
  56881. characterMakers.push(() => makeCharacter(
  56882. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  56883. {
  56884. front: {
  56885. height: math.unit(4, "feet"),
  56886. name: "Front",
  56887. image: {
  56888. source: "./media/characters/ash-leung/front.svg",
  56889. extra: 1916/1792,
  56890. bottom: 50/1966
  56891. }
  56892. },
  56893. },
  56894. [
  56895. {
  56896. name: "Atomic",
  56897. height: math.unit(1, "angstrom")
  56898. },
  56899. {
  56900. name: "Microscopic",
  56901. height: math.unit(4000, "angstroms")
  56902. },
  56903. {
  56904. name: "Speck",
  56905. height: math.unit(1, "mm")
  56906. },
  56907. {
  56908. name: "Small",
  56909. height: math.unit(1, "inch")
  56910. },
  56911. {
  56912. name: "Normal",
  56913. height: math.unit(4, "feet"),
  56914. default: true
  56915. },
  56916. ]
  56917. ))
  56918. characterMakers.push(() => makeCharacter(
  56919. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  56920. {
  56921. frontDressed: {
  56922. height: math.unit(2.08, "meters"),
  56923. weight: math.unit(175, "lb"),
  56924. name: "Front (Dressed)",
  56925. image: {
  56926. source: "./media/characters/carie/front-dressed.svg",
  56927. extra: 456/417,
  56928. bottom: 7/463
  56929. }
  56930. },
  56931. backDressed: {
  56932. height: math.unit(2.08, "meters"),
  56933. weight: math.unit(175, "lb"),
  56934. name: "Back (Dressed)",
  56935. image: {
  56936. source: "./media/characters/carie/back-dressed.svg",
  56937. extra: 455/414,
  56938. bottom: 11/466
  56939. }
  56940. },
  56941. front: {
  56942. height: math.unit(2, "meters"),
  56943. weight: math.unit(175, "lb"),
  56944. name: "Front",
  56945. image: {
  56946. source: "./media/characters/carie/front.svg",
  56947. extra: 438/399,
  56948. bottom: 12/450
  56949. }
  56950. },
  56951. back: {
  56952. height: math.unit(2, "meters"),
  56953. weight: math.unit(175, "lb"),
  56954. name: "Back",
  56955. image: {
  56956. source: "./media/characters/carie/back.svg",
  56957. extra: 438/397,
  56958. bottom: 7/445
  56959. }
  56960. },
  56961. },
  56962. [
  56963. {
  56964. name: "Normal",
  56965. height: math.unit(2.08, "meters"),
  56966. default: true
  56967. },
  56968. {
  56969. name: "Macro",
  56970. height: math.unit(2.08e3, "meters")
  56971. },
  56972. {
  56973. name: "Mega Macro",
  56974. height: math.unit(2.08e6, "meters")
  56975. },
  56976. {
  56977. name: "Giga Macro",
  56978. height: math.unit(2.08e9, "meters")
  56979. },
  56980. {
  56981. name: "Tera Macro",
  56982. height: math.unit(2.08e12, "meters")
  56983. },
  56984. {
  56985. name: "Peta Macro",
  56986. height: math.unit(2.08e15, "meters")
  56987. },
  56988. {
  56989. name: "Exa Macro",
  56990. height: math.unit(2.08e18, "meters")
  56991. },
  56992. {
  56993. name: "Zetta Macro",
  56994. height: math.unit(2.08e21, "meters")
  56995. },
  56996. {
  56997. name: "Yotta Macro",
  56998. height: math.unit(2.08e24, "meters")
  56999. },
  57000. ]
  57001. ))
  57002. characterMakers.push(() => makeCharacter(
  57003. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57004. {
  57005. front: {
  57006. height: math.unit(5 + 2/12, "feet"),
  57007. weight: math.unit(120, "lb"),
  57008. name: "Front",
  57009. image: {
  57010. source: "./media/characters/sai-bree/front.svg",
  57011. extra: 1843/1702,
  57012. bottom: 91/1934
  57013. }
  57014. },
  57015. back: {
  57016. height: math.unit(5 + 2/12, "feet"),
  57017. weight: math.unit(120, "lb"),
  57018. name: "Back",
  57019. image: {
  57020. source: "./media/characters/sai-bree/back.svg",
  57021. extra: 1809/1637,
  57022. bottom: 56/1865
  57023. }
  57024. },
  57025. },
  57026. [
  57027. {
  57028. name: "Normal",
  57029. height: math.unit(5 + 2/12, "feet"),
  57030. default: true
  57031. },
  57032. {
  57033. name: "Macro",
  57034. height: math.unit(500, "feet")
  57035. },
  57036. ]
  57037. ))
  57038. characterMakers.push(() => makeCharacter(
  57039. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57040. {
  57041. side: {
  57042. height: math.unit(0.77, "meters"),
  57043. weight: math.unit(120, "lb"),
  57044. name: "Side",
  57045. image: {
  57046. source: "./media/characters/davwyn/side.svg",
  57047. extra: 1557/1225,
  57048. bottom: 131/1688
  57049. }
  57050. },
  57051. front: {
  57052. height: math.unit(0.835410, "meters"),
  57053. weight: math.unit(120, "lb"),
  57054. name: "Front",
  57055. image: {
  57056. source: "./media/characters/davwyn/front.svg",
  57057. extra: 870/843,
  57058. bottom: 175/1045
  57059. }
  57060. },
  57061. },
  57062. [
  57063. {
  57064. name: "Minidrake",
  57065. height: math.unit(0.77/4, "meters")
  57066. },
  57067. {
  57068. name: "Normal",
  57069. height: math.unit(0.77, "meters"),
  57070. default: true
  57071. },
  57072. ]
  57073. ))
  57074. characterMakers.push(() => makeCharacter(
  57075. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57076. {
  57077. front: {
  57078. height: math.unit(10 + 3/12, "feet"),
  57079. weight: math.unit(2857, "lb"),
  57080. name: "Front",
  57081. image: {
  57082. source: "./media/characters/balans/front.svg",
  57083. extra: 427/402,
  57084. bottom: 26/453
  57085. }
  57086. },
  57087. side: {
  57088. height: math.unit(10 + 3/12, "feet"),
  57089. weight: math.unit(2857, "lb"),
  57090. name: "Side",
  57091. image: {
  57092. source: "./media/characters/balans/side.svg",
  57093. extra: 397/371,
  57094. bottom: 17/414
  57095. }
  57096. },
  57097. back: {
  57098. height: math.unit(10 + 3/12, "feet"),
  57099. weight: math.unit(2857, "lb"),
  57100. name: "Back",
  57101. image: {
  57102. source: "./media/characters/balans/back.svg",
  57103. extra: 408/381,
  57104. bottom: 14/422
  57105. }
  57106. },
  57107. hand: {
  57108. height: math.unit(1.15, "feet"),
  57109. name: "Hand",
  57110. image: {
  57111. source: "./media/characters/balans/hand.svg"
  57112. }
  57113. },
  57114. footRest: {
  57115. height: math.unit(3.1, "feet"),
  57116. name: "Foot (Rest)",
  57117. image: {
  57118. source: "./media/characters/balans/foot-rest.svg"
  57119. }
  57120. },
  57121. footActive: {
  57122. height: math.unit(3.5, "feet"),
  57123. name: "Foot (Active)",
  57124. image: {
  57125. source: "./media/characters/balans/foot-active.svg"
  57126. }
  57127. },
  57128. },
  57129. [
  57130. {
  57131. name: "Normal",
  57132. height: math.unit(10 + 3/12, "feet"),
  57133. default: true
  57134. },
  57135. ]
  57136. ))
  57137. characterMakers.push(() => makeCharacter(
  57138. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57139. {
  57140. side: {
  57141. height: math.unit(9, "meters"),
  57142. weight: math.unit(114, "tonnes"),
  57143. name: "Side",
  57144. image: {
  57145. source: "./media/characters/eldkveikir/side.svg",
  57146. extra: 1927/338,
  57147. bottom: 42/1969
  57148. }
  57149. },
  57150. sitting: {
  57151. height: math.unit(13.4, "meters"),
  57152. weight: math.unit(114, "tonnes"),
  57153. name: "Sitting",
  57154. image: {
  57155. source: "./media/characters/eldkveikir/sitting.svg",
  57156. extra: 1108/963,
  57157. bottom: 610/1718
  57158. }
  57159. },
  57160. maw: {
  57161. height: math.unit(8.36, "meters"),
  57162. name: "Maw",
  57163. image: {
  57164. source: "./media/characters/eldkveikir/maw.svg"
  57165. }
  57166. },
  57167. hand: {
  57168. height: math.unit(4.84, "meters"),
  57169. name: "Hand",
  57170. image: {
  57171. source: "./media/characters/eldkveikir/hand.svg"
  57172. }
  57173. },
  57174. foot: {
  57175. height: math.unit(6.9, "meters"),
  57176. name: "Foot",
  57177. image: {
  57178. source: "./media/characters/eldkveikir/foot.svg"
  57179. }
  57180. },
  57181. genitals: {
  57182. height: math.unit(9.6, "meters"),
  57183. name: "Genitals",
  57184. image: {
  57185. source: "./media/characters/eldkveikir/genitals.svg"
  57186. }
  57187. },
  57188. },
  57189. [
  57190. {
  57191. name: "Normal",
  57192. height: math.unit(9, "meters"),
  57193. default: true
  57194. },
  57195. ]
  57196. ))
  57197. characterMakers.push(() => makeCharacter(
  57198. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57199. {
  57200. front: {
  57201. height: math.unit(14, "feet"),
  57202. weight: math.unit(4100, "lb"),
  57203. name: "Front",
  57204. image: {
  57205. source: "./media/characters/arrow/front.svg",
  57206. extra: 330/318,
  57207. bottom: 56/386
  57208. }
  57209. },
  57210. },
  57211. [
  57212. {
  57213. name: "Normal",
  57214. height: math.unit(14, "feet"),
  57215. default: true
  57216. },
  57217. {
  57218. name: "Minimacro",
  57219. height: math.unit(63, "feet")
  57220. },
  57221. {
  57222. name: "Macro",
  57223. height: math.unit(630, "feet")
  57224. },
  57225. {
  57226. name: "Megamacro",
  57227. height: math.unit(12600, "feet")
  57228. },
  57229. {
  57230. name: "Gigamacro",
  57231. height: math.unit(18000, "miles")
  57232. },
  57233. ]
  57234. ))
  57235. characterMakers.push(() => makeCharacter(
  57236. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57237. {
  57238. front: {
  57239. height: math.unit(10, "feet"),
  57240. weight: math.unit(2.4, "tons"),
  57241. name: "Front",
  57242. image: {
  57243. source: "./media/characters/3yk-k0-unit/front.svg",
  57244. extra: 573/561,
  57245. bottom: 33/606
  57246. }
  57247. },
  57248. back: {
  57249. height: math.unit(10, "feet"),
  57250. weight: math.unit(2.4, "tons"),
  57251. name: "Back",
  57252. image: {
  57253. source: "./media/characters/3yk-k0-unit/back.svg",
  57254. extra: 614/573,
  57255. bottom: 32/646
  57256. }
  57257. },
  57258. maw: {
  57259. height: math.unit(2.15, "feet"),
  57260. name: "Maw",
  57261. image: {
  57262. source: "./media/characters/3yk-k0-unit/maw.svg"
  57263. }
  57264. },
  57265. },
  57266. [
  57267. {
  57268. name: "Normal",
  57269. height: math.unit(10, "feet"),
  57270. default: true
  57271. },
  57272. ]
  57273. ))
  57274. characterMakers.push(() => makeCharacter(
  57275. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57276. {
  57277. front: {
  57278. height: math.unit(8 + 8/12, "feet"),
  57279. name: "Front",
  57280. image: {
  57281. source: "./media/characters/nemo/front.svg",
  57282. extra: 1308/1217,
  57283. bottom: 57/1365
  57284. }
  57285. },
  57286. },
  57287. [
  57288. {
  57289. name: "Normal",
  57290. height: math.unit(8 + 8/12, "feet"),
  57291. default: true
  57292. },
  57293. ]
  57294. ))
  57295. characterMakers.push(() => makeCharacter(
  57296. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57297. {
  57298. front: {
  57299. height: math.unit(8, "feet"),
  57300. weight: math.unit(760, "lb"),
  57301. name: "Front",
  57302. image: {
  57303. source: "./media/characters/rexx/front.svg",
  57304. extra: 786/750,
  57305. bottom: 17/803
  57306. },
  57307. extraAttributes: {
  57308. "pawLength": {
  57309. name: "Paw Length",
  57310. power: 1,
  57311. type: "length",
  57312. base: math.unit(27, "inches")
  57313. },
  57314. }
  57315. },
  57316. },
  57317. [
  57318. {
  57319. name: "Micro",
  57320. height: math.unit(2, "inches")
  57321. },
  57322. {
  57323. name: "Normal",
  57324. height: math.unit(8, "feet"),
  57325. default: true
  57326. },
  57327. {
  57328. name: "Macro",
  57329. height: math.unit(150, "feet")
  57330. },
  57331. ]
  57332. ))
  57333. characterMakers.push(() => makeCharacter(
  57334. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57335. {
  57336. front: {
  57337. height: math.unit(18, "feet"),
  57338. weight: math.unit(1975, "lb"),
  57339. name: "Front",
  57340. image: {
  57341. source: "./media/characters/draco/front.svg",
  57342. extra: 1325/1241,
  57343. bottom: 83/1408
  57344. }
  57345. },
  57346. back: {
  57347. height: math.unit(18, "feet"),
  57348. weight: math.unit(1975, "lb"),
  57349. name: "Back",
  57350. image: {
  57351. source: "./media/characters/draco/back.svg",
  57352. extra: 1332/1250,
  57353. bottom: 43/1375
  57354. }
  57355. },
  57356. dick: {
  57357. height: math.unit(7.5, "feet"),
  57358. name: "Dick",
  57359. image: {
  57360. source: "./media/characters/draco/dick.svg"
  57361. }
  57362. },
  57363. },
  57364. [
  57365. {
  57366. name: "Normal",
  57367. height: math.unit(18, "feet"),
  57368. default: true
  57369. },
  57370. ]
  57371. ))
  57372. characterMakers.push(() => makeCharacter(
  57373. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57374. {
  57375. front: {
  57376. height: math.unit(3.2, "meters"),
  57377. name: "Front",
  57378. image: {
  57379. source: "./media/characters/harriett/front.svg",
  57380. extra: 1966/1915,
  57381. bottom: 9/1975
  57382. }
  57383. },
  57384. },
  57385. [
  57386. {
  57387. name: "Normal",
  57388. height: math.unit(3.2, "meters"),
  57389. default: true
  57390. },
  57391. ]
  57392. ))
  57393. characterMakers.push(() => makeCharacter(
  57394. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57395. {
  57396. sitting: {
  57397. height: math.unit(0.8, "meter"),
  57398. name: "Sitting",
  57399. image: {
  57400. source: "./media/characters/serpentus/sitting.svg",
  57401. extra: 293/290,
  57402. bottom: 140/433
  57403. }
  57404. },
  57405. },
  57406. [
  57407. {
  57408. name: "Normal",
  57409. height: math.unit(0.8, "meter"),
  57410. default: true
  57411. },
  57412. ]
  57413. ))
  57414. characterMakers.push(() => makeCharacter(
  57415. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57416. {
  57417. front: {
  57418. height: math.unit(5.7174385736, "feet"),
  57419. name: "Front",
  57420. image: {
  57421. source: "./media/characters/nova-polecat/front.svg",
  57422. extra: 1317/1216,
  57423. bottom: 92/1409
  57424. }
  57425. },
  57426. },
  57427. [
  57428. {
  57429. name: "Normal",
  57430. height: math.unit(5.7174385736, "feet"),
  57431. default: true
  57432. },
  57433. ]
  57434. ))
  57435. characterMakers.push(() => makeCharacter(
  57436. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57437. {
  57438. front: {
  57439. height: math.unit(5 + 4/12, "feet"),
  57440. weight: math.unit(250, "lb"),
  57441. name: "Front",
  57442. image: {
  57443. source: "./media/characters/mook/front.svg",
  57444. extra: 1088/1037,
  57445. bottom: 132/1220
  57446. }
  57447. },
  57448. back: {
  57449. height: math.unit(5 + 1/12, "feet"),
  57450. weight: math.unit(250, "lb"),
  57451. name: "Back",
  57452. image: {
  57453. source: "./media/characters/mook/back.svg",
  57454. extra: 1184/905,
  57455. bottom: 96/1280
  57456. }
  57457. },
  57458. head: {
  57459. height: math.unit(1.85, "feet"),
  57460. name: "Head",
  57461. image: {
  57462. source: "./media/characters/mook/head.svg"
  57463. }
  57464. },
  57465. hand: {
  57466. height: math.unit(1.9, "feet"),
  57467. name: "Hand",
  57468. image: {
  57469. source: "./media/characters/mook/hand.svg"
  57470. }
  57471. },
  57472. palm: {
  57473. height: math.unit(1.84, "feet"),
  57474. name: "Palm",
  57475. image: {
  57476. source: "./media/characters/mook/palm.svg"
  57477. }
  57478. },
  57479. foot: {
  57480. height: math.unit(1.44, "feet"),
  57481. name: "Foot",
  57482. image: {
  57483. source: "./media/characters/mook/foot.svg"
  57484. }
  57485. },
  57486. sole: {
  57487. height: math.unit(1.44, "feet"),
  57488. name: "Sole",
  57489. image: {
  57490. source: "./media/characters/mook/sole.svg"
  57491. }
  57492. },
  57493. },
  57494. [
  57495. {
  57496. name: "Normal",
  57497. height: math.unit(5 + 4/12, "feet"),
  57498. default: true
  57499. },
  57500. {
  57501. name: "Big",
  57502. height: math.unit(12, "feet")
  57503. },
  57504. ]
  57505. ))
  57506. characterMakers.push(() => makeCharacter(
  57507. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57508. {
  57509. front: {
  57510. height: math.unit(6 + 10/12, "feet"),
  57511. weight: math.unit(233, "lb"),
  57512. name: "Front",
  57513. image: {
  57514. source: "./media/characters/kayla/front.svg",
  57515. extra: 1850/1775,
  57516. bottom: 65/1915
  57517. }
  57518. },
  57519. },
  57520. [
  57521. {
  57522. name: "Normal",
  57523. height: math.unit(6 + 10/12, "feet"),
  57524. default: true
  57525. },
  57526. {
  57527. name: "Amazonian",
  57528. height: math.unit(12 + 5/12, "feet")
  57529. },
  57530. {
  57531. name: "Mini Giantess",
  57532. height: math.unit(26, "feet")
  57533. },
  57534. {
  57535. name: "Giantess",
  57536. height: math.unit(200, "feet")
  57537. },
  57538. {
  57539. name: "Mega Giantess",
  57540. height: math.unit(2500, "feet")
  57541. },
  57542. {
  57543. name: "City Sized",
  57544. height: math.unit(50, "miles")
  57545. },
  57546. {
  57547. name: "Country Sized",
  57548. height: math.unit(500, "miles")
  57549. },
  57550. {
  57551. name: "Continent Sized",
  57552. height: math.unit(2500, "miles")
  57553. },
  57554. {
  57555. name: "Planet Sized",
  57556. height: math.unit(10000, "miles")
  57557. },
  57558. {
  57559. name: "Star Sized",
  57560. height: math.unit(5e6, "miles")
  57561. },
  57562. {
  57563. name: "Solar System Sized",
  57564. height: math.unit(125, "AU")
  57565. },
  57566. {
  57567. name: "Galaxy Sized",
  57568. height: math.unit(300e3, "lightyears")
  57569. },
  57570. {
  57571. name: "Universe Sized",
  57572. height: math.unit(200e9, "lightyears")
  57573. },
  57574. {
  57575. name: "Multiverse Sized",
  57576. height: math.unit(20, "exauniverses")
  57577. },
  57578. {
  57579. name: "Mother of Existence",
  57580. height: math.unit(1e6, "yottauniverses")
  57581. },
  57582. ]
  57583. ))
  57584. characterMakers.push(() => makeCharacter(
  57585. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57586. {
  57587. side: {
  57588. height: math.unit(9.5, "meters"),
  57589. name: "Side",
  57590. image: {
  57591. source: "./media/characters/kulve-ragnarok/side.svg",
  57592. extra: 364/326,
  57593. bottom: 50/414
  57594. }
  57595. },
  57596. },
  57597. [
  57598. {
  57599. name: "Normal",
  57600. height: math.unit(9.5, "meters"),
  57601. default: true
  57602. },
  57603. ]
  57604. ))
  57605. characterMakers.push(() => makeCharacter(
  57606. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57607. {
  57608. front: {
  57609. height: math.unit(8 + 9/12, "feet"),
  57610. name: "Front",
  57611. image: {
  57612. source: "./media/characters/atlas-goat/front.svg",
  57613. extra: 1462/1323,
  57614. bottom: 12/1474
  57615. }
  57616. },
  57617. },
  57618. [
  57619. {
  57620. name: "Normal",
  57621. height: math.unit(8 + 9/12, "feet"),
  57622. default: true
  57623. },
  57624. {
  57625. name: "Skyline",
  57626. height: math.unit(845, "feet")
  57627. },
  57628. {
  57629. name: "Orbital",
  57630. height: math.unit(93000, "miles")
  57631. },
  57632. {
  57633. name: "Constellation",
  57634. height: math.unit(27000, "lightyears")
  57635. },
  57636. ]
  57637. ))
  57638. characterMakers.push(() => makeCharacter(
  57639. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57640. {
  57641. side: {
  57642. height: math.unit(1.8, "meters"),
  57643. weight: math.unit(120, "kg"),
  57644. name: "Side",
  57645. image: {
  57646. source: "./media/characters/xie-ling/side.svg",
  57647. extra: 646/574,
  57648. bottom: 44/690
  57649. }
  57650. },
  57651. },
  57652. [
  57653. {
  57654. name: "Tiny",
  57655. height: math.unit(1.80, "meters")
  57656. },
  57657. {
  57658. name: "Small",
  57659. height: math.unit(6, "meters")
  57660. },
  57661. {
  57662. name: "Medium",
  57663. height: math.unit(15, "meters")
  57664. },
  57665. {
  57666. name: "Normal",
  57667. height: math.unit(30, "meters"),
  57668. default: true
  57669. },
  57670. {
  57671. name: "Above Normal",
  57672. height: math.unit(60, "meters")
  57673. },
  57674. {
  57675. name: "Big",
  57676. height: math.unit(220, "meters")
  57677. },
  57678. {
  57679. name: "Giant",
  57680. height: math.unit(2.2, "km")
  57681. },
  57682. {
  57683. name: "Macro",
  57684. height: math.unit(25, "km")
  57685. },
  57686. {
  57687. name: "Mega Macro",
  57688. height: math.unit(350, "km")
  57689. },
  57690. {
  57691. name: "Mega Macro+",
  57692. height: math.unit(5000, "km")
  57693. },
  57694. {
  57695. name: "Goddess",
  57696. height: math.unit(3, "multiverses")
  57697. },
  57698. ]
  57699. ))
  57700. characterMakers.push(() => makeCharacter(
  57701. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  57702. {
  57703. frontSfw: {
  57704. height: math.unit(5 + 11/12, "feet"),
  57705. weight: math.unit(210, "lb"),
  57706. name: "Front",
  57707. image: {
  57708. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  57709. extra: 1928/1821,
  57710. bottom: 45/1973
  57711. }
  57712. },
  57713. backSfw: {
  57714. height: math.unit(5 + 11/12, "feet"),
  57715. weight: math.unit(210, "lb"),
  57716. name: "Back",
  57717. image: {
  57718. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  57719. extra: 1920/1813,
  57720. bottom: 34/1954
  57721. }
  57722. },
  57723. frontNsfw: {
  57724. height: math.unit(5 + 11/12, "feet"),
  57725. weight: math.unit(210, "lb"),
  57726. name: "Front (NSFW)",
  57727. image: {
  57728. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  57729. extra: 1928/1821,
  57730. bottom: 45/1973
  57731. }
  57732. },
  57733. backNsfw: {
  57734. height: math.unit(5 + 11/12, "feet"),
  57735. weight: math.unit(210, "lb"),
  57736. name: "Back (NSFW)",
  57737. image: {
  57738. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  57739. extra: 1920/1813,
  57740. bottom: 34/1954
  57741. }
  57742. },
  57743. },
  57744. [
  57745. {
  57746. name: "Normal",
  57747. height: math.unit(5 + 11/12, "feet"),
  57748. default: true
  57749. },
  57750. {
  57751. name: "Goddess",
  57752. height: math.unit(20 + 3/12, "feet")
  57753. },
  57754. {
  57755. name: "Breaker of Man",
  57756. height: math.unit(329 + 9/12, "feet")
  57757. },
  57758. {
  57759. name: "Solar Justice",
  57760. height: math.unit(0.6, "solarradii")
  57761. },
  57762. {
  57763. name: "She Who Judges",
  57764. height: math.unit(1, "universe")
  57765. },
  57766. ]
  57767. ))
  57768. characterMakers.push(() => makeCharacter(
  57769. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  57770. {
  57771. casual_front: {
  57772. height: math.unit(6 + 1/12, "feet"),
  57773. weight: math.unit(190, "lb"),
  57774. preyCapacity: math.unit(1, "people"),
  57775. name: "Front",
  57776. image: {
  57777. source: "./media/characters/managarmr/casual-front.svg",
  57778. extra: 411/381,
  57779. bottom: 15/426
  57780. },
  57781. extraAttributes: {
  57782. "pawSize": {
  57783. name: "Paw Size",
  57784. power: 1,
  57785. type: "length",
  57786. base: math.unit(0.2, "meters")
  57787. },
  57788. },
  57789. form: "casual",
  57790. },
  57791. casual_back: {
  57792. height: math.unit(6 + 1/12, "feet"),
  57793. weight: math.unit(190, "lb"),
  57794. preyCapacity: math.unit(1, "people"),
  57795. name: "Back",
  57796. image: {
  57797. source: "./media/characters/managarmr/casual-back.svg",
  57798. extra: 413/383,
  57799. bottom: 13/426
  57800. },
  57801. extraAttributes: {
  57802. "pawSize": {
  57803. name: "Paw Size",
  57804. power: 1,
  57805. type: "length",
  57806. base: math.unit(0.2, "meters")
  57807. },
  57808. },
  57809. form: "casual",
  57810. },
  57811. base_front: {
  57812. height: math.unit(7, "feet"),
  57813. weight: math.unit(210, "lb"),
  57814. preyCapacity: math.unit(2, "people"),
  57815. name: "Front",
  57816. image: {
  57817. source: "./media/characters/managarmr/base-front.svg",
  57818. extra: 580/485,
  57819. bottom: 32/612
  57820. },
  57821. extraAttributes: {
  57822. "wingspan": {
  57823. name: "Wingspan",
  57824. power: 1,
  57825. type: "length",
  57826. base: math.unit(4, "meters")
  57827. },
  57828. "pawSize": {
  57829. name: "Paw Size",
  57830. power: 1,
  57831. type: "length",
  57832. base: math.unit(0.2, "meters")
  57833. },
  57834. },
  57835. form: "base",
  57836. },
  57837. "true-divine_front": {
  57838. height: math.unit(40, "feet"),
  57839. weight: math.unit(39000, "lb"),
  57840. preyCapacity: math.unit(375, "people"),
  57841. name: "Front",
  57842. image: {
  57843. source: "./media/characters/managarmr/true-divine-front.svg",
  57844. extra: 725/573,
  57845. bottom: 120/845
  57846. },
  57847. extraAttributes: {
  57848. "wingspan": {
  57849. name: "Wingspan",
  57850. power: 1,
  57851. type: "length",
  57852. base: math.unit(20, "meters")
  57853. },
  57854. "pawSize": {
  57855. name: "Paw Size",
  57856. power: 1,
  57857. type: "length",
  57858. base: math.unit(1.5, "meters")
  57859. },
  57860. },
  57861. form: "true-divine",
  57862. },
  57863. },
  57864. [
  57865. {
  57866. name: "Normal",
  57867. height: math.unit(6 + 1/12, "feet"),
  57868. form: "casual",
  57869. default: true
  57870. },
  57871. {
  57872. name: "Normal",
  57873. height: math.unit(7, "feet"),
  57874. form: "base",
  57875. default: true
  57876. },
  57877. ],
  57878. {
  57879. "casual": {
  57880. name: "Casual",
  57881. default: true
  57882. },
  57883. "base": {
  57884. name: "Base",
  57885. },
  57886. "true-divine": {
  57887. name: "True Divine",
  57888. },
  57889. }
  57890. ))
  57891. characterMakers.push(() => makeCharacter(
  57892. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  57893. {
  57894. front: {
  57895. height: math.unit(1.8, "meters"),
  57896. weight: math.unit(110, "kg"),
  57897. name: "Front",
  57898. image: {
  57899. source: "./media/characters/mystra/front.svg",
  57900. extra: 529/442,
  57901. bottom: 31/560
  57902. }
  57903. },
  57904. frontLewd: {
  57905. height: math.unit(1.8, "meters"),
  57906. weight: math.unit(110, "kg"),
  57907. name: "Front (Lewd)",
  57908. image: {
  57909. source: "./media/characters/mystra/front-lewd.svg",
  57910. extra: 529/442,
  57911. bottom: 31/560
  57912. }
  57913. },
  57914. head: {
  57915. height: math.unit(1.63, "feet"),
  57916. name: "Head",
  57917. image: {
  57918. source: "./media/characters/mystra/head.svg"
  57919. }
  57920. },
  57921. paw: {
  57922. height: math.unit(1.9, "feet"),
  57923. name: "Paw",
  57924. image: {
  57925. source: "./media/characters/mystra/paw.svg"
  57926. }
  57927. },
  57928. },
  57929. [
  57930. {
  57931. name: "Incognito",
  57932. height: math.unit(2.3, "meters")
  57933. },
  57934. {
  57935. name: "Small Macro",
  57936. height: math.unit(300, "meters")
  57937. },
  57938. {
  57939. name: "Small Mega",
  57940. height: math.unit(2, "km")
  57941. },
  57942. {
  57943. name: "Mega",
  57944. height: math.unit(30, "km")
  57945. },
  57946. {
  57947. name: "Small Giga",
  57948. height: math.unit(100, "km")
  57949. },
  57950. {
  57951. name: "Giga",
  57952. height: math.unit(1000, "km"),
  57953. default: true
  57954. },
  57955. {
  57956. name: "Continental",
  57957. height: math.unit(5000, "km")
  57958. },
  57959. {
  57960. name: "Terra",
  57961. height: math.unit(20000, "km")
  57962. },
  57963. {
  57964. name: "Solar",
  57965. height: math.unit(2e6, "km")
  57966. },
  57967. {
  57968. name: "Galactic",
  57969. height: math.unit(528502, "lightyears")
  57970. },
  57971. {
  57972. name: "Universal",
  57973. height: math.unit(20, "universes")
  57974. },
  57975. ]
  57976. ))
  57977. characterMakers.push(() => makeCharacter(
  57978. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  57979. {
  57980. front: {
  57981. height: math.unit(2, "meters"),
  57982. weight: math.unit(140, "kg"),
  57983. name: "Front",
  57984. image: {
  57985. source: "./media/characters/caleb/front.svg",
  57986. extra: 873/817,
  57987. bottom: 47/920
  57988. }
  57989. },
  57990. back: {
  57991. height: math.unit(2, "meters"),
  57992. weight: math.unit(140, "kg"),
  57993. name: "Back",
  57994. image: {
  57995. source: "./media/characters/caleb/back.svg",
  57996. extra: 877/828,
  57997. bottom: 24/901
  57998. }
  57999. },
  58000. snakeTail: {
  58001. height: math.unit(1.44, "feet"),
  58002. name: "Snake Tail",
  58003. image: {
  58004. source: "./media/characters/caleb/snake-tail.svg"
  58005. }
  58006. },
  58007. dick: {
  58008. height: math.unit(2.6, "feet"),
  58009. name: "Dick",
  58010. image: {
  58011. source: "./media/characters/caleb/dick.svg"
  58012. }
  58013. },
  58014. },
  58015. [
  58016. {
  58017. name: "Incognito",
  58018. height: math.unit(3, "meters")
  58019. },
  58020. {
  58021. name: "Home Size",
  58022. height: math.unit(200, "meters"),
  58023. default: true
  58024. },
  58025. {
  58026. name: "Macro",
  58027. height: math.unit(500, "meters")
  58028. },
  58029. {
  58030. name: "Big Macro",
  58031. height: math.unit(5, "km")
  58032. },
  58033. {
  58034. name: "Giga",
  58035. height: math.unit(250, "km")
  58036. },
  58037. {
  58038. name: "Giga+",
  58039. height: math.unit(5000, "km")
  58040. },
  58041. {
  58042. name: "Small Terra",
  58043. height: math.unit(35e3, "km")
  58044. },
  58045. {
  58046. name: "Terra",
  58047. height: math.unit(2e6, "km")
  58048. },
  58049. {
  58050. name: "Terra+",
  58051. height: math.unit(1.5e6, "km")
  58052. },
  58053. ]
  58054. ))
  58055. characterMakers.push(() => makeCharacter(
  58056. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58057. {
  58058. front: {
  58059. height: math.unit(2, "meters"),
  58060. weight: math.unit(120, "kg"),
  58061. name: "Front",
  58062. image: {
  58063. source: "./media/characters/gilirian/front.svg",
  58064. extra: 805/737,
  58065. bottom: 13/818
  58066. }
  58067. },
  58068. side: {
  58069. height: math.unit(2, "meters"),
  58070. weight: math.unit(120, "kg"),
  58071. name: "Side",
  58072. image: {
  58073. source: "./media/characters/gilirian/side.svg",
  58074. extra: 810/746,
  58075. bottom: 6/816
  58076. }
  58077. },
  58078. back: {
  58079. height: math.unit(2, "meters"),
  58080. weight: math.unit(120, "kg"),
  58081. name: "Back",
  58082. image: {
  58083. source: "./media/characters/gilirian/back.svg",
  58084. extra: 815/745,
  58085. bottom: 15/830
  58086. }
  58087. },
  58088. frontNsfw: {
  58089. height: math.unit(2, "meters"),
  58090. weight: math.unit(120, "kg"),
  58091. name: "Front (NSFW)",
  58092. image: {
  58093. source: "./media/characters/gilirian/front-nsfw.svg",
  58094. extra: 805/737,
  58095. bottom: 13/818
  58096. }
  58097. },
  58098. sideNsfw: {
  58099. height: math.unit(2, "meters"),
  58100. weight: math.unit(120, "kg"),
  58101. name: "Side (NSFW)",
  58102. image: {
  58103. source: "./media/characters/gilirian/side-nsfw.svg",
  58104. extra: 810/746,
  58105. bottom: 6/816
  58106. }
  58107. },
  58108. },
  58109. [
  58110. {
  58111. name: "Incognito",
  58112. height: math.unit(2, "meters"),
  58113. default: true
  58114. },
  58115. {
  58116. name: "Macro",
  58117. height: math.unit(250, "meters")
  58118. },
  58119. {
  58120. name: "Big Macro",
  58121. height: math.unit(1500, "meters")
  58122. },
  58123. {
  58124. name: "Mega",
  58125. height: math.unit(40, "km")
  58126. },
  58127. {
  58128. name: "Giga",
  58129. height: math.unit(300, "km")
  58130. },
  58131. {
  58132. name: "Extra Giga",
  58133. height: math.unit(5000, "km")
  58134. },
  58135. {
  58136. name: "Small Terra",
  58137. height: math.unit(10e3, "km")
  58138. },
  58139. {
  58140. name: "Terra",
  58141. height: math.unit(3e5, "km")
  58142. },
  58143. {
  58144. name: "Galactic",
  58145. height: math.unit(369950, "lightyears")
  58146. },
  58147. ]
  58148. ))
  58149. characterMakers.push(() => makeCharacter(
  58150. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58151. {
  58152. front: {
  58153. height: math.unit(2.5, "meters"),
  58154. weight: math.unit(230, "lb"),
  58155. name: "Front",
  58156. image: {
  58157. source: "./media/characters/tarken/front.svg",
  58158. extra: 764/720,
  58159. bottom: 49/813
  58160. }
  58161. },
  58162. back: {
  58163. height: math.unit(2.5, "meters"),
  58164. weight: math.unit(230, "lb"),
  58165. name: "Back",
  58166. image: {
  58167. source: "./media/characters/tarken/back.svg",
  58168. extra: 756/720,
  58169. bottom: 35/791
  58170. }
  58171. },
  58172. frontNsfw: {
  58173. height: math.unit(2.5, "meters"),
  58174. weight: math.unit(230, "lb"),
  58175. name: "Front (NSFW)",
  58176. image: {
  58177. source: "./media/characters/tarken/front-nsfw.svg",
  58178. extra: 764/720,
  58179. bottom: 49/813
  58180. }
  58181. },
  58182. backNsfw: {
  58183. height: math.unit(2.5, "meters"),
  58184. weight: math.unit(230, "lb"),
  58185. name: "Back (NSFW)",
  58186. image: {
  58187. source: "./media/characters/tarken/back-nsfw.svg",
  58188. extra: 756/720,
  58189. bottom: 35/791
  58190. }
  58191. },
  58192. head: {
  58193. height: math.unit(2.22, "feet"),
  58194. name: "Head",
  58195. image: {
  58196. source: "./media/characters/tarken/head.svg"
  58197. }
  58198. },
  58199. tail: {
  58200. height: math.unit(5.25, "feet"),
  58201. name: "Tail",
  58202. image: {
  58203. source: "./media/characters/tarken/tail.svg"
  58204. }
  58205. },
  58206. dick: {
  58207. height: math.unit(1.95, "feet"),
  58208. name: "Dick",
  58209. image: {
  58210. source: "./media/characters/tarken/dick.svg"
  58211. }
  58212. },
  58213. hand: {
  58214. height: math.unit(1.78, "feet"),
  58215. name: "Hand",
  58216. image: {
  58217. source: "./media/characters/tarken/hand.svg"
  58218. }
  58219. },
  58220. beam: {
  58221. height: math.unit(1.5, "feet"),
  58222. name: "Beam",
  58223. image: {
  58224. source: "./media/characters/tarken/beam.svg"
  58225. }
  58226. },
  58227. },
  58228. [
  58229. {
  58230. name: "Original Size",
  58231. height: math.unit(2.5, "meters")
  58232. },
  58233. {
  58234. name: "Macro",
  58235. height: math.unit(150, "meters"),
  58236. default: true
  58237. },
  58238. {
  58239. name: "Macro+",
  58240. height: math.unit(300, "meters")
  58241. },
  58242. {
  58243. name: "Mega",
  58244. height: math.unit(2, "km")
  58245. },
  58246. {
  58247. name: "Mega+",
  58248. height: math.unit(35, "km")
  58249. },
  58250.  {
  58251. name: "Mega++",
  58252. height: math.unit(60, "km")
  58253. },
  58254. {
  58255. name: "Giga",
  58256. height: math.unit(200, "km")
  58257. },
  58258. {
  58259. name: "Giga+",
  58260. height: math.unit(2500, "km")
  58261. },
  58262. {
  58263. name: "Giga++",
  58264. height: math.unit(6600, "km")
  58265. },
  58266. {
  58267. name: "Terra",
  58268. height: math.unit(20000, "km")
  58269. },
  58270. {
  58271. name: "Terra+",
  58272. height: math.unit(300000, "km")
  58273. },
  58274. ]
  58275. ))
  58276. characterMakers.push(() => makeCharacter(
  58277. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58278. {
  58279. magpie_dressed: {
  58280. height: math.unit(1.7, "meters"),
  58281. weight: math.unit(70, "kg"),
  58282. name: "Dressed",
  58283. image: {
  58284. source: "./media/characters/otreus/magpie-dressed.svg",
  58285. extra: 691/672,
  58286. bottom: 116/807
  58287. },
  58288. form: "magpie",
  58289. default: true
  58290. },
  58291. magpie_nude: {
  58292. height: math.unit(1.7, "meters"),
  58293. weight: math.unit(70, "kg"),
  58294. name: "Nude",
  58295. image: {
  58296. source: "./media/characters/otreus/magpie-nude.svg",
  58297. extra: 691/672,
  58298. bottom: 116/807
  58299. },
  58300. form: "magpie",
  58301. },
  58302. magpie_dressedLewd: {
  58303. height: math.unit(1.7, "meters"),
  58304. weight: math.unit(70, "kg"),
  58305. name: "Dressed (Lewd)",
  58306. image: {
  58307. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58308. extra: 691/672,
  58309. bottom: 116/807
  58310. },
  58311. form: "magpie",
  58312. },
  58313. magpie_nudeLewd: {
  58314. height: math.unit(1.7, "meters"),
  58315. weight: math.unit(70, "kg"),
  58316. name: "Nude (Lewd)",
  58317. image: {
  58318. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58319. extra: 691/672,
  58320. bottom: 116/807
  58321. },
  58322. form: "magpie",
  58323. },
  58324. magpie_leftFoot: {
  58325. height: math.unit(1.58, "feet"),
  58326. name: "Left Foot",
  58327. image: {
  58328. source: "./media/characters/otreus/magpie-left-foot.svg"
  58329. },
  58330. form: "magpie",
  58331. },
  58332. magpie_rightFoot: {
  58333. height: math.unit(1.58, "feet"),
  58334. name: "Right Foot",
  58335. image: {
  58336. source: "./media/characters/otreus/magpie-right-foot.svg"
  58337. },
  58338. form: "magpie",
  58339. },
  58340. magpie_wingspan: {
  58341. height: math.unit(2, "meters"),
  58342. weight: math.unit(70, "kg"),
  58343. name: "Wingspan",
  58344. image: {
  58345. source: "./media/characters/otreus/magpie-wingspan.svg"
  58346. },
  58347. extraAttributes: {
  58348. "wingspan": {
  58349. name: "Wingspan",
  58350. power: 1,
  58351. type: "length",
  58352. base: math.unit(3.35, "meters")
  58353. },
  58354. },
  58355. form: "magpie",
  58356. },
  58357. hippogriff_dressed: {
  58358. height: math.unit(1.7, "meters"),
  58359. weight: math.unit(70, "kg"),
  58360. name: "Dressed",
  58361. image: {
  58362. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58363. extra: 710/689,
  58364. bottom: 67/777
  58365. },
  58366. form: "hippogriff",
  58367. default: true
  58368. },
  58369. hippogriff_nude: {
  58370. height: math.unit(1.7, "meters"),
  58371. weight: math.unit(70, "kg"),
  58372. name: "Nude",
  58373. image: {
  58374. source: "./media/characters/otreus/hippogriff-nude.svg",
  58375. extra: 710/689,
  58376. bottom: 67/777
  58377. },
  58378. form: "hippogriff",
  58379. },
  58380. hippogriff_dressedLewd: {
  58381. height: math.unit(1.7, "meters"),
  58382. weight: math.unit(70, "kg"),
  58383. name: "Dressed (Lewd)",
  58384. image: {
  58385. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58386. extra: 710/689,
  58387. bottom: 67/777
  58388. },
  58389. form: "hippogriff",
  58390. },
  58391. hippogriff_nudeLewd: {
  58392. height: math.unit(1.7, "meters"),
  58393. weight: math.unit(70, "kg"),
  58394. name: "Nude (Lewd)",
  58395. image: {
  58396. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58397. extra: 710/689,
  58398. bottom: 67/777
  58399. },
  58400. form: "hippogriff",
  58401. },
  58402. },
  58403. [
  58404. {
  58405. name: "Original Size",
  58406. height: math.unit(1.7, "meters"),
  58407. allForms: true
  58408. },
  58409. {
  58410. name: "Incognito Size",
  58411. height: math.unit(2, "meters"),
  58412. allForms: true
  58413. },
  58414. {
  58415. name: "Mega",
  58416. height: math.unit(2, "km"),
  58417. allForms: true
  58418. },
  58419. {
  58420. name: "Mega+",
  58421. height: math.unit(40, "km"),
  58422. allForms: true
  58423. },
  58424. {
  58425. name: "Giga",
  58426. height: math.unit(250, "km"),
  58427. allForms: true
  58428. },
  58429. {
  58430. name: "Giga+",
  58431. height: math.unit(3000, "km"),
  58432. allForms: true
  58433. },
  58434. {
  58435. name: "Terra",
  58436. height: math.unit(20000, "km"),
  58437. allForms: true
  58438. },
  58439. {
  58440. name: "Solar (Home Size)",
  58441. height: math.unit(3e6, "km"),
  58442. allForms: true,
  58443. default: true
  58444. },
  58445. ],
  58446. {
  58447. "magpie": {
  58448. name: "Magpie",
  58449. default: true
  58450. },
  58451. "hippogriff": {
  58452. name: "Hippogriff",
  58453. },
  58454. }
  58455. ))
  58456. characterMakers.push(() => makeCharacter(
  58457. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58458. {
  58459. frontDressed: {
  58460. height: math.unit(1.8, "meters"),
  58461. weight: math.unit(90, "kg"),
  58462. name: "Front (Dressed)",
  58463. image: {
  58464. source: "./media/characters/thalia/front-dressed.svg",
  58465. extra: 478/402,
  58466. bottom: 55/533
  58467. }
  58468. },
  58469. backDressed: {
  58470. height: math.unit(1.8, "meters"),
  58471. weight: math.unit(90, "kg"),
  58472. name: "Back (Dressed)",
  58473. image: {
  58474. source: "./media/characters/thalia/back-dressed.svg",
  58475. extra: 500/424,
  58476. bottom: 15/515
  58477. }
  58478. },
  58479. frontNude: {
  58480. height: math.unit(1.8, "meters"),
  58481. weight: math.unit(90, "kg"),
  58482. name: "Front (Nude)",
  58483. image: {
  58484. source: "./media/characters/thalia/front-nude.svg",
  58485. extra: 478/402,
  58486. bottom: 55/533
  58487. }
  58488. },
  58489. backNude: {
  58490. height: math.unit(1.8, "meters"),
  58491. weight: math.unit(90, "kg"),
  58492. name: "Back (Nude)",
  58493. image: {
  58494. source: "./media/characters/thalia/back-nude.svg",
  58495. extra: 500/424,
  58496. bottom: 15/515
  58497. }
  58498. },
  58499. },
  58500. [
  58501. {
  58502. name: "Incognito",
  58503. height: math.unit(3, "meters")
  58504. },
  58505. {
  58506. name: "Macro",
  58507. height: math.unit(500, "meters")
  58508. },
  58509. {
  58510. name: "Mega",
  58511. height: math.unit(5, "km")
  58512. },
  58513. {
  58514. name: "Mega+",
  58515. height: math.unit(30, "km")
  58516. },
  58517. {
  58518. name: "Giga",
  58519. height: math.unit(350, "km")
  58520. },
  58521. {
  58522. name: "Giga+",
  58523. height: math.unit(4000, "km")
  58524. },
  58525. {
  58526. name: "Terra",
  58527. height: math.unit(35000, "km")
  58528. },
  58529. {
  58530. name: "Original Size",
  58531. height: math.unit(130000, "km")
  58532. },
  58533. {
  58534. name: "Solar (Home Size)",
  58535. height: math.unit(4e6, "km"),
  58536. default: true
  58537. },
  58538. ]
  58539. ))
  58540. characterMakers.push(() => makeCharacter(
  58541. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58542. {
  58543. front: {
  58544. height: math.unit(1.8, "meters"),
  58545. weight: math.unit(95, "kg"),
  58546. name: "Front",
  58547. image: {
  58548. source: "./media/characters/shango/front.svg",
  58549. extra: 1925/1774,
  58550. bottom: 67/1992
  58551. }
  58552. },
  58553. back: {
  58554. height: math.unit(1.8, "meters"),
  58555. weight: math.unit(95, "kg"),
  58556. name: "Back",
  58557. image: {
  58558. source: "./media/characters/shango/back.svg",
  58559. extra: 1915/1766,
  58560. bottom: 52/1967
  58561. }
  58562. },
  58563. frontLewd: {
  58564. height: math.unit(1.8, "meters"),
  58565. weight: math.unit(95, "kg"),
  58566. name: "Front (Lewd)",
  58567. image: {
  58568. source: "./media/characters/shango/front-lewd.svg",
  58569. extra: 1925/1774,
  58570. bottom: 67/1992
  58571. }
  58572. },
  58573. backLewd: {
  58574. height: math.unit(1.8, "meters"),
  58575. weight: math.unit(95, "kg"),
  58576. name: "Back (Lewd)",
  58577. image: {
  58578. source: "./media/characters/shango/back-lewd.svg",
  58579. extra: 1915/1766,
  58580. bottom: 52/1967
  58581. }
  58582. },
  58583. maw: {
  58584. height: math.unit(1.64, "feet"),
  58585. name: "Maw",
  58586. image: {
  58587. source: "./media/characters/shango/maw.svg"
  58588. }
  58589. },
  58590. dick: {
  58591. height: math.unit(2.14, "feet"),
  58592. name: "Dick",
  58593. image: {
  58594. source: "./media/characters/shango/dick.svg"
  58595. }
  58596. },
  58597. },
  58598. [
  58599. {
  58600. name: "Incognito",
  58601. height: math.unit(1.8, "meters")
  58602. },
  58603. {
  58604. name: "Home Size",
  58605. height: math.unit(60, "meters"),
  58606. default: true
  58607. },
  58608. {
  58609. name: "Macro",
  58610. height: math.unit(450, "meters")
  58611. },
  58612. {
  58613. name: "Mega",
  58614. height: math.unit(6, "km")
  58615. },
  58616. {
  58617. name: "Mega+",
  58618. height: math.unit(35, "km")
  58619. },
  58620. {
  58621. name: "Giga",
  58622. height: math.unit(500, "km")
  58623. },
  58624. {
  58625. name: "Giga+",
  58626. height: math.unit(5000, "km")
  58627. },
  58628. {
  58629. name: "Terra",
  58630. height: math.unit(60000, "km")
  58631. },
  58632. {
  58633. name: "Terra+",
  58634. height: math.unit(400000, "km")
  58635. },
  58636. ]
  58637. ))
  58638. characterMakers.push(() => makeCharacter(
  58639. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58640. {
  58641. front: {
  58642. height: math.unit(2, "meters"),
  58643. weight: math.unit(95, "kg"),
  58644. name: "Front",
  58645. image: {
  58646. source: "./media/characters/osiris-gryphon/front.svg",
  58647. extra: 1508/1313,
  58648. bottom: 87/1595
  58649. }
  58650. },
  58651. back: {
  58652. height: math.unit(2, "meters"),
  58653. weight: math.unit(95, "kg"),
  58654. name: "Back",
  58655. image: {
  58656. source: "./media/characters/osiris-gryphon/back.svg",
  58657. extra: 1436/1309,
  58658. bottom: 64/1500
  58659. }
  58660. },
  58661. frontLewd: {
  58662. height: math.unit(2, "meters"),
  58663. weight: math.unit(95, "kg"),
  58664. name: "Front-lewd",
  58665. image: {
  58666. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58667. extra: 1508/1313,
  58668. bottom: 87/1595
  58669. }
  58670. },
  58671. wing: {
  58672. height: math.unit(6.3333, "feet"),
  58673. name: "Wing",
  58674. image: {
  58675. source: "./media/characters/osiris-gryphon/wing.svg"
  58676. }
  58677. },
  58678. },
  58679. [
  58680. {
  58681. name: "Incognito",
  58682. height: math.unit(2, "meters")
  58683. },
  58684. {
  58685. name: "Home Size",
  58686. height: math.unit(30, "meters"),
  58687. default: true
  58688. },
  58689. {
  58690. name: "Macro",
  58691. height: math.unit(100, "meters")
  58692. },
  58693. {
  58694. name: "Macro+",
  58695. height: math.unit(350, "meters")
  58696. },
  58697. {
  58698. name: "Mega",
  58699. height: math.unit(40, "km")
  58700. },
  58701. {
  58702. name: "Giga",
  58703. height: math.unit(300, "km")
  58704. },
  58705. {
  58706. name: "Giga+",
  58707. height: math.unit(2000, "km")
  58708. },
  58709. {
  58710. name: "Terra",
  58711. height: math.unit(30000, "km")
  58712. },
  58713. ]
  58714. ))
  58715. characterMakers.push(() => makeCharacter(
  58716. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  58717. {
  58718. front: {
  58719. height: math.unit(2.5, "meters"),
  58720. weight: math.unit(200, "kg"),
  58721. name: "Front",
  58722. image: {
  58723. source: "./media/characters/atlas-dragon/front.svg",
  58724. extra: 745/462,
  58725. bottom: 36/781
  58726. }
  58727. },
  58728. back: {
  58729. height: math.unit(2.5, "meters"),
  58730. weight: math.unit(200, "kg"),
  58731. name: "Back",
  58732. image: {
  58733. source: "./media/characters/atlas-dragon/back.svg",
  58734. extra: 848/822,
  58735. bottom: 57/905
  58736. }
  58737. },
  58738. frontLewd: {
  58739. height: math.unit(2.5, "meters"),
  58740. weight: math.unit(200, "kg"),
  58741. name: "Front (Lewd)",
  58742. image: {
  58743. source: "./media/characters/atlas-dragon/front-lewd.svg",
  58744. extra: 745/462,
  58745. bottom: 36/781
  58746. }
  58747. },
  58748. backLewd: {
  58749. height: math.unit(2.5, "meters"),
  58750. weight: math.unit(200, "kg"),
  58751. name: "Back (Lewd)",
  58752. image: {
  58753. source: "./media/characters/atlas-dragon/back-lewd.svg",
  58754. extra: 848/822,
  58755. bottom: 57/905
  58756. }
  58757. },
  58758. },
  58759. [
  58760. {
  58761. name: "Incognito",
  58762. height: math.unit(2.5, "meters")
  58763. },
  58764. {
  58765. name: "Small Macro",
  58766. height: math.unit(50, "meters")
  58767. },
  58768. {
  58769. name: "Macro",
  58770. height: math.unit(350, "meters")
  58771. },
  58772. {
  58773. name: "Mega",
  58774. height: math.unit(5.5, "kilometers")
  58775. },
  58776. {
  58777. name: "Mega+",
  58778. height: math.unit(50, "km")
  58779. },
  58780. {
  58781. name: "Giga",
  58782. height: math.unit(350, "km")
  58783. },
  58784. {
  58785. name: "Giga+",
  58786. height: math.unit(2000, "km")
  58787. },
  58788. {
  58789. name: "Giga++",
  58790. height: math.unit(6500, "km")
  58791. },
  58792. {
  58793. name: "Terra",
  58794. height: math.unit(30000, "km")
  58795. },
  58796. {
  58797. name: "Terra+",
  58798. height: math.unit(250000, "km")
  58799. },
  58800. {
  58801. name: "True Size",
  58802. height: math.unit(100, "multiverses"),
  58803. default: true
  58804. },
  58805. ]
  58806. ))
  58807. characterMakers.push(() => makeCharacter(
  58808. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  58809. {
  58810. front: {
  58811. height: math.unit(1.8, "m"),
  58812. weight: math.unit(120, "kg"),
  58813. name: "Front",
  58814. image: {
  58815. source: "./media/characters/chey/front.svg",
  58816. extra: 1359/1270,
  58817. bottom: 18/1377
  58818. }
  58819. },
  58820. arm: {
  58821. height: math.unit(2.05, "feet"),
  58822. name: "Arm",
  58823. image: {
  58824. source: "./media/characters/chey/arm.svg"
  58825. }
  58826. },
  58827. head: {
  58828. height: math.unit(1.89, "feet"),
  58829. name: "Head",
  58830. image: {
  58831. source: "./media/characters/chey/head.svg"
  58832. }
  58833. },
  58834. },
  58835. [
  58836. {
  58837. name: "Original Size",
  58838. height: math.unit(5, "cm")
  58839. },
  58840. {
  58841. name: "Incognito Size",
  58842. height: math.unit(2.4, "m")
  58843. },
  58844. {
  58845. name: "Home Size",
  58846. height: math.unit(200, "meters"),
  58847. default: true
  58848. },
  58849. {
  58850. name: "Mega",
  58851. height: math.unit(2, "km")
  58852. },
  58853. {
  58854. name: "Giga (Preferred Size)",
  58855. height: math.unit(2000, "km")
  58856. },
  58857. {
  58858. name: "Giga+",
  58859. height: math.unit(6000, "km")
  58860. },
  58861. {
  58862. name: "Terra",
  58863. height: math.unit(17000, "km")
  58864. },
  58865. {
  58866. name: "Terra+",
  58867. height: math.unit(75000, "km")
  58868. },
  58869. {
  58870. name: "Terra++",
  58871. height: math.unit(225000, "km")
  58872. },
  58873. ]
  58874. ))
  58875. characterMakers.push(() => makeCharacter(
  58876. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  58877. {
  58878. side: {
  58879. height: math.unit(7.8, "meters"),
  58880. name: "Side",
  58881. image: {
  58882. source: "./media/characters/ragnarok/side.svg",
  58883. extra: 725/621,
  58884. bottom: 72/797
  58885. }
  58886. },
  58887. },
  58888. [
  58889. {
  58890. name: "Normal",
  58891. height: math.unit(7.8, "meters"),
  58892. default: true
  58893. },
  58894. ]
  58895. ))
  58896. characterMakers.push(() => makeCharacter(
  58897. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  58898. {
  58899. hyena_front: {
  58900. height: math.unit(2.1, "meters"),
  58901. weight: math.unit(110, "kg"),
  58902. name: "Front",
  58903. image: {
  58904. source: "./media/characters/nima/hyena-front.svg",
  58905. extra: 1904/1796,
  58906. bottom: 67/1971
  58907. },
  58908. form: "hyena",
  58909. },
  58910. hyena_back: {
  58911. height: math.unit(2.1, "meters"),
  58912. weight: math.unit(110, "kg"),
  58913. name: "Back",
  58914. image: {
  58915. source: "./media/characters/nima/hyena-back.svg",
  58916. extra: 1964/1884,
  58917. bottom: 35/1999
  58918. },
  58919. form: "hyena",
  58920. },
  58921. shark_front: {
  58922. height: math.unit(1.95, "meters"),
  58923. weight: math.unit(110, "kg"),
  58924. name: "Front",
  58925. image: {
  58926. source: "./media/characters/nima/shark-front.svg",
  58927. extra: 2238/2013,
  58928. bottom: 0/223
  58929. },
  58930. form: "shark",
  58931. },
  58932. paw: {
  58933. height: math.unit(1, "feet"),
  58934. name: "Paw",
  58935. image: {
  58936. source: "./media/characters/nima/paw.svg"
  58937. }
  58938. },
  58939. circlet: {
  58940. height: math.unit(0.3, "feet"),
  58941. name: "Circlet",
  58942. image: {
  58943. source: "./media/characters/nima/circlet.svg"
  58944. }
  58945. },
  58946. necklace: {
  58947. height: math.unit(1.2, "feet"),
  58948. name: "Necklace",
  58949. image: {
  58950. source: "./media/characters/nima/necklace.svg"
  58951. }
  58952. },
  58953. bracelet: {
  58954. height: math.unit(0.51, "feet"),
  58955. name: "Bracelet",
  58956. image: {
  58957. source: "./media/characters/nima/bracelet.svg"
  58958. }
  58959. },
  58960. armband: {
  58961. height: math.unit(1.3, "feet"),
  58962. name: "Armband",
  58963. image: {
  58964. source: "./media/characters/nima/armband.svg"
  58965. }
  58966. },
  58967. },
  58968. [
  58969. {
  58970. name: "Incognito",
  58971. height: math.unit(2.1, "meters"),
  58972. allForms: true
  58973. },
  58974. {
  58975. name: "Small Macro",
  58976. height: math.unit(50, "meters"),
  58977. allForms: true
  58978. },
  58979. {
  58980. name: "Macro",
  58981. height: math.unit(200, "meters"),
  58982. allForms: true
  58983. },
  58984. {
  58985. name: "Mega",
  58986. height: math.unit(2.5, "km"),
  58987. allForms: true
  58988. },
  58989. {
  58990. name: "Mega+",
  58991. height: math.unit(30, "km"),
  58992. allForms: true
  58993. },
  58994. {
  58995. name: "Giga (Home Size)",
  58996. height: math.unit(400, "km"),
  58997. allForms: true,
  58998. default: true
  58999. },
  59000. {
  59001. name: "Giga+",
  59002. height: math.unit(2500, "km"),
  59003. allForms: true
  59004. },
  59005. {
  59006. name: "Giga++",
  59007. height: math.unit(8000, "km"),
  59008. allForms: true
  59009. },
  59010. {
  59011. name: "Terra",
  59012. height: math.unit(20000, "km"),
  59013. allForms: true
  59014. },
  59015. {
  59016. name: "Terra+",
  59017. height: math.unit(70000, "km"),
  59018. allForms: true
  59019. },
  59020. {
  59021. name: "Terra++",
  59022. height: math.unit(600000, "km"),
  59023. allForms: true
  59024. },
  59025. {
  59026. name: "Galactic",
  59027. height: math.unit(40, "galaxies"),
  59028. allForms: true
  59029. },
  59030. {
  59031. name: "Universal",
  59032. height: math.unit(40, "universes"),
  59033. allForms: true
  59034. },
  59035. ],
  59036. {
  59037. "hyena": {
  59038. name: "Hyena",
  59039. default: true
  59040. },
  59041. "shark": {
  59042. name: "Shark",
  59043. },
  59044. }
  59045. ))
  59046. characterMakers.push(() => makeCharacter(
  59047. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59048. {
  59049. anthro_front: {
  59050. height: math.unit(1.5, "meters"),
  59051. name: "Front",
  59052. image: {
  59053. source: "./media/characters/adelaide/anthro-front.svg",
  59054. extra: 860/783,
  59055. bottom: 60/920
  59056. },
  59057. form: "anthro",
  59058. default: true
  59059. },
  59060. hand: {
  59061. height: math.unit(0.65, "feet"),
  59062. name: "Hand",
  59063. image: {
  59064. source: "./media/characters/adelaide/hand.svg"
  59065. },
  59066. form: "anthro"
  59067. },
  59068. foot: {
  59069. height: math.unit(1.38 * 259 / 314, "feet"),
  59070. name: "Foot",
  59071. image: {
  59072. source: "./media/characters/adelaide/foot.svg",
  59073. extra: 259/259,
  59074. bottom: 55/314
  59075. },
  59076. form: "anthro"
  59077. },
  59078. feather: {
  59079. height: math.unit(0.85, "feet"),
  59080. name: "Feather",
  59081. image: {
  59082. source: "./media/characters/adelaide/feather.svg"
  59083. },
  59084. form: "anthro"
  59085. },
  59086. feral_side: {
  59087. height: math.unit(1, "meters"),
  59088. name: "Side",
  59089. image: {
  59090. source: "./media/characters/adelaide/feral-side.svg",
  59091. extra: 550/467,
  59092. bottom: 37/587
  59093. },
  59094. form: "feral",
  59095. default: true
  59096. },
  59097. feral_hand: {
  59098. height: math.unit(0.58, "feet"),
  59099. name: "Hand",
  59100. image: {
  59101. source: "./media/characters/adelaide/hand.svg"
  59102. },
  59103. form: "feral"
  59104. },
  59105. feral_foot: {
  59106. height: math.unit(1.2 * 259 / 314, "feet"),
  59107. name: "Foot",
  59108. image: {
  59109. source: "./media/characters/adelaide/foot.svg",
  59110. extra: 259/259,
  59111. bottom: 55/314
  59112. },
  59113. form: "feral"
  59114. },
  59115. feral_feather: {
  59116. height: math.unit(0.63, "feet"),
  59117. name: "Feather",
  59118. image: {
  59119. source: "./media/characters/adelaide/feather.svg"
  59120. },
  59121. form: "feral"
  59122. },
  59123. },
  59124. [
  59125. {
  59126. name: "Normal",
  59127. height: math.unit(1.5, "meters"),
  59128. form: "anthro",
  59129. default: true
  59130. },
  59131. {
  59132. name: "Normal",
  59133. height: math.unit(1, "meters"),
  59134. form: "feral",
  59135. default: true
  59136. },
  59137. ],
  59138. {
  59139. "anthro": {
  59140. name: "Anthro",
  59141. default: true
  59142. },
  59143. "feral": {
  59144. name: "Feral",
  59145. },
  59146. }
  59147. ))
  59148. //characters
  59149. function makeCharacters() {
  59150. const results = [];
  59151. characterMakers.forEach(character => {
  59152. results.push(character());
  59153. });
  59154. return results;
  59155. }