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

62491 строка
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. }
  2311. //species
  2312. function getSpeciesInfo(speciesList) {
  2313. let result = new Set();
  2314. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2315. result.add(entry)
  2316. });
  2317. return Array.from(result);
  2318. };
  2319. function getSpeciesInfoHelper(species) {
  2320. if (!speciesData[species]) {
  2321. console.warn(species + " doesn't exist");
  2322. return [];
  2323. }
  2324. if (speciesData[species].parents) {
  2325. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2326. } else {
  2327. return [species];
  2328. }
  2329. }
  2330. characterMakers.push(() => makeCharacter(
  2331. {
  2332. name: "Fen",
  2333. species: ["crux"],
  2334. description: {
  2335. title: "Bio",
  2336. text: "Very furry. Sheds on everything."
  2337. },
  2338. tags: [
  2339. "anthro",
  2340. "goo"
  2341. ]
  2342. },
  2343. {
  2344. front: {
  2345. height: math.unit(12, "feet"),
  2346. weight: math.unit(2400, "lb"),
  2347. preyCapacity: math.unit(1, "people"),
  2348. name: "Front",
  2349. image: {
  2350. source: "./media/characters/fen/front.svg",
  2351. extra: 1804/1562,
  2352. bottom: 205/2009
  2353. },
  2354. extraAttributes: {
  2355. pawSize: {
  2356. name: "Paw Size",
  2357. power: 2,
  2358. type: "area",
  2359. base: math.unit(0.35, "m^2")
  2360. }
  2361. }
  2362. },
  2363. diving: {
  2364. height: math.unit(4.9, "meters"),
  2365. weight: math.unit(2400, "lb"),
  2366. name: "Diving",
  2367. image: {
  2368. source: "./media/characters/fen/diving.svg"
  2369. }
  2370. },
  2371. sleeby: {
  2372. height: math.unit(3.45, "meters"),
  2373. weight: math.unit(2400, "lb"),
  2374. name: "Sleeby",
  2375. image: {
  2376. source: "./media/characters/fen/sleeby.svg"
  2377. }
  2378. },
  2379. goo: {
  2380. height: math.unit(12, "feet"),
  2381. weight: math.unit(3600, "lb"),
  2382. volume: math.unit(1000, "liters"),
  2383. preyCapacity: math.unit(6, "people"),
  2384. name: "Goo",
  2385. image: {
  2386. source: "./media/characters/fen/goo.svg",
  2387. extra: 1307/1071,
  2388. bottom: 134/1441
  2389. }
  2390. },
  2391. horror: {
  2392. height: math.unit(13.6, "feet"),
  2393. weight: math.unit(2400, "lb"),
  2394. preyCapacity: math.unit(1, "people"),
  2395. name: "Horror",
  2396. image: {
  2397. source: "./media/characters/fen/horror.svg",
  2398. extra: 893/797,
  2399. bottom: 0/893
  2400. }
  2401. },
  2402. gooNsfw: {
  2403. height: math.unit(12, "feet"),
  2404. weight: math.unit(3750, "lb"),
  2405. volume: math.unit(1000, "liters"),
  2406. preyCapacity: math.unit(6, "people"),
  2407. name: "Goo (NSFW)",
  2408. image: {
  2409. source: "./media/characters/fen/goo-nsfw.svg",
  2410. extra: 1875/1734,
  2411. bottom: 122/1997
  2412. }
  2413. },
  2414. maw: {
  2415. height: math.unit(5.03, "feet"),
  2416. name: "Maw",
  2417. image: {
  2418. source: "./media/characters/fen/maw.svg"
  2419. }
  2420. },
  2421. gooCeiling: {
  2422. height: math.unit(6.6, "feet"),
  2423. weight: math.unit(3000, "lb"),
  2424. volume: math.unit(1000, "liters"),
  2425. preyCapacity: math.unit(6, "people"),
  2426. name: "Maw (Goo)",
  2427. image: {
  2428. source: "./media/characters/fen/goo-maw.svg"
  2429. }
  2430. },
  2431. paw: {
  2432. height: math.unit(3.77, "feet"),
  2433. name: "Paw",
  2434. image: {
  2435. source: "./media/characters/fen/paw.svg"
  2436. },
  2437. extraAttributes: {
  2438. "toeSize": {
  2439. name: "Toe Size",
  2440. power: 2,
  2441. type: "area",
  2442. base: math.unit(0.02875, "m^2")
  2443. },
  2444. "pawSize": {
  2445. name: "Paw Size",
  2446. power: 2,
  2447. type: "area",
  2448. base: math.unit(0.378, "m^2")
  2449. },
  2450. }
  2451. },
  2452. tail: {
  2453. height: math.unit(12.1, "feet"),
  2454. name: "Tail",
  2455. image: {
  2456. source: "./media/characters/fen/tail.svg"
  2457. }
  2458. },
  2459. tailFull: {
  2460. height: math.unit(12.1, "feet"),
  2461. name: "Full Tail",
  2462. image: {
  2463. source: "./media/characters/fen/tail-full.svg"
  2464. }
  2465. },
  2466. back: {
  2467. height: math.unit(12, "feet"),
  2468. weight: math.unit(2400, "lb"),
  2469. name: "Back",
  2470. image: {
  2471. source: "./media/characters/fen/back.svg",
  2472. },
  2473. info: {
  2474. description: {
  2475. mode: "append",
  2476. text: "\n\nHe is not currently looking at you."
  2477. }
  2478. }
  2479. },
  2480. full: {
  2481. height: math.unit(1.85, "meter"),
  2482. weight: math.unit(3200, "lb"),
  2483. preyCapacity: math.unit(3, "people"),
  2484. name: "Full",
  2485. image: {
  2486. source: "./media/characters/fen/full.svg",
  2487. extra: 1133/859,
  2488. bottom: 145/1278
  2489. },
  2490. info: {
  2491. description: {
  2492. mode: "append",
  2493. text: "\n\nMunch."
  2494. }
  2495. }
  2496. },
  2497. gooLounging: {
  2498. height: math.unit(4.53, "feet"),
  2499. weight: math.unit(3000, "lb"),
  2500. preyCapacity: math.unit(6, "people"),
  2501. name: "Goo (Lounging)",
  2502. image: {
  2503. source: "./media/characters/fen/goo-lounging.svg",
  2504. bottom: 116 / 613
  2505. }
  2506. },
  2507. lounging: {
  2508. height: math.unit(10.52, "feet"),
  2509. weight: math.unit(2400, "lb"),
  2510. name: "Lounging",
  2511. image: {
  2512. source: "./media/characters/fen/lounging.svg"
  2513. }
  2514. },
  2515. },
  2516. [
  2517. {
  2518. name: "Small",
  2519. height: math.unit(2.2428, "meter")
  2520. },
  2521. {
  2522. name: "Normal",
  2523. height: math.unit(12, "feet"),
  2524. default: true,
  2525. },
  2526. {
  2527. name: "Big",
  2528. height: math.unit(20, "feet")
  2529. },
  2530. {
  2531. name: "Minimacro",
  2532. height: math.unit(40, "feet"),
  2533. info: {
  2534. description: {
  2535. mode: "append",
  2536. text: "\n\nTOO DAMN BIG"
  2537. }
  2538. }
  2539. },
  2540. {
  2541. name: "Macro",
  2542. height: math.unit(100, "feet"),
  2543. info: {
  2544. description: {
  2545. mode: "append",
  2546. text: "\n\nTOO DAMN BIG"
  2547. }
  2548. }
  2549. },
  2550. {
  2551. name: "Megamacro",
  2552. height: math.unit(2, "miles")
  2553. },
  2554. {
  2555. name: "Gigamacro",
  2556. height: math.unit(10, "earths")
  2557. },
  2558. ]
  2559. ))
  2560. characterMakers.push(() => makeCharacter(
  2561. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2562. {
  2563. front: {
  2564. height: math.unit(183, "cm"),
  2565. weight: math.unit(80, "kg"),
  2566. name: "Front",
  2567. image: {
  2568. source: "./media/characters/sofia-fluttertail/front.svg",
  2569. bottom: 0.01,
  2570. extra: 2154 / 2081
  2571. }
  2572. },
  2573. frontAlt: {
  2574. height: math.unit(183, "cm"),
  2575. weight: math.unit(80, "kg"),
  2576. name: "Front (alt)",
  2577. image: {
  2578. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2579. }
  2580. },
  2581. back: {
  2582. height: math.unit(183, "cm"),
  2583. weight: math.unit(80, "kg"),
  2584. name: "Back",
  2585. image: {
  2586. source: "./media/characters/sofia-fluttertail/back.svg"
  2587. }
  2588. },
  2589. kneeling: {
  2590. height: math.unit(125, "cm"),
  2591. weight: math.unit(80, "kg"),
  2592. name: "Kneeling",
  2593. image: {
  2594. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2595. extra: 1033 / 977,
  2596. bottom: 23.7 / 1057
  2597. }
  2598. },
  2599. maw: {
  2600. height: math.unit(183 / 5, "cm"),
  2601. name: "Maw",
  2602. image: {
  2603. source: "./media/characters/sofia-fluttertail/maw.svg"
  2604. }
  2605. },
  2606. mawcloseup: {
  2607. height: math.unit(183 / 5 * 0.41, "cm"),
  2608. name: "Maw (Closeup)",
  2609. image: {
  2610. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2611. }
  2612. },
  2613. paws: {
  2614. height: math.unit(1.17, "feet"),
  2615. name: "Paws",
  2616. image: {
  2617. source: "./media/characters/sofia-fluttertail/paws.svg",
  2618. extra: 851 / 851,
  2619. bottom: 17 / 868
  2620. }
  2621. },
  2622. },
  2623. [
  2624. {
  2625. name: "Normal",
  2626. height: math.unit(1.83, "meter")
  2627. },
  2628. {
  2629. name: "Size Thief",
  2630. height: math.unit(18, "feet")
  2631. },
  2632. {
  2633. name: "50 Foot Collie",
  2634. height: math.unit(50, "feet")
  2635. },
  2636. {
  2637. name: "Macro",
  2638. height: math.unit(96, "feet"),
  2639. default: true
  2640. },
  2641. {
  2642. name: "Megamerger",
  2643. height: math.unit(650, "feet")
  2644. },
  2645. ]
  2646. ))
  2647. characterMakers.push(() => makeCharacter(
  2648. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2649. {
  2650. front: {
  2651. height: math.unit(7, "feet"),
  2652. weight: math.unit(100, "kg"),
  2653. name: "Front",
  2654. image: {
  2655. source: "./media/characters/march/front.svg",
  2656. extra: 1992/1851,
  2657. bottom: 39/2031
  2658. }
  2659. },
  2660. foot: {
  2661. height: math.unit(0.9, "feet"),
  2662. name: "Foot",
  2663. image: {
  2664. source: "./media/characters/march/foot.svg"
  2665. }
  2666. },
  2667. },
  2668. [
  2669. {
  2670. name: "Normal",
  2671. height: math.unit(7.9, "feet")
  2672. },
  2673. {
  2674. name: "Macro",
  2675. height: math.unit(220, "meters")
  2676. },
  2677. {
  2678. name: "Megamacro",
  2679. height: math.unit(2.98, "km"),
  2680. default: true
  2681. },
  2682. {
  2683. name: "Gigamacro",
  2684. height: math.unit(15963, "km")
  2685. },
  2686. {
  2687. name: "Teramacro",
  2688. height: math.unit(2980000000, "km")
  2689. },
  2690. {
  2691. name: "Examacro",
  2692. height: math.unit(250, "parsecs")
  2693. },
  2694. ]
  2695. ))
  2696. characterMakers.push(() => makeCharacter(
  2697. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2698. {
  2699. front: {
  2700. height: math.unit(6, "feet"),
  2701. weight: math.unit(60, "kg"),
  2702. name: "Front",
  2703. image: {
  2704. source: "./media/characters/noir/front.svg",
  2705. extra: 1,
  2706. bottom: 0.032
  2707. }
  2708. },
  2709. },
  2710. [
  2711. {
  2712. name: "Normal",
  2713. height: math.unit(6.6, "feet")
  2714. },
  2715. {
  2716. name: "Macro",
  2717. height: math.unit(500, "feet")
  2718. },
  2719. {
  2720. name: "Megamacro",
  2721. height: math.unit(2.5, "km"),
  2722. default: true
  2723. },
  2724. {
  2725. name: "Gigamacro",
  2726. height: math.unit(22500, "km")
  2727. },
  2728. {
  2729. name: "Teramacro",
  2730. height: math.unit(2500000000, "km")
  2731. },
  2732. {
  2733. name: "Examacro",
  2734. height: math.unit(200, "parsecs")
  2735. },
  2736. ]
  2737. ))
  2738. characterMakers.push(() => makeCharacter(
  2739. { name: "Okuri", species: ["sabresune"], 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/okuri/front.svg",
  2747. extra: 739/665,
  2748. bottom: 39/778
  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/okuri/back.svg",
  2757. extra: 734/653,
  2758. bottom: 13/747
  2759. }
  2760. },
  2761. sitting: {
  2762. height: math.unit(2.95, "feet"),
  2763. weight: math.unit(100, "kg"),
  2764. name: "Sitting",
  2765. image: {
  2766. source: "./media/characters/okuri/sitting.svg",
  2767. extra: 370/318,
  2768. bottom: 99/469
  2769. }
  2770. },
  2771. },
  2772. [
  2773. {
  2774. name: "Smallest",
  2775. height: math.unit(5 + 2/12, "feet")
  2776. },
  2777. {
  2778. name: "Smaller",
  2779. height: math.unit(300, "feet")
  2780. },
  2781. {
  2782. name: "Small",
  2783. height: math.unit(1000, "feet")
  2784. },
  2785. {
  2786. name: "Macro",
  2787. height: math.unit(1, "mile")
  2788. },
  2789. {
  2790. name: "Mega Macro (Small)",
  2791. height: math.unit(20, "km")
  2792. },
  2793. {
  2794. name: "Mega Macro (Large)",
  2795. height: math.unit(600, "km")
  2796. },
  2797. {
  2798. name: "Giga Macro",
  2799. height: math.unit(10000, "km")
  2800. },
  2801. {
  2802. name: "Normal",
  2803. height: math.unit(577560, "km"),
  2804. default: true
  2805. },
  2806. {
  2807. name: "Large",
  2808. height: math.unit(4, "galaxies")
  2809. },
  2810. {
  2811. name: "Largest",
  2812. height: math.unit(15, "multiverses")
  2813. },
  2814. ]
  2815. ))
  2816. characterMakers.push(() => makeCharacter(
  2817. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2818. {
  2819. front: {
  2820. height: math.unit(7, "feet"),
  2821. weight: math.unit(100, "kg"),
  2822. name: "Front",
  2823. image: {
  2824. source: "./media/characters/manny/front.svg",
  2825. extra: 1,
  2826. bottom: 0.06
  2827. }
  2828. },
  2829. back: {
  2830. height: math.unit(7, "feet"),
  2831. weight: math.unit(100, "kg"),
  2832. name: "Back",
  2833. image: {
  2834. source: "./media/characters/manny/back.svg",
  2835. extra: 1,
  2836. bottom: 0.014
  2837. }
  2838. },
  2839. },
  2840. [
  2841. {
  2842. name: "Normal",
  2843. height: math.unit(7, "feet"),
  2844. },
  2845. {
  2846. name: "Macro",
  2847. height: math.unit(78, "feet"),
  2848. default: true
  2849. },
  2850. {
  2851. name: "Macro+",
  2852. height: math.unit(300, "meters")
  2853. },
  2854. {
  2855. name: "Macro++",
  2856. height: math.unit(2400, "meters")
  2857. },
  2858. {
  2859. name: "Megamacro",
  2860. height: math.unit(5167, "meters")
  2861. },
  2862. {
  2863. name: "Gigamacro",
  2864. height: math.unit(41769, "miles")
  2865. },
  2866. ]
  2867. ))
  2868. characterMakers.push(() => makeCharacter(
  2869. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2870. {
  2871. front: {
  2872. height: math.unit(7, "feet"),
  2873. weight: math.unit(100, "kg"),
  2874. name: "Front",
  2875. image: {
  2876. source: "./media/characters/adake/front-1.svg"
  2877. }
  2878. },
  2879. frontAlt: {
  2880. height: math.unit(7, "feet"),
  2881. weight: math.unit(100, "kg"),
  2882. name: "Front (Alt)",
  2883. image: {
  2884. source: "./media/characters/adake/front-2.svg",
  2885. extra: 1,
  2886. bottom: 0.01
  2887. }
  2888. },
  2889. back: {
  2890. height: math.unit(7, "feet"),
  2891. weight: math.unit(100, "kg"),
  2892. name: "Back",
  2893. image: {
  2894. source: "./media/characters/adake/back.svg",
  2895. }
  2896. },
  2897. kneel: {
  2898. height: math.unit(5.385, "feet"),
  2899. weight: math.unit(100, "kg"),
  2900. name: "Kneeling",
  2901. image: {
  2902. source: "./media/characters/adake/kneel.svg",
  2903. bottom: 0.052
  2904. }
  2905. },
  2906. },
  2907. [
  2908. {
  2909. name: "Normal",
  2910. height: math.unit(7, "feet"),
  2911. },
  2912. {
  2913. name: "Macro",
  2914. height: math.unit(78, "feet"),
  2915. default: true
  2916. },
  2917. {
  2918. name: "Macro+",
  2919. height: math.unit(300, "meters")
  2920. },
  2921. {
  2922. name: "Macro++",
  2923. height: math.unit(2400, "meters")
  2924. },
  2925. {
  2926. name: "Megamacro",
  2927. height: math.unit(5167, "meters")
  2928. },
  2929. {
  2930. name: "Gigamacro",
  2931. height: math.unit(41769, "miles")
  2932. },
  2933. ]
  2934. ))
  2935. characterMakers.push(() => makeCharacter(
  2936. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2937. {
  2938. front: {
  2939. height: math.unit(1.65, "meters"),
  2940. weight: math.unit(50, "kg"),
  2941. name: "Front",
  2942. image: {
  2943. source: "./media/characters/elijah/front.svg",
  2944. extra: 858 / 830,
  2945. bottom: 95.5 / 953.8559
  2946. }
  2947. },
  2948. back: {
  2949. height: math.unit(1.65, "meters"),
  2950. weight: math.unit(50, "kg"),
  2951. name: "Back",
  2952. image: {
  2953. source: "./media/characters/elijah/back.svg",
  2954. extra: 895 / 850,
  2955. bottom: 5.3 / 897.956
  2956. }
  2957. },
  2958. frontNsfw: {
  2959. height: math.unit(1.65, "meters"),
  2960. weight: math.unit(50, "kg"),
  2961. name: "Front (NSFW)",
  2962. image: {
  2963. source: "./media/characters/elijah/front-nsfw.svg",
  2964. extra: 858 / 830,
  2965. bottom: 95.5 / 953.8559
  2966. }
  2967. },
  2968. backNsfw: {
  2969. height: math.unit(1.65, "meters"),
  2970. weight: math.unit(50, "kg"),
  2971. name: "Back (NSFW)",
  2972. image: {
  2973. source: "./media/characters/elijah/back-nsfw.svg",
  2974. extra: 895 / 850,
  2975. bottom: 5.3 / 897.956
  2976. }
  2977. },
  2978. dick: {
  2979. height: math.unit(1, "feet"),
  2980. name: "Dick",
  2981. image: {
  2982. source: "./media/characters/elijah/dick.svg"
  2983. }
  2984. },
  2985. beakOpen: {
  2986. height: math.unit(1.25, "feet"),
  2987. name: "Beak (Open)",
  2988. image: {
  2989. source: "./media/characters/elijah/beak-open.svg"
  2990. }
  2991. },
  2992. beakShut: {
  2993. height: math.unit(1.25, "feet"),
  2994. name: "Beak (Shut)",
  2995. image: {
  2996. source: "./media/characters/elijah/beak-shut.svg"
  2997. }
  2998. },
  2999. footFlexing: {
  3000. height: math.unit(1.61, "feet"),
  3001. name: "Foot (Flexing)",
  3002. image: {
  3003. source: "./media/characters/elijah/foot-flexing.svg"
  3004. }
  3005. },
  3006. footStepping: {
  3007. height: math.unit(1.44, "feet"),
  3008. name: "Foot (Stepping)",
  3009. image: {
  3010. source: "./media/characters/elijah/foot-stepping.svg"
  3011. }
  3012. },
  3013. plantigradeLeg: {
  3014. height: math.unit(2.34, "feet"),
  3015. name: "Plantigrade Leg",
  3016. image: {
  3017. source: "./media/characters/elijah/plantigrade-leg.svg"
  3018. }
  3019. },
  3020. plantigradeFootLeft: {
  3021. height: math.unit(0.9, "feet"),
  3022. name: "Plantigrade Foot (Left)",
  3023. image: {
  3024. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3025. }
  3026. },
  3027. plantigradeFootRight: {
  3028. height: math.unit(0.9, "feet"),
  3029. name: "Plantigrade Foot (Right)",
  3030. image: {
  3031. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3032. }
  3033. },
  3034. },
  3035. [
  3036. {
  3037. name: "Normal",
  3038. height: math.unit(1.65, "meters")
  3039. },
  3040. {
  3041. name: "Macro",
  3042. height: math.unit(55, "meters"),
  3043. default: true
  3044. },
  3045. {
  3046. name: "Macro+",
  3047. height: math.unit(105, "meters")
  3048. },
  3049. ]
  3050. ))
  3051. characterMakers.push(() => makeCharacter(
  3052. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3053. {
  3054. front: {
  3055. height: math.unit(7 + 2/12, "feet"),
  3056. weight: math.unit(320, "kg"),
  3057. preyCapacity: math.unit(0.276549935, "people"),
  3058. name: "Front",
  3059. image: {
  3060. source: "./media/characters/rai/front.svg",
  3061. extra: 1802/1696,
  3062. bottom: 68/1870
  3063. },
  3064. form: "anthro",
  3065. default: true
  3066. },
  3067. frontDressed: {
  3068. height: math.unit(7 + 2/12, "feet"),
  3069. weight: math.unit(320, "kg"),
  3070. preyCapacity: math.unit(0.276549935, "people"),
  3071. name: "Front (Dressed)",
  3072. image: {
  3073. source: "./media/characters/rai/front-dressed.svg",
  3074. extra: 1802/1696,
  3075. bottom: 68/1870
  3076. },
  3077. form: "anthro"
  3078. },
  3079. side: {
  3080. height: math.unit(7 + 2/12, "feet"),
  3081. weight: math.unit(320, "kg"),
  3082. preyCapacity: math.unit(0.276549935, "people"),
  3083. name: "Side",
  3084. image: {
  3085. source: "./media/characters/rai/side.svg",
  3086. extra: 1789/1710,
  3087. bottom: 115/1904
  3088. },
  3089. form: "anthro"
  3090. },
  3091. back: {
  3092. height: math.unit(7 + 2/12, "feet"),
  3093. weight: math.unit(320, "kg"),
  3094. preyCapacity: math.unit(0.276549935, "people"),
  3095. name: "Back",
  3096. image: {
  3097. source: "./media/characters/rai/back.svg",
  3098. extra: 1770/1707,
  3099. bottom: 28/1798
  3100. },
  3101. form: "anthro"
  3102. },
  3103. feral: {
  3104. height: math.unit(9.5, "feet"),
  3105. weight: math.unit(640, "kg"),
  3106. preyCapacity: math.unit(4, "people"),
  3107. name: "Feral",
  3108. image: {
  3109. source: "./media/characters/rai/feral.svg",
  3110. extra: 945/553,
  3111. bottom: 176/1121
  3112. },
  3113. form: "feral",
  3114. default: true
  3115. },
  3116. dragon: {
  3117. height: math.unit(23, "feet"),
  3118. weight: math.unit(50000, "lb"),
  3119. name: "Dragon",
  3120. image: {
  3121. source: "./media/characters/rai/dragon.svg",
  3122. extra: 2498 / 2030,
  3123. bottom: 85.2 / 2584
  3124. },
  3125. form: "dragon",
  3126. default: true
  3127. },
  3128. maw: {
  3129. height: math.unit(1.69, "feet"),
  3130. name: "Maw",
  3131. image: {
  3132. source: "./media/characters/rai/maw.svg"
  3133. },
  3134. form: "anthro"
  3135. },
  3136. },
  3137. [
  3138. {
  3139. name: "Normal",
  3140. height: math.unit(7 + 2/12, "feet"),
  3141. form: "anthro"
  3142. },
  3143. {
  3144. name: "Big",
  3145. height: math.unit(11, "feet"),
  3146. form: "anthro"
  3147. },
  3148. {
  3149. name: "Minimacro",
  3150. height: math.unit(77, "feet"),
  3151. form: "anthro"
  3152. },
  3153. {
  3154. name: "Macro",
  3155. height: math.unit(302, "feet"),
  3156. default: true,
  3157. form: "anthro"
  3158. },
  3159. {
  3160. name: "Normal",
  3161. height: math.unit(9.5, "feet"),
  3162. form: "feral",
  3163. default: true
  3164. },
  3165. {
  3166. name: "Normal",
  3167. height: math.unit(23, "feet"),
  3168. form: "dragon",
  3169. default: true
  3170. }
  3171. ],
  3172. {
  3173. "anthro": {
  3174. name: "Anthro",
  3175. default: true
  3176. },
  3177. "feral": {
  3178. name: "Feral",
  3179. },
  3180. "dragon": {
  3181. name: "Dragon",
  3182. },
  3183. }
  3184. ))
  3185. characterMakers.push(() => makeCharacter(
  3186. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3187. {
  3188. frontDressed: {
  3189. height: math.unit(216, "feet"),
  3190. weight: math.unit(7000000, "lb"),
  3191. preyCapacity: math.unit(1321, "people"),
  3192. name: "Front (Dressed)",
  3193. image: {
  3194. source: "./media/characters/jazzy/front-dressed.svg",
  3195. extra: 2738 / 2651,
  3196. bottom: 41.8 / 2786
  3197. }
  3198. },
  3199. backDressed: {
  3200. height: math.unit(216, "feet"),
  3201. weight: math.unit(7000000, "lb"),
  3202. preyCapacity: math.unit(1321, "people"),
  3203. name: "Back (Dressed)",
  3204. image: {
  3205. source: "./media/characters/jazzy/back-dressed.svg",
  3206. extra: 2775 / 2673,
  3207. bottom: 36.8 / 2817
  3208. }
  3209. },
  3210. front: {
  3211. height: math.unit(216, "feet"),
  3212. weight: math.unit(7000000, "lb"),
  3213. preyCapacity: math.unit(1321, "people"),
  3214. name: "Front",
  3215. image: {
  3216. source: "./media/characters/jazzy/front.svg",
  3217. extra: 2738 / 2651,
  3218. bottom: 41.8 / 2786
  3219. }
  3220. },
  3221. back: {
  3222. height: math.unit(216, "feet"),
  3223. weight: math.unit(7000000, "lb"),
  3224. preyCapacity: math.unit(1321, "people"),
  3225. name: "Back",
  3226. image: {
  3227. source: "./media/characters/jazzy/back.svg",
  3228. extra: 2775 / 2673,
  3229. bottom: 36.8 / 2817
  3230. }
  3231. },
  3232. maw: {
  3233. height: math.unit(20, "feet"),
  3234. name: "Maw",
  3235. image: {
  3236. source: "./media/characters/jazzy/maw.svg"
  3237. }
  3238. },
  3239. paws: {
  3240. height: math.unit(27.5, "feet"),
  3241. name: "Paws",
  3242. image: {
  3243. source: "./media/characters/jazzy/paws.svg"
  3244. }
  3245. },
  3246. eye: {
  3247. height: math.unit(4.4, "feet"),
  3248. name: "Eye",
  3249. image: {
  3250. source: "./media/characters/jazzy/eye.svg"
  3251. }
  3252. },
  3253. droneOffense: {
  3254. height: math.unit(9.5, "inches"),
  3255. name: "Drone (Offense)",
  3256. image: {
  3257. source: "./media/characters/jazzy/drone-offense.svg"
  3258. }
  3259. },
  3260. droneRecon: {
  3261. height: math.unit(9.5, "inches"),
  3262. name: "Drone (Recon)",
  3263. image: {
  3264. source: "./media/characters/jazzy/drone-recon.svg"
  3265. }
  3266. },
  3267. droneDefense: {
  3268. height: math.unit(9.5, "inches"),
  3269. name: "Drone (Defense)",
  3270. image: {
  3271. source: "./media/characters/jazzy/drone-defense.svg"
  3272. }
  3273. },
  3274. },
  3275. [
  3276. {
  3277. name: "Macro",
  3278. height: math.unit(216, "feet"),
  3279. default: true
  3280. },
  3281. ]
  3282. ))
  3283. characterMakers.push(() => makeCharacter(
  3284. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3285. {
  3286. front: {
  3287. height: math.unit(9 + 6/12, "feet"),
  3288. weight: math.unit(700, "lb"),
  3289. name: "Front",
  3290. image: {
  3291. source: "./media/characters/flamm/front.svg",
  3292. extra: 1736/1596,
  3293. bottom: 93/1829
  3294. }
  3295. },
  3296. buff: {
  3297. height: math.unit(9 + 6/12, "feet"),
  3298. weight: math.unit(950, "lb"),
  3299. name: "Buff",
  3300. image: {
  3301. source: "./media/characters/flamm/buff.svg",
  3302. extra: 3018/2874,
  3303. bottom: 221/3239
  3304. }
  3305. },
  3306. },
  3307. [
  3308. {
  3309. name: "Normal",
  3310. height: math.unit(9.5, "feet")
  3311. },
  3312. {
  3313. name: "Macro",
  3314. height: math.unit(200, "feet"),
  3315. default: true
  3316. },
  3317. ]
  3318. ))
  3319. characterMakers.push(() => makeCharacter(
  3320. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3321. {
  3322. front: {
  3323. height: math.unit(5 + 3/12, "feet"),
  3324. weight: math.unit(60, "kg"),
  3325. name: "Front",
  3326. image: {
  3327. source: "./media/characters/zephiro/front.svg",
  3328. extra: 1873/1761,
  3329. bottom: 147/2020
  3330. }
  3331. },
  3332. side: {
  3333. height: math.unit(5 + 3/12, "feet"),
  3334. weight: math.unit(60, "kg"),
  3335. name: "Side",
  3336. image: {
  3337. source: "./media/characters/zephiro/side.svg",
  3338. extra: 1929/1827,
  3339. bottom: 65/1994
  3340. }
  3341. },
  3342. back: {
  3343. height: math.unit(5 + 3/12, "feet"),
  3344. weight: math.unit(60, "kg"),
  3345. name: "Back",
  3346. image: {
  3347. source: "./media/characters/zephiro/back.svg",
  3348. extra: 1926/1816,
  3349. bottom: 41/1967
  3350. }
  3351. },
  3352. hand: {
  3353. height: math.unit(0.68, "feet"),
  3354. name: "Hand",
  3355. image: {
  3356. source: "./media/characters/zephiro/hand.svg"
  3357. }
  3358. },
  3359. paw: {
  3360. height: math.unit(1, "feet"),
  3361. name: "Paw",
  3362. image: {
  3363. source: "./media/characters/zephiro/paw.svg"
  3364. }
  3365. },
  3366. beans: {
  3367. height: math.unit(0.93, "feet"),
  3368. name: "Beans",
  3369. image: {
  3370. source: "./media/characters/zephiro/beans.svg"
  3371. }
  3372. },
  3373. },
  3374. [
  3375. {
  3376. name: "Micro",
  3377. height: math.unit(3, "inches")
  3378. },
  3379. {
  3380. name: "Normal",
  3381. height: math.unit(5 + 3 / 12, "feet"),
  3382. default: true
  3383. },
  3384. {
  3385. name: "Macro",
  3386. height: math.unit(118, "feet")
  3387. },
  3388. ]
  3389. ))
  3390. characterMakers.push(() => makeCharacter(
  3391. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3392. {
  3393. front: {
  3394. height: math.unit(5, "feet"),
  3395. weight: math.unit(90, "kg"),
  3396. preyCapacity: math.unit(14, "people"),
  3397. name: "Front",
  3398. image: {
  3399. source: "./media/characters/fory/front.svg",
  3400. extra: 2862 / 2674,
  3401. bottom: 180 / 3043.8
  3402. },
  3403. form: "weaselbun",
  3404. default: true,
  3405. extraAttributes: {
  3406. "pawSize": {
  3407. name: "Paw Size",
  3408. power: 2,
  3409. type: "area",
  3410. base: math.unit(0.1596, "m^2")
  3411. },
  3412. "pawLength": {
  3413. name: "Paw Length",
  3414. power: 1,
  3415. type: "length",
  3416. base: math.unit(0.7, "m")
  3417. }
  3418. }
  3419. },
  3420. back: {
  3421. height: math.unit(5, "feet"),
  3422. weight: math.unit(90, "kg"),
  3423. preyCapacity: math.unit(14, "people"),
  3424. name: "Back",
  3425. image: {
  3426. source: "./media/characters/fory/back.svg",
  3427. extra: 1790/1672,
  3428. bottom: 84/1874
  3429. },
  3430. form: "weaselbun",
  3431. extraAttributes: {
  3432. "pawSize": {
  3433. name: "Paw Size",
  3434. power: 2,
  3435. type: "area",
  3436. base: math.unit(0.1596, "m^2")
  3437. },
  3438. "pawLength": {
  3439. name: "Paw Length",
  3440. power: 1,
  3441. type: "length",
  3442. base: math.unit(0.7, "m")
  3443. }
  3444. }
  3445. },
  3446. paw: {
  3447. height: math.unit(2.14, "feet"),
  3448. name: "Paw",
  3449. image: {
  3450. source: "./media/characters/fory/paw.svg"
  3451. },
  3452. form: "weaselbun",
  3453. extraAttributes: {
  3454. "pawSize": {
  3455. name: "Paw Size",
  3456. power: 2,
  3457. type: "area",
  3458. base: math.unit(0.1596, "m^2")
  3459. },
  3460. "pawLength": {
  3461. name: "Paw Length",
  3462. power: 1,
  3463. type: "length",
  3464. base: math.unit(0.48, "m")
  3465. }
  3466. }
  3467. },
  3468. bunBack: {
  3469. height: math.unit(3, "feet"),
  3470. weight: math.unit(20, "kg"),
  3471. preyCapacity: math.unit(3, "people"),
  3472. name: "Back",
  3473. image: {
  3474. source: "./media/characters/fory/bun-back.svg",
  3475. extra: 1749/1564,
  3476. bottom: 246/1995
  3477. },
  3478. form: "bun",
  3479. default: true,
  3480. extraAttributes: {
  3481. "pawSize": {
  3482. name: "Paw Size",
  3483. power: 2,
  3484. type: "area",
  3485. base: math.unit(0.072, "m^2")
  3486. },
  3487. "pawLength": {
  3488. name: "Paw Length",
  3489. power: 1,
  3490. type: "length",
  3491. base: math.unit(0.45, "m")
  3492. }
  3493. }
  3494. },
  3495. },
  3496. [
  3497. {
  3498. name: "Normal",
  3499. height: math.unit(5, "feet"),
  3500. form: "weaselbun"
  3501. },
  3502. {
  3503. name: "Macro",
  3504. height: math.unit(50, "feet"),
  3505. default: true,
  3506. form: "weaselbun"
  3507. },
  3508. {
  3509. name: "Megamacro",
  3510. height: math.unit(10, "miles"),
  3511. form: "weaselbun"
  3512. },
  3513. {
  3514. name: "Gigamacro",
  3515. height: math.unit(5, "earths"),
  3516. form: "weaselbun"
  3517. },
  3518. {
  3519. name: "Normal",
  3520. height: math.unit(3, "feet"),
  3521. default: true,
  3522. form: "bun"
  3523. },
  3524. {
  3525. name: "Fun-Size",
  3526. height: math.unit(12, "feet"),
  3527. form: "bun"
  3528. },
  3529. {
  3530. name: "Macro",
  3531. height: math.unit(100, "feet"),
  3532. form: "bun"
  3533. },
  3534. {
  3535. name: "Planetary",
  3536. height: math.unit(3, "earths"),
  3537. form: "bun"
  3538. },
  3539. ],
  3540. {
  3541. "weaselbun": {
  3542. name: "Weaselbun",
  3543. default: true
  3544. },
  3545. "bun": {
  3546. name: "Bun",
  3547. },
  3548. }
  3549. ))
  3550. characterMakers.push(() => makeCharacter(
  3551. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3552. {
  3553. front: {
  3554. height: math.unit(7, "feet"),
  3555. weight: math.unit(90, "kg"),
  3556. name: "Front",
  3557. image: {
  3558. source: "./media/characters/kurrikage/front.svg",
  3559. extra: 1845/1733,
  3560. bottom: 119/1964
  3561. }
  3562. },
  3563. back: {
  3564. height: math.unit(7, "feet"),
  3565. weight: math.unit(90, "kg"),
  3566. name: "Back",
  3567. image: {
  3568. source: "./media/characters/kurrikage/back.svg",
  3569. extra: 1790/1677,
  3570. bottom: 61/1851
  3571. }
  3572. },
  3573. dressed: {
  3574. height: math.unit(7, "feet"),
  3575. weight: math.unit(90, "kg"),
  3576. name: "Dressed",
  3577. image: {
  3578. source: "./media/characters/kurrikage/dressed.svg",
  3579. extra: 1845/1733,
  3580. bottom: 119/1964
  3581. }
  3582. },
  3583. foot: {
  3584. height: math.unit(1.5, "feet"),
  3585. name: "Foot",
  3586. image: {
  3587. source: "./media/characters/kurrikage/foot.svg"
  3588. }
  3589. },
  3590. staff: {
  3591. height: math.unit(6.7, "feet"),
  3592. name: "Staff",
  3593. image: {
  3594. source: "./media/characters/kurrikage/staff.svg"
  3595. }
  3596. },
  3597. peek: {
  3598. height: math.unit(1.05, "feet"),
  3599. name: "Peeking",
  3600. image: {
  3601. source: "./media/characters/kurrikage/peek.svg",
  3602. bottom: 0.08
  3603. }
  3604. },
  3605. },
  3606. [
  3607. {
  3608. name: "Normal",
  3609. height: math.unit(12, "feet"),
  3610. default: true
  3611. },
  3612. {
  3613. name: "Big",
  3614. height: math.unit(20, "feet")
  3615. },
  3616. {
  3617. name: "Macro",
  3618. height: math.unit(500, "feet")
  3619. },
  3620. {
  3621. name: "Megamacro",
  3622. height: math.unit(20, "miles")
  3623. },
  3624. ]
  3625. ))
  3626. characterMakers.push(() => makeCharacter(
  3627. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3628. {
  3629. front: {
  3630. height: math.unit(6, "feet"),
  3631. weight: math.unit(75, "kg"),
  3632. name: "Front",
  3633. image: {
  3634. source: "./media/characters/shingo/front.svg",
  3635. extra: 1900/1825,
  3636. bottom: 82/1982
  3637. }
  3638. },
  3639. side: {
  3640. height: math.unit(6, "feet"),
  3641. weight: math.unit(75, "kg"),
  3642. name: "Side",
  3643. image: {
  3644. source: "./media/characters/shingo/side.svg",
  3645. extra: 1930/1865,
  3646. bottom: 16/1946
  3647. }
  3648. },
  3649. back: {
  3650. height: math.unit(6, "feet"),
  3651. weight: math.unit(75, "kg"),
  3652. name: "Back",
  3653. image: {
  3654. source: "./media/characters/shingo/back.svg",
  3655. extra: 1922/1852,
  3656. bottom: 16/1938
  3657. }
  3658. },
  3659. frontDressed: {
  3660. height: math.unit(6, "feet"),
  3661. weight: math.unit(150, "lb"),
  3662. name: "Front-dressed",
  3663. image: {
  3664. source: "./media/characters/shingo/front-dressed.svg",
  3665. extra: 1900/1825,
  3666. bottom: 82/1982
  3667. }
  3668. },
  3669. paw: {
  3670. height: math.unit(1.29, "feet"),
  3671. name: "Paw",
  3672. image: {
  3673. source: "./media/characters/shingo/paw.svg"
  3674. }
  3675. },
  3676. hand: {
  3677. height: math.unit(1.07, "feet"),
  3678. name: "Hand",
  3679. image: {
  3680. source: "./media/characters/shingo/hand.svg"
  3681. }
  3682. },
  3683. frontAlt: {
  3684. height: math.unit(6, "feet"),
  3685. weight: math.unit(75, "kg"),
  3686. name: "Front (Alt)",
  3687. image: {
  3688. source: "./media/characters/shingo/front-alt.svg",
  3689. extra: 3511 / 3338,
  3690. bottom: 0.005
  3691. }
  3692. },
  3693. frontAlt2: {
  3694. height: math.unit(6, "feet"),
  3695. weight: math.unit(75, "kg"),
  3696. name: "Front (Alt 2)",
  3697. image: {
  3698. source: "./media/characters/shingo/front-alt-2.svg",
  3699. extra: 706/681,
  3700. bottom: 11/717
  3701. }
  3702. },
  3703. pawAlt: {
  3704. height: math.unit(1, "feet"),
  3705. name: "Paw (Alt)",
  3706. image: {
  3707. source: "./media/characters/shingo/paw-alt.svg"
  3708. }
  3709. },
  3710. },
  3711. [
  3712. {
  3713. name: "Micro",
  3714. height: math.unit(4, "inches")
  3715. },
  3716. {
  3717. name: "Normal",
  3718. height: math.unit(6, "feet"),
  3719. default: true
  3720. },
  3721. {
  3722. name: "Macro",
  3723. height: math.unit(108, "feet")
  3724. },
  3725. {
  3726. name: "Macro+",
  3727. height: math.unit(1500, "feet")
  3728. },
  3729. ]
  3730. ))
  3731. characterMakers.push(() => makeCharacter(
  3732. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3733. {
  3734. side: {
  3735. height: math.unit(6, "feet"),
  3736. weight: math.unit(75, "kg"),
  3737. name: "Side",
  3738. image: {
  3739. source: "./media/characters/aigey/side.svg"
  3740. }
  3741. },
  3742. },
  3743. [
  3744. {
  3745. name: "Macro",
  3746. height: math.unit(200, "feet"),
  3747. default: true
  3748. },
  3749. {
  3750. name: "Megamacro",
  3751. height: math.unit(100, "miles")
  3752. },
  3753. ]
  3754. )
  3755. )
  3756. characterMakers.push(() => makeCharacter(
  3757. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3758. {
  3759. front: {
  3760. height: math.unit(5 + 5 / 12, "feet"),
  3761. weight: math.unit(75, "kg"),
  3762. name: "Front",
  3763. image: {
  3764. source: "./media/characters/natasha/front.svg",
  3765. extra: 859 / 824,
  3766. bottom: 23 / 879.6
  3767. }
  3768. },
  3769. frontNsfw: {
  3770. height: math.unit(5 + 5 / 12, "feet"),
  3771. weight: math.unit(75, "kg"),
  3772. name: "Front (NSFW)",
  3773. image: {
  3774. source: "./media/characters/natasha/front-nsfw.svg",
  3775. extra: 859 / 824,
  3776. bottom: 23 / 879.6
  3777. }
  3778. },
  3779. frontErect: {
  3780. height: math.unit(5 + 5 / 12, "feet"),
  3781. weight: math.unit(75, "kg"),
  3782. name: "Front (Erect)",
  3783. image: {
  3784. source: "./media/characters/natasha/front-erect.svg",
  3785. extra: 859 / 824,
  3786. bottom: 23 / 879.6
  3787. }
  3788. },
  3789. back: {
  3790. height: math.unit(5 + 5 / 12, "feet"),
  3791. weight: math.unit(75, "kg"),
  3792. name: "Back",
  3793. image: {
  3794. source: "./media/characters/natasha/back.svg",
  3795. extra: 887.9 / 852.6,
  3796. bottom: 9.7 / 896.4
  3797. }
  3798. },
  3799. backAlt: {
  3800. height: math.unit(5 + 5 / 12, "feet"),
  3801. weight: math.unit(75, "kg"),
  3802. name: "Back (Alt)",
  3803. image: {
  3804. source: "./media/characters/natasha/back-alt.svg",
  3805. extra: 1236.7 / 1192,
  3806. bottom: 22.3 / 1258.2
  3807. }
  3808. },
  3809. dick: {
  3810. height: math.unit(1.772, "feet"),
  3811. name: "Dick",
  3812. image: {
  3813. source: "./media/characters/natasha/dick.svg"
  3814. }
  3815. },
  3816. paw: {
  3817. height: math.unit(0.250, "meters"),
  3818. name: "Paw",
  3819. image: {
  3820. source: "./media/characters/natasha/paw.svg"
  3821. },
  3822. extraAttributes: {
  3823. "toeSize": {
  3824. name: "Toe Size",
  3825. power: 2,
  3826. type: "area",
  3827. base: math.unit(0.0024, "m^2")
  3828. },
  3829. "padSize": {
  3830. name: "Pad Size",
  3831. power: 2,
  3832. type: "area",
  3833. base: math.unit(0.00889, "m^2")
  3834. },
  3835. "pawSize": {
  3836. name: "Paw Size",
  3837. power: 2,
  3838. type: "area",
  3839. base: math.unit(0.023667, "m^2")
  3840. },
  3841. }
  3842. },
  3843. },
  3844. [
  3845. {
  3846. name: "Shortstack",
  3847. height: math.unit(3, "feet"),
  3848. default: true
  3849. },
  3850. {
  3851. name: "Normal",
  3852. height: math.unit(5 + 5 / 12, "feet")
  3853. },
  3854. {
  3855. name: "Large",
  3856. height: math.unit(12, "feet")
  3857. },
  3858. {
  3859. name: "Macro",
  3860. height: math.unit(100, "feet")
  3861. },
  3862. {
  3863. name: "Macro+",
  3864. height: math.unit(260, "feet")
  3865. },
  3866. {
  3867. name: "Macro++",
  3868. height: math.unit(1, "mile")
  3869. },
  3870. ]
  3871. ))
  3872. characterMakers.push(() => makeCharacter(
  3873. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3874. {
  3875. front: {
  3876. height: math.unit(6, "feet"),
  3877. weight: math.unit(75, "kg"),
  3878. name: "Front",
  3879. image: {
  3880. source: "./media/characters/malik/front.svg",
  3881. extra: 1750/1561,
  3882. bottom: 80/1830
  3883. },
  3884. extraAttributes: {
  3885. "toeSize": {
  3886. name: "Toe Size",
  3887. power: 2,
  3888. type: "area",
  3889. base: math.unit(0.0159, "m^2")
  3890. },
  3891. "pawSize": {
  3892. name: "Paw Size",
  3893. power: 2,
  3894. type: "area",
  3895. base: math.unit(0.09834, "m^2")
  3896. },
  3897. }
  3898. },
  3899. side: {
  3900. height: math.unit(6, "feet"),
  3901. weight: math.unit(75, "kg"),
  3902. name: "Side",
  3903. image: {
  3904. source: "./media/characters/malik/side.svg",
  3905. extra: 1802/1685,
  3906. bottom: 42/1844
  3907. },
  3908. extraAttributes: {
  3909. "toeSize": {
  3910. name: "Toe Size",
  3911. power: 2,
  3912. type: "area",
  3913. base: math.unit(0.0159, "m^2")
  3914. },
  3915. "pawSize": {
  3916. name: "Paw Size",
  3917. power: 2,
  3918. type: "area",
  3919. base: math.unit(0.09834, "m^2")
  3920. },
  3921. }
  3922. },
  3923. back: {
  3924. height: math.unit(6, "feet"),
  3925. weight: math.unit(75, "kg"),
  3926. name: "Back",
  3927. image: {
  3928. source: "./media/characters/malik/back.svg",
  3929. extra: 1803/1607,
  3930. bottom: 33/1836
  3931. },
  3932. extraAttributes: {
  3933. "toeSize": {
  3934. name: "Toe Size",
  3935. power: 2,
  3936. type: "area",
  3937. base: math.unit(0.0159, "m^2")
  3938. },
  3939. "pawSize": {
  3940. name: "Paw Size",
  3941. power: 2,
  3942. type: "area",
  3943. base: math.unit(0.09834, "m^2")
  3944. },
  3945. }
  3946. },
  3947. },
  3948. [
  3949. {
  3950. name: "Macro",
  3951. height: math.unit(156, "feet"),
  3952. default: true
  3953. },
  3954. {
  3955. name: "Macro+",
  3956. height: math.unit(1188, "feet")
  3957. },
  3958. ]
  3959. ))
  3960. characterMakers.push(() => makeCharacter(
  3961. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3962. {
  3963. front: {
  3964. height: math.unit(6, "feet"),
  3965. weight: math.unit(75, "kg"),
  3966. name: "Front",
  3967. image: {
  3968. source: "./media/characters/sefer/front.svg",
  3969. extra: 848 / 659,
  3970. bottom: 28.3 / 876.442
  3971. }
  3972. },
  3973. back: {
  3974. height: math.unit(6, "feet"),
  3975. weight: math.unit(75, "kg"),
  3976. name: "Back",
  3977. image: {
  3978. source: "./media/characters/sefer/back.svg",
  3979. extra: 864 / 695,
  3980. bottom: 10 / 871
  3981. }
  3982. },
  3983. frontDressed: {
  3984. height: math.unit(6, "feet"),
  3985. weight: math.unit(75, "kg"),
  3986. name: "Dressed",
  3987. image: {
  3988. source: "./media/characters/sefer/dressed.svg",
  3989. extra: 839 / 653,
  3990. bottom: 37.6 / 878
  3991. }
  3992. },
  3993. },
  3994. [
  3995. {
  3996. name: "Normal",
  3997. height: math.unit(6, "feet"),
  3998. default: true
  3999. },
  4000. {
  4001. name: "Big",
  4002. height: math.unit(8, "meters")
  4003. },
  4004. ]
  4005. ))
  4006. characterMakers.push(() => makeCharacter(
  4007. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4008. {
  4009. body: {
  4010. height: math.unit(2.2428, "meter"),
  4011. weight: math.unit(124.738, "kg"),
  4012. name: "Body",
  4013. image: {
  4014. extra: 1225 / 1050,
  4015. source: "./media/characters/north/front.svg"
  4016. }
  4017. }
  4018. },
  4019. [
  4020. {
  4021. name: "Micro",
  4022. height: math.unit(4, "inches")
  4023. },
  4024. {
  4025. name: "Macro",
  4026. height: math.unit(63, "meters")
  4027. },
  4028. {
  4029. name: "Megamacro",
  4030. height: math.unit(101, "miles"),
  4031. default: true
  4032. }
  4033. ]
  4034. ))
  4035. characterMakers.push(() => makeCharacter(
  4036. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4037. {
  4038. angled: {
  4039. height: math.unit(4, "meter"),
  4040. weight: math.unit(150, "kg"),
  4041. name: "Angled",
  4042. image: {
  4043. source: "./media/characters/talan/angled-sfw.svg",
  4044. bottom: 29 / 3734
  4045. }
  4046. },
  4047. angledNsfw: {
  4048. height: math.unit(4, "meter"),
  4049. weight: math.unit(150, "kg"),
  4050. name: "Angled (NSFW)",
  4051. image: {
  4052. source: "./media/characters/talan/angled-nsfw.svg",
  4053. bottom: 29 / 3734
  4054. }
  4055. },
  4056. frontNsfw: {
  4057. height: math.unit(4, "meter"),
  4058. weight: math.unit(150, "kg"),
  4059. name: "Front (NSFW)",
  4060. image: {
  4061. source: "./media/characters/talan/front-nsfw.svg",
  4062. bottom: 29 / 3734
  4063. }
  4064. },
  4065. sideNsfw: {
  4066. height: math.unit(4, "meter"),
  4067. weight: math.unit(150, "kg"),
  4068. name: "Side (NSFW)",
  4069. image: {
  4070. source: "./media/characters/talan/side-nsfw.svg",
  4071. bottom: 29 / 3734
  4072. }
  4073. },
  4074. back: {
  4075. height: math.unit(4, "meter"),
  4076. weight: math.unit(150, "kg"),
  4077. name: "Back",
  4078. image: {
  4079. source: "./media/characters/talan/back.svg"
  4080. }
  4081. },
  4082. dickBottom: {
  4083. height: math.unit(0.621, "meter"),
  4084. name: "Dick (Bottom)",
  4085. image: {
  4086. source: "./media/characters/talan/dick-bottom.svg"
  4087. }
  4088. },
  4089. dickTop: {
  4090. height: math.unit(0.621, "meter"),
  4091. name: "Dick (Top)",
  4092. image: {
  4093. source: "./media/characters/talan/dick-top.svg"
  4094. }
  4095. },
  4096. dickSide: {
  4097. height: math.unit(0.305, "meter"),
  4098. name: "Dick (Side)",
  4099. image: {
  4100. source: "./media/characters/talan/dick-side.svg"
  4101. }
  4102. },
  4103. dickFront: {
  4104. height: math.unit(0.305, "meter"),
  4105. name: "Dick (Front)",
  4106. image: {
  4107. source: "./media/characters/talan/dick-front.svg"
  4108. }
  4109. },
  4110. },
  4111. [
  4112. {
  4113. name: "Normal",
  4114. height: math.unit(4, "meters")
  4115. },
  4116. {
  4117. name: "Macro",
  4118. height: math.unit(100, "meters")
  4119. },
  4120. {
  4121. name: "Megamacro",
  4122. height: math.unit(2, "miles"),
  4123. default: true
  4124. },
  4125. {
  4126. name: "Gigamacro",
  4127. height: math.unit(5000, "miles")
  4128. },
  4129. {
  4130. name: "Teramacro",
  4131. height: math.unit(100, "parsecs")
  4132. }
  4133. ]
  4134. ))
  4135. characterMakers.push(() => makeCharacter(
  4136. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4137. {
  4138. front: {
  4139. height: math.unit(2, "meter"),
  4140. weight: math.unit(90, "kg"),
  4141. name: "Front",
  4142. image: {
  4143. source: "./media/characters/gael'rathus/front.svg"
  4144. }
  4145. },
  4146. frontAlt: {
  4147. height: math.unit(2, "meter"),
  4148. weight: math.unit(90, "kg"),
  4149. name: "Front (alt)",
  4150. image: {
  4151. source: "./media/characters/gael'rathus/front-alt.svg"
  4152. }
  4153. },
  4154. frontAlt2: {
  4155. height: math.unit(2, "meter"),
  4156. weight: math.unit(90, "kg"),
  4157. name: "Front (alt 2)",
  4158. image: {
  4159. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4160. }
  4161. }
  4162. },
  4163. [
  4164. {
  4165. name: "Normal",
  4166. height: math.unit(9, "feet"),
  4167. default: true
  4168. },
  4169. {
  4170. name: "Large",
  4171. height: math.unit(25, "feet")
  4172. },
  4173. {
  4174. name: "Macro",
  4175. height: math.unit(0.25, "miles")
  4176. },
  4177. {
  4178. name: "Megamacro",
  4179. height: math.unit(10, "miles")
  4180. }
  4181. ]
  4182. ))
  4183. characterMakers.push(() => makeCharacter(
  4184. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4185. {
  4186. side: {
  4187. height: math.unit(2, "meter"),
  4188. weight: math.unit(140, "kg"),
  4189. name: "Side",
  4190. image: {
  4191. source: "./media/characters/sosha/side.svg",
  4192. extra: 1170/1006,
  4193. bottom: 94/1264
  4194. }
  4195. },
  4196. maw: {
  4197. height: math.unit(2.87, "feet"),
  4198. name: "Maw",
  4199. image: {
  4200. source: "./media/characters/sosha/maw.svg",
  4201. extra: 966/865,
  4202. bottom: 0/966
  4203. }
  4204. },
  4205. cooch: {
  4206. height: math.unit(5.6, "feet"),
  4207. name: "Cooch",
  4208. image: {
  4209. source: "./media/characters/sosha/cooch.svg"
  4210. }
  4211. },
  4212. },
  4213. [
  4214. {
  4215. name: "Normal",
  4216. height: math.unit(12, "feet"),
  4217. default: true
  4218. }
  4219. ]
  4220. ))
  4221. characterMakers.push(() => makeCharacter(
  4222. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4223. {
  4224. side: {
  4225. height: math.unit(5 + 5 / 12, "feet"),
  4226. weight: math.unit(170, "kg"),
  4227. name: "Side",
  4228. image: {
  4229. source: "./media/characters/runnola/side.svg",
  4230. extra: 741 / 448,
  4231. bottom: 0.05
  4232. }
  4233. },
  4234. },
  4235. [
  4236. {
  4237. name: "Small",
  4238. height: math.unit(3, "feet")
  4239. },
  4240. {
  4241. name: "Normal",
  4242. height: math.unit(5 + 5 / 12, "feet"),
  4243. default: true
  4244. },
  4245. {
  4246. name: "Big",
  4247. height: math.unit(10, "feet")
  4248. },
  4249. ]
  4250. ))
  4251. characterMakers.push(() => makeCharacter(
  4252. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4253. {
  4254. front: {
  4255. height: math.unit(2, "meter"),
  4256. weight: math.unit(50, "kg"),
  4257. name: "Front",
  4258. image: {
  4259. source: "./media/characters/kurribird/front.svg",
  4260. bottom: 0.015
  4261. }
  4262. },
  4263. frontAlt: {
  4264. height: math.unit(1.5, "meter"),
  4265. weight: math.unit(50, "kg"),
  4266. name: "Front (Alt)",
  4267. image: {
  4268. source: "./media/characters/kurribird/front-alt.svg",
  4269. extra: 1.45
  4270. }
  4271. },
  4272. },
  4273. [
  4274. {
  4275. name: "Normal",
  4276. height: math.unit(7, "feet")
  4277. },
  4278. {
  4279. name: "Big",
  4280. height: math.unit(12, "feet"),
  4281. default: true
  4282. },
  4283. {
  4284. name: "Macro",
  4285. height: math.unit(1500, "feet")
  4286. },
  4287. {
  4288. name: "Megamacro",
  4289. height: math.unit(2, "miles")
  4290. }
  4291. ]
  4292. ))
  4293. characterMakers.push(() => makeCharacter(
  4294. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4295. {
  4296. front: {
  4297. height: math.unit(2, "meter"),
  4298. weight: math.unit(80, "kg"),
  4299. name: "Front",
  4300. image: {
  4301. source: "./media/characters/elbial/front.svg",
  4302. extra: 1643 / 1556,
  4303. bottom: 60.2 / 1696
  4304. }
  4305. },
  4306. side: {
  4307. height: math.unit(2, "meter"),
  4308. weight: math.unit(80, "kg"),
  4309. name: "Side",
  4310. image: {
  4311. source: "./media/characters/elbial/side.svg",
  4312. extra: 1601/1528,
  4313. bottom: 97/1698
  4314. }
  4315. },
  4316. back: {
  4317. height: math.unit(2, "meter"),
  4318. weight: math.unit(80, "kg"),
  4319. name: "Back",
  4320. image: {
  4321. source: "./media/characters/elbial/back.svg",
  4322. extra: 1653/1569,
  4323. bottom: 20/1673
  4324. }
  4325. },
  4326. frontDressed: {
  4327. height: math.unit(2, "meter"),
  4328. weight: math.unit(80, "kg"),
  4329. name: "Front (Dressed)",
  4330. image: {
  4331. source: "./media/characters/elbial/front-dressed.svg",
  4332. extra: 1638/1569,
  4333. bottom: 70/1708
  4334. }
  4335. },
  4336. genitals: {
  4337. height: math.unit(2 / 3.367, "meter"),
  4338. name: "Genitals",
  4339. image: {
  4340. source: "./media/characters/elbial/genitals.svg"
  4341. }
  4342. },
  4343. },
  4344. [
  4345. {
  4346. name: "Large",
  4347. height: math.unit(100, "feet")
  4348. },
  4349. {
  4350. name: "Macro",
  4351. height: math.unit(500, "feet"),
  4352. default: true
  4353. },
  4354. {
  4355. name: "Megamacro",
  4356. height: math.unit(10, "miles")
  4357. },
  4358. {
  4359. name: "Gigamacro",
  4360. height: math.unit(25000, "miles")
  4361. },
  4362. {
  4363. name: "Full-Size",
  4364. height: math.unit(8000000, "gigaparsecs")
  4365. }
  4366. ]
  4367. ))
  4368. characterMakers.push(() => makeCharacter(
  4369. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4370. {
  4371. front: {
  4372. height: math.unit(2, "meter"),
  4373. weight: math.unit(60, "kg"),
  4374. name: "Front",
  4375. image: {
  4376. source: "./media/characters/noah/front.svg",
  4377. extra: 1383/1313,
  4378. bottom: 104/1487
  4379. }
  4380. },
  4381. hand: {
  4382. height: math.unit(0.6, "feet"),
  4383. name: "Hand",
  4384. image: {
  4385. source: "./media/characters/noah/hand.svg"
  4386. }
  4387. },
  4388. talons: {
  4389. height: math.unit(1.385, "feet"),
  4390. name: "Talons",
  4391. image: {
  4392. source: "./media/characters/noah/talons.svg"
  4393. }
  4394. },
  4395. beak: {
  4396. height: math.unit(0.43, "feet"),
  4397. name: "Beak",
  4398. image: {
  4399. source: "./media/characters/noah/beak.svg"
  4400. }
  4401. },
  4402. collar: {
  4403. height: math.unit(0.88, "feet"),
  4404. name: "Collar",
  4405. image: {
  4406. source: "./media/characters/noah/collar.svg"
  4407. }
  4408. },
  4409. eyeNarrow: {
  4410. height: math.unit(0.18, "feet"),
  4411. name: "Eye (Narrow)",
  4412. image: {
  4413. source: "./media/characters/noah/eye-narrow.svg"
  4414. }
  4415. },
  4416. eyeNormal: {
  4417. height: math.unit(0.18, "feet"),
  4418. name: "Eye (Normal)",
  4419. image: {
  4420. source: "./media/characters/noah/eye-normal.svg"
  4421. }
  4422. },
  4423. eyeWide: {
  4424. height: math.unit(0.18, "feet"),
  4425. name: "Eye (Wide)",
  4426. image: {
  4427. source: "./media/characters/noah/eye-wide.svg"
  4428. }
  4429. },
  4430. ear: {
  4431. height: math.unit(0.64, "feet"),
  4432. name: "Ear",
  4433. image: {
  4434. source: "./media/characters/noah/ear.svg"
  4435. }
  4436. },
  4437. },
  4438. [
  4439. {
  4440. name: "Large",
  4441. height: math.unit(50, "feet")
  4442. },
  4443. {
  4444. name: "Macro",
  4445. height: math.unit(750, "feet"),
  4446. default: true
  4447. },
  4448. {
  4449. name: "Megamacro",
  4450. height: math.unit(50, "miles")
  4451. },
  4452. {
  4453. name: "Gigamacro",
  4454. height: math.unit(100000, "miles")
  4455. },
  4456. {
  4457. name: "Full-Size",
  4458. height: math.unit(3000000000, "miles")
  4459. }
  4460. ]
  4461. ))
  4462. characterMakers.push(() => makeCharacter(
  4463. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4464. {
  4465. front: {
  4466. height: math.unit(2, "meter"),
  4467. weight: math.unit(80, "kg"),
  4468. name: "Front",
  4469. image: {
  4470. source: "./media/characters/natalya/front.svg"
  4471. }
  4472. },
  4473. back: {
  4474. height: math.unit(2, "meter"),
  4475. weight: math.unit(80, "kg"),
  4476. name: "Back",
  4477. image: {
  4478. source: "./media/characters/natalya/back.svg"
  4479. }
  4480. }
  4481. },
  4482. [
  4483. {
  4484. name: "Normal",
  4485. height: math.unit(150, "feet"),
  4486. default: true
  4487. },
  4488. {
  4489. name: "Megamacro",
  4490. height: math.unit(5, "miles")
  4491. },
  4492. {
  4493. name: "Full-Size",
  4494. height: math.unit(600, "kiloparsecs")
  4495. }
  4496. ]
  4497. ))
  4498. characterMakers.push(() => makeCharacter(
  4499. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4500. {
  4501. front: {
  4502. height: math.unit(2, "meter"),
  4503. weight: math.unit(50, "kg"),
  4504. name: "Front",
  4505. image: {
  4506. source: "./media/characters/erestrebah/front.svg",
  4507. extra: 1262/1162,
  4508. bottom: 96/1358
  4509. }
  4510. },
  4511. back: {
  4512. height: math.unit(2, "meter"),
  4513. weight: math.unit(50, "kg"),
  4514. name: "Back",
  4515. image: {
  4516. source: "./media/characters/erestrebah/back.svg",
  4517. extra: 1257/1139,
  4518. bottom: 13/1270
  4519. }
  4520. },
  4521. wing: {
  4522. height: math.unit(2, "meter"),
  4523. weight: math.unit(50, "kg"),
  4524. name: "Wing",
  4525. image: {
  4526. source: "./media/characters/erestrebah/wing.svg",
  4527. extra: 1262/1162,
  4528. bottom: 96/1358
  4529. }
  4530. },
  4531. mouth: {
  4532. height: math.unit(0.39, "feet"),
  4533. name: "Mouth",
  4534. image: {
  4535. source: "./media/characters/erestrebah/mouth.svg"
  4536. }
  4537. }
  4538. },
  4539. [
  4540. {
  4541. name: "Normal",
  4542. height: math.unit(10, "feet")
  4543. },
  4544. {
  4545. name: "Large",
  4546. height: math.unit(50, "feet"),
  4547. default: true
  4548. },
  4549. {
  4550. name: "Macro",
  4551. height: math.unit(300, "feet")
  4552. },
  4553. {
  4554. name: "Macro+",
  4555. height: math.unit(750, "feet")
  4556. },
  4557. {
  4558. name: "Megamacro",
  4559. height: math.unit(3, "miles")
  4560. }
  4561. ]
  4562. ))
  4563. characterMakers.push(() => makeCharacter(
  4564. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4565. {
  4566. front: {
  4567. height: math.unit(2, "meter"),
  4568. weight: math.unit(80, "kg"),
  4569. name: "Front",
  4570. image: {
  4571. source: "./media/characters/jennifer/front.svg",
  4572. bottom: 0.11,
  4573. extra: 1.16
  4574. }
  4575. },
  4576. frontAlt: {
  4577. height: math.unit(2, "meter"),
  4578. weight: math.unit(80, "kg"),
  4579. name: "Front (Alt)",
  4580. image: {
  4581. source: "./media/characters/jennifer/front-alt.svg"
  4582. }
  4583. }
  4584. },
  4585. [
  4586. {
  4587. name: "Canon Height",
  4588. height: math.unit(120, "feet"),
  4589. default: true
  4590. },
  4591. {
  4592. name: "Macro+",
  4593. height: math.unit(300, "feet")
  4594. },
  4595. {
  4596. name: "Megamacro",
  4597. height: math.unit(20000, "feet")
  4598. }
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4603. {
  4604. front: {
  4605. height: math.unit(2, "meter"),
  4606. weight: math.unit(50, "kg"),
  4607. name: "Front",
  4608. image: {
  4609. source: "./media/characters/kalista/front.svg",
  4610. extra: 1314/1145,
  4611. bottom: 101/1415
  4612. }
  4613. },
  4614. back: {
  4615. height: math.unit(2, "meter"),
  4616. weight: math.unit(50, "kg"),
  4617. name: "Back",
  4618. image: {
  4619. source: "./media/characters/kalista/back.svg",
  4620. extra: 1366 / 1156,
  4621. bottom: 33.9 / 1362.78
  4622. }
  4623. }
  4624. },
  4625. [
  4626. {
  4627. name: "Uncomfortably Small",
  4628. height: math.unit(10, "feet")
  4629. },
  4630. {
  4631. name: "Small",
  4632. height: math.unit(30, "feet")
  4633. },
  4634. {
  4635. name: "Macro",
  4636. height: math.unit(100, "feet"),
  4637. default: true
  4638. },
  4639. {
  4640. name: "Macro+",
  4641. height: math.unit(2000, "feet")
  4642. },
  4643. {
  4644. name: "True Form",
  4645. height: math.unit(8924, "miles")
  4646. }
  4647. ]
  4648. ))
  4649. characterMakers.push(() => makeCharacter(
  4650. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4651. {
  4652. front: {
  4653. height: math.unit(2, "meter"),
  4654. weight: math.unit(120, "kg"),
  4655. name: "Front",
  4656. image: {
  4657. source: "./media/characters/ggv/front.svg"
  4658. }
  4659. },
  4660. side: {
  4661. height: math.unit(2, "meter"),
  4662. weight: math.unit(120, "kg"),
  4663. name: "Side",
  4664. image: {
  4665. source: "./media/characters/ggv/side.svg"
  4666. }
  4667. }
  4668. },
  4669. [
  4670. {
  4671. name: "Extremely Puny",
  4672. height: math.unit(9 + 5 / 12, "feet")
  4673. },
  4674. {
  4675. name: "Horribly Small",
  4676. height: math.unit(47.7, "miles"),
  4677. default: true
  4678. },
  4679. {
  4680. name: "Reasonably Sized",
  4681. height: math.unit(25000, "parsecs")
  4682. },
  4683. {
  4684. name: "Slightly Uncompressed",
  4685. height: math.unit(7.77e31, "parsecs")
  4686. },
  4687. {
  4688. name: "Omniversal",
  4689. height: math.unit(1e300, "meters")
  4690. },
  4691. ]
  4692. ))
  4693. characterMakers.push(() => makeCharacter(
  4694. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4695. {
  4696. front: {
  4697. height: math.unit(2, "meter"),
  4698. weight: math.unit(75, "lb"),
  4699. name: "Front",
  4700. image: {
  4701. source: "./media/characters/napalm/front.svg"
  4702. }
  4703. },
  4704. back: {
  4705. height: math.unit(2, "meter"),
  4706. weight: math.unit(75, "lb"),
  4707. name: "Back",
  4708. image: {
  4709. source: "./media/characters/napalm/back.svg"
  4710. }
  4711. }
  4712. },
  4713. [
  4714. {
  4715. name: "Standard",
  4716. height: math.unit(55, "feet"),
  4717. default: true
  4718. }
  4719. ]
  4720. ))
  4721. characterMakers.push(() => makeCharacter(
  4722. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4723. {
  4724. front: {
  4725. height: math.unit(7 + 5 / 6, "feet"),
  4726. weight: math.unit(325, "lb"),
  4727. name: "Front",
  4728. image: {
  4729. source: "./media/characters/asana/front.svg",
  4730. extra: 1133 / 1060,
  4731. bottom: 15.2 / 1148.6
  4732. }
  4733. },
  4734. back: {
  4735. height: math.unit(7 + 5 / 6, "feet"),
  4736. weight: math.unit(325, "lb"),
  4737. name: "Back",
  4738. image: {
  4739. source: "./media/characters/asana/back.svg",
  4740. extra: 1114 / 1043,
  4741. bottom: 5 / 1120
  4742. }
  4743. },
  4744. dressedDark: {
  4745. height: math.unit(7 + 5 / 6, "feet"),
  4746. weight: math.unit(325, "lb"),
  4747. name: "Dressed (Dark)",
  4748. image: {
  4749. source: "./media/characters/asana/dressed-dark.svg",
  4750. extra: 1133 / 1060,
  4751. bottom: 15.2 / 1148.6
  4752. }
  4753. },
  4754. dressedLight: {
  4755. height: math.unit(7 + 5 / 6, "feet"),
  4756. weight: math.unit(325, "lb"),
  4757. name: "Dressed (Light)",
  4758. image: {
  4759. source: "./media/characters/asana/dressed-light.svg",
  4760. extra: 1133 / 1060,
  4761. bottom: 15.2 / 1148.6
  4762. }
  4763. },
  4764. },
  4765. [
  4766. {
  4767. name: "Standard",
  4768. height: math.unit(7 + 5 / 6, "feet"),
  4769. default: true
  4770. },
  4771. {
  4772. name: "Large",
  4773. height: math.unit(10, "meters")
  4774. },
  4775. {
  4776. name: "Macro",
  4777. height: math.unit(2500, "meters")
  4778. },
  4779. {
  4780. name: "Megamacro",
  4781. height: math.unit(5e6, "meters")
  4782. },
  4783. {
  4784. name: "Examacro",
  4785. height: math.unit(5e12, "lightyears")
  4786. },
  4787. {
  4788. name: "Max Size",
  4789. height: math.unit(1e31, "lightyears")
  4790. }
  4791. ]
  4792. ))
  4793. characterMakers.push(() => makeCharacter(
  4794. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4795. {
  4796. front: {
  4797. height: math.unit(2, "meter"),
  4798. weight: math.unit(60, "kg"),
  4799. name: "Front",
  4800. image: {
  4801. source: "./media/characters/ebony/front.svg",
  4802. bottom: 0.03,
  4803. extra: 1045 / 810 + 0.03
  4804. }
  4805. },
  4806. side: {
  4807. height: math.unit(2, "meter"),
  4808. weight: math.unit(60, "kg"),
  4809. name: "Side",
  4810. image: {
  4811. source: "./media/characters/ebony/side.svg",
  4812. bottom: 0.03,
  4813. extra: 1045 / 810 + 0.03
  4814. }
  4815. },
  4816. back: {
  4817. height: math.unit(2, "meter"),
  4818. weight: math.unit(60, "kg"),
  4819. name: "Back",
  4820. image: {
  4821. source: "./media/characters/ebony/back.svg",
  4822. bottom: 0.01,
  4823. extra: 1045 / 810 + 0.01
  4824. }
  4825. },
  4826. },
  4827. [
  4828. // TODO check why I did this lol
  4829. {
  4830. name: "Standard",
  4831. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4832. default: true
  4833. },
  4834. {
  4835. name: "Macro",
  4836. height: math.unit(200, "feet")
  4837. },
  4838. {
  4839. name: "Gigamacro",
  4840. height: math.unit(13000, "km")
  4841. }
  4842. ]
  4843. ))
  4844. characterMakers.push(() => makeCharacter(
  4845. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4846. {
  4847. front: {
  4848. height: math.unit(6, "feet"),
  4849. weight: math.unit(175, "lb"),
  4850. name: "Front",
  4851. image: {
  4852. source: "./media/characters/mountain/front.svg",
  4853. extra: 972 / 955,
  4854. bottom: 64 / 1036.6
  4855. }
  4856. },
  4857. back: {
  4858. height: math.unit(6, "feet"),
  4859. weight: math.unit(175, "lb"),
  4860. name: "Back",
  4861. image: {
  4862. source: "./media/characters/mountain/back.svg",
  4863. extra: 970 / 950,
  4864. bottom: 28.25 / 999
  4865. }
  4866. },
  4867. },
  4868. [
  4869. {
  4870. name: "Large",
  4871. height: math.unit(20, "meters")
  4872. },
  4873. {
  4874. name: "Macro",
  4875. height: math.unit(300, "meters")
  4876. },
  4877. {
  4878. name: "Gigamacro",
  4879. height: math.unit(10000, "km"),
  4880. default: true
  4881. },
  4882. {
  4883. name: "Examacro",
  4884. height: math.unit(10e9, "lightyears")
  4885. }
  4886. ]
  4887. ))
  4888. characterMakers.push(() => makeCharacter(
  4889. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4890. {
  4891. front: {
  4892. height: math.unit(8, "feet"),
  4893. weight: math.unit(500, "lb"),
  4894. name: "Front",
  4895. image: {
  4896. source: "./media/characters/rick/front.svg"
  4897. }
  4898. }
  4899. },
  4900. [
  4901. {
  4902. name: "Normal",
  4903. height: math.unit(8, "feet"),
  4904. default: true
  4905. },
  4906. {
  4907. name: "Macro",
  4908. height: math.unit(5, "km")
  4909. }
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4914. {
  4915. front: {
  4916. height: math.unit(8, "feet"),
  4917. weight: math.unit(120, "lb"),
  4918. name: "Front",
  4919. image: {
  4920. source: "./media/characters/ona/front.svg"
  4921. }
  4922. },
  4923. frontAlt: {
  4924. height: math.unit(8, "feet"),
  4925. weight: math.unit(120, "lb"),
  4926. name: "Front (Alt)",
  4927. image: {
  4928. source: "./media/characters/ona/front-alt.svg"
  4929. }
  4930. },
  4931. back: {
  4932. height: math.unit(8, "feet"),
  4933. weight: math.unit(120, "lb"),
  4934. name: "Back",
  4935. image: {
  4936. source: "./media/characters/ona/back.svg"
  4937. }
  4938. },
  4939. foot: {
  4940. height: math.unit(1.1, "feet"),
  4941. name: "Foot",
  4942. image: {
  4943. source: "./media/characters/ona/foot.svg"
  4944. }
  4945. }
  4946. },
  4947. [
  4948. {
  4949. name: "Megamacro",
  4950. height: math.unit(70, "km"),
  4951. default: true
  4952. },
  4953. {
  4954. name: "Gigamacro",
  4955. height: math.unit(681818, "miles")
  4956. },
  4957. {
  4958. name: "Examacro",
  4959. height: math.unit(3800000, "lightyears")
  4960. },
  4961. ]
  4962. ))
  4963. characterMakers.push(() => makeCharacter(
  4964. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4965. {
  4966. front: {
  4967. height: math.unit(12, "feet"),
  4968. weight: math.unit(3000, "lb"),
  4969. name: "Front",
  4970. image: {
  4971. source: "./media/characters/mech/front.svg",
  4972. extra: 2900 / 2770,
  4973. bottom: 110 / 3010
  4974. }
  4975. },
  4976. back: {
  4977. height: math.unit(12, "feet"),
  4978. weight: math.unit(3000, "lb"),
  4979. name: "Back",
  4980. image: {
  4981. source: "./media/characters/mech/back.svg",
  4982. extra: 3011 / 2890,
  4983. bottom: 94 / 3105
  4984. }
  4985. },
  4986. maw: {
  4987. height: math.unit(3.07, "feet"),
  4988. name: "Maw",
  4989. image: {
  4990. source: "./media/characters/mech/maw.svg"
  4991. }
  4992. },
  4993. head: {
  4994. height: math.unit(3.07, "feet"),
  4995. name: "Head",
  4996. image: {
  4997. source: "./media/characters/mech/head.svg"
  4998. }
  4999. },
  5000. dick: {
  5001. height: math.unit(1.43, "feet"),
  5002. name: "Dick",
  5003. image: {
  5004. source: "./media/characters/mech/dick.svg"
  5005. }
  5006. },
  5007. },
  5008. [
  5009. {
  5010. name: "Normal",
  5011. height: math.unit(12, "feet")
  5012. },
  5013. {
  5014. name: "Macro",
  5015. height: math.unit(300, "feet"),
  5016. default: true
  5017. },
  5018. {
  5019. name: "Macro+",
  5020. height: math.unit(1500, "feet")
  5021. },
  5022. ]
  5023. ))
  5024. characterMakers.push(() => makeCharacter(
  5025. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5026. {
  5027. front: {
  5028. height: math.unit(1.3, "meter"),
  5029. weight: math.unit(30, "kg"),
  5030. name: "Front",
  5031. image: {
  5032. source: "./media/characters/gregory/front.svg",
  5033. }
  5034. }
  5035. },
  5036. [
  5037. {
  5038. name: "Normal",
  5039. height: math.unit(1.3, "meter"),
  5040. default: true
  5041. },
  5042. {
  5043. name: "Macro",
  5044. height: math.unit(20, "meter")
  5045. }
  5046. ]
  5047. ))
  5048. characterMakers.push(() => makeCharacter(
  5049. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5050. {
  5051. front: {
  5052. height: math.unit(2.8, "meter"),
  5053. weight: math.unit(200, "kg"),
  5054. name: "Front",
  5055. image: {
  5056. source: "./media/characters/elory/front.svg",
  5057. }
  5058. }
  5059. },
  5060. [
  5061. {
  5062. name: "Normal",
  5063. height: math.unit(2.8, "meter"),
  5064. default: true
  5065. },
  5066. {
  5067. name: "Macro",
  5068. height: math.unit(38, "meter")
  5069. }
  5070. ]
  5071. ))
  5072. characterMakers.push(() => makeCharacter(
  5073. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5074. {
  5075. front: {
  5076. height: math.unit(470, "feet"),
  5077. weight: math.unit(924, "tons"),
  5078. name: "Front",
  5079. image: {
  5080. source: "./media/characters/angelpatamon/front.svg",
  5081. }
  5082. }
  5083. },
  5084. [
  5085. {
  5086. name: "Normal",
  5087. height: math.unit(470, "feet"),
  5088. default: true
  5089. },
  5090. {
  5091. name: "Deity Size I",
  5092. height: math.unit(28651.2, "km")
  5093. },
  5094. {
  5095. name: "Deity Size II",
  5096. height: math.unit(171907.2, "km")
  5097. }
  5098. ]
  5099. ))
  5100. characterMakers.push(() => makeCharacter(
  5101. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5102. {
  5103. side: {
  5104. height: math.unit(7.2, "meter"),
  5105. weight: math.unit(8.2, "tons"),
  5106. name: "Side",
  5107. image: {
  5108. source: "./media/characters/cryae/side.svg",
  5109. extra: 3500 / 1500
  5110. }
  5111. }
  5112. },
  5113. [
  5114. {
  5115. name: "Normal",
  5116. height: math.unit(7.2, "meter"),
  5117. default: true
  5118. }
  5119. ]
  5120. ))
  5121. characterMakers.push(() => makeCharacter(
  5122. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5123. {
  5124. front: {
  5125. height: math.unit(6, "feet"),
  5126. weight: math.unit(175, "lb"),
  5127. name: "Front",
  5128. image: {
  5129. source: "./media/characters/xera/front.svg",
  5130. extra: 2377 / 1972,
  5131. bottom: 75.5 / 2452
  5132. }
  5133. },
  5134. side: {
  5135. height: math.unit(6, "feet"),
  5136. weight: math.unit(175, "lb"),
  5137. name: "Side",
  5138. image: {
  5139. source: "./media/characters/xera/side.svg",
  5140. extra: 2345 / 2019,
  5141. bottom: 39.7 / 2384
  5142. }
  5143. },
  5144. back: {
  5145. height: math.unit(6, "feet"),
  5146. weight: math.unit(175, "lb"),
  5147. name: "Back",
  5148. image: {
  5149. source: "./media/characters/xera/back.svg",
  5150. extra: 2095 / 1984,
  5151. bottom: 67 / 2166
  5152. }
  5153. },
  5154. },
  5155. [
  5156. {
  5157. name: "Small",
  5158. height: math.unit(10, "feet")
  5159. },
  5160. {
  5161. name: "Macro",
  5162. height: math.unit(500, "meters"),
  5163. default: true
  5164. },
  5165. {
  5166. name: "Macro+",
  5167. height: math.unit(10, "km")
  5168. },
  5169. {
  5170. name: "Gigamacro",
  5171. height: math.unit(25000, "km")
  5172. },
  5173. {
  5174. name: "Teramacro",
  5175. height: math.unit(3e6, "km")
  5176. }
  5177. ]
  5178. ))
  5179. characterMakers.push(() => makeCharacter(
  5180. { name: "Nebula", species: ["dragon", "wolf"], 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/nebula/front.svg",
  5188. extra: 2566 / 2362,
  5189. bottom: 81 / 2644
  5190. }
  5191. }
  5192. },
  5193. [
  5194. {
  5195. name: "Small",
  5196. height: math.unit(4.5, "meters")
  5197. },
  5198. {
  5199. name: "Macro",
  5200. height: math.unit(1500, "meters"),
  5201. default: true
  5202. },
  5203. {
  5204. name: "Megamacro",
  5205. height: math.unit(150, "km")
  5206. },
  5207. {
  5208. name: "Gigamacro",
  5209. height: math.unit(27000, "km")
  5210. }
  5211. ]
  5212. ))
  5213. characterMakers.push(() => makeCharacter(
  5214. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5215. {
  5216. front: {
  5217. height: math.unit(6, "feet"),
  5218. weight: math.unit(225, "lb"),
  5219. name: "Front",
  5220. image: {
  5221. source: "./media/characters/abysgar/front.svg",
  5222. extra: 1739/1614,
  5223. bottom: 71/1810
  5224. }
  5225. },
  5226. frontNsfw: {
  5227. height: math.unit(6, "feet"),
  5228. weight: math.unit(225, "lb"),
  5229. name: "Front (NSFW)",
  5230. image: {
  5231. source: "./media/characters/abysgar/front-nsfw.svg",
  5232. extra: 1739/1614,
  5233. bottom: 71/1810
  5234. }
  5235. },
  5236. back: {
  5237. height: math.unit(4.6, "feet"),
  5238. weight: math.unit(225, "lb"),
  5239. name: "Back",
  5240. image: {
  5241. source: "./media/characters/abysgar/back.svg",
  5242. extra: 1384/1327,
  5243. bottom: 0/1384
  5244. }
  5245. },
  5246. head: {
  5247. height: math.unit(1.25, "feet"),
  5248. name: "Head",
  5249. image: {
  5250. source: "./media/characters/abysgar/head.svg",
  5251. extra: 669/569,
  5252. bottom: 0/669
  5253. }
  5254. },
  5255. },
  5256. [
  5257. {
  5258. name: "Small",
  5259. height: math.unit(4.5, "meters")
  5260. },
  5261. {
  5262. name: "Macro",
  5263. height: math.unit(1250, "meters"),
  5264. default: true
  5265. },
  5266. {
  5267. name: "Megamacro",
  5268. height: math.unit(125, "km")
  5269. },
  5270. {
  5271. name: "Gigamacro",
  5272. height: math.unit(26000, "km")
  5273. }
  5274. ]
  5275. ))
  5276. characterMakers.push(() => makeCharacter(
  5277. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5278. {
  5279. front: {
  5280. height: math.unit(6, "feet"),
  5281. weight: math.unit(180, "lb"),
  5282. name: "Front",
  5283. image: {
  5284. source: "./media/characters/yakuz/front.svg"
  5285. }
  5286. }
  5287. },
  5288. [
  5289. {
  5290. name: "Small",
  5291. height: math.unit(5, "meters")
  5292. },
  5293. {
  5294. name: "Macro",
  5295. height: math.unit(1500, "meters"),
  5296. default: true
  5297. },
  5298. {
  5299. name: "Megamacro",
  5300. height: math.unit(200, "km")
  5301. },
  5302. {
  5303. name: "Gigamacro",
  5304. height: math.unit(100000, "km")
  5305. }
  5306. ]
  5307. ))
  5308. characterMakers.push(() => makeCharacter(
  5309. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5310. {
  5311. front: {
  5312. height: math.unit(6, "feet"),
  5313. weight: math.unit(175, "lb"),
  5314. name: "Front",
  5315. image: {
  5316. source: "./media/characters/mirova/front.svg",
  5317. extra: 3334 / 3071,
  5318. bottom: 42 / 3375.6
  5319. }
  5320. }
  5321. },
  5322. [
  5323. {
  5324. name: "Small",
  5325. height: math.unit(5, "meters")
  5326. },
  5327. {
  5328. name: "Macro",
  5329. height: math.unit(900, "meters"),
  5330. default: true
  5331. },
  5332. {
  5333. name: "Megamacro",
  5334. height: math.unit(135, "km")
  5335. },
  5336. {
  5337. name: "Gigamacro",
  5338. height: math.unit(20000, "km")
  5339. }
  5340. ]
  5341. ))
  5342. characterMakers.push(() => makeCharacter(
  5343. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5344. {
  5345. side: {
  5346. height: math.unit(28.35, "feet"),
  5347. weight: math.unit(99.75, "tons"),
  5348. name: "Side",
  5349. image: {
  5350. source: "./media/characters/asana-mech/side.svg",
  5351. extra: 923 / 699,
  5352. bottom: 50 / 975
  5353. }
  5354. },
  5355. chaingun: {
  5356. height: math.unit(7, "feet"),
  5357. weight: math.unit(2400, "lb"),
  5358. name: "Chaingun",
  5359. image: {
  5360. source: "./media/characters/asana-mech/chaingun.svg"
  5361. }
  5362. },
  5363. laser: {
  5364. height: math.unit(7.12, "feet"),
  5365. weight: math.unit(2000, "lb"),
  5366. name: "Laser",
  5367. image: {
  5368. source: "./media/characters/asana-mech/laser.svg"
  5369. }
  5370. },
  5371. },
  5372. [
  5373. {
  5374. name: "Normal",
  5375. height: math.unit(28.35, "feet"),
  5376. default: true
  5377. },
  5378. {
  5379. name: "Macro",
  5380. height: math.unit(2500, "feet")
  5381. },
  5382. {
  5383. name: "Megamacro",
  5384. height: math.unit(25, "miles")
  5385. },
  5386. {
  5387. name: "Examacro",
  5388. height: math.unit(6e8, "lightyears")
  5389. },
  5390. ]
  5391. ))
  5392. characterMakers.push(() => makeCharacter(
  5393. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5394. {
  5395. front: {
  5396. height: math.unit(5, "meters"),
  5397. weight: math.unit(1000, "kg"),
  5398. name: "Front",
  5399. image: {
  5400. source: "./media/characters/asche/front.svg",
  5401. extra: 1258 / 1190,
  5402. bottom: 47 / 1305
  5403. }
  5404. },
  5405. frontUnderwear: {
  5406. height: math.unit(5, "meters"),
  5407. weight: math.unit(1000, "kg"),
  5408. name: "Front (Underwear)",
  5409. image: {
  5410. source: "./media/characters/asche/front-underwear.svg",
  5411. extra: 1258 / 1190,
  5412. bottom: 47 / 1305
  5413. }
  5414. },
  5415. frontDressed: {
  5416. height: math.unit(5, "meters"),
  5417. weight: math.unit(1000, "kg"),
  5418. name: "Front (Dressed)",
  5419. image: {
  5420. source: "./media/characters/asche/front-dressed.svg",
  5421. extra: 1258 / 1190,
  5422. bottom: 47 / 1305
  5423. }
  5424. },
  5425. frontArmor: {
  5426. height: math.unit(5, "meters"),
  5427. weight: math.unit(1000, "kg"),
  5428. name: "Front (Armored)",
  5429. image: {
  5430. source: "./media/characters/asche/front-armored.svg",
  5431. extra: 1374 / 1308,
  5432. bottom: 23 / 1397
  5433. }
  5434. },
  5435. mp724: {
  5436. height: math.unit(0.96, "meters"),
  5437. weight: math.unit(38, "kg"),
  5438. name: "H&K MP724",
  5439. image: {
  5440. source: "./media/characters/asche/h&k-mp724.svg"
  5441. }
  5442. },
  5443. side: {
  5444. height: math.unit(5, "meters"),
  5445. weight: math.unit(1000, "kg"),
  5446. name: "Side",
  5447. image: {
  5448. source: "./media/characters/asche/side.svg",
  5449. extra: 1717 / 1609,
  5450. bottom: 0.005
  5451. }
  5452. },
  5453. back: {
  5454. height: math.unit(5, "meters"),
  5455. weight: math.unit(1000, "kg"),
  5456. name: "Back",
  5457. image: {
  5458. source: "./media/characters/asche/back.svg",
  5459. extra: 1570 / 1501
  5460. }
  5461. },
  5462. },
  5463. [
  5464. {
  5465. name: "DEFCON 5",
  5466. height: math.unit(5, "meters")
  5467. },
  5468. {
  5469. name: "DEFCON 4",
  5470. height: math.unit(500, "meters"),
  5471. default: true
  5472. },
  5473. {
  5474. name: "DEFCON 3",
  5475. height: math.unit(5, "km")
  5476. },
  5477. {
  5478. name: "DEFCON 2",
  5479. height: math.unit(500, "km")
  5480. },
  5481. {
  5482. name: "DEFCON 1",
  5483. height: math.unit(500000, "km")
  5484. },
  5485. {
  5486. name: "DEFCON 0",
  5487. height: math.unit(3, "gigaparsecs")
  5488. },
  5489. ]
  5490. ))
  5491. characterMakers.push(() => makeCharacter(
  5492. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5493. {
  5494. front: {
  5495. height: math.unit(7, "feet"),
  5496. weight: math.unit(92.7, "kg"),
  5497. name: "Front",
  5498. image: {
  5499. source: "./media/characters/gale/front.svg",
  5500. extra: 977/919,
  5501. bottom: 105/1082
  5502. }
  5503. },
  5504. side: {
  5505. height: math.unit(6.7, "feet"),
  5506. weight: math.unit(92.7, "kg"),
  5507. name: "Side",
  5508. image: {
  5509. source: "./media/characters/gale/side.svg",
  5510. extra: 978/922,
  5511. bottom: 140/1118
  5512. }
  5513. },
  5514. back: {
  5515. height: math.unit(7, "feet"),
  5516. weight: math.unit(92.7, "kg"),
  5517. name: "Back",
  5518. image: {
  5519. source: "./media/characters/gale/back.svg",
  5520. extra: 966/920,
  5521. bottom: 61/1027
  5522. }
  5523. },
  5524. maw: {
  5525. height: math.unit(2.23, "feet"),
  5526. name: "Maw",
  5527. image: {
  5528. source: "./media/characters/gale/maw.svg"
  5529. }
  5530. },
  5531. foot: {
  5532. height: math.unit(2.1, "feet"),
  5533. name: "Foot",
  5534. image: {
  5535. source: "./media/characters/gale/foot.svg"
  5536. }
  5537. },
  5538. },
  5539. [
  5540. {
  5541. name: "Normal",
  5542. height: math.unit(7, "feet")
  5543. },
  5544. {
  5545. name: "Macro",
  5546. height: math.unit(150, "feet"),
  5547. default: true
  5548. },
  5549. {
  5550. name: "Macro+",
  5551. height: math.unit(300, "feet")
  5552. },
  5553. ]
  5554. ))
  5555. characterMakers.push(() => makeCharacter(
  5556. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5557. {
  5558. front: {
  5559. height: math.unit(5 + 10/12, "feet"),
  5560. weight: math.unit(67, "kg"),
  5561. name: "Front",
  5562. image: {
  5563. source: "./media/characters/draylen/front.svg",
  5564. extra: 832/777,
  5565. bottom: 85/917
  5566. }
  5567. }
  5568. },
  5569. [
  5570. {
  5571. name: "Normal",
  5572. height: math.unit(5 + 10/12, "feet")
  5573. },
  5574. {
  5575. name: "Macro",
  5576. height: math.unit(150, "feet"),
  5577. default: true
  5578. }
  5579. ]
  5580. ))
  5581. characterMakers.push(() => makeCharacter(
  5582. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5583. {
  5584. front: {
  5585. height: math.unit(7 + 9 / 12, "feet"),
  5586. weight: math.unit(379, "lbs"),
  5587. name: "Front",
  5588. image: {
  5589. source: "./media/characters/chez/front.svg"
  5590. }
  5591. },
  5592. side: {
  5593. height: math.unit(7 + 9 / 12, "feet"),
  5594. weight: math.unit(379, "lbs"),
  5595. name: "Side",
  5596. image: {
  5597. source: "./media/characters/chez/side.svg"
  5598. }
  5599. }
  5600. },
  5601. [
  5602. {
  5603. name: "Normal",
  5604. height: math.unit(7 + 9 / 12, "feet"),
  5605. default: true
  5606. },
  5607. {
  5608. name: "God King",
  5609. height: math.unit(9750000, "meters")
  5610. }
  5611. ]
  5612. ))
  5613. characterMakers.push(() => makeCharacter(
  5614. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5615. {
  5616. front: {
  5617. height: math.unit(6, "feet"),
  5618. weight: math.unit(275, "lbs"),
  5619. name: "Front",
  5620. image: {
  5621. source: "./media/characters/kaylum/front.svg",
  5622. bottom: 0.01,
  5623. extra: 1166 / 1031
  5624. }
  5625. },
  5626. frontWingless: {
  5627. height: math.unit(6, "feet"),
  5628. weight: math.unit(275, "lbs"),
  5629. name: "Front (Wingless)",
  5630. image: {
  5631. source: "./media/characters/kaylum/front-wingless.svg",
  5632. bottom: 0.01,
  5633. extra: 1117 / 1031
  5634. }
  5635. }
  5636. },
  5637. [
  5638. {
  5639. name: "Normal",
  5640. height: math.unit(3.05, "meters")
  5641. },
  5642. {
  5643. name: "Master",
  5644. height: math.unit(5.5, "meters")
  5645. },
  5646. {
  5647. name: "Rampage",
  5648. height: math.unit(19, "meters")
  5649. },
  5650. {
  5651. name: "Macro Lite",
  5652. height: math.unit(37, "meters")
  5653. },
  5654. {
  5655. name: "Hyper Predator",
  5656. height: math.unit(61, "meters")
  5657. },
  5658. {
  5659. name: "Macro",
  5660. height: math.unit(138, "meters"),
  5661. default: true
  5662. }
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5667. {
  5668. front: {
  5669. height: math.unit(5 + 5 / 12, "feet"),
  5670. weight: math.unit(120, "lbs"),
  5671. name: "Front",
  5672. image: {
  5673. source: "./media/characters/geta/front.svg",
  5674. extra: 1003/933,
  5675. bottom: 21/1024
  5676. }
  5677. },
  5678. paw: {
  5679. height: math.unit(0.35, "feet"),
  5680. name: "Paw",
  5681. image: {
  5682. source: "./media/characters/geta/paw.svg"
  5683. }
  5684. },
  5685. },
  5686. [
  5687. {
  5688. name: "Micro",
  5689. height: math.unit(3, "inches"),
  5690. default: true
  5691. },
  5692. {
  5693. name: "Normal",
  5694. height: math.unit(5 + 5 / 12, "feet")
  5695. }
  5696. ]
  5697. ))
  5698. characterMakers.push(() => makeCharacter(
  5699. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5700. {
  5701. front: {
  5702. height: math.unit(6, "feet"),
  5703. weight: math.unit(300, "lbs"),
  5704. name: "Front",
  5705. image: {
  5706. source: "./media/characters/tyrnn/front.svg"
  5707. }
  5708. }
  5709. },
  5710. [
  5711. {
  5712. name: "Main Height",
  5713. height: math.unit(355, "feet"),
  5714. default: true
  5715. },
  5716. {
  5717. name: "Fave. Height",
  5718. height: math.unit(2400, "feet")
  5719. }
  5720. ]
  5721. ))
  5722. characterMakers.push(() => makeCharacter(
  5723. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5724. {
  5725. front: {
  5726. height: math.unit(6, "feet"),
  5727. weight: math.unit(300, "lbs"),
  5728. name: "Front",
  5729. image: {
  5730. source: "./media/characters/appledectomy/front.svg"
  5731. }
  5732. }
  5733. },
  5734. [
  5735. {
  5736. name: "Macro",
  5737. height: math.unit(2500, "feet")
  5738. },
  5739. {
  5740. name: "Megamacro",
  5741. height: math.unit(50, "miles"),
  5742. default: true
  5743. },
  5744. {
  5745. name: "Gigamacro",
  5746. height: math.unit(5000, "miles")
  5747. },
  5748. {
  5749. name: "Teramacro",
  5750. height: math.unit(250000, "miles")
  5751. },
  5752. ]
  5753. ))
  5754. characterMakers.push(() => makeCharacter(
  5755. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5756. {
  5757. front: {
  5758. height: math.unit(6, "feet"),
  5759. weight: math.unit(200, "lbs"),
  5760. name: "Front",
  5761. image: {
  5762. source: "./media/characters/vulpes/front.svg",
  5763. extra: 573 / 543,
  5764. bottom: 0.033
  5765. }
  5766. },
  5767. side: {
  5768. height: math.unit(6, "feet"),
  5769. weight: math.unit(200, "lbs"),
  5770. name: "Side",
  5771. image: {
  5772. source: "./media/characters/vulpes/side.svg",
  5773. extra: 577 / 549,
  5774. bottom: 11 / 588
  5775. }
  5776. },
  5777. back: {
  5778. height: math.unit(6, "feet"),
  5779. weight: math.unit(200, "lbs"),
  5780. name: "Back",
  5781. image: {
  5782. source: "./media/characters/vulpes/back.svg",
  5783. extra: 573 / 549,
  5784. bottom: 20 / 593
  5785. }
  5786. },
  5787. feet: {
  5788. height: math.unit(1.276, "feet"),
  5789. name: "Feet",
  5790. image: {
  5791. source: "./media/characters/vulpes/feet.svg"
  5792. }
  5793. },
  5794. maw: {
  5795. height: math.unit(1.18, "feet"),
  5796. name: "Maw",
  5797. image: {
  5798. source: "./media/characters/vulpes/maw.svg"
  5799. }
  5800. },
  5801. },
  5802. [
  5803. {
  5804. name: "Micro",
  5805. height: math.unit(2, "inches")
  5806. },
  5807. {
  5808. name: "Normal",
  5809. height: math.unit(6.3, "feet")
  5810. },
  5811. {
  5812. name: "Macro",
  5813. height: math.unit(850, "feet")
  5814. },
  5815. {
  5816. name: "Megamacro",
  5817. height: math.unit(7500, "feet"),
  5818. default: true
  5819. },
  5820. {
  5821. name: "Gigamacro",
  5822. height: math.unit(570000, "miles")
  5823. }
  5824. ]
  5825. ))
  5826. characterMakers.push(() => makeCharacter(
  5827. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5828. {
  5829. front: {
  5830. height: math.unit(6, "feet"),
  5831. weight: math.unit(210, "lbs"),
  5832. name: "Front",
  5833. image: {
  5834. source: "./media/characters/rain-fallen/front.svg"
  5835. }
  5836. },
  5837. side: {
  5838. height: math.unit(6, "feet"),
  5839. weight: math.unit(210, "lbs"),
  5840. name: "Side",
  5841. image: {
  5842. source: "./media/characters/rain-fallen/side.svg"
  5843. }
  5844. },
  5845. back: {
  5846. height: math.unit(6, "feet"),
  5847. weight: math.unit(210, "lbs"),
  5848. name: "Back",
  5849. image: {
  5850. source: "./media/characters/rain-fallen/back.svg"
  5851. }
  5852. },
  5853. feral: {
  5854. height: math.unit(9, "feet"),
  5855. weight: math.unit(700, "lbs"),
  5856. name: "Feral",
  5857. image: {
  5858. source: "./media/characters/rain-fallen/feral.svg"
  5859. }
  5860. },
  5861. },
  5862. [
  5863. {
  5864. name: "Meddling with Mortals",
  5865. height: math.unit(8 + 8/12, "feet")
  5866. },
  5867. {
  5868. name: "Normal",
  5869. height: math.unit(5, "meter")
  5870. },
  5871. {
  5872. name: "Macro",
  5873. height: math.unit(150, "meter"),
  5874. default: true
  5875. },
  5876. {
  5877. name: "Megamacro",
  5878. height: math.unit(278e6, "meter")
  5879. },
  5880. {
  5881. name: "Gigamacro",
  5882. height: math.unit(2e9, "meter")
  5883. },
  5884. {
  5885. name: "Teramacro",
  5886. height: math.unit(8e12, "meter")
  5887. },
  5888. {
  5889. name: "Devourer",
  5890. height: math.unit(14, "zettameters")
  5891. },
  5892. {
  5893. name: "Scarlet King",
  5894. height: math.unit(18, "yottameters")
  5895. },
  5896. {
  5897. name: "Void",
  5898. height: math.unit(1e88, "yottameters")
  5899. }
  5900. ]
  5901. ))
  5902. characterMakers.push(() => makeCharacter(
  5903. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5904. {
  5905. standing: {
  5906. height: math.unit(6, "feet"),
  5907. weight: math.unit(180, "lbs"),
  5908. name: "Standing",
  5909. image: {
  5910. source: "./media/characters/zaakira/standing.svg",
  5911. extra: 1599/1504,
  5912. bottom: 39/1638
  5913. }
  5914. },
  5915. laying: {
  5916. height: math.unit(3.3, "feet"),
  5917. weight: math.unit(180, "lbs"),
  5918. name: "Laying",
  5919. image: {
  5920. source: "./media/characters/zaakira/laying.svg"
  5921. }
  5922. },
  5923. },
  5924. [
  5925. {
  5926. name: "Normal",
  5927. height: math.unit(12, "feet")
  5928. },
  5929. {
  5930. name: "Macro",
  5931. height: math.unit(279, "feet"),
  5932. default: true
  5933. }
  5934. ]
  5935. ))
  5936. characterMakers.push(() => makeCharacter(
  5937. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5938. {
  5939. femSfw: {
  5940. height: math.unit(8, "feet"),
  5941. weight: math.unit(350, "lb"),
  5942. name: "Fem",
  5943. image: {
  5944. source: "./media/characters/sigvald/fem-sfw.svg",
  5945. extra: 182 / 164,
  5946. bottom: 8.7 / 190.5
  5947. }
  5948. },
  5949. femNsfw: {
  5950. height: math.unit(8, "feet"),
  5951. weight: math.unit(350, "lb"),
  5952. name: "Fem (NSFW)",
  5953. image: {
  5954. source: "./media/characters/sigvald/fem-nsfw.svg",
  5955. extra: 182 / 164,
  5956. bottom: 8.7 / 190.5
  5957. }
  5958. },
  5959. maleNsfw: {
  5960. height: math.unit(8, "feet"),
  5961. weight: math.unit(350, "lb"),
  5962. name: "Male (NSFW)",
  5963. image: {
  5964. source: "./media/characters/sigvald/male-nsfw.svg",
  5965. extra: 182 / 164,
  5966. bottom: 8.7 / 190.5
  5967. }
  5968. },
  5969. hermNsfw: {
  5970. height: math.unit(8, "feet"),
  5971. weight: math.unit(350, "lb"),
  5972. name: "Herm (NSFW)",
  5973. image: {
  5974. source: "./media/characters/sigvald/herm-nsfw.svg",
  5975. extra: 182 / 164,
  5976. bottom: 8.7 / 190.5
  5977. }
  5978. },
  5979. dick: {
  5980. height: math.unit(2.36, "feet"),
  5981. name: "Dick",
  5982. image: {
  5983. source: "./media/characters/sigvald/dick.svg"
  5984. }
  5985. },
  5986. eye: {
  5987. height: math.unit(0.31, "feet"),
  5988. name: "Eye",
  5989. image: {
  5990. source: "./media/characters/sigvald/eye.svg"
  5991. }
  5992. },
  5993. mouth: {
  5994. height: math.unit(0.92, "feet"),
  5995. name: "Mouth",
  5996. image: {
  5997. source: "./media/characters/sigvald/mouth.svg"
  5998. }
  5999. },
  6000. paws: {
  6001. height: math.unit(2.2, "feet"),
  6002. name: "Paws",
  6003. image: {
  6004. source: "./media/characters/sigvald/paws.svg"
  6005. }
  6006. }
  6007. },
  6008. [
  6009. {
  6010. name: "Normal",
  6011. height: math.unit(8, "feet")
  6012. },
  6013. {
  6014. name: "Large",
  6015. height: math.unit(12, "feet")
  6016. },
  6017. {
  6018. name: "Larger",
  6019. height: math.unit(20, "feet")
  6020. },
  6021. {
  6022. name: "Macro",
  6023. height: math.unit(150, "feet")
  6024. },
  6025. {
  6026. name: "Macro+",
  6027. height: math.unit(200, "feet"),
  6028. default: true
  6029. },
  6030. ]
  6031. ))
  6032. characterMakers.push(() => makeCharacter(
  6033. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6034. {
  6035. side: {
  6036. height: math.unit(12, "feet"),
  6037. weight: math.unit(2000, "kg"),
  6038. name: "Side",
  6039. image: {
  6040. source: "./media/characters/scott/side.svg",
  6041. extra: 754 / 724,
  6042. bottom: 0.069
  6043. }
  6044. },
  6045. upright: {
  6046. height: math.unit(12, "feet"),
  6047. weight: math.unit(2000, "kg"),
  6048. name: "Upright",
  6049. image: {
  6050. source: "./media/characters/scott/upright.svg",
  6051. extra: 3881 / 3722,
  6052. bottom: 0.05
  6053. }
  6054. },
  6055. },
  6056. [
  6057. {
  6058. name: "Normal",
  6059. height: math.unit(12, "feet"),
  6060. default: true
  6061. },
  6062. ]
  6063. ))
  6064. characterMakers.push(() => makeCharacter(
  6065. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6066. {
  6067. side: {
  6068. height: math.unit(8, "meters"),
  6069. weight: math.unit(84755, "lbs"),
  6070. name: "Side",
  6071. image: {
  6072. source: "./media/characters/tobias/side.svg",
  6073. extra: 1474 / 1096,
  6074. bottom: 38.9 / 1513.1235
  6075. }
  6076. },
  6077. },
  6078. [
  6079. {
  6080. name: "Normal",
  6081. height: math.unit(8, "meters"),
  6082. default: true
  6083. },
  6084. ]
  6085. ))
  6086. characterMakers.push(() => makeCharacter(
  6087. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6088. {
  6089. front: {
  6090. height: math.unit(5.5, "feet"),
  6091. weight: math.unit(400, "lbs"),
  6092. name: "Front",
  6093. image: {
  6094. source: "./media/characters/kieran/front.svg",
  6095. extra: 2694 / 2364,
  6096. bottom: 217 / 2908
  6097. }
  6098. },
  6099. side: {
  6100. height: math.unit(5.5, "feet"),
  6101. weight: math.unit(400, "lbs"),
  6102. name: "Side",
  6103. image: {
  6104. source: "./media/characters/kieran/side.svg",
  6105. extra: 875 / 777,
  6106. bottom: 84.6 / 959
  6107. }
  6108. },
  6109. },
  6110. [
  6111. {
  6112. name: "Normal",
  6113. height: math.unit(5.5, "feet"),
  6114. default: true
  6115. },
  6116. ]
  6117. ))
  6118. characterMakers.push(() => makeCharacter(
  6119. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6120. {
  6121. side: {
  6122. height: math.unit(2, "meters"),
  6123. weight: math.unit(70, "kg"),
  6124. name: "Side",
  6125. image: {
  6126. source: "./media/characters/sanya/side.svg",
  6127. bottom: 0.02,
  6128. extra: 1.02
  6129. }
  6130. },
  6131. },
  6132. [
  6133. {
  6134. name: "Small",
  6135. height: math.unit(2, "meters")
  6136. },
  6137. {
  6138. name: "Normal",
  6139. height: math.unit(3, "meters")
  6140. },
  6141. {
  6142. name: "Macro",
  6143. height: math.unit(16, "meters"),
  6144. default: true
  6145. },
  6146. ]
  6147. ))
  6148. characterMakers.push(() => makeCharacter(
  6149. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6150. {
  6151. front: {
  6152. height: math.unit(2, "meters"),
  6153. weight: math.unit(120, "kg"),
  6154. name: "Front",
  6155. image: {
  6156. source: "./media/characters/miranda/front.svg",
  6157. extra: 195 / 185,
  6158. bottom: 10.9 / 206.5
  6159. }
  6160. },
  6161. back: {
  6162. height: math.unit(2, "meters"),
  6163. weight: math.unit(120, "kg"),
  6164. name: "Back",
  6165. image: {
  6166. source: "./media/characters/miranda/back.svg",
  6167. extra: 201 / 193,
  6168. bottom: 2.3 / 203.7
  6169. }
  6170. },
  6171. },
  6172. [
  6173. {
  6174. name: "Normal",
  6175. height: math.unit(10, "feet"),
  6176. default: true
  6177. }
  6178. ]
  6179. ))
  6180. characterMakers.push(() => makeCharacter(
  6181. { name: "James", species: ["deer"], tags: ["anthro"] },
  6182. {
  6183. side: {
  6184. height: math.unit(2, "meters"),
  6185. weight: math.unit(100, "kg"),
  6186. name: "Front",
  6187. image: {
  6188. source: "./media/characters/james/front.svg",
  6189. extra: 10 / 8.5
  6190. }
  6191. },
  6192. },
  6193. [
  6194. {
  6195. name: "Normal",
  6196. height: math.unit(8.5, "feet"),
  6197. default: true
  6198. }
  6199. ]
  6200. ))
  6201. characterMakers.push(() => makeCharacter(
  6202. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6203. {
  6204. side: {
  6205. height: math.unit(9.5, "feet"),
  6206. weight: math.unit(2500, "lbs"),
  6207. name: "Side",
  6208. image: {
  6209. source: "./media/characters/heather/side.svg"
  6210. }
  6211. },
  6212. },
  6213. [
  6214. {
  6215. name: "Normal",
  6216. height: math.unit(9.5, "feet"),
  6217. default: true
  6218. }
  6219. ]
  6220. ))
  6221. characterMakers.push(() => makeCharacter(
  6222. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6223. {
  6224. side: {
  6225. height: math.unit(6.5, "feet"),
  6226. weight: math.unit(400, "lbs"),
  6227. name: "Side",
  6228. image: {
  6229. source: "./media/characters/lukas/side.svg",
  6230. extra: 7.25 / 6.5
  6231. }
  6232. },
  6233. },
  6234. [
  6235. {
  6236. name: "Normal",
  6237. height: math.unit(6.5, "feet"),
  6238. default: true
  6239. }
  6240. ]
  6241. ))
  6242. characterMakers.push(() => makeCharacter(
  6243. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6244. {
  6245. side: {
  6246. height: math.unit(5, "feet"),
  6247. weight: math.unit(3000, "lbs"),
  6248. name: "Side",
  6249. image: {
  6250. source: "./media/characters/louise/side.svg"
  6251. }
  6252. },
  6253. },
  6254. [
  6255. {
  6256. name: "Normal",
  6257. height: math.unit(5, "feet"),
  6258. default: true
  6259. }
  6260. ]
  6261. ))
  6262. characterMakers.push(() => makeCharacter(
  6263. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6264. {
  6265. side: {
  6266. height: math.unit(6, "feet"),
  6267. weight: math.unit(150, "lbs"),
  6268. name: "Side",
  6269. image: {
  6270. source: "./media/characters/ramona/side.svg",
  6271. extra: 871/854,
  6272. bottom: 41/912
  6273. }
  6274. },
  6275. },
  6276. [
  6277. {
  6278. name: "Normal",
  6279. height: math.unit(6 + 4/12, "feet")
  6280. },
  6281. {
  6282. name: "Minimacro",
  6283. height: math.unit(5.3, "meters"),
  6284. default: true
  6285. },
  6286. {
  6287. name: "Macro",
  6288. height: math.unit(20, "stories")
  6289. },
  6290. {
  6291. name: "Macro+",
  6292. height: math.unit(50, "stories")
  6293. },
  6294. ]
  6295. ))
  6296. characterMakers.push(() => makeCharacter(
  6297. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6298. {
  6299. standing: {
  6300. height: math.unit(5.75, "feet"),
  6301. weight: math.unit(160, "lbs"),
  6302. name: "Standing",
  6303. image: {
  6304. source: "./media/characters/deerpuff/standing.svg",
  6305. extra: 682 / 624
  6306. }
  6307. },
  6308. sitting: {
  6309. height: math.unit(5.75 / 1.79, "feet"),
  6310. weight: math.unit(160, "lbs"),
  6311. name: "Sitting",
  6312. image: {
  6313. source: "./media/characters/deerpuff/sitting.svg",
  6314. bottom: 44 / 400,
  6315. extra: 1
  6316. }
  6317. },
  6318. taurLaying: {
  6319. height: math.unit(6, "feet"),
  6320. weight: math.unit(400, "lbs"),
  6321. name: "Taur (Laying)",
  6322. image: {
  6323. source: "./media/characters/deerpuff/taur-laying.svg"
  6324. }
  6325. },
  6326. },
  6327. [
  6328. {
  6329. name: "Puffball",
  6330. height: math.unit(6, "inches")
  6331. },
  6332. {
  6333. name: "Normalpuff",
  6334. height: math.unit(5.75, "feet")
  6335. },
  6336. {
  6337. name: "Macropuff",
  6338. height: math.unit(1500, "feet"),
  6339. default: true
  6340. },
  6341. {
  6342. name: "Megapuff",
  6343. height: math.unit(500, "miles")
  6344. },
  6345. {
  6346. name: "Gigapuff",
  6347. height: math.unit(250000, "miles")
  6348. },
  6349. {
  6350. name: "Omegapuff",
  6351. height: math.unit(1000, "lightyears")
  6352. },
  6353. ]
  6354. ))
  6355. characterMakers.push(() => makeCharacter(
  6356. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6357. {
  6358. stomping: {
  6359. height: math.unit(6, "feet"),
  6360. weight: math.unit(170, "lbs"),
  6361. name: "Stomping",
  6362. image: {
  6363. source: "./media/characters/vivian/stomping.svg"
  6364. }
  6365. },
  6366. sitting: {
  6367. height: math.unit(6 / 1.75, "feet"),
  6368. weight: math.unit(170, "lbs"),
  6369. name: "Sitting",
  6370. image: {
  6371. source: "./media/characters/vivian/sitting.svg",
  6372. bottom: 1 / 6.4,
  6373. extra: 1,
  6374. }
  6375. },
  6376. },
  6377. [
  6378. {
  6379. name: "Normal",
  6380. height: math.unit(7, "feet"),
  6381. default: true
  6382. },
  6383. {
  6384. name: "Macro",
  6385. height: math.unit(10, "stories")
  6386. },
  6387. {
  6388. name: "Macro+",
  6389. height: math.unit(30, "stories")
  6390. },
  6391. {
  6392. name: "Megamacro",
  6393. height: math.unit(10, "miles")
  6394. },
  6395. {
  6396. name: "Megamacro+",
  6397. height: math.unit(2750000, "meters")
  6398. },
  6399. ]
  6400. ))
  6401. characterMakers.push(() => makeCharacter(
  6402. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6403. {
  6404. front: {
  6405. height: math.unit(6, "feet"),
  6406. weight: math.unit(160, "lbs"),
  6407. name: "Front",
  6408. image: {
  6409. source: "./media/characters/prince/front.svg",
  6410. extra: 1938/1682,
  6411. bottom: 45/1983
  6412. }
  6413. },
  6414. back: {
  6415. height: math.unit(6, "feet"),
  6416. weight: math.unit(160, "lbs"),
  6417. name: "Back",
  6418. image: {
  6419. source: "./media/characters/prince/back.svg",
  6420. extra: 1955/1726,
  6421. bottom: 6/1961
  6422. }
  6423. },
  6424. },
  6425. [
  6426. {
  6427. name: "Normal",
  6428. height: math.unit(7.75, "feet"),
  6429. default: true
  6430. },
  6431. {
  6432. name: "Not cute",
  6433. height: math.unit(17, "feet")
  6434. },
  6435. {
  6436. name: "I said NOT",
  6437. height: math.unit(91, "feet")
  6438. },
  6439. {
  6440. name: "Please stop",
  6441. height: math.unit(560, "feet")
  6442. },
  6443. {
  6444. name: "What have you done",
  6445. height: math.unit(2200, "feet")
  6446. },
  6447. {
  6448. name: "Deer God",
  6449. height: math.unit(3.6, "miles")
  6450. },
  6451. ]
  6452. ))
  6453. characterMakers.push(() => makeCharacter(
  6454. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6455. {
  6456. standing: {
  6457. height: math.unit(6, "feet"),
  6458. weight: math.unit(300, "lbs"),
  6459. name: "Standing",
  6460. image: {
  6461. source: "./media/characters/psymon/standing.svg",
  6462. extra: 1888 / 1810,
  6463. bottom: 0.05
  6464. }
  6465. },
  6466. slithering: {
  6467. height: math.unit(6, "feet"),
  6468. weight: math.unit(300, "lbs"),
  6469. name: "Slithering",
  6470. image: {
  6471. source: "./media/characters/psymon/slithering.svg",
  6472. extra: 1330 / 1224
  6473. }
  6474. },
  6475. slitheringAlt: {
  6476. height: math.unit(6, "feet"),
  6477. weight: math.unit(300, "lbs"),
  6478. name: "Slithering (Alt)",
  6479. image: {
  6480. source: "./media/characters/psymon/slithering-alt.svg",
  6481. extra: 1330 / 1224
  6482. }
  6483. },
  6484. },
  6485. [
  6486. {
  6487. name: "Normal",
  6488. height: math.unit(11.25, "feet"),
  6489. default: true
  6490. },
  6491. {
  6492. name: "Large",
  6493. height: math.unit(27, "feet")
  6494. },
  6495. {
  6496. name: "Giant",
  6497. height: math.unit(87, "feet")
  6498. },
  6499. {
  6500. name: "Macro",
  6501. height: math.unit(365, "feet")
  6502. },
  6503. {
  6504. name: "Megamacro",
  6505. height: math.unit(3, "miles")
  6506. },
  6507. {
  6508. name: "World Serpent",
  6509. height: math.unit(8000, "miles")
  6510. },
  6511. ]
  6512. ))
  6513. characterMakers.push(() => makeCharacter(
  6514. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6515. {
  6516. front: {
  6517. height: math.unit(6, "feet"),
  6518. weight: math.unit(180, "lbs"),
  6519. name: "Front",
  6520. image: {
  6521. source: "./media/characters/daimos/front.svg",
  6522. extra: 4160 / 3897,
  6523. bottom: 0.021
  6524. }
  6525. }
  6526. },
  6527. [
  6528. {
  6529. name: "Normal",
  6530. height: math.unit(8, "feet"),
  6531. default: true
  6532. },
  6533. {
  6534. name: "Big Dog",
  6535. height: math.unit(22, "feet")
  6536. },
  6537. {
  6538. name: "Macro",
  6539. height: math.unit(127, "feet")
  6540. },
  6541. {
  6542. name: "Megamacro",
  6543. height: math.unit(3600, "feet")
  6544. },
  6545. ]
  6546. ))
  6547. characterMakers.push(() => makeCharacter(
  6548. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6549. {
  6550. side: {
  6551. height: math.unit(6, "feet"),
  6552. weight: math.unit(180, "lbs"),
  6553. name: "Side",
  6554. image: {
  6555. source: "./media/characters/blake/side.svg",
  6556. extra: 1212 / 1120,
  6557. bottom: 0.05
  6558. }
  6559. },
  6560. crouched: {
  6561. height: math.unit(6 * 0.57, "feet"),
  6562. weight: math.unit(180, "lbs"),
  6563. name: "Crouched",
  6564. image: {
  6565. source: "./media/characters/blake/crouched.svg",
  6566. extra: 840 / 587,
  6567. bottom: 0.04
  6568. }
  6569. },
  6570. bent: {
  6571. height: math.unit(6 * 0.75, "feet"),
  6572. weight: math.unit(180, "lbs"),
  6573. name: "Bent",
  6574. image: {
  6575. source: "./media/characters/blake/bent.svg",
  6576. extra: 592 / 544,
  6577. bottom: 0.035
  6578. }
  6579. },
  6580. },
  6581. [
  6582. {
  6583. name: "Normal",
  6584. height: math.unit(8 + 1 / 6, "feet"),
  6585. default: true
  6586. },
  6587. {
  6588. name: "Big Backside",
  6589. height: math.unit(37, "feet")
  6590. },
  6591. {
  6592. name: "Subway Shredder",
  6593. height: math.unit(72, "feet")
  6594. },
  6595. {
  6596. name: "City Carver",
  6597. height: math.unit(1675, "feet")
  6598. },
  6599. {
  6600. name: "Tectonic Tweaker",
  6601. height: math.unit(2300, "miles")
  6602. },
  6603. ]
  6604. ))
  6605. characterMakers.push(() => makeCharacter(
  6606. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6607. {
  6608. front: {
  6609. height: math.unit(6, "feet"),
  6610. weight: math.unit(180, "lbs"),
  6611. name: "Front",
  6612. image: {
  6613. source: "./media/characters/guisetto/front.svg",
  6614. extra: 856 / 817,
  6615. bottom: 0.06
  6616. }
  6617. },
  6618. airborne: {
  6619. height: math.unit(6, "feet"),
  6620. weight: math.unit(180, "lbs"),
  6621. name: "Airborne",
  6622. image: {
  6623. source: "./media/characters/guisetto/airborne.svg",
  6624. extra: 584 / 525
  6625. }
  6626. },
  6627. },
  6628. [
  6629. {
  6630. name: "Normal",
  6631. height: math.unit(10 + 11 / 12, "feet"),
  6632. default: true
  6633. },
  6634. {
  6635. name: "Large",
  6636. height: math.unit(35, "feet")
  6637. },
  6638. {
  6639. name: "Macro",
  6640. height: math.unit(475, "feet")
  6641. },
  6642. ]
  6643. ))
  6644. characterMakers.push(() => makeCharacter(
  6645. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6646. {
  6647. front: {
  6648. height: math.unit(6, "feet"),
  6649. weight: math.unit(180, "lbs"),
  6650. name: "Front",
  6651. image: {
  6652. source: "./media/characters/luxor/front.svg",
  6653. extra: 2940 / 2152
  6654. }
  6655. },
  6656. back: {
  6657. height: math.unit(6, "feet"),
  6658. weight: math.unit(180, "lbs"),
  6659. name: "Back",
  6660. image: {
  6661. source: "./media/characters/luxor/back.svg",
  6662. extra: 1083 / 960
  6663. }
  6664. },
  6665. },
  6666. [
  6667. {
  6668. name: "Normal",
  6669. height: math.unit(5 + 5 / 6, "feet"),
  6670. default: true
  6671. },
  6672. {
  6673. name: "Lamp",
  6674. height: math.unit(50, "feet")
  6675. },
  6676. {
  6677. name: "Lämp",
  6678. height: math.unit(300, "feet")
  6679. },
  6680. {
  6681. name: "The sun is a lamp",
  6682. height: math.unit(250000, "miles")
  6683. },
  6684. ]
  6685. ))
  6686. characterMakers.push(() => makeCharacter(
  6687. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6688. {
  6689. front: {
  6690. height: math.unit(6, "feet"),
  6691. weight: math.unit(50, "lbs"),
  6692. name: "Front",
  6693. image: {
  6694. source: "./media/characters/huoyan/front.svg"
  6695. }
  6696. },
  6697. side: {
  6698. height: math.unit(6, "feet"),
  6699. weight: math.unit(180, "lbs"),
  6700. name: "Side",
  6701. image: {
  6702. source: "./media/characters/huoyan/side.svg"
  6703. }
  6704. },
  6705. },
  6706. [
  6707. {
  6708. name: "Chef",
  6709. height: math.unit(9, "feet")
  6710. },
  6711. {
  6712. name: "Normal",
  6713. height: math.unit(65, "feet"),
  6714. default: true
  6715. },
  6716. {
  6717. name: "Macro",
  6718. height: math.unit(780, "feet")
  6719. },
  6720. {
  6721. name: "Flaming Mountain",
  6722. height: math.unit(4.8, "miles")
  6723. },
  6724. {
  6725. name: "Celestial",
  6726. height: math.unit(765000, "miles")
  6727. },
  6728. ]
  6729. ))
  6730. characterMakers.push(() => makeCharacter(
  6731. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6732. {
  6733. front: {
  6734. height: math.unit(5 + 3 / 4, "feet"),
  6735. weight: math.unit(120, "lbs"),
  6736. name: "Front",
  6737. image: {
  6738. source: "./media/characters/tails/front.svg"
  6739. }
  6740. }
  6741. },
  6742. [
  6743. {
  6744. name: "Normal",
  6745. height: math.unit(5 + 3 / 4, "feet"),
  6746. default: true
  6747. }
  6748. ]
  6749. ))
  6750. characterMakers.push(() => makeCharacter(
  6751. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6752. {
  6753. front: {
  6754. height: math.unit(4, "feet"),
  6755. weight: math.unit(50, "lbs"),
  6756. name: "Front",
  6757. image: {
  6758. source: "./media/characters/rainy/front.svg"
  6759. }
  6760. }
  6761. },
  6762. [
  6763. {
  6764. name: "Macro",
  6765. height: math.unit(800, "feet"),
  6766. default: true
  6767. }
  6768. ]
  6769. ))
  6770. characterMakers.push(() => makeCharacter(
  6771. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6772. {
  6773. front: {
  6774. height: math.unit(6, "feet"),
  6775. weight: math.unit(150, "lbs"),
  6776. name: "Front",
  6777. image: {
  6778. source: "./media/characters/rainier/front.svg"
  6779. }
  6780. }
  6781. },
  6782. [
  6783. {
  6784. name: "Micro",
  6785. height: math.unit(2, "mm"),
  6786. default: true
  6787. }
  6788. ]
  6789. ))
  6790. characterMakers.push(() => makeCharacter(
  6791. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6792. {
  6793. front: {
  6794. height: math.unit(8 + 4/12, "feet"),
  6795. weight: math.unit(450, "kilograms"),
  6796. volume: math.unit(5, "cups"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/andy-renard/front.svg",
  6800. extra: 1839/1726,
  6801. bottom: 134/1973
  6802. }
  6803. },
  6804. back: {
  6805. height: math.unit(8 + 4/12, "feet"),
  6806. weight: math.unit(450, "kilograms"),
  6807. volume: math.unit(5, "cups"),
  6808. name: "Back",
  6809. image: {
  6810. source: "./media/characters/andy-renard/back.svg",
  6811. extra: 1838/1710,
  6812. bottom: 105/1943
  6813. }
  6814. },
  6815. },
  6816. [
  6817. {
  6818. name: "Tall",
  6819. height: math.unit(8 + 4/12, "feet")
  6820. },
  6821. {
  6822. name: "Mini Macro",
  6823. height: math.unit(15, "feet"),
  6824. default: true
  6825. },
  6826. {
  6827. name: "Macro",
  6828. height: math.unit(100, "feet")
  6829. },
  6830. {
  6831. name: "Mega Macro",
  6832. height: math.unit(1000, "feet")
  6833. },
  6834. {
  6835. name: "Giga Macro",
  6836. height: math.unit(10, "miles")
  6837. },
  6838. {
  6839. name: "God Macro",
  6840. height: math.unit(1, "multiverse")
  6841. },
  6842. ]
  6843. ))
  6844. characterMakers.push(() => makeCharacter(
  6845. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6846. {
  6847. front: {
  6848. height: math.unit(6, "feet"),
  6849. weight: math.unit(210, "lbs"),
  6850. name: "Front",
  6851. image: {
  6852. source: "./media/characters/cimmaron/front-sfw.svg",
  6853. extra: 701 / 676,
  6854. bottom: 0.046
  6855. }
  6856. },
  6857. back: {
  6858. height: math.unit(6, "feet"),
  6859. weight: math.unit(210, "lbs"),
  6860. name: "Back",
  6861. image: {
  6862. source: "./media/characters/cimmaron/back-sfw.svg",
  6863. extra: 701 / 676,
  6864. bottom: 0.046
  6865. }
  6866. },
  6867. frontNsfw: {
  6868. height: math.unit(6, "feet"),
  6869. weight: math.unit(210, "lbs"),
  6870. name: "Front (NSFW)",
  6871. image: {
  6872. source: "./media/characters/cimmaron/front-nsfw.svg",
  6873. extra: 701 / 676,
  6874. bottom: 0.046
  6875. }
  6876. },
  6877. backNsfw: {
  6878. height: math.unit(6, "feet"),
  6879. weight: math.unit(210, "lbs"),
  6880. name: "Back (NSFW)",
  6881. image: {
  6882. source: "./media/characters/cimmaron/back-nsfw.svg",
  6883. extra: 701 / 676,
  6884. bottom: 0.046
  6885. }
  6886. },
  6887. dick: {
  6888. height: math.unit(1.714, "feet"),
  6889. name: "Dick",
  6890. image: {
  6891. source: "./media/characters/cimmaron/dick.svg"
  6892. }
  6893. },
  6894. },
  6895. [
  6896. {
  6897. name: "Normal",
  6898. height: math.unit(6, "feet"),
  6899. default: true
  6900. },
  6901. {
  6902. name: "Macro Mayor",
  6903. height: math.unit(350, "meters")
  6904. },
  6905. ]
  6906. ))
  6907. characterMakers.push(() => makeCharacter(
  6908. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6909. {
  6910. front: {
  6911. height: math.unit(6, "feet"),
  6912. weight: math.unit(200, "lbs"),
  6913. name: "Front",
  6914. image: {
  6915. source: "./media/characters/akari/front.svg",
  6916. extra: 962 / 901,
  6917. bottom: 0.04
  6918. }
  6919. }
  6920. },
  6921. [
  6922. {
  6923. name: "Micro",
  6924. height: math.unit(5, "inches"),
  6925. default: true
  6926. },
  6927. {
  6928. name: "Normal",
  6929. height: math.unit(7, "feet")
  6930. },
  6931. ]
  6932. ))
  6933. characterMakers.push(() => makeCharacter(
  6934. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6935. {
  6936. front: {
  6937. height: math.unit(6, "feet"),
  6938. weight: math.unit(140, "lbs"),
  6939. name: "Front",
  6940. image: {
  6941. source: "./media/characters/cynosura/front.svg",
  6942. extra: 437/410,
  6943. bottom: 9/446
  6944. }
  6945. },
  6946. back: {
  6947. height: math.unit(6, "feet"),
  6948. weight: math.unit(140, "lbs"),
  6949. name: "Back",
  6950. image: {
  6951. source: "./media/characters/cynosura/back.svg",
  6952. extra: 1304/1160,
  6953. bottom: 71/1375
  6954. }
  6955. },
  6956. },
  6957. [
  6958. {
  6959. name: "Micro",
  6960. height: math.unit(4, "inches")
  6961. },
  6962. {
  6963. name: "Normal",
  6964. height: math.unit(5.75, "feet"),
  6965. default: true
  6966. },
  6967. {
  6968. name: "Tall",
  6969. height: math.unit(10, "feet")
  6970. },
  6971. {
  6972. name: "Big",
  6973. height: math.unit(20, "feet")
  6974. },
  6975. {
  6976. name: "Macro",
  6977. height: math.unit(50, "feet")
  6978. },
  6979. ]
  6980. ))
  6981. characterMakers.push(() => makeCharacter(
  6982. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6983. {
  6984. front: {
  6985. height: math.unit(13 + 2/12, "feet"),
  6986. weight: math.unit(800, "kg"),
  6987. name: "Front",
  6988. image: {
  6989. source: "./media/characters/gin/front.svg",
  6990. extra: 1312/1191,
  6991. bottom: 45/1357
  6992. }
  6993. },
  6994. mouth: {
  6995. height: math.unit(2.39 * 1.8, "feet"),
  6996. name: "Mouth",
  6997. image: {
  6998. source: "./media/characters/gin/mouth.svg"
  6999. }
  7000. },
  7001. hand: {
  7002. height: math.unit(1.57 * 2.19, "feet"),
  7003. name: "Hand",
  7004. image: {
  7005. source: "./media/characters/gin/hand.svg"
  7006. }
  7007. },
  7008. foot: {
  7009. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7010. name: "Foot",
  7011. image: {
  7012. source: "./media/characters/gin/foot.svg"
  7013. }
  7014. },
  7015. sole: {
  7016. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7017. name: "Sole",
  7018. image: {
  7019. source: "./media/characters/gin/sole.svg"
  7020. }
  7021. },
  7022. },
  7023. [
  7024. {
  7025. name: "Very Small",
  7026. height: math.unit(13 + 2 / 12, "feet")
  7027. },
  7028. {
  7029. name: "Micro",
  7030. height: math.unit(600, "miles")
  7031. },
  7032. {
  7033. name: "Regular",
  7034. height: math.unit(20, "earths"),
  7035. default: true
  7036. },
  7037. {
  7038. name: "Macro",
  7039. height: math.unit(2.2, "solarradii")
  7040. },
  7041. {
  7042. name: "Teramacro",
  7043. height: math.unit(1.2, "galaxies")
  7044. },
  7045. {
  7046. name: "Omegamacro",
  7047. height: math.unit(200, "universes")
  7048. },
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7053. {
  7054. front: {
  7055. height: math.unit(6 + 1 / 6, "feet"),
  7056. weight: math.unit(178, "lbs"),
  7057. name: "Front",
  7058. image: {
  7059. source: "./media/characters/guy/front.svg"
  7060. }
  7061. }
  7062. },
  7063. [
  7064. {
  7065. name: "Normal",
  7066. height: math.unit(6 + 1 / 6, "feet"),
  7067. default: true
  7068. },
  7069. {
  7070. name: "Large",
  7071. height: math.unit(25 + 7 / 12, "feet")
  7072. },
  7073. {
  7074. name: "Macro",
  7075. height: math.unit(60 + 9 / 12, "feet")
  7076. },
  7077. {
  7078. name: "Macro+",
  7079. height: math.unit(246, "feet")
  7080. },
  7081. {
  7082. name: "Macro++",
  7083. height: math.unit(878, "feet")
  7084. }
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(9, "feet"),
  7092. weight: math.unit(800, "lbs"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/tiberius/front.svg",
  7096. extra: 2295 / 2071
  7097. }
  7098. },
  7099. back: {
  7100. height: math.unit(9, "feet"),
  7101. weight: math.unit(800, "lbs"),
  7102. name: "Back",
  7103. image: {
  7104. source: "./media/characters/tiberius/back.svg",
  7105. extra: 2373 / 2160
  7106. }
  7107. },
  7108. },
  7109. [
  7110. {
  7111. name: "Normal",
  7112. height: math.unit(9, "feet"),
  7113. default: true
  7114. }
  7115. ]
  7116. ))
  7117. characterMakers.push(() => makeCharacter(
  7118. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7119. {
  7120. front: {
  7121. height: math.unit(6, "feet"),
  7122. weight: math.unit(600, "lbs"),
  7123. name: "Front",
  7124. image: {
  7125. source: "./media/characters/surgo/front.svg",
  7126. extra: 3591 / 2227
  7127. }
  7128. },
  7129. back: {
  7130. height: math.unit(6, "feet"),
  7131. weight: math.unit(600, "lbs"),
  7132. name: "Back",
  7133. image: {
  7134. source: "./media/characters/surgo/back.svg",
  7135. extra: 3557 / 2228
  7136. }
  7137. },
  7138. laying: {
  7139. height: math.unit(6 * 0.85, "feet"),
  7140. weight: math.unit(600, "lbs"),
  7141. name: "Laying",
  7142. image: {
  7143. source: "./media/characters/surgo/laying.svg"
  7144. }
  7145. },
  7146. },
  7147. [
  7148. {
  7149. name: "Normal",
  7150. height: math.unit(6, "feet"),
  7151. default: true
  7152. }
  7153. ]
  7154. ))
  7155. characterMakers.push(() => makeCharacter(
  7156. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7157. {
  7158. side: {
  7159. height: math.unit(6, "feet"),
  7160. weight: math.unit(150, "lbs"),
  7161. name: "Side",
  7162. image: {
  7163. source: "./media/characters/cibus/side.svg",
  7164. extra: 800 / 400
  7165. }
  7166. },
  7167. },
  7168. [
  7169. {
  7170. name: "Normal",
  7171. height: math.unit(6, "feet"),
  7172. default: true
  7173. }
  7174. ]
  7175. ))
  7176. characterMakers.push(() => makeCharacter(
  7177. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7178. {
  7179. front: {
  7180. height: math.unit(6, "feet"),
  7181. weight: math.unit(240, "lbs"),
  7182. name: "Front",
  7183. image: {
  7184. source: "./media/characters/nibbles/front.svg"
  7185. }
  7186. },
  7187. side: {
  7188. height: math.unit(6, "feet"),
  7189. weight: math.unit(240, "lbs"),
  7190. name: "Side",
  7191. image: {
  7192. source: "./media/characters/nibbles/side.svg"
  7193. }
  7194. },
  7195. },
  7196. [
  7197. {
  7198. name: "Normal",
  7199. height: math.unit(9, "feet"),
  7200. default: true
  7201. }
  7202. ]
  7203. ))
  7204. characterMakers.push(() => makeCharacter(
  7205. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7206. {
  7207. side: {
  7208. height: math.unit(5 + 1 / 6, "feet"),
  7209. weight: math.unit(130, "lbs"),
  7210. name: "Side",
  7211. image: {
  7212. source: "./media/characters/rikky/side.svg",
  7213. extra: 851 / 801
  7214. }
  7215. },
  7216. },
  7217. [
  7218. {
  7219. name: "Normal",
  7220. height: math.unit(5 + 1 / 6, "feet")
  7221. },
  7222. {
  7223. name: "Macro",
  7224. height: math.unit(152, "feet"),
  7225. default: true
  7226. },
  7227. {
  7228. name: "Megamacro",
  7229. height: math.unit(7, "miles")
  7230. }
  7231. ]
  7232. ))
  7233. characterMakers.push(() => makeCharacter(
  7234. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7235. {
  7236. side: {
  7237. height: math.unit(370, "cm"),
  7238. weight: math.unit(350, "lbs"),
  7239. name: "Side",
  7240. image: {
  7241. source: "./media/characters/malfressa/side.svg"
  7242. }
  7243. },
  7244. walking: {
  7245. height: math.unit(370, "cm"),
  7246. weight: math.unit(350, "lbs"),
  7247. name: "Walking",
  7248. image: {
  7249. source: "./media/characters/malfressa/walking.svg"
  7250. }
  7251. },
  7252. feral: {
  7253. height: math.unit(2500, "cm"),
  7254. weight: math.unit(100000, "lbs"),
  7255. name: "Feral",
  7256. image: {
  7257. source: "./media/characters/malfressa/feral.svg",
  7258. extra: 2108 / 837,
  7259. bottom: 0.02
  7260. }
  7261. },
  7262. },
  7263. [
  7264. {
  7265. name: "Normal",
  7266. height: math.unit(370, "cm")
  7267. },
  7268. {
  7269. name: "Macro",
  7270. height: math.unit(300, "meters"),
  7271. default: true
  7272. }
  7273. ]
  7274. ))
  7275. characterMakers.push(() => makeCharacter(
  7276. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7277. {
  7278. front: {
  7279. height: math.unit(6, "feet"),
  7280. weight: math.unit(60, "kg"),
  7281. name: "Front",
  7282. image: {
  7283. source: "./media/characters/jaro/front.svg",
  7284. extra: 845/817,
  7285. bottom: 45/890
  7286. }
  7287. },
  7288. back: {
  7289. height: math.unit(6, "feet"),
  7290. weight: math.unit(60, "kg"),
  7291. name: "Back",
  7292. image: {
  7293. source: "./media/characters/jaro/back.svg",
  7294. extra: 847/817,
  7295. bottom: 34/881
  7296. }
  7297. },
  7298. },
  7299. [
  7300. {
  7301. name: "Micro",
  7302. height: math.unit(7, "inches")
  7303. },
  7304. {
  7305. name: "Normal",
  7306. height: math.unit(5.5, "feet"),
  7307. default: true
  7308. },
  7309. {
  7310. name: "Minimacro",
  7311. height: math.unit(20, "feet")
  7312. },
  7313. {
  7314. name: "Macro",
  7315. height: math.unit(200, "meters")
  7316. }
  7317. ]
  7318. ))
  7319. characterMakers.push(() => makeCharacter(
  7320. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7321. {
  7322. front: {
  7323. height: math.unit(6, "feet"),
  7324. weight: math.unit(195, "lb"),
  7325. name: "Front",
  7326. image: {
  7327. source: "./media/characters/rogue/front.svg"
  7328. }
  7329. },
  7330. },
  7331. [
  7332. {
  7333. name: "Macro",
  7334. height: math.unit(90, "feet"),
  7335. default: true
  7336. },
  7337. ]
  7338. ))
  7339. characterMakers.push(() => makeCharacter(
  7340. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7341. {
  7342. standing: {
  7343. height: math.unit(5 + 8 / 12, "feet"),
  7344. weight: math.unit(140, "lb"),
  7345. name: "Standing",
  7346. image: {
  7347. source: "./media/characters/piper/standing.svg",
  7348. extra: 1440/1284,
  7349. bottom: 66/1506
  7350. }
  7351. },
  7352. running: {
  7353. height: math.unit(5 + 8 / 12, "feet"),
  7354. weight: math.unit(140, "lb"),
  7355. name: "Running",
  7356. image: {
  7357. source: "./media/characters/piper/running.svg",
  7358. extra: 3948/3655,
  7359. bottom: 0/3948
  7360. }
  7361. },
  7362. sole: {
  7363. height: math.unit(0.81, "feet"),
  7364. weight: math.unit(2, "kg"),
  7365. name: "Sole",
  7366. image: {
  7367. source: "./media/characters/piper/sole.svg"
  7368. }
  7369. },
  7370. nipple: {
  7371. height: math.unit(0.25, "feet"),
  7372. weight: math.unit(1.5, "lb"),
  7373. name: "Nipple",
  7374. image: {
  7375. source: "./media/characters/piper/nipple.svg"
  7376. }
  7377. },
  7378. head: {
  7379. height: math.unit(1.1, "feet"),
  7380. name: "Head",
  7381. image: {
  7382. source: "./media/characters/piper/head.svg"
  7383. }
  7384. },
  7385. },
  7386. [
  7387. {
  7388. name: "Micro",
  7389. height: math.unit(2, "inches")
  7390. },
  7391. {
  7392. name: "Normal",
  7393. height: math.unit(5 + 8 / 12, "feet")
  7394. },
  7395. {
  7396. name: "Macro",
  7397. height: math.unit(250, "feet"),
  7398. default: true
  7399. },
  7400. {
  7401. name: "Megamacro",
  7402. height: math.unit(7, "miles")
  7403. },
  7404. ]
  7405. ))
  7406. characterMakers.push(() => makeCharacter(
  7407. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7408. {
  7409. front: {
  7410. height: math.unit(6, "feet"),
  7411. weight: math.unit(220, "lb"),
  7412. name: "Front",
  7413. image: {
  7414. source: "./media/characters/gemini/front.svg"
  7415. }
  7416. },
  7417. back: {
  7418. height: math.unit(6, "feet"),
  7419. weight: math.unit(220, "lb"),
  7420. name: "Back",
  7421. image: {
  7422. source: "./media/characters/gemini/back.svg"
  7423. }
  7424. },
  7425. kneeling: {
  7426. height: math.unit(6 / 1.5, "feet"),
  7427. weight: math.unit(220, "lb"),
  7428. name: "Kneeling",
  7429. image: {
  7430. source: "./media/characters/gemini/kneeling.svg",
  7431. bottom: 0.02
  7432. }
  7433. },
  7434. },
  7435. [
  7436. {
  7437. name: "Macro",
  7438. height: math.unit(300, "meters"),
  7439. default: true
  7440. },
  7441. {
  7442. name: "Megamacro",
  7443. height: math.unit(6900, "meters")
  7444. },
  7445. ]
  7446. ))
  7447. characterMakers.push(() => makeCharacter(
  7448. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7449. {
  7450. anthro: {
  7451. height: math.unit(2.35, "meters"),
  7452. weight: math.unit(73, "kg"),
  7453. name: "Anthro",
  7454. image: {
  7455. source: "./media/characters/alicia/anthro.svg",
  7456. extra: 2571 / 2385,
  7457. bottom: 75 / 2648
  7458. }
  7459. },
  7460. paw: {
  7461. height: math.unit(1.32, "feet"),
  7462. name: "Paw",
  7463. image: {
  7464. source: "./media/characters/alicia/paw.svg"
  7465. }
  7466. },
  7467. feral: {
  7468. height: math.unit(1.69, "meters"),
  7469. weight: math.unit(73, "kg"),
  7470. name: "Feral",
  7471. image: {
  7472. source: "./media/characters/alicia/feral.svg",
  7473. extra: 2123 / 1715,
  7474. bottom: 222 / 2349
  7475. }
  7476. },
  7477. },
  7478. [
  7479. {
  7480. name: "Normal",
  7481. height: math.unit(2.35, "meters")
  7482. },
  7483. {
  7484. name: "Macro",
  7485. height: math.unit(60, "meters"),
  7486. default: true
  7487. },
  7488. {
  7489. name: "Megamacro",
  7490. height: math.unit(10000, "kilometers")
  7491. },
  7492. ]
  7493. ))
  7494. characterMakers.push(() => makeCharacter(
  7495. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7496. {
  7497. front: {
  7498. height: math.unit(7, "feet"),
  7499. weight: math.unit(250, "lbs"),
  7500. name: "Front",
  7501. image: {
  7502. source: "./media/characters/archy/front.svg"
  7503. }
  7504. }
  7505. },
  7506. [
  7507. {
  7508. name: "Micro",
  7509. height: math.unit(1, "inch")
  7510. },
  7511. {
  7512. name: "Shorty",
  7513. height: math.unit(5, "feet")
  7514. },
  7515. {
  7516. name: "Normal",
  7517. height: math.unit(7, "feet")
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(600, "meters"),
  7522. default: true
  7523. },
  7524. {
  7525. name: "Megamacro",
  7526. height: math.unit(1, "mile")
  7527. },
  7528. ]
  7529. ))
  7530. characterMakers.push(() => makeCharacter(
  7531. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7532. {
  7533. front: {
  7534. height: math.unit(1.65, "meters"),
  7535. weight: math.unit(74, "kg"),
  7536. name: "Front",
  7537. image: {
  7538. source: "./media/characters/berri/front.svg",
  7539. extra: 857 / 837,
  7540. bottom: 18 / 877
  7541. }
  7542. },
  7543. bum: {
  7544. height: math.unit(1.46, "feet"),
  7545. name: "Bum",
  7546. image: {
  7547. source: "./media/characters/berri/bum.svg"
  7548. }
  7549. },
  7550. mouth: {
  7551. height: math.unit(0.44, "feet"),
  7552. name: "Mouth",
  7553. image: {
  7554. source: "./media/characters/berri/mouth.svg"
  7555. }
  7556. },
  7557. paw: {
  7558. height: math.unit(0.826, "feet"),
  7559. name: "Paw",
  7560. image: {
  7561. source: "./media/characters/berri/paw.svg"
  7562. }
  7563. },
  7564. },
  7565. [
  7566. {
  7567. name: "Normal",
  7568. height: math.unit(1.65, "meters")
  7569. },
  7570. {
  7571. name: "Macro",
  7572. height: math.unit(60, "m"),
  7573. default: true
  7574. },
  7575. {
  7576. name: "Megamacro",
  7577. height: math.unit(9.213, "km")
  7578. },
  7579. {
  7580. name: "Planet Eater",
  7581. height: math.unit(489, "megameters")
  7582. },
  7583. {
  7584. name: "Teramacro",
  7585. height: math.unit(2471635000000, "meters")
  7586. },
  7587. {
  7588. name: "Examacro",
  7589. height: math.unit(8.0624e+26, "meters")
  7590. }
  7591. ]
  7592. ))
  7593. characterMakers.push(() => makeCharacter(
  7594. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7595. {
  7596. front: {
  7597. height: math.unit(1.72, "meters"),
  7598. weight: math.unit(68, "kg"),
  7599. name: "Front",
  7600. image: {
  7601. source: "./media/characters/lexi/front.svg"
  7602. }
  7603. }
  7604. },
  7605. [
  7606. {
  7607. name: "Very Smol",
  7608. height: math.unit(10, "mm")
  7609. },
  7610. {
  7611. name: "Micro",
  7612. height: math.unit(6.8, "cm"),
  7613. default: true
  7614. },
  7615. {
  7616. name: "Normal",
  7617. height: math.unit(1.72, "m")
  7618. }
  7619. ]
  7620. ))
  7621. characterMakers.push(() => makeCharacter(
  7622. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7623. {
  7624. front: {
  7625. height: math.unit(1.69, "meters"),
  7626. weight: math.unit(68, "kg"),
  7627. name: "Front",
  7628. image: {
  7629. source: "./media/characters/martin/front.svg",
  7630. extra: 596 / 581
  7631. }
  7632. }
  7633. },
  7634. [
  7635. {
  7636. name: "Micro",
  7637. height: math.unit(6.85, "cm"),
  7638. default: true
  7639. },
  7640. {
  7641. name: "Normal",
  7642. height: math.unit(1.69, "m")
  7643. }
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7648. {
  7649. front: {
  7650. height: math.unit(1.69, "meters"),
  7651. weight: math.unit(68, "kg"),
  7652. name: "Front",
  7653. image: {
  7654. source: "./media/characters/juno/front.svg"
  7655. }
  7656. }
  7657. },
  7658. [
  7659. {
  7660. name: "Micro",
  7661. height: math.unit(7, "cm")
  7662. },
  7663. {
  7664. name: "Normal",
  7665. height: math.unit(1.89, "m")
  7666. },
  7667. {
  7668. name: "Macro",
  7669. height: math.unit(353, "meters"),
  7670. default: true
  7671. }
  7672. ]
  7673. ))
  7674. characterMakers.push(() => makeCharacter(
  7675. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7676. {
  7677. front: {
  7678. height: math.unit(1.93, "meters"),
  7679. weight: math.unit(83, "kg"),
  7680. name: "Front",
  7681. image: {
  7682. source: "./media/characters/samantha/front.svg"
  7683. }
  7684. },
  7685. frontClothed: {
  7686. height: math.unit(1.93, "meters"),
  7687. weight: math.unit(83, "kg"),
  7688. name: "Front (Clothed)",
  7689. image: {
  7690. source: "./media/characters/samantha/front-clothed.svg"
  7691. }
  7692. },
  7693. back: {
  7694. height: math.unit(1.93, "meters"),
  7695. weight: math.unit(83, "kg"),
  7696. name: "Back",
  7697. image: {
  7698. source: "./media/characters/samantha/back.svg"
  7699. }
  7700. },
  7701. },
  7702. [
  7703. {
  7704. name: "Normal",
  7705. height: math.unit(1.93, "m")
  7706. },
  7707. {
  7708. name: "Macro",
  7709. height: math.unit(74, "meters"),
  7710. default: true
  7711. },
  7712. {
  7713. name: "Macro+",
  7714. height: math.unit(223, "meters"),
  7715. },
  7716. {
  7717. name: "Megamacro",
  7718. height: math.unit(8381, "meters"),
  7719. },
  7720. {
  7721. name: "Megamacro+",
  7722. height: math.unit(12000, "kilometers")
  7723. },
  7724. ]
  7725. ))
  7726. characterMakers.push(() => makeCharacter(
  7727. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7728. {
  7729. front: {
  7730. height: math.unit(1.92, "meters"),
  7731. weight: math.unit(80, "kg"),
  7732. name: "Front",
  7733. image: {
  7734. source: "./media/characters/dr-clay/front.svg"
  7735. }
  7736. },
  7737. frontClothed: {
  7738. height: math.unit(1.92, "meters"),
  7739. weight: math.unit(80, "kg"),
  7740. name: "Front (Clothed)",
  7741. image: {
  7742. source: "./media/characters/dr-clay/front-clothed.svg"
  7743. }
  7744. }
  7745. },
  7746. [
  7747. {
  7748. name: "Normal",
  7749. height: math.unit(1.92, "m")
  7750. },
  7751. {
  7752. name: "Macro",
  7753. height: math.unit(214, "meters"),
  7754. default: true
  7755. },
  7756. {
  7757. name: "Macro+",
  7758. height: math.unit(12.237, "meters"),
  7759. },
  7760. {
  7761. name: "Megamacro",
  7762. height: math.unit(557, "megameters"),
  7763. },
  7764. {
  7765. name: "Unimaginable",
  7766. height: math.unit(120e9, "lightyears")
  7767. },
  7768. ]
  7769. ))
  7770. characterMakers.push(() => makeCharacter(
  7771. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7772. {
  7773. front: {
  7774. height: math.unit(2, "meters"),
  7775. weight: math.unit(80, "kg"),
  7776. name: "Front",
  7777. image: {
  7778. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7779. }
  7780. }
  7781. },
  7782. [
  7783. {
  7784. name: "Teramacro",
  7785. height: math.unit(500000, "lightyears"),
  7786. default: true
  7787. },
  7788. ]
  7789. ))
  7790. characterMakers.push(() => makeCharacter(
  7791. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7792. {
  7793. crux: {
  7794. height: math.unit(2, "meters"),
  7795. weight: math.unit(150, "kg"),
  7796. name: "Crux",
  7797. image: {
  7798. source: "./media/characters/vemus/crux.svg",
  7799. extra: 1074/936,
  7800. bottom: 23/1097
  7801. }
  7802. },
  7803. skunkTanuki: {
  7804. height: math.unit(2, "meters"),
  7805. weight: math.unit(150, "kg"),
  7806. name: "Skunk-Tanuki",
  7807. image: {
  7808. source: "./media/characters/vemus/skunk-tanuki.svg",
  7809. extra: 926/893,
  7810. bottom: 20/946
  7811. }
  7812. },
  7813. },
  7814. [
  7815. {
  7816. name: "Normal",
  7817. height: math.unit(4, "meters"),
  7818. default: true
  7819. },
  7820. {
  7821. name: "Big",
  7822. height: math.unit(8, "meters")
  7823. },
  7824. {
  7825. name: "Macro",
  7826. height: math.unit(100, "meters")
  7827. },
  7828. {
  7829. name: "Macro+",
  7830. height: math.unit(1500, "meters")
  7831. },
  7832. {
  7833. name: "Stellar",
  7834. height: math.unit(14e8, "meters")
  7835. },
  7836. ]
  7837. ))
  7838. characterMakers.push(() => makeCharacter(
  7839. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7840. {
  7841. front: {
  7842. height: math.unit(2, "meters"),
  7843. weight: math.unit(70, "kg"),
  7844. name: "Front",
  7845. image: {
  7846. source: "./media/characters/beherit/front.svg",
  7847. extra: 1234/1109,
  7848. bottom: 55/1289
  7849. }
  7850. }
  7851. },
  7852. [
  7853. {
  7854. name: "Normal",
  7855. height: math.unit(6, "feet")
  7856. },
  7857. {
  7858. name: "Lorg",
  7859. height: math.unit(25, "feet"),
  7860. default: true
  7861. },
  7862. {
  7863. name: "Lorger",
  7864. height: math.unit(75, "feet")
  7865. },
  7866. {
  7867. name: "Macro",
  7868. height: math.unit(200, "meters")
  7869. },
  7870. ]
  7871. ))
  7872. characterMakers.push(() => makeCharacter(
  7873. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7874. {
  7875. front: {
  7876. height: math.unit(2, "meters"),
  7877. weight: math.unit(150, "kg"),
  7878. name: "Front",
  7879. image: {
  7880. source: "./media/characters/everett/front.svg",
  7881. extra: 1017/866,
  7882. bottom: 86/1103
  7883. }
  7884. },
  7885. paw: {
  7886. height: math.unit(2 / 3.6, "meters"),
  7887. name: "Paw",
  7888. image: {
  7889. source: "./media/characters/everett/paw.svg"
  7890. }
  7891. },
  7892. },
  7893. [
  7894. {
  7895. name: "Normal",
  7896. height: math.unit(15, "feet"),
  7897. default: true
  7898. },
  7899. {
  7900. name: "Lorg",
  7901. height: math.unit(70, "feet"),
  7902. default: true
  7903. },
  7904. {
  7905. name: "Lorger",
  7906. height: math.unit(250, "feet")
  7907. },
  7908. {
  7909. name: "Macro",
  7910. height: math.unit(500, "meters")
  7911. },
  7912. ]
  7913. ))
  7914. characterMakers.push(() => makeCharacter(
  7915. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7916. {
  7917. front: {
  7918. height: math.unit(2, "meters"),
  7919. weight: math.unit(86, "kg"),
  7920. name: "Front",
  7921. image: {
  7922. source: "./media/characters/rose/front.svg",
  7923. extra: 1785/1636,
  7924. bottom: 30/1815
  7925. },
  7926. form: "liom",
  7927. default: true
  7928. },
  7929. frontSporty: {
  7930. height: math.unit(2, "meters"),
  7931. weight: math.unit(86, "kg"),
  7932. name: "Front (Sporty)",
  7933. image: {
  7934. source: "./media/characters/rose/front-sporty.svg",
  7935. extra: 350/335,
  7936. bottom: 10/360
  7937. },
  7938. form: "liom"
  7939. },
  7940. frontAlt: {
  7941. height: math.unit(1.6, "meters"),
  7942. weight: math.unit(86, "kg"),
  7943. name: "Front (Alt)",
  7944. image: {
  7945. source: "./media/characters/rose/front-alt.svg",
  7946. extra: 299/283,
  7947. bottom: 3/302
  7948. },
  7949. form: "liom"
  7950. },
  7951. plush: {
  7952. height: math.unit(2, "meters"),
  7953. weight: math.unit(86/3, "kg"),
  7954. name: "Plush",
  7955. image: {
  7956. source: "./media/characters/rose/plush.svg",
  7957. extra: 361/337,
  7958. bottom: 11/372
  7959. },
  7960. form: "plush",
  7961. default: true
  7962. },
  7963. faeStanding: {
  7964. height: math.unit(10, "cm"),
  7965. weight: math.unit(10, "grams"),
  7966. name: "Standing",
  7967. image: {
  7968. source: "./media/characters/rose/fae-standing.svg",
  7969. extra: 1189/1060,
  7970. bottom: 27/1216
  7971. },
  7972. form: "fae",
  7973. default: true
  7974. },
  7975. faeSitting: {
  7976. height: math.unit(5, "cm"),
  7977. weight: math.unit(10, "grams"),
  7978. name: "Sitting",
  7979. image: {
  7980. source: "./media/characters/rose/fae-sitting.svg",
  7981. extra: 737/577,
  7982. bottom: 356/1093
  7983. },
  7984. form: "fae"
  7985. },
  7986. faePaw: {
  7987. height: math.unit(1.35, "cm"),
  7988. name: "Paw",
  7989. image: {
  7990. source: "./media/characters/rose/fae-paw.svg"
  7991. },
  7992. form: "fae"
  7993. },
  7994. },
  7995. [
  7996. {
  7997. name: "True Micro",
  7998. height: math.unit(9, "cm"),
  7999. form: "liom"
  8000. },
  8001. {
  8002. name: "Micro",
  8003. height: math.unit(16, "cm"),
  8004. form: "liom"
  8005. },
  8006. {
  8007. name: "Normal",
  8008. height: math.unit(1.85, "meters"),
  8009. default: true,
  8010. form: "liom"
  8011. },
  8012. {
  8013. name: "Mini-Macro",
  8014. height: math.unit(5, "meters"),
  8015. form: "liom"
  8016. },
  8017. {
  8018. name: "Macro",
  8019. height: math.unit(15, "meters"),
  8020. form: "liom"
  8021. },
  8022. {
  8023. name: "True Macro",
  8024. height: math.unit(40, "meters"),
  8025. form: "liom"
  8026. },
  8027. {
  8028. name: "City Scale",
  8029. height: math.unit(1, "km"),
  8030. form: "liom"
  8031. },
  8032. {
  8033. name: "Plushie",
  8034. height: math.unit(9, "cm"),
  8035. form: "plush",
  8036. default: true
  8037. },
  8038. {
  8039. name: "Fae",
  8040. height: math.unit(10, "cm"),
  8041. form: "fae",
  8042. default: true
  8043. },
  8044. ],
  8045. {
  8046. "liom": {
  8047. name: "Liom"
  8048. },
  8049. "plush": {
  8050. name: "Plush"
  8051. },
  8052. "fae": {
  8053. name: "Fae Fox",
  8054. default: true
  8055. }
  8056. }
  8057. ))
  8058. characterMakers.push(() => makeCharacter(
  8059. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8060. {
  8061. front: {
  8062. height: math.unit(2, "meters"),
  8063. weight: math.unit(350, "lbs"),
  8064. name: "Front",
  8065. image: {
  8066. source: "./media/characters/regal/front.svg"
  8067. }
  8068. },
  8069. back: {
  8070. height: math.unit(2, "meters"),
  8071. weight: math.unit(350, "lbs"),
  8072. name: "Back",
  8073. image: {
  8074. source: "./media/characters/regal/back.svg"
  8075. }
  8076. },
  8077. },
  8078. [
  8079. {
  8080. name: "Macro",
  8081. height: math.unit(350, "feet"),
  8082. default: true
  8083. }
  8084. ]
  8085. ))
  8086. characterMakers.push(() => makeCharacter(
  8087. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  8088. {
  8089. front: {
  8090. height: math.unit(4 + 11 / 12, "feet"),
  8091. weight: math.unit(100, "lbs"),
  8092. name: "Front",
  8093. image: {
  8094. source: "./media/characters/opal/front.svg"
  8095. }
  8096. },
  8097. frontAlt: {
  8098. height: math.unit(4 + 11 / 12, "feet"),
  8099. weight: math.unit(100, "lbs"),
  8100. name: "Front (Alt)",
  8101. image: {
  8102. source: "./media/characters/opal/front-alt.svg"
  8103. }
  8104. },
  8105. },
  8106. [
  8107. {
  8108. name: "Small",
  8109. height: math.unit(4 + 11 / 12, "feet")
  8110. },
  8111. {
  8112. name: "Normal",
  8113. height: math.unit(20, "feet"),
  8114. default: true
  8115. },
  8116. {
  8117. name: "Macro",
  8118. height: math.unit(120, "feet")
  8119. },
  8120. {
  8121. name: "Megamacro",
  8122. height: math.unit(80, "miles")
  8123. },
  8124. {
  8125. name: "True Size",
  8126. height: math.unit(100000, "lightyears")
  8127. },
  8128. ]
  8129. ))
  8130. characterMakers.push(() => makeCharacter(
  8131. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8132. {
  8133. front: {
  8134. height: math.unit(6, "feet"),
  8135. weight: math.unit(200, "lbs"),
  8136. name: "Front",
  8137. image: {
  8138. source: "./media/characters/vector-wuff/front.svg"
  8139. }
  8140. }
  8141. },
  8142. [
  8143. {
  8144. name: "Normal",
  8145. height: math.unit(2.8, "meters")
  8146. },
  8147. {
  8148. name: "Macro",
  8149. height: math.unit(450, "meters"),
  8150. default: true
  8151. },
  8152. {
  8153. name: "Megamacro",
  8154. height: math.unit(15, "kilometers")
  8155. }
  8156. ]
  8157. ))
  8158. characterMakers.push(() => makeCharacter(
  8159. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8160. {
  8161. front: {
  8162. height: math.unit(6, "feet"),
  8163. weight: math.unit(256, "lbs"),
  8164. name: "Front",
  8165. image: {
  8166. source: "./media/characters/dannik/front.svg"
  8167. }
  8168. }
  8169. },
  8170. [
  8171. {
  8172. name: "Macro",
  8173. height: math.unit(69.57, "meters"),
  8174. default: true
  8175. },
  8176. ]
  8177. ))
  8178. characterMakers.push(() => makeCharacter(
  8179. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8180. {
  8181. front: {
  8182. height: math.unit(6, "feet"),
  8183. weight: math.unit(120, "lbs"),
  8184. name: "Front",
  8185. image: {
  8186. source: "./media/characters/azura-saharah/front.svg"
  8187. }
  8188. },
  8189. back: {
  8190. height: math.unit(6, "feet"),
  8191. weight: math.unit(120, "lbs"),
  8192. name: "Back",
  8193. image: {
  8194. source: "./media/characters/azura-saharah/back.svg"
  8195. }
  8196. },
  8197. },
  8198. [
  8199. {
  8200. name: "Macro",
  8201. height: math.unit(100, "feet"),
  8202. default: true
  8203. },
  8204. ]
  8205. ))
  8206. characterMakers.push(() => makeCharacter(
  8207. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8208. {
  8209. side: {
  8210. height: math.unit(5 + 4 / 12, "feet"),
  8211. weight: math.unit(163, "lbs"),
  8212. name: "Side",
  8213. image: {
  8214. source: "./media/characters/kennedy/side.svg"
  8215. }
  8216. }
  8217. },
  8218. [
  8219. {
  8220. name: "Standard Doggo",
  8221. height: math.unit(5 + 4 / 12, "feet")
  8222. },
  8223. {
  8224. name: "Big Doggo",
  8225. height: math.unit(25 + 3 / 12, "feet"),
  8226. default: true
  8227. },
  8228. ]
  8229. ))
  8230. characterMakers.push(() => makeCharacter(
  8231. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8232. {
  8233. front: {
  8234. height: math.unit(5 + 5/12, "feet"),
  8235. weight: math.unit(100, "lbs"),
  8236. name: "Front",
  8237. image: {
  8238. source: "./media/characters/odios-de-lunar/front.svg",
  8239. extra: 1468/1323,
  8240. bottom: 22/1490
  8241. }
  8242. }
  8243. },
  8244. [
  8245. {
  8246. name: "Micro",
  8247. height: math.unit(3, "inches")
  8248. },
  8249. {
  8250. name: "Normal",
  8251. height: math.unit(5.5, "feet"),
  8252. default: true
  8253. },
  8254. {
  8255. name: "Macro",
  8256. height: math.unit(100, "feet")
  8257. },
  8258. ]
  8259. ))
  8260. characterMakers.push(() => makeCharacter(
  8261. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8262. {
  8263. back: {
  8264. height: math.unit(6, "feet"),
  8265. weight: math.unit(220, "lbs"),
  8266. name: "Back",
  8267. image: {
  8268. source: "./media/characters/mandake/back.svg"
  8269. }
  8270. }
  8271. },
  8272. [
  8273. {
  8274. name: "Normal",
  8275. height: math.unit(7, "feet"),
  8276. default: true
  8277. },
  8278. {
  8279. name: "Macro",
  8280. height: math.unit(78, "feet")
  8281. },
  8282. {
  8283. name: "Macro+",
  8284. height: math.unit(300, "meters")
  8285. },
  8286. {
  8287. name: "Macro++",
  8288. height: math.unit(2400, "feet")
  8289. },
  8290. {
  8291. name: "Megamacro",
  8292. height: math.unit(5167, "meters")
  8293. },
  8294. {
  8295. name: "Gigamacro",
  8296. height: math.unit(41769, "miles")
  8297. },
  8298. ]
  8299. ))
  8300. characterMakers.push(() => makeCharacter(
  8301. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8302. {
  8303. front: {
  8304. height: math.unit(6, "feet"),
  8305. weight: math.unit(120, "lbs"),
  8306. name: "Front",
  8307. image: {
  8308. source: "./media/characters/yozey/front.svg"
  8309. }
  8310. },
  8311. frontAlt: {
  8312. height: math.unit(6, "feet"),
  8313. weight: math.unit(120, "lbs"),
  8314. name: "Front (Alt)",
  8315. image: {
  8316. source: "./media/characters/yozey/front-alt.svg"
  8317. }
  8318. },
  8319. side: {
  8320. height: math.unit(6, "feet"),
  8321. weight: math.unit(120, "lbs"),
  8322. name: "Side",
  8323. image: {
  8324. source: "./media/characters/yozey/side.svg"
  8325. }
  8326. },
  8327. },
  8328. [
  8329. {
  8330. name: "Micro",
  8331. height: math.unit(3, "inches"),
  8332. default: true
  8333. },
  8334. {
  8335. name: "Normal",
  8336. height: math.unit(6, "feet")
  8337. }
  8338. ]
  8339. ))
  8340. characterMakers.push(() => makeCharacter(
  8341. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8342. {
  8343. front: {
  8344. height: math.unit(6, "feet"),
  8345. weight: math.unit(103, "lbs"),
  8346. name: "Front",
  8347. image: {
  8348. source: "./media/characters/valeska-voss/front.svg"
  8349. }
  8350. }
  8351. },
  8352. [
  8353. {
  8354. name: "Mini-Sized Sub",
  8355. height: math.unit(3.1, "inches")
  8356. },
  8357. {
  8358. name: "Mid-Sized Sub",
  8359. height: math.unit(6.2, "inches")
  8360. },
  8361. {
  8362. name: "Full-Sized Sub",
  8363. height: math.unit(9.3, "inches")
  8364. },
  8365. {
  8366. name: "Normal",
  8367. height: math.unit(5 + 2 / 12, "foot"),
  8368. default: true
  8369. },
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8374. {
  8375. front: {
  8376. height: math.unit(6, "feet"),
  8377. weight: math.unit(160, "lbs"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/gene-zeta/front.svg",
  8381. extra: 3006 / 2826,
  8382. bottom: 182 / 3188
  8383. }
  8384. }
  8385. },
  8386. [
  8387. {
  8388. name: "Micro",
  8389. height: math.unit(6, "inches")
  8390. },
  8391. {
  8392. name: "Normal",
  8393. height: math.unit(5 + 11 / 12, "foot"),
  8394. default: true
  8395. },
  8396. {
  8397. name: "Macro",
  8398. height: math.unit(140, "feet")
  8399. },
  8400. {
  8401. name: "Supercharged",
  8402. height: math.unit(2500, "feet")
  8403. },
  8404. ]
  8405. ))
  8406. characterMakers.push(() => makeCharacter(
  8407. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8408. {
  8409. front: {
  8410. height: math.unit(6, "feet"),
  8411. weight: math.unit(350, "lbs"),
  8412. name: "Front",
  8413. image: {
  8414. source: "./media/characters/razinox/front.svg",
  8415. extra: 1686 / 1548,
  8416. bottom: 28.2 / 1868
  8417. }
  8418. },
  8419. back: {
  8420. height: math.unit(6, "feet"),
  8421. weight: math.unit(350, "lbs"),
  8422. name: "Back",
  8423. image: {
  8424. source: "./media/characters/razinox/back.svg",
  8425. extra: 1660 / 1590,
  8426. bottom: 15 / 1665
  8427. }
  8428. },
  8429. },
  8430. [
  8431. {
  8432. name: "Normal",
  8433. height: math.unit(10 + 8 / 12, "foot")
  8434. },
  8435. {
  8436. name: "Minimacro",
  8437. height: math.unit(15, "foot")
  8438. },
  8439. {
  8440. name: "Macro",
  8441. height: math.unit(60, "foot"),
  8442. default: true
  8443. },
  8444. {
  8445. name: "Megamacro",
  8446. height: math.unit(5, "miles")
  8447. },
  8448. {
  8449. name: "Gigamacro",
  8450. height: math.unit(6000, "miles")
  8451. },
  8452. ]
  8453. ))
  8454. characterMakers.push(() => makeCharacter(
  8455. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8456. {
  8457. front: {
  8458. height: math.unit(6, "feet"),
  8459. weight: math.unit(150, "lbs"),
  8460. name: "Front",
  8461. image: {
  8462. source: "./media/characters/cobalt/front.svg"
  8463. }
  8464. }
  8465. },
  8466. [
  8467. {
  8468. name: "Normal",
  8469. height: math.unit(8 + 1 / 12, "foot")
  8470. },
  8471. {
  8472. name: "Macro",
  8473. height: math.unit(111, "foot"),
  8474. default: true
  8475. },
  8476. {
  8477. name: "Supracosmic",
  8478. height: math.unit(1e42, "feet")
  8479. },
  8480. ]
  8481. ))
  8482. characterMakers.push(() => makeCharacter(
  8483. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8484. {
  8485. front: {
  8486. height: math.unit(5, "inches"),
  8487. name: "Front",
  8488. image: {
  8489. source: "./media/characters/amanda/front.svg",
  8490. extra: 926/791,
  8491. bottom: 38/964
  8492. }
  8493. },
  8494. back: {
  8495. height: math.unit(5, "inches"),
  8496. name: "Back",
  8497. image: {
  8498. source: "./media/characters/amanda/back.svg",
  8499. extra: 909/805,
  8500. bottom: 43/952
  8501. }
  8502. },
  8503. },
  8504. [
  8505. {
  8506. name: "Micro",
  8507. height: math.unit(5, "inches"),
  8508. default: true
  8509. },
  8510. ]
  8511. ))
  8512. characterMakers.push(() => makeCharacter(
  8513. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8514. {
  8515. front: {
  8516. height: math.unit(2.75, "meters"),
  8517. weight: math.unit(1200, "lb"),
  8518. name: "Front",
  8519. image: {
  8520. source: "./media/characters/teal/front.svg",
  8521. extra: 2463 / 2320,
  8522. bottom: 166 / 2629
  8523. }
  8524. },
  8525. back: {
  8526. height: math.unit(2.75, "meters"),
  8527. weight: math.unit(1200, "lb"),
  8528. name: "Back",
  8529. image: {
  8530. source: "./media/characters/teal/back.svg",
  8531. extra: 2580 / 2489,
  8532. bottom: 151 / 2731
  8533. }
  8534. },
  8535. sitting: {
  8536. height: math.unit(1.9, "meters"),
  8537. weight: math.unit(1200, "lb"),
  8538. name: "Sitting",
  8539. image: {
  8540. source: "./media/characters/teal/sitting.svg",
  8541. extra: 623 / 590,
  8542. bottom: 121 / 744
  8543. }
  8544. },
  8545. standing: {
  8546. height: math.unit(2.75, "meters"),
  8547. weight: math.unit(1200, "lb"),
  8548. name: "Standing",
  8549. image: {
  8550. source: "./media/characters/teal/standing.svg",
  8551. extra: 923 / 893,
  8552. bottom: 60 / 983
  8553. }
  8554. },
  8555. stretching: {
  8556. height: math.unit(3.65, "meters"),
  8557. weight: math.unit(1200, "lb"),
  8558. name: "Stretching",
  8559. image: {
  8560. source: "./media/characters/teal/stretching.svg",
  8561. extra: 1276 / 1244,
  8562. bottom: 0 / 1276
  8563. }
  8564. },
  8565. legged: {
  8566. height: math.unit(1.3, "meters"),
  8567. weight: math.unit(100, "lb"),
  8568. name: "Legged",
  8569. image: {
  8570. source: "./media/characters/teal/legged.svg",
  8571. extra: 462 / 437,
  8572. bottom: 24 / 486
  8573. }
  8574. },
  8575. naga: {
  8576. height: math.unit(5.4, "meters"),
  8577. weight: math.unit(4000, "lb"),
  8578. name: "Naga",
  8579. image: {
  8580. source: "./media/characters/teal/naga.svg",
  8581. extra: 1902 / 1858,
  8582. bottom: 0 / 1902
  8583. }
  8584. },
  8585. hand: {
  8586. height: math.unit(0.52, "meters"),
  8587. name: "Hand",
  8588. image: {
  8589. source: "./media/characters/teal/hand.svg"
  8590. }
  8591. },
  8592. maw: {
  8593. height: math.unit(0.43, "meters"),
  8594. name: "Maw",
  8595. image: {
  8596. source: "./media/characters/teal/maw.svg"
  8597. }
  8598. },
  8599. slit: {
  8600. height: math.unit(0.25, "meters"),
  8601. name: "Slit",
  8602. image: {
  8603. source: "./media/characters/teal/slit.svg"
  8604. }
  8605. },
  8606. },
  8607. [
  8608. {
  8609. name: "Normal",
  8610. height: math.unit(2.75, "meters"),
  8611. default: true
  8612. },
  8613. {
  8614. name: "Macro",
  8615. height: math.unit(300, "feet")
  8616. },
  8617. {
  8618. name: "Macro+",
  8619. height: math.unit(2000, "feet")
  8620. },
  8621. ]
  8622. ))
  8623. characterMakers.push(() => makeCharacter(
  8624. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8625. {
  8626. frontCat: {
  8627. height: math.unit(6, "feet"),
  8628. weight: math.unit(180, "lbs"),
  8629. name: "Front (Cat)",
  8630. image: {
  8631. source: "./media/characters/ravin-amulet/front-cat.svg"
  8632. }
  8633. },
  8634. frontCatAlt: {
  8635. height: math.unit(6, "feet"),
  8636. weight: math.unit(180, "lbs"),
  8637. name: "Front (Alt, Cat)",
  8638. image: {
  8639. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8640. }
  8641. },
  8642. frontWerewolf: {
  8643. height: math.unit(6 * 1.2, "feet"),
  8644. weight: math.unit(225, "lbs"),
  8645. name: "Front (Werewolf)",
  8646. image: {
  8647. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8648. }
  8649. },
  8650. backWerewolf: {
  8651. height: math.unit(6 * 1.2, "feet"),
  8652. weight: math.unit(225, "lbs"),
  8653. name: "Back (Werewolf)",
  8654. image: {
  8655. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8656. }
  8657. },
  8658. },
  8659. [
  8660. {
  8661. name: "Nano",
  8662. height: math.unit(1, "micrometer")
  8663. },
  8664. {
  8665. name: "Micro",
  8666. height: math.unit(1, "inch")
  8667. },
  8668. {
  8669. name: "Normal",
  8670. height: math.unit(6, "feet"),
  8671. default: true
  8672. },
  8673. {
  8674. name: "Macro",
  8675. height: math.unit(60, "feet")
  8676. }
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8681. {
  8682. front: {
  8683. height: math.unit(6, "feet"),
  8684. weight: math.unit(165, "lbs"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/fluoresce/front.svg"
  8688. }
  8689. }
  8690. },
  8691. [
  8692. {
  8693. name: "Micro",
  8694. height: math.unit(6, "cm")
  8695. },
  8696. {
  8697. name: "Normal",
  8698. height: math.unit(5 + 7 / 12, "feet"),
  8699. default: true
  8700. },
  8701. {
  8702. name: "Macro",
  8703. height: math.unit(56, "feet")
  8704. },
  8705. {
  8706. name: "Megamacro",
  8707. height: math.unit(1.9, "miles")
  8708. },
  8709. ]
  8710. ))
  8711. characterMakers.push(() => makeCharacter(
  8712. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8713. {
  8714. front: {
  8715. height: math.unit(9 + 6 / 12, "feet"),
  8716. weight: math.unit(523, "lbs"),
  8717. name: "Side",
  8718. image: {
  8719. source: "./media/characters/aurora/side.svg",
  8720. extra: 474/393,
  8721. bottom: 5/479
  8722. }
  8723. }
  8724. },
  8725. [
  8726. {
  8727. name: "Normal",
  8728. height: math.unit(9 + 6 / 12, "feet")
  8729. },
  8730. {
  8731. name: "Macro",
  8732. height: math.unit(96, "feet"),
  8733. default: true
  8734. },
  8735. {
  8736. name: "Macro+",
  8737. height: math.unit(243, "feet")
  8738. },
  8739. ]
  8740. ))
  8741. characterMakers.push(() => makeCharacter(
  8742. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8743. {
  8744. front: {
  8745. height: math.unit(194, "cm"),
  8746. weight: math.unit(90, "kg"),
  8747. name: "Front",
  8748. image: {
  8749. source: "./media/characters/ranek/front.svg",
  8750. extra: 1862/1791,
  8751. bottom: 80/1942
  8752. }
  8753. },
  8754. back: {
  8755. height: math.unit(194, "cm"),
  8756. weight: math.unit(90, "kg"),
  8757. name: "Back",
  8758. image: {
  8759. source: "./media/characters/ranek/back.svg",
  8760. extra: 1853/1787,
  8761. bottom: 74/1927
  8762. }
  8763. },
  8764. feral: {
  8765. height: math.unit(30, "cm"),
  8766. weight: math.unit(1.6, "lbs"),
  8767. name: "Feral",
  8768. image: {
  8769. source: "./media/characters/ranek/feral.svg",
  8770. extra: 990/631,
  8771. bottom: 29/1019
  8772. }
  8773. },
  8774. },
  8775. [
  8776. {
  8777. name: "Normal",
  8778. height: math.unit(194, "cm"),
  8779. default: true
  8780. },
  8781. {
  8782. name: "Macro",
  8783. height: math.unit(100, "meters")
  8784. },
  8785. ]
  8786. ))
  8787. characterMakers.push(() => makeCharacter(
  8788. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8789. {
  8790. front: {
  8791. height: math.unit(5 + 6 / 12, "feet"),
  8792. weight: math.unit(153, "lbs"),
  8793. name: "Front",
  8794. image: {
  8795. source: "./media/characters/andrew-cooper/front.svg"
  8796. }
  8797. },
  8798. },
  8799. [
  8800. {
  8801. name: "Nano",
  8802. height: math.unit(1, "mm")
  8803. },
  8804. {
  8805. name: "Micro",
  8806. height: math.unit(2, "inches")
  8807. },
  8808. {
  8809. name: "Normal",
  8810. height: math.unit(5 + 6 / 12, "feet"),
  8811. default: true
  8812. }
  8813. ]
  8814. ))
  8815. characterMakers.push(() => makeCharacter(
  8816. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8817. {
  8818. front: {
  8819. height: math.unit(6, "feet"),
  8820. weight: math.unit(180, "lbs"),
  8821. name: "Front",
  8822. image: {
  8823. source: "./media/characters/akane-sato/front.svg",
  8824. extra: 1219 / 1140
  8825. }
  8826. },
  8827. back: {
  8828. height: math.unit(6, "feet"),
  8829. weight: math.unit(180, "lbs"),
  8830. name: "Back",
  8831. image: {
  8832. source: "./media/characters/akane-sato/back.svg",
  8833. extra: 1219 / 1170
  8834. }
  8835. },
  8836. },
  8837. [
  8838. {
  8839. name: "Normal",
  8840. height: math.unit(2.5, "meters")
  8841. },
  8842. {
  8843. name: "Macro",
  8844. height: math.unit(250, "meters"),
  8845. default: true
  8846. },
  8847. {
  8848. name: "Megamacro",
  8849. height: math.unit(25, "km")
  8850. },
  8851. ]
  8852. ))
  8853. characterMakers.push(() => makeCharacter(
  8854. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8855. {
  8856. front: {
  8857. height: math.unit(6, "feet"),
  8858. weight: math.unit(65, "kg"),
  8859. name: "Front",
  8860. image: {
  8861. source: "./media/characters/rook/front.svg",
  8862. extra: 960 / 950
  8863. }
  8864. }
  8865. },
  8866. [
  8867. {
  8868. name: "Normal",
  8869. height: math.unit(8.8, "feet")
  8870. },
  8871. {
  8872. name: "Macro",
  8873. height: math.unit(88, "feet"),
  8874. default: true
  8875. },
  8876. {
  8877. name: "Megamacro",
  8878. height: math.unit(8, "miles")
  8879. },
  8880. ]
  8881. ))
  8882. characterMakers.push(() => makeCharacter(
  8883. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8884. {
  8885. front: {
  8886. height: math.unit(12 + 2 / 12, "feet"),
  8887. weight: math.unit(808, "lbs"),
  8888. name: "Front",
  8889. image: {
  8890. source: "./media/characters/prodigy/front.svg"
  8891. }
  8892. }
  8893. },
  8894. [
  8895. {
  8896. name: "Normal",
  8897. height: math.unit(12 + 2 / 12, "feet"),
  8898. default: true
  8899. },
  8900. {
  8901. name: "Macro",
  8902. height: math.unit(143, "feet")
  8903. },
  8904. {
  8905. name: "Macro+",
  8906. height: math.unit(400, "feet")
  8907. },
  8908. ]
  8909. ))
  8910. characterMakers.push(() => makeCharacter(
  8911. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8912. {
  8913. front: {
  8914. height: math.unit(6, "feet"),
  8915. weight: math.unit(225, "lbs"),
  8916. name: "Front",
  8917. image: {
  8918. source: "./media/characters/daniel/front.svg"
  8919. }
  8920. },
  8921. leaning: {
  8922. height: math.unit(6, "feet"),
  8923. weight: math.unit(225, "lbs"),
  8924. name: "Leaning",
  8925. image: {
  8926. source: "./media/characters/daniel/leaning.svg"
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Macro",
  8933. height: math.unit(1000, "feet"),
  8934. default: true
  8935. },
  8936. ]
  8937. ))
  8938. characterMakers.push(() => makeCharacter(
  8939. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8940. {
  8941. front: {
  8942. height: math.unit(6, "feet"),
  8943. weight: math.unit(88, "lbs"),
  8944. name: "Front",
  8945. image: {
  8946. source: "./media/characters/chiros/front.svg",
  8947. extra: 306 / 226
  8948. }
  8949. },
  8950. side: {
  8951. height: math.unit(6, "feet"),
  8952. weight: math.unit(88, "lbs"),
  8953. name: "Side",
  8954. image: {
  8955. source: "./media/characters/chiros/side.svg",
  8956. extra: 306 / 226
  8957. }
  8958. },
  8959. },
  8960. [
  8961. {
  8962. name: "Normal",
  8963. height: math.unit(6, "cm"),
  8964. default: true
  8965. },
  8966. ]
  8967. ))
  8968. characterMakers.push(() => makeCharacter(
  8969. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8970. {
  8971. front: {
  8972. height: math.unit(6, "feet"),
  8973. weight: math.unit(100, "lbs"),
  8974. name: "Front",
  8975. image: {
  8976. source: "./media/characters/selka/front.svg",
  8977. extra: 947 / 887
  8978. }
  8979. }
  8980. },
  8981. [
  8982. {
  8983. name: "Normal",
  8984. height: math.unit(5, "cm"),
  8985. default: true
  8986. },
  8987. ]
  8988. ))
  8989. characterMakers.push(() => makeCharacter(
  8990. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8991. {
  8992. front: {
  8993. height: math.unit(8 + 3 / 12, "feet"),
  8994. weight: math.unit(424, "lbs"),
  8995. name: "Front",
  8996. image: {
  8997. source: "./media/characters/verin/front.svg",
  8998. extra: 1845 / 1550
  8999. }
  9000. },
  9001. frontArmored: {
  9002. height: math.unit(8 + 3 / 12, "feet"),
  9003. weight: math.unit(424, "lbs"),
  9004. name: "Front (Armored)",
  9005. image: {
  9006. source: "./media/characters/verin/front-armor.svg",
  9007. extra: 1845 / 1550,
  9008. bottom: 0.01
  9009. }
  9010. },
  9011. back: {
  9012. height: math.unit(8 + 3 / 12, "feet"),
  9013. weight: math.unit(424, "lbs"),
  9014. name: "Back",
  9015. image: {
  9016. source: "./media/characters/verin/back.svg",
  9017. bottom: 0.1,
  9018. extra: 1
  9019. }
  9020. },
  9021. foot: {
  9022. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9023. name: "Foot",
  9024. image: {
  9025. source: "./media/characters/verin/foot.svg"
  9026. }
  9027. },
  9028. },
  9029. [
  9030. {
  9031. name: "Normal",
  9032. height: math.unit(8 + 3 / 12, "feet")
  9033. },
  9034. {
  9035. name: "Minimacro",
  9036. height: math.unit(21, "feet"),
  9037. default: true
  9038. },
  9039. {
  9040. name: "Macro",
  9041. height: math.unit(626, "feet")
  9042. },
  9043. ]
  9044. ))
  9045. characterMakers.push(() => makeCharacter(
  9046. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9047. {
  9048. front: {
  9049. height: math.unit(2.718, "meters"),
  9050. weight: math.unit(150, "lbs"),
  9051. name: "Front",
  9052. image: {
  9053. source: "./media/characters/sovrim-terraquian/front.svg",
  9054. extra: 1752/1689,
  9055. bottom: 36/1788
  9056. }
  9057. },
  9058. back: {
  9059. height: math.unit(2.718, "meters"),
  9060. weight: math.unit(150, "lbs"),
  9061. name: "Back",
  9062. image: {
  9063. source: "./media/characters/sovrim-terraquian/back.svg",
  9064. extra: 1698/1657,
  9065. bottom: 58/1756
  9066. }
  9067. },
  9068. tongue: {
  9069. height: math.unit(2.865, "feet"),
  9070. name: "Tongue",
  9071. image: {
  9072. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9073. }
  9074. },
  9075. hand: {
  9076. height: math.unit(1.61, "feet"),
  9077. name: "Hand",
  9078. image: {
  9079. source: "./media/characters/sovrim-terraquian/hand.svg"
  9080. }
  9081. },
  9082. foot: {
  9083. height: math.unit(1.05, "feet"),
  9084. name: "Foot",
  9085. image: {
  9086. source: "./media/characters/sovrim-terraquian/foot.svg"
  9087. }
  9088. },
  9089. footAlt: {
  9090. height: math.unit(0.88, "feet"),
  9091. name: "Foot (Alt)",
  9092. image: {
  9093. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9094. }
  9095. },
  9096. },
  9097. [
  9098. {
  9099. name: "Micro",
  9100. height: math.unit(2, "inches")
  9101. },
  9102. {
  9103. name: "Small",
  9104. height: math.unit(1, "meter")
  9105. },
  9106. {
  9107. name: "Normal",
  9108. height: math.unit(Math.E, "meters"),
  9109. default: true
  9110. },
  9111. {
  9112. name: "Macro",
  9113. height: math.unit(20, "meters")
  9114. },
  9115. {
  9116. name: "Macro+",
  9117. height: math.unit(400, "meters")
  9118. },
  9119. ]
  9120. ))
  9121. characterMakers.push(() => makeCharacter(
  9122. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9123. {
  9124. front: {
  9125. height: math.unit(7, "feet"),
  9126. weight: math.unit(489, "lbs"),
  9127. name: "Front",
  9128. image: {
  9129. source: "./media/characters/reece-silvermane/front.svg",
  9130. bottom: 0.02,
  9131. extra: 1
  9132. }
  9133. },
  9134. },
  9135. [
  9136. {
  9137. name: "Macro",
  9138. height: math.unit(1.5, "miles"),
  9139. default: true
  9140. },
  9141. ]
  9142. ))
  9143. characterMakers.push(() => makeCharacter(
  9144. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9145. {
  9146. front: {
  9147. height: math.unit(6, "feet"),
  9148. weight: math.unit(78, "kg"),
  9149. name: "Front",
  9150. image: {
  9151. source: "./media/characters/kane/front.svg",
  9152. extra: 978 / 899
  9153. }
  9154. },
  9155. back: {
  9156. height: math.unit(6, "feet"),
  9157. weight: math.unit(78, "kg"),
  9158. name: "Back",
  9159. image: {
  9160. source: "./media/characters/kane/back.svg",
  9161. extra: 1966/1800,
  9162. bottom: 0/1966
  9163. }
  9164. },
  9165. head: {
  9166. height: math.unit(1.4, "feet"),
  9167. name: "Head",
  9168. image: {
  9169. source: "./media/characters/kane/head.svg"
  9170. }
  9171. },
  9172. },
  9173. [
  9174. {
  9175. name: "Normal",
  9176. height: math.unit(2.1, "m"),
  9177. },
  9178. {
  9179. name: "Macro",
  9180. height: math.unit(1, "km"),
  9181. default: true
  9182. },
  9183. ]
  9184. ))
  9185. characterMakers.push(() => makeCharacter(
  9186. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9187. {
  9188. front: {
  9189. height: math.unit(6, "feet"),
  9190. weight: math.unit(200, "kg"),
  9191. name: "Front",
  9192. image: {
  9193. source: "./media/characters/tegon/front.svg",
  9194. bottom: 0.01,
  9195. extra: 1
  9196. }
  9197. },
  9198. },
  9199. [
  9200. {
  9201. name: "Micro",
  9202. height: math.unit(1, "inch")
  9203. },
  9204. {
  9205. name: "Normal",
  9206. height: math.unit(6 + 3 / 12, "feet"),
  9207. default: true
  9208. },
  9209. {
  9210. name: "Macro",
  9211. height: math.unit(300, "feet")
  9212. },
  9213. {
  9214. name: "Megamacro",
  9215. height: math.unit(69, "miles")
  9216. },
  9217. ]
  9218. ))
  9219. characterMakers.push(() => makeCharacter(
  9220. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9221. {
  9222. side: {
  9223. height: math.unit(6, "feet"),
  9224. weight: math.unit(2304, "lbs"),
  9225. name: "Side",
  9226. image: {
  9227. source: "./media/characters/arcturax/side.svg",
  9228. extra: 790 / 376,
  9229. bottom: 0.01
  9230. }
  9231. },
  9232. },
  9233. [
  9234. {
  9235. name: "Micro",
  9236. height: math.unit(2, "inch")
  9237. },
  9238. {
  9239. name: "Normal",
  9240. height: math.unit(6, "feet")
  9241. },
  9242. {
  9243. name: "Macro",
  9244. height: math.unit(39, "feet"),
  9245. default: true
  9246. },
  9247. {
  9248. name: "Megamacro",
  9249. height: math.unit(7, "miles")
  9250. },
  9251. ]
  9252. ))
  9253. characterMakers.push(() => makeCharacter(
  9254. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9255. {
  9256. front: {
  9257. height: math.unit(6, "feet"),
  9258. weight: math.unit(50, "lbs"),
  9259. name: "Front",
  9260. image: {
  9261. source: "./media/characters/sentri/front.svg",
  9262. extra: 1750 / 1570,
  9263. bottom: 0.025
  9264. }
  9265. },
  9266. frontAlt: {
  9267. height: math.unit(6, "feet"),
  9268. weight: math.unit(50, "lbs"),
  9269. name: "Front (Alt)",
  9270. image: {
  9271. source: "./media/characters/sentri/front-alt.svg",
  9272. extra: 1750 / 1570,
  9273. bottom: 0.025
  9274. }
  9275. },
  9276. },
  9277. [
  9278. {
  9279. name: "Normal",
  9280. height: math.unit(15, "feet"),
  9281. default: true
  9282. },
  9283. {
  9284. name: "Macro",
  9285. height: math.unit(2500, "feet")
  9286. }
  9287. ]
  9288. ))
  9289. characterMakers.push(() => makeCharacter(
  9290. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9291. {
  9292. front: {
  9293. height: math.unit(5 + 8 / 12, "feet"),
  9294. weight: math.unit(130, "lbs"),
  9295. name: "Front",
  9296. image: {
  9297. source: "./media/characters/corvin/front.svg",
  9298. extra: 1803 / 1629
  9299. }
  9300. },
  9301. frontShirt: {
  9302. height: math.unit(5 + 8 / 12, "feet"),
  9303. weight: math.unit(130, "lbs"),
  9304. name: "Front (Shirt)",
  9305. image: {
  9306. source: "./media/characters/corvin/front-shirt.svg",
  9307. extra: 1803 / 1629
  9308. }
  9309. },
  9310. frontPoncho: {
  9311. height: math.unit(5 + 8 / 12, "feet"),
  9312. weight: math.unit(130, "lbs"),
  9313. name: "Front (Poncho)",
  9314. image: {
  9315. source: "./media/characters/corvin/front-poncho.svg",
  9316. extra: 1803 / 1629
  9317. }
  9318. },
  9319. side: {
  9320. height: math.unit(5 + 8 / 12, "feet"),
  9321. weight: math.unit(130, "lbs"),
  9322. name: "Side",
  9323. image: {
  9324. source: "./media/characters/corvin/side.svg",
  9325. extra: 1012 / 945
  9326. }
  9327. },
  9328. back: {
  9329. height: math.unit(5 + 8 / 12, "feet"),
  9330. weight: math.unit(130, "lbs"),
  9331. name: "Back",
  9332. image: {
  9333. source: "./media/characters/corvin/back.svg",
  9334. extra: 1803 / 1629
  9335. }
  9336. },
  9337. },
  9338. [
  9339. {
  9340. name: "Micro",
  9341. height: math.unit(3, "inches")
  9342. },
  9343. {
  9344. name: "Normal",
  9345. height: math.unit(5 + 8 / 12, "feet")
  9346. },
  9347. {
  9348. name: "Macro",
  9349. height: math.unit(300, "feet"),
  9350. default: true
  9351. },
  9352. {
  9353. name: "Megamacro",
  9354. height: math.unit(500, "miles")
  9355. }
  9356. ]
  9357. ))
  9358. characterMakers.push(() => makeCharacter(
  9359. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9360. {
  9361. front: {
  9362. height: math.unit(6, "feet"),
  9363. weight: math.unit(135, "lbs"),
  9364. name: "Front",
  9365. image: {
  9366. source: "./media/characters/q/front.svg",
  9367. extra: 854 / 752,
  9368. bottom: 0.005
  9369. }
  9370. },
  9371. back: {
  9372. height: math.unit(6, "feet"),
  9373. weight: math.unit(130, "lbs"),
  9374. name: "Back",
  9375. image: {
  9376. source: "./media/characters/q/back.svg",
  9377. extra: 854 / 752
  9378. }
  9379. },
  9380. },
  9381. [
  9382. {
  9383. name: "Macro",
  9384. height: math.unit(90, "feet"),
  9385. default: true
  9386. },
  9387. {
  9388. name: "Extra Macro",
  9389. height: math.unit(300, "feet"),
  9390. },
  9391. {
  9392. name: "BIG WALF",
  9393. height: math.unit(750, "feet"),
  9394. },
  9395. ]
  9396. ))
  9397. characterMakers.push(() => makeCharacter(
  9398. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9399. {
  9400. front: {
  9401. height: math.unit(3, "feet"),
  9402. weight: math.unit(28, "lbs"),
  9403. name: "Front",
  9404. image: {
  9405. source: "./media/characters/citrine/front.svg"
  9406. }
  9407. }
  9408. },
  9409. [
  9410. {
  9411. name: "Normal",
  9412. height: math.unit(3, "feet"),
  9413. default: true
  9414. }
  9415. ]
  9416. ))
  9417. characterMakers.push(() => makeCharacter(
  9418. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9419. {
  9420. front: {
  9421. height: math.unit(14, "feet"),
  9422. weight: math.unit(1450, "kg"),
  9423. preyCapacity: math.unit(15, "people"),
  9424. name: "Front",
  9425. image: {
  9426. source: "./media/characters/aura-starwind/front.svg",
  9427. extra: 1440/1327,
  9428. bottom: 11/1451
  9429. }
  9430. },
  9431. side: {
  9432. height: math.unit(14, "feet"),
  9433. weight: math.unit(1450, "kg"),
  9434. preyCapacity: math.unit(15, "people"),
  9435. name: "Side",
  9436. image: {
  9437. source: "./media/characters/aura-starwind/side.svg",
  9438. extra: 1654 / 1497
  9439. }
  9440. },
  9441. taur: {
  9442. height: math.unit(18, "feet"),
  9443. weight: math.unit(5500, "kg"),
  9444. preyCapacity: math.unit(50, "people"),
  9445. name: "Taur",
  9446. image: {
  9447. source: "./media/characters/aura-starwind/taur.svg",
  9448. extra: 1760 / 1650
  9449. }
  9450. },
  9451. feral: {
  9452. height: math.unit(46, "feet"),
  9453. weight: math.unit(25000, "kg"),
  9454. preyCapacity: math.unit(120, "people"),
  9455. name: "Feral",
  9456. image: {
  9457. source: "./media/characters/aura-starwind/feral.svg"
  9458. }
  9459. },
  9460. },
  9461. [
  9462. {
  9463. name: "Normal",
  9464. height: math.unit(14, "feet"),
  9465. default: true
  9466. },
  9467. {
  9468. name: "Macro",
  9469. height: math.unit(50, "meters")
  9470. },
  9471. {
  9472. name: "Megamacro",
  9473. height: math.unit(5000, "meters")
  9474. },
  9475. {
  9476. name: "Gigamacro",
  9477. height: math.unit(100000, "kilometers")
  9478. },
  9479. ]
  9480. ))
  9481. characterMakers.push(() => makeCharacter(
  9482. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9483. {
  9484. front: {
  9485. height: math.unit(2 + 7 / 12, "feet"),
  9486. weight: math.unit(32, "lbs"),
  9487. name: "Front",
  9488. image: {
  9489. source: "./media/characters/rivet/front.svg",
  9490. extra: 1716 / 1658,
  9491. bottom: 0.03
  9492. }
  9493. },
  9494. foot: {
  9495. height: math.unit(0.551, "feet"),
  9496. name: "Rivet's Foot",
  9497. image: {
  9498. source: "./media/characters/rivet/foot.svg"
  9499. },
  9500. rename: true
  9501. }
  9502. },
  9503. [
  9504. {
  9505. name: "Micro",
  9506. height: math.unit(1.5, "inches"),
  9507. },
  9508. {
  9509. name: "Normal",
  9510. height: math.unit(2 + 7 / 12, "feet"),
  9511. default: true
  9512. },
  9513. {
  9514. name: "Macro",
  9515. height: math.unit(85, "feet")
  9516. },
  9517. {
  9518. name: "Megamacro",
  9519. height: math.unit(2.2, "km")
  9520. }
  9521. ]
  9522. ))
  9523. characterMakers.push(() => makeCharacter(
  9524. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9525. {
  9526. front: {
  9527. height: math.unit(5 + 9 / 12, "feet"),
  9528. weight: math.unit(150, "lbs"),
  9529. name: "Front",
  9530. image: {
  9531. source: "./media/characters/coffee/front.svg",
  9532. extra: 946/880,
  9533. bottom: 66/1012
  9534. }
  9535. },
  9536. foot: {
  9537. height: math.unit(1.29, "feet"),
  9538. name: "Foot",
  9539. image: {
  9540. source: "./media/characters/coffee/foot.svg"
  9541. }
  9542. },
  9543. },
  9544. [
  9545. {
  9546. name: "Micro",
  9547. height: math.unit(2, "inches"),
  9548. },
  9549. {
  9550. name: "Normal",
  9551. height: math.unit(5 + 9 / 12, "feet"),
  9552. default: true
  9553. },
  9554. {
  9555. name: "Macro",
  9556. height: math.unit(800, "feet")
  9557. },
  9558. {
  9559. name: "Megamacro",
  9560. height: math.unit(25, "miles")
  9561. }
  9562. ]
  9563. ))
  9564. characterMakers.push(() => makeCharacter(
  9565. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9566. {
  9567. front: {
  9568. height: math.unit(6, "feet"),
  9569. weight: math.unit(200, "lbs"),
  9570. name: "Front",
  9571. image: {
  9572. source: "./media/characters/chari-gal/front.svg",
  9573. extra: 735/649,
  9574. bottom: 55/790
  9575. },
  9576. form: "normal",
  9577. default: true
  9578. },
  9579. back: {
  9580. height: math.unit(6, "feet"),
  9581. weight: math.unit(200, "lb"),
  9582. name: "Back",
  9583. image: {
  9584. source: "./media/characters/chari-gal/back.svg",
  9585. extra: 762/666,
  9586. bottom: 31/793
  9587. },
  9588. form: "normal"
  9589. },
  9590. mouth: {
  9591. height: math.unit(1.35, "feet"),
  9592. name: "Mouth",
  9593. image: {
  9594. source: "./media/characters/chari-gal/mouth.svg"
  9595. },
  9596. form: "normal"
  9597. },
  9598. gigantamax: {
  9599. height: math.unit(6 * 16, "feet"),
  9600. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9601. name: "Gigantamax",
  9602. image: {
  9603. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9604. extra: 1507/1149,
  9605. bottom: 254/1761
  9606. },
  9607. form: "gigantamax",
  9608. default: true
  9609. },
  9610. },
  9611. [
  9612. {
  9613. name: "Normal",
  9614. height: math.unit(5 + 7 / 12, "feet"),
  9615. form: "normal",
  9616. },
  9617. {
  9618. name: "Macro",
  9619. height: math.unit(200, "feet"),
  9620. default: true,
  9621. form: "normal"
  9622. },
  9623. {
  9624. name: "Normal",
  9625. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9626. form: "gigantamax",
  9627. },
  9628. {
  9629. name: "Macro",
  9630. height: math.unit(16 * 200, "feet"),
  9631. default: true,
  9632. form: "gigantamax"
  9633. },
  9634. ],
  9635. {
  9636. "normal": {
  9637. name: "Normal",
  9638. default: true
  9639. },
  9640. "gigantamax": {
  9641. name: "Gigantamax",
  9642. },
  9643. }
  9644. ))
  9645. characterMakers.push(() => makeCharacter(
  9646. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9647. {
  9648. front: {
  9649. height: math.unit(6, "feet"),
  9650. weight: math.unit(150, "lbs"),
  9651. name: "Front",
  9652. image: {
  9653. source: "./media/characters/nova/front.svg",
  9654. extra: 5000 / 4722,
  9655. bottom: 0.02
  9656. }
  9657. }
  9658. },
  9659. [
  9660. {
  9661. name: "Micro-",
  9662. height: math.unit(0.8, "inches")
  9663. },
  9664. {
  9665. name: "Micro",
  9666. height: math.unit(2, "inches"),
  9667. default: true
  9668. },
  9669. ]
  9670. ))
  9671. characterMakers.push(() => makeCharacter(
  9672. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9673. {
  9674. koboldFront: {
  9675. height: math.unit(3 + 1 / 12, "feet"),
  9676. weight: math.unit(21.7, "lbs"),
  9677. name: "Front",
  9678. image: {
  9679. source: "./media/characters/argent/kobold-front.svg",
  9680. extra: 1471 / 1331,
  9681. bottom: 100.8 / 1575.5
  9682. },
  9683. form: "kobold",
  9684. default: true
  9685. },
  9686. dragonFront: {
  9687. height: math.unit(75, "inches"),
  9688. name: "Front",
  9689. image: {
  9690. source: "./media/characters/argent/dragon-front.svg",
  9691. extra: 1389/1248,
  9692. bottom: 54/1443
  9693. },
  9694. form: "dragon",
  9695. },
  9696. dragonBack: {
  9697. height: math.unit(75, "inches"),
  9698. name: "Back",
  9699. image: {
  9700. source: "./media/characters/argent/dragon-back.svg",
  9701. extra: 1399/1271,
  9702. bottom: 23/1422
  9703. },
  9704. form: "dragon",
  9705. },
  9706. dragonDressed: {
  9707. height: math.unit(75, "inches"),
  9708. name: "Dressed",
  9709. image: {
  9710. source: "./media/characters/argent/dragon-dressed.svg",
  9711. extra: 1350/1215,
  9712. bottom: 26/1376
  9713. },
  9714. form: "dragon"
  9715. },
  9716. dragonHead: {
  9717. height: math.unit(23.5, "inches"),
  9718. name: "Head",
  9719. image: {
  9720. source: "./media/characters/argent/dragon-head.svg"
  9721. },
  9722. form: "dragon",
  9723. },
  9724. },
  9725. [
  9726. {
  9727. name: "Micro",
  9728. height: math.unit(2, "inches"),
  9729. form: "kobold",
  9730. },
  9731. {
  9732. name: "Normal",
  9733. height: math.unit(3 + 1 / 12, "feet"),
  9734. form: "kobold",
  9735. default: true
  9736. },
  9737. {
  9738. name: "Macro",
  9739. height: math.unit(120, "feet"),
  9740. form: "kobold",
  9741. },
  9742. {
  9743. name: "Speck",
  9744. height: math.unit(1, "mm"),
  9745. form: "dragon",
  9746. },
  9747. {
  9748. name: "Tiny",
  9749. height: math.unit(1, "cm"),
  9750. form: "dragon",
  9751. },
  9752. {
  9753. name: "Micro",
  9754. height: math.unit(5, "cm"),
  9755. form: "dragon",
  9756. },
  9757. {
  9758. name: "Normal",
  9759. height: math.unit(75, "inches"),
  9760. form: "dragon",
  9761. default: true
  9762. },
  9763. {
  9764. name: "Extra Tall",
  9765. height: math.unit(9, "feet"),
  9766. form: "dragon",
  9767. },
  9768. {
  9769. name: "Inconvenient",
  9770. height: math.unit(5, "meters"),
  9771. form: "dragon",
  9772. },
  9773. {
  9774. name: "Macro",
  9775. height: math.unit(70, "meters"),
  9776. form: "dragon",
  9777. },
  9778. {
  9779. name: "Macro+",
  9780. height: math.unit(250, "meters"),
  9781. form: "dragon",
  9782. },
  9783. {
  9784. name: "Megamacro",
  9785. height: math.unit(20, "km"),
  9786. form: "dragon",
  9787. },
  9788. {
  9789. name: "Mountainous",
  9790. height: math.unit(100, "km"),
  9791. form: "dragon",
  9792. },
  9793. {
  9794. name: "Continental",
  9795. height: math.unit(2, "megameters"),
  9796. form: "dragon",
  9797. },
  9798. {
  9799. name: "Too Big",
  9800. height: math.unit(900, "megameters"),
  9801. form: "dragon",
  9802. },
  9803. ],
  9804. {
  9805. "kobold": {
  9806. name: "Kobold",
  9807. default: true
  9808. },
  9809. "dragon": {
  9810. name: "Dragon",
  9811. },
  9812. }
  9813. ))
  9814. characterMakers.push(() => makeCharacter(
  9815. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9816. {
  9817. lamp: {
  9818. height: math.unit(7 * 1559 / 989, "feet"),
  9819. name: "Magic Lamp",
  9820. image: {
  9821. source: "./media/characters/mira-al-cul/lamp.svg",
  9822. extra: 1617 / 1559
  9823. }
  9824. },
  9825. front: {
  9826. height: math.unit(7, "feet"),
  9827. name: "Front",
  9828. image: {
  9829. source: "./media/characters/mira-al-cul/front.svg",
  9830. extra: 1044 / 990
  9831. }
  9832. },
  9833. },
  9834. [
  9835. {
  9836. name: "Heavily Restricted",
  9837. height: math.unit(7 * 1559 / 989, "feet")
  9838. },
  9839. {
  9840. name: "Freshly Freed",
  9841. height: math.unit(50 * 1559 / 989, "feet")
  9842. },
  9843. {
  9844. name: "World Encompassing",
  9845. height: math.unit(10000 * 1559 / 989, "miles")
  9846. },
  9847. {
  9848. name: "Galactic",
  9849. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9850. },
  9851. {
  9852. name: "Palmed Universe",
  9853. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9854. default: true
  9855. },
  9856. {
  9857. name: "Multiversal Matriarch",
  9858. height: math.unit(8.87e10, "yottameters")
  9859. },
  9860. {
  9861. name: "Void Mother",
  9862. height: math.unit(3.14e110, "yottaparsecs")
  9863. },
  9864. {
  9865. name: "Toying with Transcendence",
  9866. height: math.unit(1e307, "meters")
  9867. },
  9868. ]
  9869. ))
  9870. characterMakers.push(() => makeCharacter(
  9871. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9872. {
  9873. front: {
  9874. height: math.unit(17 + 1 / 12, "feet"),
  9875. weight: math.unit(476.2 * 5, "lbs"),
  9876. name: "Front",
  9877. image: {
  9878. source: "./media/characters/kuro-shi-uchū/front.svg",
  9879. extra: 2329 / 1835,
  9880. bottom: 0.02
  9881. }
  9882. },
  9883. },
  9884. [
  9885. {
  9886. name: "Micro",
  9887. height: math.unit(2, "inches")
  9888. },
  9889. {
  9890. name: "Normal",
  9891. height: math.unit(12, "meters")
  9892. },
  9893. {
  9894. name: "Planetary",
  9895. height: math.unit(0.00929, "AU"),
  9896. default: true
  9897. },
  9898. {
  9899. name: "Universal",
  9900. height: math.unit(20, "gigaparsecs")
  9901. },
  9902. ]
  9903. ))
  9904. characterMakers.push(() => makeCharacter(
  9905. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9906. {
  9907. front: {
  9908. height: math.unit(5 + 2 / 12, "feet"),
  9909. weight: math.unit(120, "lbs"),
  9910. name: "Front",
  9911. image: {
  9912. source: "./media/characters/katherine/front.svg",
  9913. extra: 2075 / 1969
  9914. }
  9915. },
  9916. dress: {
  9917. height: math.unit(5 + 2 / 12, "feet"),
  9918. weight: math.unit(120, "lbs"),
  9919. name: "Dress",
  9920. image: {
  9921. source: "./media/characters/katherine/dress.svg",
  9922. extra: 2258 / 2064
  9923. }
  9924. },
  9925. },
  9926. [
  9927. {
  9928. name: "Micro",
  9929. height: math.unit(1, "inches"),
  9930. default: true
  9931. },
  9932. {
  9933. name: "Normal",
  9934. height: math.unit(5 + 2 / 12, "feet")
  9935. },
  9936. {
  9937. name: "Macro",
  9938. height: math.unit(100, "meters")
  9939. },
  9940. {
  9941. name: "Megamacro",
  9942. height: math.unit(80, "miles")
  9943. },
  9944. ]
  9945. ))
  9946. characterMakers.push(() => makeCharacter(
  9947. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9948. {
  9949. front: {
  9950. height: math.unit(7 + 8 / 12, "feet"),
  9951. weight: math.unit(250, "lbs"),
  9952. name: "Front",
  9953. image: {
  9954. source: "./media/characters/yevis/front.svg",
  9955. extra: 1938 / 1755
  9956. }
  9957. }
  9958. },
  9959. [
  9960. {
  9961. name: "Mortal",
  9962. height: math.unit(7 + 8 / 12, "feet")
  9963. },
  9964. {
  9965. name: "Battle",
  9966. height: math.unit(25 + 11 / 12, "feet")
  9967. },
  9968. {
  9969. name: "Wrath",
  9970. height: math.unit(1654 + 11 / 12, "feet")
  9971. },
  9972. {
  9973. name: "Planet Destroyer",
  9974. height: math.unit(12000, "miles")
  9975. },
  9976. {
  9977. name: "Galaxy Conqueror",
  9978. height: math.unit(1.45, "zettameters"),
  9979. default: true
  9980. },
  9981. {
  9982. name: "Universal War",
  9983. height: math.unit(184, "gigaparsecs")
  9984. },
  9985. {
  9986. name: "Eternity War",
  9987. height: math.unit(1.98e55, "yottaparsecs")
  9988. },
  9989. ]
  9990. ))
  9991. characterMakers.push(() => makeCharacter(
  9992. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9993. {
  9994. front: {
  9995. height: math.unit(5 + 8 / 12, "feet"),
  9996. weight: math.unit(63, "kg"),
  9997. name: "Front",
  9998. image: {
  9999. source: "./media/characters/xavier/front.svg",
  10000. extra: 944 / 883
  10001. }
  10002. },
  10003. frontStretch: {
  10004. height: math.unit(5 + 8 / 12, "feet"),
  10005. weight: math.unit(63, "kg"),
  10006. name: "Stretching",
  10007. image: {
  10008. source: "./media/characters/xavier/front-stretch.svg",
  10009. extra: 962 / 820
  10010. }
  10011. },
  10012. },
  10013. [
  10014. {
  10015. name: "Normal",
  10016. height: math.unit(5 + 8 / 12, "feet")
  10017. },
  10018. {
  10019. name: "Macro",
  10020. height: math.unit(100, "meters"),
  10021. default: true
  10022. },
  10023. {
  10024. name: "McLargeHuge",
  10025. height: math.unit(10, "miles")
  10026. },
  10027. ]
  10028. ))
  10029. characterMakers.push(() => makeCharacter(
  10030. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10031. {
  10032. front: {
  10033. height: math.unit(5 + 5 / 12, "feet"),
  10034. weight: math.unit(150, "lb"),
  10035. name: "Front",
  10036. image: {
  10037. source: "./media/characters/joshii/front.svg",
  10038. extra: 765 / 653,
  10039. bottom: 51 / 816
  10040. }
  10041. },
  10042. foot: {
  10043. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10044. name: "Foot",
  10045. image: {
  10046. source: "./media/characters/joshii/foot.svg"
  10047. }
  10048. },
  10049. },
  10050. [
  10051. {
  10052. name: "Micro",
  10053. height: math.unit(2, "inches")
  10054. },
  10055. {
  10056. name: "Normal",
  10057. height: math.unit(5 + 5 / 12, "feet")
  10058. },
  10059. {
  10060. name: "Macro",
  10061. height: math.unit(785, "feet"),
  10062. default: true
  10063. },
  10064. {
  10065. name: "Megamacro",
  10066. height: math.unit(24.5, "miles")
  10067. },
  10068. ]
  10069. ))
  10070. characterMakers.push(() => makeCharacter(
  10071. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10072. {
  10073. front: {
  10074. height: math.unit(6, "feet"),
  10075. weight: math.unit(150, "lb"),
  10076. name: "Front",
  10077. image: {
  10078. source: "./media/characters/goddess-elizabeth/front.svg",
  10079. extra: 1800 / 1525,
  10080. bottom: 0.005
  10081. }
  10082. },
  10083. foot: {
  10084. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10085. name: "Foot",
  10086. image: {
  10087. source: "./media/characters/goddess-elizabeth/foot.svg"
  10088. }
  10089. },
  10090. mouth: {
  10091. height: math.unit(6, "feet"),
  10092. name: "Mouth",
  10093. image: {
  10094. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10095. }
  10096. },
  10097. },
  10098. [
  10099. {
  10100. name: "Micro",
  10101. height: math.unit(12, "feet")
  10102. },
  10103. {
  10104. name: "Normal",
  10105. height: math.unit(80, "miles"),
  10106. default: true
  10107. },
  10108. {
  10109. name: "Macro",
  10110. height: math.unit(15000, "parsecs")
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10116. {
  10117. front: {
  10118. height: math.unit(5 + 9 / 12, "feet"),
  10119. weight: math.unit(144, "lb"),
  10120. name: "Front",
  10121. image: {
  10122. source: "./media/characters/kara/front.svg"
  10123. }
  10124. },
  10125. feet: {
  10126. height: math.unit(6 / 6.765, "feet"),
  10127. name: "Kara's Feet",
  10128. rename: true,
  10129. image: {
  10130. source: "./media/characters/kara/feet.svg"
  10131. }
  10132. },
  10133. },
  10134. [
  10135. {
  10136. name: "Normal",
  10137. height: math.unit(5 + 9 / 12, "feet")
  10138. },
  10139. {
  10140. name: "Macro",
  10141. height: math.unit(174, "feet"),
  10142. default: true
  10143. },
  10144. ]
  10145. ))
  10146. characterMakers.push(() => makeCharacter(
  10147. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10148. {
  10149. front: {
  10150. height: math.unit(18, "feet"),
  10151. weight: math.unit(4050, "lb"),
  10152. name: "Front",
  10153. image: {
  10154. source: "./media/characters/tyrone/front.svg",
  10155. extra: 2405 / 2270,
  10156. bottom: 182 / 2587
  10157. }
  10158. },
  10159. },
  10160. [
  10161. {
  10162. name: "Normal",
  10163. height: math.unit(18, "feet"),
  10164. default: true
  10165. },
  10166. {
  10167. name: "Macro",
  10168. height: math.unit(300, "feet")
  10169. },
  10170. {
  10171. name: "Megamacro",
  10172. height: math.unit(15, "km")
  10173. },
  10174. {
  10175. name: "Gigamacro",
  10176. height: math.unit(500, "km")
  10177. },
  10178. {
  10179. name: "Teramacro",
  10180. height: math.unit(0.5, "gigameters")
  10181. },
  10182. {
  10183. name: "Omnimacro",
  10184. height: math.unit(1e252, "yottauniverse")
  10185. },
  10186. ]
  10187. ))
  10188. characterMakers.push(() => makeCharacter(
  10189. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10190. {
  10191. front: {
  10192. height: math.unit(7 + 8 / 12, "feet"),
  10193. weight: math.unit(120, "lb"),
  10194. name: "Front",
  10195. image: {
  10196. source: "./media/characters/danny/front.svg",
  10197. extra: 1490 / 1350
  10198. }
  10199. },
  10200. back: {
  10201. height: math.unit(7 + 8 / 12, "feet"),
  10202. weight: math.unit(120, "lb"),
  10203. name: "Back",
  10204. image: {
  10205. source: "./media/characters/danny/back.svg",
  10206. extra: 1490 / 1350
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Normal",
  10213. height: math.unit(7 + 8 / 12, "feet"),
  10214. default: true
  10215. },
  10216. ]
  10217. ))
  10218. characterMakers.push(() => makeCharacter(
  10219. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10220. {
  10221. front: {
  10222. height: math.unit(3.5, "inches"),
  10223. weight: math.unit(19, "grams"),
  10224. name: "Front",
  10225. image: {
  10226. source: "./media/characters/mallow/front.svg",
  10227. extra: 471 / 431
  10228. }
  10229. },
  10230. back: {
  10231. height: math.unit(3.5, "inches"),
  10232. weight: math.unit(19, "grams"),
  10233. name: "Back",
  10234. image: {
  10235. source: "./media/characters/mallow/back.svg",
  10236. extra: 471 / 431
  10237. }
  10238. },
  10239. },
  10240. [
  10241. {
  10242. name: "Normal",
  10243. height: math.unit(3.5, "inches"),
  10244. default: true
  10245. },
  10246. ]
  10247. ))
  10248. characterMakers.push(() => makeCharacter(
  10249. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10250. {
  10251. front: {
  10252. height: math.unit(9, "feet"),
  10253. weight: math.unit(230, "kg"),
  10254. name: "Front",
  10255. image: {
  10256. source: "./media/characters/starry-aqua/front.svg"
  10257. }
  10258. },
  10259. back: {
  10260. height: math.unit(9, "feet"),
  10261. weight: math.unit(230, "kg"),
  10262. name: "Back",
  10263. image: {
  10264. source: "./media/characters/starry-aqua/back.svg"
  10265. }
  10266. },
  10267. hand: {
  10268. height: math.unit(9 * 0.1168, "feet"),
  10269. name: "Hand",
  10270. image: {
  10271. source: "./media/characters/starry-aqua/hand.svg"
  10272. }
  10273. },
  10274. foot: {
  10275. height: math.unit(9 * 0.18, "feet"),
  10276. name: "Foot",
  10277. image: {
  10278. source: "./media/characters/starry-aqua/foot.svg"
  10279. }
  10280. }
  10281. },
  10282. [
  10283. {
  10284. name: "Micro",
  10285. height: math.unit(3, "inches")
  10286. },
  10287. {
  10288. name: "Normal",
  10289. height: math.unit(9, "feet")
  10290. },
  10291. {
  10292. name: "Macro",
  10293. height: math.unit(300, "feet"),
  10294. default: true
  10295. },
  10296. {
  10297. name: "Megamacro",
  10298. height: math.unit(3200, "feet")
  10299. }
  10300. ]
  10301. ))
  10302. characterMakers.push(() => makeCharacter(
  10303. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10304. {
  10305. front: {
  10306. height: math.unit(15, "feet"),
  10307. weight: math.unit(5026, "lb"),
  10308. name: "Front",
  10309. image: {
  10310. source: "./media/characters/luka-towers/front.svg",
  10311. extra: 1269/1133,
  10312. bottom: 51/1320
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Normal",
  10319. height: math.unit(15, "feet"),
  10320. default: true
  10321. },
  10322. {
  10323. name: "Minimacro",
  10324. height: math.unit(25, "feet")
  10325. },
  10326. {
  10327. name: "Macro",
  10328. height: math.unit(320, "feet")
  10329. },
  10330. {
  10331. name: "Megamacro",
  10332. height: math.unit(35000, "feet")
  10333. },
  10334. {
  10335. name: "Gigamacro",
  10336. height: math.unit(4000, "miles")
  10337. },
  10338. {
  10339. name: "Teramacro",
  10340. height: math.unit(15000, "miles")
  10341. },
  10342. ]
  10343. ))
  10344. characterMakers.push(() => makeCharacter(
  10345. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10346. {
  10347. front: {
  10348. height: math.unit(6, "feet"),
  10349. weight: math.unit(150, "lb"),
  10350. name: "Front",
  10351. image: {
  10352. source: "./media/characters/natalie-nightring/front.svg",
  10353. extra: 1,
  10354. bottom: 0.06
  10355. }
  10356. },
  10357. },
  10358. [
  10359. {
  10360. name: "Uh Oh",
  10361. height: math.unit(0.1, "mm")
  10362. },
  10363. {
  10364. name: "Small",
  10365. height: math.unit(3, "inches")
  10366. },
  10367. {
  10368. name: "Human Scale",
  10369. height: math.unit(6, "feet")
  10370. },
  10371. {
  10372. name: "Librarian",
  10373. height: math.unit(50, "feet"),
  10374. default: true
  10375. },
  10376. {
  10377. name: "Immense",
  10378. height: math.unit(200, "miles")
  10379. },
  10380. ]
  10381. ))
  10382. characterMakers.push(() => makeCharacter(
  10383. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10384. {
  10385. front: {
  10386. height: math.unit(6, "feet"),
  10387. weight: math.unit(180, "lbs"),
  10388. name: "Front",
  10389. image: {
  10390. source: "./media/characters/danni-rosie/front.svg",
  10391. extra: 1260 / 1128,
  10392. bottom: 0.022
  10393. }
  10394. },
  10395. },
  10396. [
  10397. {
  10398. name: "Micro",
  10399. height: math.unit(2, "inches"),
  10400. default: true
  10401. },
  10402. ]
  10403. ))
  10404. characterMakers.push(() => makeCharacter(
  10405. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10406. {
  10407. front: {
  10408. height: math.unit(5 + 9 / 12, "feet"),
  10409. weight: math.unit(220, "lb"),
  10410. name: "Front",
  10411. image: {
  10412. source: "./media/characters/samantha-kruse/front.svg",
  10413. extra: (985 / 935),
  10414. bottom: 0.03
  10415. }
  10416. },
  10417. frontUndressed: {
  10418. height: math.unit(5 + 9 / 12, "feet"),
  10419. weight: math.unit(220, "lb"),
  10420. name: "Front (Undressed)",
  10421. image: {
  10422. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10423. extra: (973 / 923),
  10424. bottom: 0.025
  10425. }
  10426. },
  10427. fat: {
  10428. height: math.unit(5 + 9 / 12, "feet"),
  10429. weight: math.unit(900, "lb"),
  10430. name: "Front (Fat)",
  10431. image: {
  10432. source: "./media/characters/samantha-kruse/fat.svg",
  10433. extra: 2688 / 2561
  10434. }
  10435. },
  10436. },
  10437. [
  10438. {
  10439. name: "Normal",
  10440. height: math.unit(5 + 9 / 12, "feet"),
  10441. default: true
  10442. }
  10443. ]
  10444. ))
  10445. characterMakers.push(() => makeCharacter(
  10446. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10447. {
  10448. back: {
  10449. height: math.unit(5 + 4 / 12, "feet"),
  10450. weight: math.unit(4963, "lb"),
  10451. name: "Back",
  10452. image: {
  10453. source: "./media/characters/amelia-rosie/back.svg",
  10454. extra: 1113 / 963,
  10455. bottom: 0.01
  10456. }
  10457. },
  10458. },
  10459. [
  10460. {
  10461. name: "Level 0",
  10462. height: math.unit(5 + 4 / 12, "feet")
  10463. },
  10464. {
  10465. name: "Level 1",
  10466. height: math.unit(164597, "feet"),
  10467. default: true
  10468. },
  10469. {
  10470. name: "Level 2",
  10471. height: math.unit(956243, "miles")
  10472. },
  10473. {
  10474. name: "Level 3",
  10475. height: math.unit(29421709423, "miles")
  10476. },
  10477. {
  10478. name: "Level 4",
  10479. height: math.unit(154, "lightyears")
  10480. },
  10481. {
  10482. name: "Level 5",
  10483. height: math.unit(4738272, "lightyears")
  10484. },
  10485. {
  10486. name: "Level 6",
  10487. height: math.unit(145787152896, "lightyears")
  10488. },
  10489. ]
  10490. ))
  10491. characterMakers.push(() => makeCharacter(
  10492. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10493. {
  10494. front: {
  10495. height: math.unit(5 + 11 / 12, "feet"),
  10496. weight: math.unit(65, "kg"),
  10497. name: "Front",
  10498. image: {
  10499. source: "./media/characters/rook-kitara/front.svg",
  10500. extra: 1347 / 1274,
  10501. bottom: 0.005
  10502. }
  10503. },
  10504. },
  10505. [
  10506. {
  10507. name: "Totally Unfair",
  10508. height: math.unit(1.8, "mm")
  10509. },
  10510. {
  10511. name: "Lap Rookie",
  10512. height: math.unit(1.4, "feet")
  10513. },
  10514. {
  10515. name: "Normal",
  10516. height: math.unit(5 + 11 / 12, "feet"),
  10517. default: true
  10518. },
  10519. {
  10520. name: "How Did This Happen",
  10521. height: math.unit(80, "miles")
  10522. }
  10523. ]
  10524. ))
  10525. characterMakers.push(() => makeCharacter(
  10526. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10527. {
  10528. front: {
  10529. height: math.unit(7, "feet"),
  10530. weight: math.unit(300, "lb"),
  10531. name: "Front",
  10532. image: {
  10533. source: "./media/characters/pisces/front.svg",
  10534. extra: 2255 / 2115,
  10535. bottom: 0.03
  10536. }
  10537. },
  10538. back: {
  10539. height: math.unit(7, "feet"),
  10540. weight: math.unit(300, "lb"),
  10541. name: "Back",
  10542. image: {
  10543. source: "./media/characters/pisces/back.svg",
  10544. extra: 2146 / 2055,
  10545. bottom: 0.04
  10546. }
  10547. },
  10548. },
  10549. [
  10550. {
  10551. name: "Normal",
  10552. height: math.unit(7, "feet"),
  10553. default: true
  10554. },
  10555. {
  10556. name: "Swimming Pool",
  10557. height: math.unit(12.2, "meters")
  10558. },
  10559. {
  10560. name: "Olympic Swimming Pool",
  10561. height: math.unit(56.3, "meters")
  10562. },
  10563. {
  10564. name: "Lake Superior",
  10565. height: math.unit(93900, "meters")
  10566. },
  10567. {
  10568. name: "Mediterranean Sea",
  10569. height: math.unit(644457, "meters")
  10570. },
  10571. {
  10572. name: "World's Oceans",
  10573. height: math.unit(4567491, "meters")
  10574. },
  10575. ]
  10576. ))
  10577. characterMakers.push(() => makeCharacter(
  10578. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10579. {
  10580. front: {
  10581. height: math.unit(2.3, "meters"),
  10582. weight: math.unit(120, "kg"),
  10583. name: "Front",
  10584. image: {
  10585. source: "./media/characters/zelas/front.svg"
  10586. }
  10587. },
  10588. side: {
  10589. height: math.unit(2.3, "meters"),
  10590. weight: math.unit(120, "kg"),
  10591. name: "Side",
  10592. image: {
  10593. source: "./media/characters/zelas/side.svg"
  10594. }
  10595. },
  10596. back: {
  10597. height: math.unit(2.3, "meters"),
  10598. weight: math.unit(120, "kg"),
  10599. name: "Back",
  10600. image: {
  10601. source: "./media/characters/zelas/back.svg"
  10602. }
  10603. },
  10604. foot: {
  10605. height: math.unit(1.116, "feet"),
  10606. name: "Foot",
  10607. image: {
  10608. source: "./media/characters/zelas/foot.svg"
  10609. }
  10610. },
  10611. },
  10612. [
  10613. {
  10614. name: "Normal",
  10615. height: math.unit(2.3, "meters")
  10616. },
  10617. {
  10618. name: "Macro",
  10619. height: math.unit(30, "meters"),
  10620. default: true
  10621. },
  10622. ]
  10623. ))
  10624. characterMakers.push(() => makeCharacter(
  10625. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10626. {
  10627. front: {
  10628. height: math.unit(1, "inch"),
  10629. weight: math.unit(0.21, "grams"),
  10630. name: "Front",
  10631. image: {
  10632. source: "./media/characters/talbot/front.svg",
  10633. extra: 594 / 544
  10634. }
  10635. },
  10636. },
  10637. [
  10638. {
  10639. name: "Micro",
  10640. height: math.unit(1, "inch"),
  10641. default: true
  10642. },
  10643. ]
  10644. ))
  10645. characterMakers.push(() => makeCharacter(
  10646. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10647. {
  10648. front: {
  10649. height: math.unit(3 + 3 / 12, "feet"),
  10650. weight: math.unit(51.8, "lb"),
  10651. name: "Front",
  10652. image: {
  10653. source: "./media/characters/fliss/front.svg",
  10654. extra: 840 / 640
  10655. }
  10656. },
  10657. },
  10658. [
  10659. {
  10660. name: "Teeny Tiny",
  10661. height: math.unit(1, "mm")
  10662. },
  10663. {
  10664. name: "Small",
  10665. height: math.unit(1, "inch"),
  10666. default: true
  10667. },
  10668. {
  10669. name: "Standard Sylveon",
  10670. height: math.unit(3 + 3 / 12, "feet")
  10671. },
  10672. {
  10673. name: "Large Nuisance",
  10674. height: math.unit(33, "feet")
  10675. },
  10676. {
  10677. name: "City Filler",
  10678. height: math.unit(3000, "feet")
  10679. },
  10680. {
  10681. name: "New Horizon",
  10682. height: math.unit(6000, "miles")
  10683. },
  10684. ]
  10685. ))
  10686. characterMakers.push(() => makeCharacter(
  10687. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10688. {
  10689. front: {
  10690. height: math.unit(5, "cm"),
  10691. weight: math.unit(1.94, "g"),
  10692. name: "Front",
  10693. image: {
  10694. source: "./media/characters/fleta/front.svg",
  10695. extra: 835 / 803
  10696. }
  10697. },
  10698. back: {
  10699. height: math.unit(5, "cm"),
  10700. weight: math.unit(1.94, "g"),
  10701. name: "Back",
  10702. image: {
  10703. source: "./media/characters/fleta/back.svg",
  10704. extra: 835 / 803
  10705. }
  10706. },
  10707. },
  10708. [
  10709. {
  10710. name: "Micro",
  10711. height: math.unit(5, "cm"),
  10712. default: true
  10713. },
  10714. ]
  10715. ))
  10716. characterMakers.push(() => makeCharacter(
  10717. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10718. {
  10719. front: {
  10720. height: math.unit(6, "feet"),
  10721. weight: math.unit(225, "lb"),
  10722. name: "Front",
  10723. image: {
  10724. source: "./media/characters/dominic/front.svg",
  10725. extra: 1770 / 1620,
  10726. bottom: 0.025
  10727. }
  10728. },
  10729. back: {
  10730. height: math.unit(6, "feet"),
  10731. weight: math.unit(225, "lb"),
  10732. name: "Back",
  10733. image: {
  10734. source: "./media/characters/dominic/back.svg",
  10735. extra: 1745 / 1620,
  10736. bottom: 0.065
  10737. }
  10738. },
  10739. },
  10740. [
  10741. {
  10742. name: "Nano",
  10743. height: math.unit(0.1, "mm")
  10744. },
  10745. {
  10746. name: "Micro-",
  10747. height: math.unit(1, "mm")
  10748. },
  10749. {
  10750. name: "Micro",
  10751. height: math.unit(4, "inches")
  10752. },
  10753. {
  10754. name: "Normal",
  10755. height: math.unit(6 + 4 / 12, "feet"),
  10756. default: true
  10757. },
  10758. {
  10759. name: "Macro",
  10760. height: math.unit(115, "feet")
  10761. },
  10762. {
  10763. name: "Macro+",
  10764. height: math.unit(955, "feet")
  10765. },
  10766. {
  10767. name: "Megamacro",
  10768. height: math.unit(8990, "feet")
  10769. },
  10770. {
  10771. name: "Gigmacro",
  10772. height: math.unit(9310, "miles")
  10773. },
  10774. {
  10775. name: "Teramacro",
  10776. height: math.unit(1567005010, "miles")
  10777. },
  10778. {
  10779. name: "Examacro",
  10780. height: math.unit(1425, "parsecs")
  10781. },
  10782. ]
  10783. ))
  10784. characterMakers.push(() => makeCharacter(
  10785. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10786. {
  10787. front: {
  10788. height: math.unit(400, "feet"),
  10789. weight: math.unit(44444444, "lb"),
  10790. name: "Front",
  10791. image: {
  10792. source: "./media/characters/major-colonel/front.svg"
  10793. }
  10794. },
  10795. back: {
  10796. height: math.unit(400, "feet"),
  10797. weight: math.unit(44444444, "lb"),
  10798. name: "Back",
  10799. image: {
  10800. source: "./media/characters/major-colonel/back.svg"
  10801. }
  10802. },
  10803. },
  10804. [
  10805. {
  10806. name: "Macro",
  10807. height: math.unit(400, "feet"),
  10808. default: true
  10809. },
  10810. ]
  10811. ))
  10812. characterMakers.push(() => makeCharacter(
  10813. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10814. {
  10815. catFront: {
  10816. height: math.unit(6, "feet"),
  10817. weight: math.unit(120, "lb"),
  10818. name: "Front (Cat Side)",
  10819. image: {
  10820. source: "./media/characters/axel-lycan/cat-front.svg",
  10821. extra: 430 / 402,
  10822. bottom: 43 / 472.35
  10823. }
  10824. },
  10825. catBack: {
  10826. height: math.unit(6, "feet"),
  10827. weight: math.unit(120, "lb"),
  10828. name: "Back (Cat Side)",
  10829. image: {
  10830. source: "./media/characters/axel-lycan/cat-back.svg",
  10831. extra: 447 / 419,
  10832. bottom: 23.3 / 469
  10833. }
  10834. },
  10835. wolfFront: {
  10836. height: math.unit(6, "feet"),
  10837. weight: math.unit(120, "lb"),
  10838. name: "Front (Wolf Side)",
  10839. image: {
  10840. source: "./media/characters/axel-lycan/wolf-front.svg",
  10841. extra: 485 / 456,
  10842. bottom: 19 / 504
  10843. }
  10844. },
  10845. wolfBack: {
  10846. height: math.unit(6, "feet"),
  10847. weight: math.unit(120, "lb"),
  10848. name: "Back (Wolf Side)",
  10849. image: {
  10850. source: "./media/characters/axel-lycan/wolf-back.svg",
  10851. extra: 475 / 438,
  10852. bottom: 39.2 / 514
  10853. }
  10854. },
  10855. },
  10856. [
  10857. {
  10858. name: "Macro",
  10859. height: math.unit(1, "km"),
  10860. default: true
  10861. },
  10862. ]
  10863. ))
  10864. characterMakers.push(() => makeCharacter(
  10865. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10866. {
  10867. front: {
  10868. height: math.unit(5 + 9 / 12, "feet"),
  10869. weight: math.unit(175, "lb"),
  10870. name: "Front",
  10871. image: {
  10872. source: "./media/characters/vanrel-hyena/front.svg",
  10873. extra: 1086 / 1010,
  10874. bottom: 0.04
  10875. }
  10876. },
  10877. },
  10878. [
  10879. {
  10880. name: "Normal",
  10881. height: math.unit(5 + 9 / 12, "feet"),
  10882. default: true
  10883. },
  10884. ]
  10885. ))
  10886. characterMakers.push(() => makeCharacter(
  10887. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10888. {
  10889. front: {
  10890. height: math.unit(6, "feet"),
  10891. weight: math.unit(103, "lb"),
  10892. name: "Front",
  10893. image: {
  10894. source: "./media/characters/abbott-absol/front.svg",
  10895. extra: 2010 / 1842
  10896. }
  10897. },
  10898. },
  10899. [
  10900. {
  10901. name: "Megamicro",
  10902. height: math.unit(0.1, "mm")
  10903. },
  10904. {
  10905. name: "Micro",
  10906. height: math.unit(1, "inch")
  10907. },
  10908. {
  10909. name: "Normal",
  10910. height: math.unit(6, "feet"),
  10911. default: true
  10912. },
  10913. ]
  10914. ))
  10915. characterMakers.push(() => makeCharacter(
  10916. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10917. {
  10918. front: {
  10919. height: math.unit(6, "feet"),
  10920. weight: math.unit(264, "lb"),
  10921. name: "Front",
  10922. image: {
  10923. source: "./media/characters/hector/front.svg",
  10924. extra: 2280 / 2130,
  10925. bottom: 0.07
  10926. }
  10927. },
  10928. },
  10929. [
  10930. {
  10931. name: "Normal",
  10932. height: math.unit(12.25, "foot"),
  10933. default: true
  10934. },
  10935. {
  10936. name: "Macro",
  10937. height: math.unit(160, "feet")
  10938. },
  10939. ]
  10940. ))
  10941. characterMakers.push(() => makeCharacter(
  10942. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10943. {
  10944. front: {
  10945. height: math.unit(6, "feet"),
  10946. weight: math.unit(150, "lb"),
  10947. name: "Front",
  10948. image: {
  10949. source: "./media/characters/sal/front.svg",
  10950. extra: 1846 / 1699,
  10951. bottom: 0.04
  10952. }
  10953. },
  10954. },
  10955. [
  10956. {
  10957. name: "Megamacro",
  10958. height: math.unit(10, "miles"),
  10959. default: true
  10960. },
  10961. ]
  10962. ))
  10963. characterMakers.push(() => makeCharacter(
  10964. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10965. {
  10966. front: {
  10967. height: math.unit(3, "meters"),
  10968. weight: math.unit(450, "kg"),
  10969. name: "front",
  10970. image: {
  10971. source: "./media/characters/ranger/front.svg",
  10972. extra: 2401 / 2243,
  10973. bottom: 0.05
  10974. }
  10975. },
  10976. },
  10977. [
  10978. {
  10979. name: "Normal",
  10980. height: math.unit(3, "meters"),
  10981. default: true
  10982. },
  10983. ]
  10984. ))
  10985. characterMakers.push(() => makeCharacter(
  10986. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10987. {
  10988. front: {
  10989. height: math.unit(14, "feet"),
  10990. weight: math.unit(800, "kg"),
  10991. name: "Front",
  10992. image: {
  10993. source: "./media/characters/theresa/front.svg",
  10994. extra: 3575 / 3346,
  10995. bottom: 0.03
  10996. }
  10997. },
  10998. },
  10999. [
  11000. {
  11001. name: "Normal",
  11002. height: math.unit(14, "feet"),
  11003. default: true
  11004. },
  11005. ]
  11006. ))
  11007. characterMakers.push(() => makeCharacter(
  11008. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11009. {
  11010. front: {
  11011. height: math.unit(6, "feet"),
  11012. weight: math.unit(3, "kg"),
  11013. name: "Front",
  11014. image: {
  11015. source: "./media/characters/ine/front.svg",
  11016. extra: 678 / 539,
  11017. bottom: 0.023
  11018. }
  11019. },
  11020. },
  11021. [
  11022. {
  11023. name: "Normal",
  11024. height: math.unit(2.265, "feet"),
  11025. default: true
  11026. },
  11027. ]
  11028. ))
  11029. characterMakers.push(() => makeCharacter(
  11030. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11031. {
  11032. front: {
  11033. height: math.unit(5, "feet"),
  11034. weight: math.unit(30, "kg"),
  11035. name: "Front",
  11036. image: {
  11037. source: "./media/characters/vial/front.svg",
  11038. extra: 1365 / 1277,
  11039. bottom: 0.04
  11040. }
  11041. },
  11042. },
  11043. [
  11044. {
  11045. name: "Normal",
  11046. height: math.unit(5, "feet"),
  11047. default: true
  11048. },
  11049. ]
  11050. ))
  11051. characterMakers.push(() => makeCharacter(
  11052. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11053. {
  11054. side: {
  11055. height: math.unit(3.4, "meters"),
  11056. weight: math.unit(1000, "lb"),
  11057. name: "Side",
  11058. image: {
  11059. source: "./media/characters/rovoska/side.svg",
  11060. extra: 4403 / 1515
  11061. }
  11062. },
  11063. },
  11064. [
  11065. {
  11066. name: "Normal",
  11067. height: math.unit(3.4, "meters"),
  11068. default: true
  11069. },
  11070. ]
  11071. ))
  11072. characterMakers.push(() => makeCharacter(
  11073. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11074. {
  11075. front: {
  11076. height: math.unit(8, "feet"),
  11077. weight: math.unit(315, "lb"),
  11078. name: "Front",
  11079. image: {
  11080. source: "./media/characters/gunner-rotthbauer/front.svg"
  11081. }
  11082. },
  11083. back: {
  11084. height: math.unit(8, "feet"),
  11085. weight: math.unit(315, "lb"),
  11086. name: "Back",
  11087. image: {
  11088. source: "./media/characters/gunner-rotthbauer/back.svg"
  11089. }
  11090. },
  11091. },
  11092. [
  11093. {
  11094. name: "Micro",
  11095. height: math.unit(3.5, "inches")
  11096. },
  11097. {
  11098. name: "Normal",
  11099. height: math.unit(8, "feet"),
  11100. default: true
  11101. },
  11102. {
  11103. name: "Macro",
  11104. height: math.unit(250, "feet")
  11105. },
  11106. {
  11107. name: "Megamacro",
  11108. height: math.unit(1, "AU")
  11109. },
  11110. ]
  11111. ))
  11112. characterMakers.push(() => makeCharacter(
  11113. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11114. {
  11115. front: {
  11116. height: math.unit(5 + 5 / 12, "feet"),
  11117. weight: math.unit(140, "lb"),
  11118. name: "Front",
  11119. image: {
  11120. source: "./media/characters/allatia/front.svg",
  11121. extra: 1227 / 1180,
  11122. bottom: 0.027
  11123. }
  11124. },
  11125. },
  11126. [
  11127. {
  11128. name: "Normal",
  11129. height: math.unit(5 + 5 / 12, "feet")
  11130. },
  11131. {
  11132. name: "Macro",
  11133. height: math.unit(250, "feet"),
  11134. default: true
  11135. },
  11136. {
  11137. name: "Megamacro",
  11138. height: math.unit(8, "miles")
  11139. }
  11140. ]
  11141. ))
  11142. characterMakers.push(() => makeCharacter(
  11143. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11144. {
  11145. front: {
  11146. height: math.unit(6, "feet"),
  11147. weight: math.unit(120, "lb"),
  11148. name: "Front",
  11149. image: {
  11150. source: "./media/characters/tene/front.svg",
  11151. extra: 814/750,
  11152. bottom: 36/850
  11153. }
  11154. },
  11155. stomping: {
  11156. height: math.unit(2.025, "meters"),
  11157. weight: math.unit(120, "lb"),
  11158. name: "Stomping",
  11159. image: {
  11160. source: "./media/characters/tene/stomping.svg",
  11161. extra: 885/821,
  11162. bottom: 15/900
  11163. }
  11164. },
  11165. sitting: {
  11166. height: math.unit(1, "meter"),
  11167. weight: math.unit(120, "lb"),
  11168. name: "Sitting",
  11169. image: {
  11170. source: "./media/characters/tene/sitting.svg",
  11171. extra: 396/366,
  11172. bottom: 79/475
  11173. }
  11174. },
  11175. smiling: {
  11176. height: math.unit(1.2, "feet"),
  11177. name: "Smiling",
  11178. image: {
  11179. source: "./media/characters/tene/smiling.svg",
  11180. extra: 1364/1071,
  11181. bottom: 0/1364
  11182. }
  11183. },
  11184. smug: {
  11185. height: math.unit(1.3, "feet"),
  11186. name: "Smug",
  11187. image: {
  11188. source: "./media/characters/tene/smug.svg",
  11189. extra: 1323/1082,
  11190. bottom: 0/1323
  11191. }
  11192. },
  11193. feral: {
  11194. height: math.unit(3.9, "feet"),
  11195. weight: math.unit(250, "lb"),
  11196. name: "Feral",
  11197. image: {
  11198. source: "./media/characters/tene/feral.svg",
  11199. extra: 717 / 458,
  11200. bottom: 0.179
  11201. }
  11202. },
  11203. },
  11204. [
  11205. {
  11206. name: "Normal",
  11207. height: math.unit(6, "feet")
  11208. },
  11209. {
  11210. name: "Macro",
  11211. height: math.unit(300, "feet"),
  11212. default: true
  11213. },
  11214. {
  11215. name: "Megamacro",
  11216. height: math.unit(5, "miles")
  11217. },
  11218. ]
  11219. ))
  11220. characterMakers.push(() => makeCharacter(
  11221. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11222. {
  11223. side: {
  11224. height: math.unit(6, "feet"),
  11225. name: "Side",
  11226. image: {
  11227. source: "./media/characters/evander/side.svg",
  11228. extra: 877 / 477
  11229. }
  11230. },
  11231. },
  11232. [
  11233. {
  11234. name: "Normal",
  11235. height: math.unit(0.83, "meters"),
  11236. default: true
  11237. },
  11238. ]
  11239. ))
  11240. characterMakers.push(() => makeCharacter(
  11241. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11242. {
  11243. front: {
  11244. height: math.unit(12, "feet"),
  11245. weight: math.unit(1000, "lb"),
  11246. name: "Front",
  11247. image: {
  11248. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11249. extra: 1762 / 1611
  11250. }
  11251. },
  11252. back: {
  11253. height: math.unit(12, "feet"),
  11254. weight: math.unit(1000, "lb"),
  11255. name: "Back",
  11256. image: {
  11257. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11258. extra: 1762 / 1611
  11259. }
  11260. },
  11261. },
  11262. [
  11263. {
  11264. name: "Normal",
  11265. height: math.unit(12, "feet"),
  11266. default: true
  11267. },
  11268. {
  11269. name: "Kaiju",
  11270. height: math.unit(150, "feet")
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11276. {
  11277. front: {
  11278. height: math.unit(6, "feet"),
  11279. weight: math.unit(150, "lb"),
  11280. name: "Front",
  11281. image: {
  11282. source: "./media/characters/zero-alurus/front.svg"
  11283. }
  11284. },
  11285. back: {
  11286. height: math.unit(6, "feet"),
  11287. weight: math.unit(150, "lb"),
  11288. name: "Back",
  11289. image: {
  11290. source: "./media/characters/zero-alurus/back.svg"
  11291. }
  11292. },
  11293. },
  11294. [
  11295. {
  11296. name: "Normal",
  11297. height: math.unit(5 + 10 / 12, "feet")
  11298. },
  11299. {
  11300. name: "Macro",
  11301. height: math.unit(60, "feet"),
  11302. default: true
  11303. },
  11304. {
  11305. name: "Macro+",
  11306. height: math.unit(450, "feet")
  11307. },
  11308. ]
  11309. ))
  11310. characterMakers.push(() => makeCharacter(
  11311. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11312. {
  11313. front: {
  11314. height: math.unit(6, "feet"),
  11315. weight: math.unit(200, "lb"),
  11316. name: "Front",
  11317. image: {
  11318. source: "./media/characters/mega-shi/front.svg",
  11319. extra: 1279 / 1250,
  11320. bottom: 0.02
  11321. }
  11322. },
  11323. back: {
  11324. height: math.unit(6, "feet"),
  11325. weight: math.unit(200, "lb"),
  11326. name: "Back",
  11327. image: {
  11328. source: "./media/characters/mega-shi/back.svg",
  11329. extra: 1279 / 1250,
  11330. bottom: 0.02
  11331. }
  11332. },
  11333. },
  11334. [
  11335. {
  11336. name: "Micro",
  11337. height: math.unit(16 + 6 / 12, "feet")
  11338. },
  11339. {
  11340. name: "Third Dimension",
  11341. height: math.unit(40, "meters")
  11342. },
  11343. {
  11344. name: "Normal",
  11345. height: math.unit(660, "feet"),
  11346. default: true
  11347. },
  11348. {
  11349. name: "Megamacro",
  11350. height: math.unit(10, "miles")
  11351. },
  11352. {
  11353. name: "Planetary Launch",
  11354. height: math.unit(500, "miles")
  11355. },
  11356. {
  11357. name: "Interstellar",
  11358. height: math.unit(1e9, "miles")
  11359. },
  11360. {
  11361. name: "Leaving the Universe",
  11362. height: math.unit(1, "gigaparsec")
  11363. },
  11364. {
  11365. name: "Travelling Universes",
  11366. height: math.unit(30e15, "parsecs")
  11367. },
  11368. ]
  11369. ))
  11370. characterMakers.push(() => makeCharacter(
  11371. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11372. {
  11373. front: {
  11374. height: math.unit(5 + 4/12, "feet"),
  11375. weight: math.unit(120, "lb"),
  11376. name: "Front",
  11377. image: {
  11378. source: "./media/characters/odyssey/front.svg",
  11379. extra: 1747/1571,
  11380. bottom: 47/1794
  11381. }
  11382. },
  11383. side: {
  11384. height: math.unit(5.1, "feet"),
  11385. weight: math.unit(120, "lb"),
  11386. name: "Side",
  11387. image: {
  11388. source: "./media/characters/odyssey/side.svg",
  11389. extra: 1847/1619,
  11390. bottom: 47/1894
  11391. }
  11392. },
  11393. lounging: {
  11394. height: math.unit(1.464, "feet"),
  11395. weight: math.unit(120, "lb"),
  11396. name: "Lounging",
  11397. image: {
  11398. source: "./media/characters/odyssey/lounging.svg",
  11399. extra: 1235/837,
  11400. bottom: 551/1786
  11401. }
  11402. },
  11403. },
  11404. [
  11405. {
  11406. name: "Normal",
  11407. height: math.unit(5 + 4 / 12, "feet")
  11408. },
  11409. {
  11410. name: "Macro",
  11411. height: math.unit(1, "km")
  11412. },
  11413. {
  11414. name: "Megamacro",
  11415. height: math.unit(3000, "km")
  11416. },
  11417. {
  11418. name: "Gigamacro",
  11419. height: math.unit(1, "AU"),
  11420. default: true
  11421. },
  11422. {
  11423. name: "Omniversal",
  11424. height: math.unit(100e14, "lightyears")
  11425. },
  11426. ]
  11427. ))
  11428. characterMakers.push(() => makeCharacter(
  11429. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11430. {
  11431. front: {
  11432. height: math.unit(5 + 10/12, "feet"),
  11433. name: "Front",
  11434. image: {
  11435. source: "./media/characters/mekuto/front.svg",
  11436. extra: 875/835,
  11437. bottom: 46/921
  11438. }
  11439. },
  11440. },
  11441. [
  11442. {
  11443. name: "Minimicro",
  11444. height: math.unit(0.2, "inches")
  11445. },
  11446. {
  11447. name: "Micro",
  11448. height: math.unit(1.5, "inches")
  11449. },
  11450. {
  11451. name: "Normal",
  11452. height: math.unit(5 + 10 / 12, "feet"),
  11453. default: true
  11454. },
  11455. {
  11456. name: "Minimacro",
  11457. height: math.unit(17 + 9 / 12, "feet")
  11458. },
  11459. {
  11460. name: "Macro",
  11461. height: math.unit(177.5, "feet")
  11462. },
  11463. {
  11464. name: "Megamacro",
  11465. height: math.unit(152, "miles")
  11466. },
  11467. ]
  11468. ))
  11469. characterMakers.push(() => makeCharacter(
  11470. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11471. {
  11472. front: {
  11473. height: math.unit(6.5, "inches"),
  11474. weight: math.unit(13, "oz"),
  11475. name: "Front",
  11476. image: {
  11477. source: "./media/characters/dafydd-tomos/front.svg",
  11478. extra: 2990 / 2603,
  11479. bottom: 0.03
  11480. }
  11481. },
  11482. },
  11483. [
  11484. {
  11485. name: "Micro",
  11486. height: math.unit(6.5, "inches"),
  11487. default: true
  11488. },
  11489. ]
  11490. ))
  11491. characterMakers.push(() => makeCharacter(
  11492. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11493. {
  11494. front: {
  11495. height: math.unit(6, "feet"),
  11496. weight: math.unit(150, "lb"),
  11497. name: "Front",
  11498. image: {
  11499. source: "./media/characters/splinter/front.svg",
  11500. extra: 2990 / 2882,
  11501. bottom: 0.04
  11502. }
  11503. },
  11504. back: {
  11505. height: math.unit(6, "feet"),
  11506. weight: math.unit(150, "lb"),
  11507. name: "Back",
  11508. image: {
  11509. source: "./media/characters/splinter/back.svg",
  11510. extra: 2990 / 2882,
  11511. bottom: 0.04
  11512. }
  11513. },
  11514. },
  11515. [
  11516. {
  11517. name: "Normal",
  11518. height: math.unit(6, "feet")
  11519. },
  11520. {
  11521. name: "Macro",
  11522. height: math.unit(230, "meters"),
  11523. default: true
  11524. },
  11525. ]
  11526. ))
  11527. characterMakers.push(() => makeCharacter(
  11528. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11529. {
  11530. front: {
  11531. height: math.unit(4 + 10 / 12, "feet"),
  11532. weight: math.unit(480, "lb"),
  11533. name: "Front",
  11534. image: {
  11535. source: "./media/characters/snow-gabumon/front.svg",
  11536. extra: 1140 / 963,
  11537. bottom: 0.058
  11538. }
  11539. },
  11540. back: {
  11541. height: math.unit(4 + 10 / 12, "feet"),
  11542. weight: math.unit(480, "lb"),
  11543. name: "Back",
  11544. image: {
  11545. source: "./media/characters/snow-gabumon/back.svg",
  11546. extra: 1115 / 962,
  11547. bottom: 0.041
  11548. }
  11549. },
  11550. frontUndresed: {
  11551. height: math.unit(4 + 10 / 12, "feet"),
  11552. weight: math.unit(480, "lb"),
  11553. name: "Front (Undressed)",
  11554. image: {
  11555. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11556. extra: 1061 / 960,
  11557. bottom: 0.045
  11558. }
  11559. },
  11560. },
  11561. [
  11562. {
  11563. name: "Micro",
  11564. height: math.unit(1, "inch")
  11565. },
  11566. {
  11567. name: "Normal",
  11568. height: math.unit(4 + 10 / 12, "feet"),
  11569. default: true
  11570. },
  11571. {
  11572. name: "Macro",
  11573. height: math.unit(200, "feet")
  11574. },
  11575. {
  11576. name: "Megamacro",
  11577. height: math.unit(120, "miles")
  11578. },
  11579. {
  11580. name: "Gigamacro",
  11581. height: math.unit(9800, "miles")
  11582. },
  11583. ]
  11584. ))
  11585. characterMakers.push(() => makeCharacter(
  11586. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11587. {
  11588. front: {
  11589. height: math.unit(1.7, "meters"),
  11590. weight: math.unit(140, "lb"),
  11591. name: "Front",
  11592. image: {
  11593. source: "./media/characters/moody/front.svg",
  11594. extra: 3226 / 3007,
  11595. bottom: 0.087
  11596. }
  11597. },
  11598. },
  11599. [
  11600. {
  11601. name: "Micro",
  11602. height: math.unit(1, "mm")
  11603. },
  11604. {
  11605. name: "Normal",
  11606. height: math.unit(1.7, "meters"),
  11607. default: true
  11608. },
  11609. {
  11610. name: "Macro",
  11611. height: math.unit(80, "meters")
  11612. },
  11613. {
  11614. name: "Macro+",
  11615. height: math.unit(500, "meters")
  11616. },
  11617. ]
  11618. ))
  11619. characterMakers.push(() => makeCharacter(
  11620. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11621. {
  11622. front: {
  11623. height: math.unit(6, "feet"),
  11624. weight: math.unit(150, "lb"),
  11625. name: "Front",
  11626. image: {
  11627. source: "./media/characters/zyas/front.svg",
  11628. extra: 1180 / 1120,
  11629. bottom: 0.045
  11630. }
  11631. },
  11632. },
  11633. [
  11634. {
  11635. name: "Normal",
  11636. height: math.unit(10, "feet"),
  11637. default: true
  11638. },
  11639. {
  11640. name: "Macro",
  11641. height: math.unit(500, "feet")
  11642. },
  11643. {
  11644. name: "Megamacro",
  11645. height: math.unit(5, "miles")
  11646. },
  11647. {
  11648. name: "Teramacro",
  11649. height: math.unit(150000, "miles")
  11650. },
  11651. ]
  11652. ))
  11653. characterMakers.push(() => makeCharacter(
  11654. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11655. {
  11656. front: {
  11657. height: math.unit(6, "feet"),
  11658. weight: math.unit(150, "lb"),
  11659. name: "Front",
  11660. image: {
  11661. source: "./media/characters/cuon/front.svg",
  11662. extra: 1390 / 1320,
  11663. bottom: 0.008
  11664. }
  11665. },
  11666. },
  11667. [
  11668. {
  11669. name: "Micro",
  11670. height: math.unit(3, "inches")
  11671. },
  11672. {
  11673. name: "Normal",
  11674. height: math.unit(18 + 9 / 12, "feet"),
  11675. default: true
  11676. },
  11677. {
  11678. name: "Macro",
  11679. height: math.unit(360, "feet")
  11680. },
  11681. {
  11682. name: "Megamacro",
  11683. height: math.unit(360, "miles")
  11684. },
  11685. ]
  11686. ))
  11687. characterMakers.push(() => makeCharacter(
  11688. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11689. {
  11690. front: {
  11691. height: math.unit(2.4, "meters"),
  11692. weight: math.unit(70, "kg"),
  11693. name: "Front",
  11694. image: {
  11695. source: "./media/characters/nyanuxk/front.svg",
  11696. extra: 1172 / 1084,
  11697. bottom: 0.065
  11698. }
  11699. },
  11700. side: {
  11701. height: math.unit(2.4, "meters"),
  11702. weight: math.unit(70, "kg"),
  11703. name: "Side",
  11704. image: {
  11705. source: "./media/characters/nyanuxk/side.svg",
  11706. extra: 1190 / 1132,
  11707. bottom: 0.007
  11708. }
  11709. },
  11710. back: {
  11711. height: math.unit(2.4, "meters"),
  11712. weight: math.unit(70, "kg"),
  11713. name: "Back",
  11714. image: {
  11715. source: "./media/characters/nyanuxk/back.svg",
  11716. extra: 1200 / 1141,
  11717. bottom: 0.015
  11718. }
  11719. },
  11720. foot: {
  11721. height: math.unit(0.52, "meters"),
  11722. name: "Foot",
  11723. image: {
  11724. source: "./media/characters/nyanuxk/foot.svg"
  11725. }
  11726. },
  11727. },
  11728. [
  11729. {
  11730. name: "Micro",
  11731. height: math.unit(2, "cm")
  11732. },
  11733. {
  11734. name: "Normal",
  11735. height: math.unit(2.4, "meters"),
  11736. default: true
  11737. },
  11738. {
  11739. name: "Smaller Macro",
  11740. height: math.unit(120, "meters")
  11741. },
  11742. {
  11743. name: "Bigger Macro",
  11744. height: math.unit(1.2, "km")
  11745. },
  11746. {
  11747. name: "Megamacro",
  11748. height: math.unit(15, "kilometers")
  11749. },
  11750. {
  11751. name: "Gigamacro",
  11752. height: math.unit(2000, "km")
  11753. },
  11754. {
  11755. name: "Teramacro",
  11756. height: math.unit(500000, "km")
  11757. },
  11758. ]
  11759. ))
  11760. characterMakers.push(() => makeCharacter(
  11761. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11762. {
  11763. side: {
  11764. height: math.unit(6, "feet"),
  11765. name: "Side",
  11766. image: {
  11767. source: "./media/characters/ailbhe/side.svg",
  11768. extra: 757 / 464,
  11769. bottom: 0.041
  11770. }
  11771. },
  11772. },
  11773. [
  11774. {
  11775. name: "Normal",
  11776. height: math.unit(1.07, "meters"),
  11777. default: true
  11778. },
  11779. ]
  11780. ))
  11781. characterMakers.push(() => makeCharacter(
  11782. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11783. {
  11784. front: {
  11785. height: math.unit(6, "feet"),
  11786. weight: math.unit(120, "kg"),
  11787. name: "Front",
  11788. image: {
  11789. source: "./media/characters/zevulfius/front.svg",
  11790. extra: 965 / 903
  11791. }
  11792. },
  11793. side: {
  11794. height: math.unit(6, "feet"),
  11795. weight: math.unit(120, "kg"),
  11796. name: "Side",
  11797. image: {
  11798. source: "./media/characters/zevulfius/side.svg",
  11799. extra: 939 / 900
  11800. }
  11801. },
  11802. back: {
  11803. height: math.unit(6, "feet"),
  11804. weight: math.unit(120, "kg"),
  11805. name: "Back",
  11806. image: {
  11807. source: "./media/characters/zevulfius/back.svg",
  11808. extra: 918 / 854,
  11809. bottom: 0.005
  11810. }
  11811. },
  11812. foot: {
  11813. height: math.unit(6 / 3.72, "feet"),
  11814. name: "Foot",
  11815. image: {
  11816. source: "./media/characters/zevulfius/foot.svg"
  11817. }
  11818. },
  11819. },
  11820. [
  11821. {
  11822. name: "Macro",
  11823. height: math.unit(750, "meters")
  11824. },
  11825. {
  11826. name: "Megamacro",
  11827. height: math.unit(20, "km"),
  11828. default: true
  11829. },
  11830. {
  11831. name: "Gigamacro",
  11832. height: math.unit(2000, "km")
  11833. },
  11834. {
  11835. name: "Teramacro",
  11836. height: math.unit(250000, "km")
  11837. },
  11838. ]
  11839. ))
  11840. characterMakers.push(() => makeCharacter(
  11841. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11842. {
  11843. front: {
  11844. height: math.unit(100, "feet"),
  11845. weight: math.unit(350, "kg"),
  11846. name: "Front",
  11847. image: {
  11848. source: "./media/characters/rikes/front.svg",
  11849. extra: 1565 / 1483,
  11850. bottom: 0.017
  11851. }
  11852. },
  11853. },
  11854. [
  11855. {
  11856. name: "Macro",
  11857. height: math.unit(100, "feet"),
  11858. default: true
  11859. },
  11860. ]
  11861. ))
  11862. characterMakers.push(() => makeCharacter(
  11863. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11864. {
  11865. front: {
  11866. height: math.unit(8, "feet"),
  11867. weight: math.unit(356, "lb"),
  11868. name: "Front",
  11869. image: {
  11870. source: "./media/characters/adam-silver-mane/front.svg",
  11871. extra: 1036/937,
  11872. bottom: 63/1099
  11873. }
  11874. },
  11875. side: {
  11876. height: math.unit(8, "feet"),
  11877. weight: math.unit(356, "lb"),
  11878. name: "Side",
  11879. image: {
  11880. source: "./media/characters/adam-silver-mane/side.svg",
  11881. extra: 997/901,
  11882. bottom: 59/1056
  11883. }
  11884. },
  11885. frontNsfw: {
  11886. height: math.unit(8, "feet"),
  11887. weight: math.unit(356, "lb"),
  11888. name: "Front (NSFW)",
  11889. image: {
  11890. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11891. extra: 1036/937,
  11892. bottom: 63/1099
  11893. }
  11894. },
  11895. sideNsfw: {
  11896. height: math.unit(8, "feet"),
  11897. weight: math.unit(356, "lb"),
  11898. name: "Side (NSFW)",
  11899. image: {
  11900. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11901. extra: 997/901,
  11902. bottom: 59/1056
  11903. }
  11904. },
  11905. dick: {
  11906. height: math.unit(2.1, "feet"),
  11907. name: "Dick",
  11908. image: {
  11909. source: "./media/characters/adam-silver-mane/dick.svg"
  11910. }
  11911. },
  11912. taur: {
  11913. height: math.unit(16, "feet"),
  11914. weight: math.unit(1500, "kg"),
  11915. name: "Taur",
  11916. image: {
  11917. source: "./media/characters/adam-silver-mane/taur.svg",
  11918. extra: 1713 / 1571,
  11919. bottom: 0.01
  11920. }
  11921. },
  11922. },
  11923. [
  11924. {
  11925. name: "Normal",
  11926. height: math.unit(8, "feet")
  11927. },
  11928. {
  11929. name: "Minimacro",
  11930. height: math.unit(80, "feet")
  11931. },
  11932. {
  11933. name: "MDA",
  11934. height: math.unit(80, "meters")
  11935. },
  11936. {
  11937. name: "Macro",
  11938. height: math.unit(800, "feet"),
  11939. default: true
  11940. },
  11941. {
  11942. name: "Megamacro",
  11943. height: math.unit(8000, "feet")
  11944. },
  11945. {
  11946. name: "Gigamacro",
  11947. height: math.unit(800, "miles")
  11948. },
  11949. {
  11950. name: "Teramacro",
  11951. height: math.unit(80000, "miles")
  11952. },
  11953. {
  11954. name: "Celestial",
  11955. height: math.unit(8e6, "miles")
  11956. },
  11957. {
  11958. name: "Star Dragon",
  11959. height: math.unit(800000, "parsecs")
  11960. },
  11961. {
  11962. name: "Godly",
  11963. height: math.unit(800, "teraparsecs")
  11964. },
  11965. ]
  11966. ))
  11967. characterMakers.push(() => makeCharacter(
  11968. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11969. {
  11970. front: {
  11971. height: math.unit(6, "feet"),
  11972. weight: math.unit(150, "lb"),
  11973. name: "Front",
  11974. image: {
  11975. source: "./media/characters/ky'owin/front.svg",
  11976. extra: 3862/3053,
  11977. bottom: 74/3936
  11978. }
  11979. },
  11980. },
  11981. [
  11982. {
  11983. name: "Normal",
  11984. height: math.unit(6 + 8 / 12, "feet")
  11985. },
  11986. {
  11987. name: "Large",
  11988. height: math.unit(68, "feet")
  11989. },
  11990. {
  11991. name: "Macro",
  11992. height: math.unit(132, "feet")
  11993. },
  11994. {
  11995. name: "Macro+",
  11996. height: math.unit(340, "feet")
  11997. },
  11998. {
  11999. name: "Macro++",
  12000. height: math.unit(680, "feet"),
  12001. default: true
  12002. },
  12003. {
  12004. name: "Megamacro",
  12005. height: math.unit(1, "mile")
  12006. },
  12007. {
  12008. name: "Megamacro+",
  12009. height: math.unit(10, "miles")
  12010. },
  12011. ]
  12012. ))
  12013. characterMakers.push(() => makeCharacter(
  12014. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12015. {
  12016. front: {
  12017. height: math.unit(4, "feet"),
  12018. weight: math.unit(50, "lb"),
  12019. name: "Front",
  12020. image: {
  12021. source: "./media/characters/mal/front.svg",
  12022. extra: 785 / 724,
  12023. bottom: 0.07
  12024. }
  12025. },
  12026. },
  12027. [
  12028. {
  12029. name: "Micro",
  12030. height: math.unit(4, "inches")
  12031. },
  12032. {
  12033. name: "Normal",
  12034. height: math.unit(4, "feet"),
  12035. default: true
  12036. },
  12037. {
  12038. name: "Macro",
  12039. height: math.unit(200, "feet")
  12040. },
  12041. ]
  12042. ))
  12043. characterMakers.push(() => makeCharacter(
  12044. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12045. {
  12046. front: {
  12047. height: math.unit(6, "feet"),
  12048. weight: math.unit(150, "lb"),
  12049. name: "Front",
  12050. image: {
  12051. source: "./media/characters/jordan-deware/front.svg",
  12052. extra: 1191 / 1012
  12053. }
  12054. },
  12055. },
  12056. [
  12057. {
  12058. name: "Nano",
  12059. height: math.unit(0.01, "mm")
  12060. },
  12061. {
  12062. name: "Minimicro",
  12063. height: math.unit(1, "mm")
  12064. },
  12065. {
  12066. name: "Micro",
  12067. height: math.unit(0.5, "inches")
  12068. },
  12069. {
  12070. name: "Normal",
  12071. height: math.unit(4, "feet"),
  12072. default: true
  12073. },
  12074. {
  12075. name: "Minimacro",
  12076. height: math.unit(40, "meters")
  12077. },
  12078. {
  12079. name: "Small Macro",
  12080. height: math.unit(400, "meters")
  12081. },
  12082. {
  12083. name: "Macro",
  12084. height: math.unit(4, "miles")
  12085. },
  12086. {
  12087. name: "Megamacro",
  12088. height: math.unit(40, "miles")
  12089. },
  12090. {
  12091. name: "Megamacro+",
  12092. height: math.unit(400, "miles")
  12093. },
  12094. {
  12095. name: "Gigamacro",
  12096. height: math.unit(400000, "miles")
  12097. },
  12098. ]
  12099. ))
  12100. characterMakers.push(() => makeCharacter(
  12101. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12102. {
  12103. side: {
  12104. height: math.unit(6, "feet"),
  12105. weight: math.unit(150, "lb"),
  12106. name: "Side",
  12107. image: {
  12108. source: "./media/characters/kimiko/side.svg",
  12109. extra: 600 / 358
  12110. }
  12111. },
  12112. },
  12113. [
  12114. {
  12115. name: "Normal",
  12116. height: math.unit(15, "feet"),
  12117. default: true
  12118. },
  12119. {
  12120. name: "Macro",
  12121. height: math.unit(220, "feet")
  12122. },
  12123. {
  12124. name: "Macro+",
  12125. height: math.unit(1450, "feet")
  12126. },
  12127. {
  12128. name: "Megamacro",
  12129. height: math.unit(11500, "feet")
  12130. },
  12131. {
  12132. name: "Gigamacro",
  12133. height: math.unit(9500, "miles")
  12134. },
  12135. {
  12136. name: "Teramacro",
  12137. height: math.unit(2208005005, "miles")
  12138. },
  12139. {
  12140. name: "Examacro",
  12141. height: math.unit(2750, "parsecs")
  12142. },
  12143. {
  12144. name: "Zettamacro",
  12145. height: math.unit(101500, "parsecs")
  12146. },
  12147. ]
  12148. ))
  12149. characterMakers.push(() => makeCharacter(
  12150. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12151. {
  12152. front: {
  12153. height: math.unit(6, "feet"),
  12154. weight: math.unit(70, "kg"),
  12155. name: "Front",
  12156. image: {
  12157. source: "./media/characters/andrew-sleepy/front.svg"
  12158. }
  12159. },
  12160. side: {
  12161. height: math.unit(6, "feet"),
  12162. weight: math.unit(70, "kg"),
  12163. name: "Side",
  12164. image: {
  12165. source: "./media/characters/andrew-sleepy/side.svg"
  12166. }
  12167. },
  12168. },
  12169. [
  12170. {
  12171. name: "Micro",
  12172. height: math.unit(1, "mm"),
  12173. default: true
  12174. },
  12175. ]
  12176. ))
  12177. characterMakers.push(() => makeCharacter(
  12178. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12179. {
  12180. front: {
  12181. height: math.unit(6, "feet"),
  12182. weight: math.unit(150, "lb"),
  12183. name: "Front",
  12184. image: {
  12185. source: "./media/characters/judio/front.svg",
  12186. extra: 1258 / 1110
  12187. }
  12188. },
  12189. },
  12190. [
  12191. {
  12192. name: "Normal",
  12193. height: math.unit(5 + 6 / 12, "feet")
  12194. },
  12195. {
  12196. name: "Macro",
  12197. height: math.unit(1000, "feet"),
  12198. default: true
  12199. },
  12200. {
  12201. name: "Megamacro",
  12202. height: math.unit(10, "miles")
  12203. },
  12204. ]
  12205. ))
  12206. characterMakers.push(() => makeCharacter(
  12207. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12208. {
  12209. frontDressed: {
  12210. height: math.unit(6, "feet"),
  12211. weight: math.unit(68, "kg"),
  12212. name: "Front (Dressed)",
  12213. image: {
  12214. source: "./media/characters/nomaxice/front-dressed.svg",
  12215. extra: 1137/824,
  12216. bottom: 74/1211
  12217. }
  12218. },
  12219. frontShorts: {
  12220. height: math.unit(6, "feet"),
  12221. weight: math.unit(68, "kg"),
  12222. name: "Front (Shorts)",
  12223. image: {
  12224. source: "./media/characters/nomaxice/front-shorts.svg",
  12225. extra: 1137/824,
  12226. bottom: 74/1211
  12227. }
  12228. },
  12229. back: {
  12230. height: math.unit(6, "feet"),
  12231. weight: math.unit(68, "kg"),
  12232. name: "Back",
  12233. image: {
  12234. source: "./media/characters/nomaxice/back.svg",
  12235. extra: 822/786,
  12236. bottom: 39/861
  12237. }
  12238. },
  12239. hand: {
  12240. height: math.unit(0.565, "feet"),
  12241. name: "Hand",
  12242. image: {
  12243. source: "./media/characters/nomaxice/hand.svg"
  12244. }
  12245. },
  12246. foot: {
  12247. height: math.unit(1, "feet"),
  12248. name: "Foot",
  12249. image: {
  12250. source: "./media/characters/nomaxice/foot.svg"
  12251. }
  12252. },
  12253. },
  12254. [
  12255. {
  12256. name: "Micro",
  12257. height: math.unit(8, "cm")
  12258. },
  12259. {
  12260. name: "Norm",
  12261. height: math.unit(1.82, "m")
  12262. },
  12263. {
  12264. name: "Norm+",
  12265. height: math.unit(8.8, "feet"),
  12266. default: true
  12267. },
  12268. {
  12269. name: "Big",
  12270. height: math.unit(8, "meters")
  12271. },
  12272. {
  12273. name: "Macro",
  12274. height: math.unit(18, "meters")
  12275. },
  12276. {
  12277. name: "Macro+",
  12278. height: math.unit(88, "meters")
  12279. },
  12280. ]
  12281. ))
  12282. characterMakers.push(() => makeCharacter(
  12283. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12284. {
  12285. front: {
  12286. height: math.unit(12, "feet"),
  12287. weight: math.unit(1.5, "tons"),
  12288. name: "Front",
  12289. image: {
  12290. source: "./media/characters/dydros/front.svg",
  12291. extra: 863 / 800,
  12292. bottom: 0.015
  12293. }
  12294. },
  12295. back: {
  12296. height: math.unit(12, "feet"),
  12297. weight: math.unit(1.5, "tons"),
  12298. name: "Back",
  12299. image: {
  12300. source: "./media/characters/dydros/back.svg",
  12301. extra: 900 / 843,
  12302. bottom: 0.005
  12303. }
  12304. },
  12305. },
  12306. [
  12307. {
  12308. name: "Normal",
  12309. height: math.unit(12, "feet"),
  12310. default: true
  12311. },
  12312. ]
  12313. ))
  12314. characterMakers.push(() => makeCharacter(
  12315. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12316. {
  12317. front: {
  12318. height: math.unit(6, "feet"),
  12319. weight: math.unit(100, "kg"),
  12320. name: "Front",
  12321. image: {
  12322. source: "./media/characters/riggi/front.svg",
  12323. extra: 5787 / 5303
  12324. }
  12325. },
  12326. hyper: {
  12327. height: math.unit(6 * 5 / 3, "feet"),
  12328. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12329. name: "Hyper",
  12330. image: {
  12331. source: "./media/characters/riggi/hyper.svg",
  12332. extra: 3595 / 3485
  12333. }
  12334. },
  12335. },
  12336. [
  12337. {
  12338. name: "Small Macro",
  12339. height: math.unit(50, "feet")
  12340. },
  12341. {
  12342. name: "Default",
  12343. height: math.unit(200, "feet"),
  12344. default: true
  12345. },
  12346. {
  12347. name: "Loom",
  12348. height: math.unit(10000, "feet")
  12349. },
  12350. {
  12351. name: "Cruising Altitude",
  12352. height: math.unit(30000, "feet")
  12353. },
  12354. {
  12355. name: "Megamacro",
  12356. height: math.unit(100, "miles")
  12357. },
  12358. {
  12359. name: "Continent Sized",
  12360. height: math.unit(2800, "miles")
  12361. },
  12362. {
  12363. name: "Earth Sized",
  12364. height: math.unit(8000, "miles")
  12365. },
  12366. ]
  12367. ))
  12368. characterMakers.push(() => makeCharacter(
  12369. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12370. {
  12371. front: {
  12372. height: math.unit(6, "feet"),
  12373. weight: math.unit(250, "lb"),
  12374. name: "Front",
  12375. image: {
  12376. source: "./media/characters/alexi/front.svg",
  12377. extra: 3483 / 3291,
  12378. bottom: 0.04
  12379. }
  12380. },
  12381. back: {
  12382. height: math.unit(6, "feet"),
  12383. weight: math.unit(250, "lb"),
  12384. name: "Back",
  12385. image: {
  12386. source: "./media/characters/alexi/back.svg",
  12387. extra: 3533 / 3356,
  12388. bottom: 0.021
  12389. }
  12390. },
  12391. frontTransforming: {
  12392. height: math.unit(8.58, "feet"),
  12393. weight: math.unit(1300, "lb"),
  12394. name: "Transforming",
  12395. image: {
  12396. source: "./media/characters/alexi/front-transforming.svg",
  12397. extra: 437 / 409,
  12398. bottom: 19 / 458.66
  12399. }
  12400. },
  12401. frontTransformed: {
  12402. height: math.unit(12.5, "feet"),
  12403. weight: math.unit(4000, "lb"),
  12404. name: "Transformed",
  12405. image: {
  12406. source: "./media/characters/alexi/front-transformed.svg",
  12407. extra: 639 / 614,
  12408. bottom: 30.55 / 671
  12409. }
  12410. },
  12411. },
  12412. [
  12413. {
  12414. name: "Normal",
  12415. height: math.unit(14, "feet"),
  12416. default: true
  12417. },
  12418. {
  12419. name: "Minimacro",
  12420. height: math.unit(30, "meters")
  12421. },
  12422. {
  12423. name: "Macro",
  12424. height: math.unit(500, "meters")
  12425. },
  12426. {
  12427. name: "Megamacro",
  12428. height: math.unit(9000, "km")
  12429. },
  12430. {
  12431. name: "Teramacro",
  12432. height: math.unit(384000, "km")
  12433. },
  12434. ]
  12435. ))
  12436. characterMakers.push(() => makeCharacter(
  12437. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12438. {
  12439. front: {
  12440. height: math.unit(6, "feet"),
  12441. weight: math.unit(150, "lb"),
  12442. name: "Front",
  12443. image: {
  12444. source: "./media/characters/kayroo/front.svg",
  12445. extra: 1153 / 1038,
  12446. bottom: 0.06
  12447. }
  12448. },
  12449. foot: {
  12450. height: math.unit(6, "feet"),
  12451. weight: math.unit(150, "lb"),
  12452. name: "Foot",
  12453. image: {
  12454. source: "./media/characters/kayroo/foot.svg"
  12455. }
  12456. },
  12457. },
  12458. [
  12459. {
  12460. name: "Normal",
  12461. height: math.unit(8, "feet"),
  12462. default: true
  12463. },
  12464. {
  12465. name: "Minimacro",
  12466. height: math.unit(250, "feet")
  12467. },
  12468. {
  12469. name: "Macro",
  12470. height: math.unit(2800, "feet")
  12471. },
  12472. {
  12473. name: "Megamacro",
  12474. height: math.unit(5200, "feet")
  12475. },
  12476. {
  12477. name: "Gigamacro",
  12478. height: math.unit(27000, "feet")
  12479. },
  12480. {
  12481. name: "Omega",
  12482. height: math.unit(45000, "feet")
  12483. },
  12484. ]
  12485. ))
  12486. characterMakers.push(() => makeCharacter(
  12487. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12488. {
  12489. front: {
  12490. height: math.unit(18, "feet"),
  12491. weight: math.unit(5800, "lb"),
  12492. name: "Front",
  12493. image: {
  12494. source: "./media/characters/rhys/front.svg",
  12495. extra: 3386 / 3090,
  12496. bottom: 0.07
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Normal",
  12503. height: math.unit(18, "feet"),
  12504. default: true
  12505. },
  12506. {
  12507. name: "Working Size",
  12508. height: math.unit(200, "feet")
  12509. },
  12510. {
  12511. name: "Demolition Size",
  12512. height: math.unit(2000, "feet")
  12513. },
  12514. {
  12515. name: "Maximum Licensed Size",
  12516. height: math.unit(5, "miles")
  12517. },
  12518. {
  12519. name: "Maximum Observed Size",
  12520. height: math.unit(10, "yottameters")
  12521. },
  12522. ]
  12523. ))
  12524. characterMakers.push(() => makeCharacter(
  12525. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12526. {
  12527. front: {
  12528. height: math.unit(6, "feet"),
  12529. weight: math.unit(250, "lb"),
  12530. name: "Front",
  12531. image: {
  12532. source: "./media/characters/toto/front.svg",
  12533. extra: 527 / 479,
  12534. bottom: 0.05
  12535. }
  12536. },
  12537. },
  12538. [
  12539. {
  12540. name: "Micro",
  12541. height: math.unit(3, "feet")
  12542. },
  12543. {
  12544. name: "Normal",
  12545. height: math.unit(10, "feet")
  12546. },
  12547. {
  12548. name: "Macro",
  12549. height: math.unit(150, "feet"),
  12550. default: true
  12551. },
  12552. {
  12553. name: "Megamacro",
  12554. height: math.unit(1200, "feet")
  12555. },
  12556. ]
  12557. ))
  12558. characterMakers.push(() => makeCharacter(
  12559. { name: "King", species: ["lion"], tags: ["anthro"] },
  12560. {
  12561. back: {
  12562. height: math.unit(6, "feet"),
  12563. weight: math.unit(150, "lb"),
  12564. name: "Back",
  12565. image: {
  12566. source: "./media/characters/king/back.svg"
  12567. }
  12568. },
  12569. },
  12570. [
  12571. {
  12572. name: "Micro",
  12573. height: math.unit(2, "inches")
  12574. },
  12575. {
  12576. name: "Normal",
  12577. height: math.unit(8, "feet")
  12578. },
  12579. {
  12580. name: "Macro",
  12581. height: math.unit(200, "feet"),
  12582. default: true
  12583. },
  12584. {
  12585. name: "Megamacro",
  12586. height: math.unit(50, "miles")
  12587. },
  12588. ]
  12589. ))
  12590. characterMakers.push(() => makeCharacter(
  12591. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12592. {
  12593. front: {
  12594. height: math.unit(11, "feet"),
  12595. weight: math.unit(1400, "lb"),
  12596. name: "Front",
  12597. image: {
  12598. source: "./media/characters/cordite/front.svg",
  12599. extra: 1919/1827,
  12600. bottom: 40/1959
  12601. }
  12602. },
  12603. side: {
  12604. height: math.unit(11, "feet"),
  12605. weight: math.unit(1400, "lb"),
  12606. name: "Side",
  12607. image: {
  12608. source: "./media/characters/cordite/side.svg",
  12609. extra: 1908/1793,
  12610. bottom: 38/1946
  12611. }
  12612. },
  12613. back: {
  12614. height: math.unit(11, "feet"),
  12615. weight: math.unit(1400, "lb"),
  12616. name: "Back",
  12617. image: {
  12618. source: "./media/characters/cordite/back.svg",
  12619. extra: 1938/1837,
  12620. bottom: 10/1948
  12621. }
  12622. },
  12623. feral: {
  12624. height: math.unit(2, "feet"),
  12625. weight: math.unit(90, "lb"),
  12626. name: "Feral",
  12627. image: {
  12628. source: "./media/characters/cordite/feral.svg",
  12629. extra: 1260 / 755,
  12630. bottom: 0.05
  12631. }
  12632. },
  12633. },
  12634. [
  12635. {
  12636. name: "Normal",
  12637. height: math.unit(11, "feet"),
  12638. default: true
  12639. },
  12640. ]
  12641. ))
  12642. characterMakers.push(() => makeCharacter(
  12643. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12644. {
  12645. front: {
  12646. height: math.unit(6, "feet"),
  12647. weight: math.unit(150, "lb"),
  12648. name: "Front",
  12649. image: {
  12650. source: "./media/characters/pianostrong/front.svg",
  12651. extra: 6577 / 6254,
  12652. bottom: 0.02
  12653. }
  12654. },
  12655. side: {
  12656. height: math.unit(6, "feet"),
  12657. weight: math.unit(150, "lb"),
  12658. name: "Side",
  12659. image: {
  12660. source: "./media/characters/pianostrong/side.svg",
  12661. extra: 6106 / 5730
  12662. }
  12663. },
  12664. back: {
  12665. height: math.unit(6, "feet"),
  12666. weight: math.unit(150, "lb"),
  12667. name: "Back",
  12668. image: {
  12669. source: "./media/characters/pianostrong/back.svg",
  12670. extra: 6085 / 5733,
  12671. bottom: 0.01
  12672. }
  12673. },
  12674. },
  12675. [
  12676. {
  12677. name: "Macro",
  12678. height: math.unit(100, "feet")
  12679. },
  12680. {
  12681. name: "Macro+",
  12682. height: math.unit(300, "feet"),
  12683. default: true
  12684. },
  12685. {
  12686. name: "Macro++",
  12687. height: math.unit(1000, "feet")
  12688. },
  12689. ]
  12690. ))
  12691. characterMakers.push(() => makeCharacter(
  12692. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12693. {
  12694. front: {
  12695. height: math.unit(6, "feet"),
  12696. weight: math.unit(150, "lb"),
  12697. name: "Front",
  12698. image: {
  12699. source: "./media/characters/kona/front.svg",
  12700. extra: 2960 / 2629,
  12701. bottom: 0.005
  12702. }
  12703. },
  12704. },
  12705. [
  12706. {
  12707. name: "Normal",
  12708. height: math.unit(11 + 8 / 12, "feet")
  12709. },
  12710. {
  12711. name: "Macro",
  12712. height: math.unit(850, "feet"),
  12713. default: true
  12714. },
  12715. {
  12716. name: "Macro+",
  12717. height: math.unit(1.5, "km"),
  12718. default: true
  12719. },
  12720. {
  12721. name: "Megamacro",
  12722. height: math.unit(80, "miles")
  12723. },
  12724. {
  12725. name: "Gigamacro",
  12726. height: math.unit(3500, "miles")
  12727. },
  12728. ]
  12729. ))
  12730. characterMakers.push(() => makeCharacter(
  12731. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12732. {
  12733. side: {
  12734. height: math.unit(1.9, "meters"),
  12735. weight: math.unit(326, "kg"),
  12736. name: "Side",
  12737. image: {
  12738. source: "./media/characters/levi/side.svg",
  12739. extra: 1704 / 1334,
  12740. bottom: 0.02
  12741. }
  12742. },
  12743. },
  12744. [
  12745. {
  12746. name: "Normal",
  12747. height: math.unit(1.9, "meters"),
  12748. default: true
  12749. },
  12750. {
  12751. name: "Macro",
  12752. height: math.unit(20, "meters")
  12753. },
  12754. {
  12755. name: "Macro+",
  12756. height: math.unit(200, "meters")
  12757. },
  12758. {
  12759. name: "Megamacro",
  12760. height: math.unit(2, "km")
  12761. },
  12762. {
  12763. name: "Megamacro+",
  12764. height: math.unit(20, "km")
  12765. },
  12766. {
  12767. name: "Gigamacro",
  12768. height: math.unit(2500, "km")
  12769. },
  12770. {
  12771. name: "Gigamacro+",
  12772. height: math.unit(120000, "km")
  12773. },
  12774. {
  12775. name: "Teramacro",
  12776. height: math.unit(7.77e6, "km")
  12777. },
  12778. ]
  12779. ))
  12780. characterMakers.push(() => makeCharacter(
  12781. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12782. {
  12783. front: {
  12784. height: math.unit(6 + 4/12, "feet"),
  12785. weight: math.unit(190, "lb"),
  12786. name: "Front",
  12787. image: {
  12788. source: "./media/characters/bmc/front.svg",
  12789. extra: 1626/1472,
  12790. bottom: 79/1705
  12791. }
  12792. },
  12793. back: {
  12794. height: math.unit(6 + 4/12, "feet"),
  12795. weight: math.unit(190, "lb"),
  12796. name: "Back",
  12797. image: {
  12798. source: "./media/characters/bmc/back.svg",
  12799. extra: 1640/1479,
  12800. bottom: 45/1685
  12801. }
  12802. },
  12803. frontArmor: {
  12804. height: math.unit(6 + 4/12, "feet"),
  12805. weight: math.unit(190, "lb"),
  12806. name: "Front-armor",
  12807. image: {
  12808. source: "./media/characters/bmc/front-armor.svg",
  12809. extra: 1538/1468,
  12810. bottom: 79/1617
  12811. }
  12812. },
  12813. },
  12814. [
  12815. {
  12816. name: "Human-sized",
  12817. height: math.unit(6 + 4 / 12, "feet")
  12818. },
  12819. {
  12820. name: "Interactive Size",
  12821. height: math.unit(25, "feet")
  12822. },
  12823. {
  12824. name: "Small",
  12825. height: math.unit(250, "feet")
  12826. },
  12827. {
  12828. name: "Normal",
  12829. height: math.unit(1250, "feet"),
  12830. default: true
  12831. },
  12832. {
  12833. name: "Good Day",
  12834. height: math.unit(88, "miles")
  12835. },
  12836. {
  12837. name: "Largest Measured Size",
  12838. height: math.unit(105.960, "galaxies")
  12839. },
  12840. ]
  12841. ))
  12842. characterMakers.push(() => makeCharacter(
  12843. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12844. {
  12845. front: {
  12846. height: math.unit(20, "feet"),
  12847. weight: math.unit(2016, "kg"),
  12848. name: "Front",
  12849. image: {
  12850. source: "./media/characters/sven-the-kaiju/front.svg",
  12851. extra: 1277/1250,
  12852. bottom: 35/1312
  12853. }
  12854. },
  12855. mouth: {
  12856. height: math.unit(1.85, "feet"),
  12857. name: "Mouth",
  12858. image: {
  12859. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12860. }
  12861. },
  12862. },
  12863. [
  12864. {
  12865. name: "Fairy",
  12866. height: math.unit(6, "inches")
  12867. },
  12868. {
  12869. name: "Normal",
  12870. height: math.unit(20, "feet"),
  12871. default: true
  12872. },
  12873. {
  12874. name: "Rampage",
  12875. height: math.unit(200, "feet")
  12876. },
  12877. {
  12878. name: "Archfey Forest Guardian",
  12879. height: math.unit(1, "mile")
  12880. },
  12881. ]
  12882. ))
  12883. characterMakers.push(() => makeCharacter(
  12884. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12885. {
  12886. front: {
  12887. height: math.unit(4, "meters"),
  12888. weight: math.unit(2, "tons"),
  12889. name: "Front",
  12890. image: {
  12891. source: "./media/characters/marik/front.svg",
  12892. extra: 1057 / 1003,
  12893. bottom: 0.08
  12894. }
  12895. },
  12896. },
  12897. [
  12898. {
  12899. name: "Normal",
  12900. height: math.unit(4, "meters"),
  12901. default: true
  12902. },
  12903. {
  12904. name: "Macro",
  12905. height: math.unit(20, "meters")
  12906. },
  12907. {
  12908. name: "Megamacro",
  12909. height: math.unit(50, "km")
  12910. },
  12911. {
  12912. name: "Gigamacro",
  12913. height: math.unit(100, "km")
  12914. },
  12915. {
  12916. name: "Alpha Macro",
  12917. height: math.unit(7.88e7, "yottameters")
  12918. },
  12919. ]
  12920. ))
  12921. characterMakers.push(() => makeCharacter(
  12922. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12923. {
  12924. front: {
  12925. height: math.unit(6, "feet"),
  12926. weight: math.unit(110, "lb"),
  12927. name: "Front",
  12928. image: {
  12929. source: "./media/characters/mel/front.svg",
  12930. extra: 736 / 617,
  12931. bottom: 0.017
  12932. }
  12933. },
  12934. },
  12935. [
  12936. {
  12937. name: "Pico",
  12938. height: math.unit(3, "pm")
  12939. },
  12940. {
  12941. name: "Nano",
  12942. height: math.unit(3, "nm")
  12943. },
  12944. {
  12945. name: "Micro",
  12946. height: math.unit(0.3, "mm"),
  12947. default: true
  12948. },
  12949. {
  12950. name: "Micro+",
  12951. height: math.unit(3, "mm")
  12952. },
  12953. {
  12954. name: "Normal",
  12955. height: math.unit(5 + 10.5 / 12, "feet")
  12956. },
  12957. ]
  12958. ))
  12959. characterMakers.push(() => makeCharacter(
  12960. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12961. {
  12962. kaiju: {
  12963. height: math.unit(1.75, "meters"),
  12964. weight: math.unit(55, "kg"),
  12965. name: "Kaiju",
  12966. image: {
  12967. source: "./media/characters/lykonous/kaiju.svg",
  12968. extra: 1055 / 946,
  12969. bottom: 0.135
  12970. }
  12971. },
  12972. },
  12973. [
  12974. {
  12975. name: "Normal",
  12976. height: math.unit(2.5, "meters"),
  12977. default: true
  12978. },
  12979. {
  12980. name: "Kaiju Dragon",
  12981. height: math.unit(60, "meters")
  12982. },
  12983. {
  12984. name: "Mega Kaiju",
  12985. height: math.unit(120, "km")
  12986. },
  12987. {
  12988. name: "Giga Kaiju",
  12989. height: math.unit(200, "megameters")
  12990. },
  12991. {
  12992. name: "Terra Kaiju",
  12993. height: math.unit(400, "gigameters")
  12994. },
  12995. {
  12996. name: "Kaiju Dragon God",
  12997. height: math.unit(13000, "exaparsecs")
  12998. },
  12999. ]
  13000. ))
  13001. characterMakers.push(() => makeCharacter(
  13002. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13003. {
  13004. front: {
  13005. height: math.unit(6, "feet"),
  13006. weight: math.unit(150, "lb"),
  13007. name: "Front",
  13008. image: {
  13009. source: "./media/characters/blü/front.svg",
  13010. extra: 1883 / 1564,
  13011. bottom: 0.031
  13012. }
  13013. },
  13014. },
  13015. [
  13016. {
  13017. name: "Normal",
  13018. height: math.unit(13, "feet"),
  13019. default: true
  13020. },
  13021. {
  13022. name: "Big Boi",
  13023. height: math.unit(150, "meters")
  13024. },
  13025. {
  13026. name: "Mini Stomper",
  13027. height: math.unit(300, "meters")
  13028. },
  13029. {
  13030. name: "Macro",
  13031. height: math.unit(1000, "meters")
  13032. },
  13033. {
  13034. name: "Megamacro",
  13035. height: math.unit(11000, "meters")
  13036. },
  13037. {
  13038. name: "Gigamacro",
  13039. height: math.unit(11000, "km")
  13040. },
  13041. {
  13042. name: "Teramacro",
  13043. height: math.unit(420000, "km")
  13044. },
  13045. {
  13046. name: "Examacro",
  13047. height: math.unit(120, "parsecs")
  13048. },
  13049. {
  13050. name: "God Tho",
  13051. height: math.unit(98000000000, "parsecs")
  13052. },
  13053. ]
  13054. ))
  13055. characterMakers.push(() => makeCharacter(
  13056. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13057. {
  13058. taurFront: {
  13059. height: math.unit(6, "feet"),
  13060. weight: math.unit(200, "lb"),
  13061. name: "Taur (Front)",
  13062. image: {
  13063. source: "./media/characters/scales/taur-front.svg",
  13064. extra: 1,
  13065. bottom: 0.05
  13066. }
  13067. },
  13068. taurBack: {
  13069. height: math.unit(6, "feet"),
  13070. weight: math.unit(200, "lb"),
  13071. name: "Taur (Back)",
  13072. image: {
  13073. source: "./media/characters/scales/taur-back.svg",
  13074. extra: 1,
  13075. bottom: 0.08
  13076. }
  13077. },
  13078. anthro: {
  13079. height: math.unit(6 * 7 / 12, "feet"),
  13080. weight: math.unit(100, "lb"),
  13081. name: "Anthro",
  13082. image: {
  13083. source: "./media/characters/scales/anthro.svg",
  13084. extra: 1,
  13085. bottom: 0.06
  13086. }
  13087. },
  13088. },
  13089. [
  13090. {
  13091. name: "Normal",
  13092. height: math.unit(12, "feet"),
  13093. default: true
  13094. },
  13095. ]
  13096. ))
  13097. characterMakers.push(() => makeCharacter(
  13098. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13099. {
  13100. front: {
  13101. height: math.unit(6, "feet"),
  13102. weight: math.unit(150, "lb"),
  13103. name: "Front",
  13104. image: {
  13105. source: "./media/characters/koragos/front.svg",
  13106. extra: 841 / 794,
  13107. bottom: 0.035
  13108. }
  13109. },
  13110. back: {
  13111. height: math.unit(6, "feet"),
  13112. weight: math.unit(150, "lb"),
  13113. name: "Back",
  13114. image: {
  13115. source: "./media/characters/koragos/back.svg",
  13116. extra: 841 / 810,
  13117. bottom: 0.022
  13118. }
  13119. },
  13120. },
  13121. [
  13122. {
  13123. name: "Normal",
  13124. height: math.unit(6 + 11 / 12, "feet"),
  13125. default: true
  13126. },
  13127. {
  13128. name: "Macro",
  13129. height: math.unit(490, "feet")
  13130. },
  13131. {
  13132. name: "Megamacro",
  13133. height: math.unit(10, "miles")
  13134. },
  13135. {
  13136. name: "Gigamacro",
  13137. height: math.unit(50, "miles")
  13138. },
  13139. ]
  13140. ))
  13141. characterMakers.push(() => makeCharacter(
  13142. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13143. {
  13144. front: {
  13145. height: math.unit(6, "feet"),
  13146. weight: math.unit(250, "lb"),
  13147. name: "Front",
  13148. image: {
  13149. source: "./media/characters/xylrem/front.svg",
  13150. extra: 3323 / 3050,
  13151. bottom: 0.065
  13152. }
  13153. },
  13154. },
  13155. [
  13156. {
  13157. name: "Micro",
  13158. height: math.unit(4, "feet")
  13159. },
  13160. {
  13161. name: "Normal",
  13162. height: math.unit(16, "feet"),
  13163. default: true
  13164. },
  13165. {
  13166. name: "Macro",
  13167. height: math.unit(2720, "feet")
  13168. },
  13169. {
  13170. name: "Megamacro",
  13171. height: math.unit(25000, "miles")
  13172. },
  13173. ]
  13174. ))
  13175. characterMakers.push(() => makeCharacter(
  13176. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13177. {
  13178. front: {
  13179. height: math.unit(8, "feet"),
  13180. weight: math.unit(250, "kg"),
  13181. name: "Front",
  13182. image: {
  13183. source: "./media/characters/ikideru/front.svg",
  13184. extra: 930 / 870,
  13185. bottom: 0.087
  13186. }
  13187. },
  13188. back: {
  13189. height: math.unit(8, "feet"),
  13190. weight: math.unit(250, "kg"),
  13191. name: "Back",
  13192. image: {
  13193. source: "./media/characters/ikideru/back.svg",
  13194. extra: 919 / 852,
  13195. bottom: 0.055
  13196. }
  13197. },
  13198. },
  13199. [
  13200. {
  13201. name: "Rare",
  13202. height: math.unit(8, "feet"),
  13203. default: true
  13204. },
  13205. {
  13206. name: "Playful Loom",
  13207. height: math.unit(80, "feet")
  13208. },
  13209. {
  13210. name: "City Leaner",
  13211. height: math.unit(230, "feet")
  13212. },
  13213. {
  13214. name: "Megamacro",
  13215. height: math.unit(2500, "feet")
  13216. },
  13217. {
  13218. name: "Gigamacro",
  13219. height: math.unit(26400, "feet")
  13220. },
  13221. {
  13222. name: "Tectonic Shifter",
  13223. height: math.unit(1.7, "megameters")
  13224. },
  13225. {
  13226. name: "Planet Carer",
  13227. height: math.unit(21, "megameters")
  13228. },
  13229. {
  13230. name: "God",
  13231. height: math.unit(11157.22, "parsecs")
  13232. },
  13233. ]
  13234. ))
  13235. characterMakers.push(() => makeCharacter(
  13236. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13237. {
  13238. front: {
  13239. height: math.unit(6, "feet"),
  13240. weight: math.unit(120, "lb"),
  13241. name: "Front",
  13242. image: {
  13243. source: "./media/characters/neo/front.svg"
  13244. }
  13245. },
  13246. },
  13247. [
  13248. {
  13249. name: "Micro",
  13250. height: math.unit(2, "inches"),
  13251. default: true
  13252. },
  13253. {
  13254. name: "Human Size",
  13255. height: math.unit(5 + 8 / 12, "feet")
  13256. },
  13257. ]
  13258. ))
  13259. characterMakers.push(() => makeCharacter(
  13260. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13261. {
  13262. front: {
  13263. height: math.unit(13 + 10 / 12, "feet"),
  13264. weight: math.unit(5320, "lb"),
  13265. name: "Front",
  13266. image: {
  13267. source: "./media/characters/chauncey-chantz/front.svg",
  13268. extra: 1587 / 1435,
  13269. bottom: 0.02
  13270. }
  13271. },
  13272. },
  13273. [
  13274. {
  13275. name: "Normal",
  13276. height: math.unit(13 + 10 / 12, "feet"),
  13277. default: true
  13278. },
  13279. {
  13280. name: "Macro",
  13281. height: math.unit(45, "feet")
  13282. },
  13283. {
  13284. name: "Megamacro",
  13285. height: math.unit(250, "miles")
  13286. },
  13287. {
  13288. name: "Planetary",
  13289. height: math.unit(10000, "miles")
  13290. },
  13291. {
  13292. name: "Galactic",
  13293. height: math.unit(40000, "parsecs")
  13294. },
  13295. {
  13296. name: "Universal",
  13297. height: math.unit(1, "yottameter")
  13298. },
  13299. ]
  13300. ))
  13301. characterMakers.push(() => makeCharacter(
  13302. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13303. {
  13304. front: {
  13305. height: math.unit(6, "feet"),
  13306. weight: math.unit(150, "lb"),
  13307. name: "Front",
  13308. image: {
  13309. source: "./media/characters/epifox/front.svg",
  13310. extra: 1,
  13311. bottom: 0.075
  13312. }
  13313. },
  13314. },
  13315. [
  13316. {
  13317. name: "Micro",
  13318. height: math.unit(6, "inches")
  13319. },
  13320. {
  13321. name: "Normal",
  13322. height: math.unit(12, "feet"),
  13323. default: true
  13324. },
  13325. {
  13326. name: "Macro",
  13327. height: math.unit(3810, "feet")
  13328. },
  13329. {
  13330. name: "Megamacro",
  13331. height: math.unit(500, "miles")
  13332. },
  13333. ]
  13334. ))
  13335. characterMakers.push(() => makeCharacter(
  13336. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13337. {
  13338. front: {
  13339. height: math.unit(1.8796, "m"),
  13340. weight: math.unit(230, "lb"),
  13341. name: "Front",
  13342. image: {
  13343. source: "./media/characters/colin-t/front.svg",
  13344. extra: 1272 / 1193,
  13345. bottom: 0.07
  13346. }
  13347. },
  13348. },
  13349. [
  13350. {
  13351. name: "Micro",
  13352. height: math.unit(0.571, "meters")
  13353. },
  13354. {
  13355. name: "Normal",
  13356. height: math.unit(1.8796, "meters"),
  13357. default: true
  13358. },
  13359. {
  13360. name: "Tall",
  13361. height: math.unit(4, "meters")
  13362. },
  13363. {
  13364. name: "Macro",
  13365. height: math.unit(67.241, "meters")
  13366. },
  13367. {
  13368. name: "Megamacro",
  13369. height: math.unit(371.856, "meters")
  13370. },
  13371. {
  13372. name: "Planetary",
  13373. height: math.unit(12631.5689, "km")
  13374. },
  13375. ]
  13376. ))
  13377. characterMakers.push(() => makeCharacter(
  13378. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13379. {
  13380. front: {
  13381. height: math.unit(1.85, "meters"),
  13382. weight: math.unit(80, "kg"),
  13383. name: "Front",
  13384. image: {
  13385. source: "./media/characters/matvei/front.svg",
  13386. extra: 456/447,
  13387. bottom: 8/464
  13388. }
  13389. },
  13390. back: {
  13391. height: math.unit(1.85, "meters"),
  13392. weight: math.unit(80, "kg"),
  13393. name: "Back",
  13394. image: {
  13395. source: "./media/characters/matvei/back.svg",
  13396. extra: 434/427,
  13397. bottom: 11/445
  13398. }
  13399. },
  13400. },
  13401. [
  13402. {
  13403. name: "Normal",
  13404. height: math.unit(1.85, "meters"),
  13405. default: true
  13406. },
  13407. ]
  13408. ))
  13409. characterMakers.push(() => makeCharacter(
  13410. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13411. {
  13412. front: {
  13413. height: math.unit(5 + 9 / 12, "feet"),
  13414. weight: math.unit(70, "lb"),
  13415. name: "Front",
  13416. image: {
  13417. source: "./media/characters/quincy/front.svg",
  13418. extra: 3041 / 2751
  13419. }
  13420. },
  13421. back: {
  13422. height: math.unit(5 + 9 / 12, "feet"),
  13423. weight: math.unit(70, "lb"),
  13424. name: "Back",
  13425. image: {
  13426. source: "./media/characters/quincy/back.svg",
  13427. extra: 3041 / 2751
  13428. }
  13429. },
  13430. flying: {
  13431. height: math.unit(5 + 4 / 12, "feet"),
  13432. weight: math.unit(70, "lb"),
  13433. name: "Flying",
  13434. image: {
  13435. source: "./media/characters/quincy/flying.svg",
  13436. extra: 1044 / 930
  13437. }
  13438. },
  13439. },
  13440. [
  13441. {
  13442. name: "Micro",
  13443. height: math.unit(3, "cm")
  13444. },
  13445. {
  13446. name: "Normal",
  13447. height: math.unit(5 + 9 / 12, "feet")
  13448. },
  13449. {
  13450. name: "Macro",
  13451. height: math.unit(200, "meters"),
  13452. default: true
  13453. },
  13454. {
  13455. name: "Megamacro",
  13456. height: math.unit(1000, "meters")
  13457. },
  13458. ]
  13459. ))
  13460. characterMakers.push(() => makeCharacter(
  13461. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13462. {
  13463. front: {
  13464. height: math.unit(3 + 11/12, "feet"),
  13465. weight: math.unit(50, "lb"),
  13466. name: "Front",
  13467. image: {
  13468. source: "./media/characters/vanrel/front.svg",
  13469. extra: 1104/949,
  13470. bottom: 52/1156
  13471. }
  13472. },
  13473. back: {
  13474. height: math.unit(3 + 11/12, "feet"),
  13475. weight: math.unit(50, "lb"),
  13476. name: "Back",
  13477. image: {
  13478. source: "./media/characters/vanrel/back.svg",
  13479. extra: 1119/976,
  13480. bottom: 37/1156
  13481. }
  13482. },
  13483. tome: {
  13484. height: math.unit(1.35, "feet"),
  13485. weight: math.unit(10, "lb"),
  13486. name: "Vanrel's Tome",
  13487. rename: true,
  13488. image: {
  13489. source: "./media/characters/vanrel/tome.svg"
  13490. }
  13491. },
  13492. beans: {
  13493. height: math.unit(0.89, "feet"),
  13494. name: "Beans",
  13495. image: {
  13496. source: "./media/characters/vanrel/beans.svg"
  13497. }
  13498. },
  13499. },
  13500. [
  13501. {
  13502. name: "Normal",
  13503. height: math.unit(3 + 11/12, "feet"),
  13504. default: true
  13505. },
  13506. ]
  13507. ))
  13508. characterMakers.push(() => makeCharacter(
  13509. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13510. {
  13511. front: {
  13512. height: math.unit(7 + 5 / 12, "feet"),
  13513. name: "Front",
  13514. image: {
  13515. source: "./media/characters/kuiper-vanrel/front.svg",
  13516. extra: 1219/1169,
  13517. bottom: 69/1288
  13518. }
  13519. },
  13520. back: {
  13521. height: math.unit(7 + 5 / 12, "feet"),
  13522. name: "Back",
  13523. image: {
  13524. source: "./media/characters/kuiper-vanrel/back.svg",
  13525. extra: 1236/1193,
  13526. bottom: 27/1263
  13527. }
  13528. },
  13529. foot: {
  13530. height: math.unit(0.55, "meters"),
  13531. name: "Foot",
  13532. image: {
  13533. source: "./media/characters/kuiper-vanrel/foot.svg",
  13534. }
  13535. },
  13536. battle: {
  13537. height: math.unit(6.824, "feet"),
  13538. name: "Battle",
  13539. image: {
  13540. source: "./media/characters/kuiper-vanrel/battle.svg",
  13541. extra: 1466 / 1327,
  13542. bottom: 29 / 1492.5
  13543. }
  13544. },
  13545. meerkui: {
  13546. height: math.unit(18, "inches"),
  13547. name: "Meerkui",
  13548. image: {
  13549. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13550. extra: 1354/1289,
  13551. bottom: 69/1423
  13552. }
  13553. },
  13554. },
  13555. [
  13556. {
  13557. name: "Normal",
  13558. height: math.unit(7 + 5 / 12, "feet"),
  13559. default: true
  13560. },
  13561. ]
  13562. ))
  13563. characterMakers.push(() => makeCharacter(
  13564. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13565. {
  13566. front: {
  13567. height: math.unit(8 + 5 / 12, "feet"),
  13568. name: "Front",
  13569. image: {
  13570. source: "./media/characters/keset-vanrel/front.svg",
  13571. extra: 1231/1148,
  13572. bottom: 82/1313
  13573. }
  13574. },
  13575. back: {
  13576. height: math.unit(8 + 5 / 12, "feet"),
  13577. name: "Back",
  13578. image: {
  13579. source: "./media/characters/keset-vanrel/back.svg",
  13580. extra: 1240/1174,
  13581. bottom: 33/1273
  13582. }
  13583. },
  13584. hand: {
  13585. height: math.unit(0.6, "meters"),
  13586. name: "Hand",
  13587. image: {
  13588. source: "./media/characters/keset-vanrel/hand.svg"
  13589. }
  13590. },
  13591. foot: {
  13592. height: math.unit(0.94978, "meters"),
  13593. name: "Foot",
  13594. image: {
  13595. source: "./media/characters/keset-vanrel/foot.svg"
  13596. }
  13597. },
  13598. battle: {
  13599. height: math.unit(7.408, "feet"),
  13600. name: "Battle",
  13601. image: {
  13602. source: "./media/characters/keset-vanrel/battle.svg",
  13603. extra: 1890 / 1386,
  13604. bottom: 73.28 / 1970
  13605. }
  13606. },
  13607. },
  13608. [
  13609. {
  13610. name: "Normal",
  13611. height: math.unit(8 + 5 / 12, "feet"),
  13612. default: true
  13613. },
  13614. ]
  13615. ))
  13616. characterMakers.push(() => makeCharacter(
  13617. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13618. {
  13619. front: {
  13620. height: math.unit(6, "feet"),
  13621. weight: math.unit(150, "lb"),
  13622. name: "Front",
  13623. image: {
  13624. source: "./media/characters/neos/front.svg",
  13625. extra: 1696 / 992,
  13626. bottom: 0.14
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Normal",
  13633. height: math.unit(54, "cm"),
  13634. default: true
  13635. },
  13636. {
  13637. name: "Macro",
  13638. height: math.unit(100, "m")
  13639. },
  13640. {
  13641. name: "Megamacro",
  13642. height: math.unit(10, "km")
  13643. },
  13644. {
  13645. name: "Megamacro+",
  13646. height: math.unit(100, "km")
  13647. },
  13648. {
  13649. name: "Gigamacro",
  13650. height: math.unit(100, "Mm")
  13651. },
  13652. {
  13653. name: "Teramacro",
  13654. height: math.unit(100, "Gm")
  13655. },
  13656. {
  13657. name: "Examacro",
  13658. height: math.unit(100, "Em")
  13659. },
  13660. {
  13661. name: "Godly",
  13662. height: math.unit(10000, "Ym")
  13663. },
  13664. {
  13665. name: "Beyond Godly",
  13666. height: math.unit(25, "multiverses")
  13667. },
  13668. ]
  13669. ))
  13670. characterMakers.push(() => makeCharacter(
  13671. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13672. {
  13673. feminine: {
  13674. height: math.unit(5, "feet"),
  13675. weight: math.unit(100, "lb"),
  13676. name: "Feminine",
  13677. image: {
  13678. source: "./media/characters/sammy-mouse/feminine.svg",
  13679. extra: 2526 / 2425,
  13680. bottom: 0.123
  13681. }
  13682. },
  13683. masculine: {
  13684. height: math.unit(5, "feet"),
  13685. weight: math.unit(100, "lb"),
  13686. name: "Masculine",
  13687. image: {
  13688. source: "./media/characters/sammy-mouse/masculine.svg",
  13689. extra: 2526 / 2425,
  13690. bottom: 0.123
  13691. }
  13692. },
  13693. },
  13694. [
  13695. {
  13696. name: "Micro",
  13697. height: math.unit(5, "inches")
  13698. },
  13699. {
  13700. name: "Normal",
  13701. height: math.unit(5, "feet"),
  13702. default: true
  13703. },
  13704. {
  13705. name: "Macro",
  13706. height: math.unit(60, "feet")
  13707. },
  13708. ]
  13709. ))
  13710. characterMakers.push(() => makeCharacter(
  13711. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13712. {
  13713. front: {
  13714. height: math.unit(4, "feet"),
  13715. weight: math.unit(50, "lb"),
  13716. name: "Front",
  13717. image: {
  13718. source: "./media/characters/kole/front.svg",
  13719. extra: 1423 / 1303,
  13720. bottom: 0.025
  13721. }
  13722. },
  13723. back: {
  13724. height: math.unit(4, "feet"),
  13725. weight: math.unit(50, "lb"),
  13726. name: "Back",
  13727. image: {
  13728. source: "./media/characters/kole/back.svg",
  13729. extra: 1426 / 1280,
  13730. bottom: 0.02
  13731. }
  13732. },
  13733. },
  13734. [
  13735. {
  13736. name: "Normal",
  13737. height: math.unit(4, "feet"),
  13738. default: true
  13739. },
  13740. ]
  13741. ))
  13742. characterMakers.push(() => makeCharacter(
  13743. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13744. {
  13745. front: {
  13746. height: math.unit(2.5, "feet"),
  13747. weight: math.unit(32, "lb"),
  13748. name: "Front",
  13749. image: {
  13750. source: "./media/characters/rufran/front.svg",
  13751. extra: 1313/885,
  13752. bottom: 94/1407
  13753. }
  13754. },
  13755. side: {
  13756. height: math.unit(2.5, "feet"),
  13757. weight: math.unit(32, "lb"),
  13758. name: "Side",
  13759. image: {
  13760. source: "./media/characters/rufran/side.svg",
  13761. extra: 1109/852,
  13762. bottom: 118/1227
  13763. }
  13764. },
  13765. back: {
  13766. height: math.unit(2.5, "feet"),
  13767. weight: math.unit(32, "lb"),
  13768. name: "Back",
  13769. image: {
  13770. source: "./media/characters/rufran/back.svg",
  13771. extra: 1280/878,
  13772. bottom: 131/1411
  13773. }
  13774. },
  13775. mouth: {
  13776. height: math.unit(1.13, "feet"),
  13777. name: "Mouth",
  13778. image: {
  13779. source: "./media/characters/rufran/mouth.svg"
  13780. }
  13781. },
  13782. foot: {
  13783. height: math.unit(1.33, "feet"),
  13784. name: "Foot",
  13785. image: {
  13786. source: "./media/characters/rufran/foot.svg"
  13787. }
  13788. },
  13789. koboldFront: {
  13790. height: math.unit(2 + 6 / 12, "feet"),
  13791. weight: math.unit(20, "lb"),
  13792. name: "Front (Kobold)",
  13793. image: {
  13794. source: "./media/characters/rufran/kobold-front.svg",
  13795. extra: 2041 / 1839,
  13796. bottom: 0.055
  13797. }
  13798. },
  13799. koboldBack: {
  13800. height: math.unit(2 + 6 / 12, "feet"),
  13801. weight: math.unit(20, "lb"),
  13802. name: "Back (Kobold)",
  13803. image: {
  13804. source: "./media/characters/rufran/kobold-back.svg",
  13805. extra: 2054 / 1839,
  13806. bottom: 0.01
  13807. }
  13808. },
  13809. koboldHand: {
  13810. height: math.unit(0.2166, "meters"),
  13811. name: "Hand (Kobold)",
  13812. image: {
  13813. source: "./media/characters/rufran/kobold-hand.svg"
  13814. }
  13815. },
  13816. koboldFoot: {
  13817. height: math.unit(0.185, "meters"),
  13818. name: "Foot (Kobold)",
  13819. image: {
  13820. source: "./media/characters/rufran/kobold-foot.svg"
  13821. }
  13822. },
  13823. },
  13824. [
  13825. {
  13826. name: "Micro",
  13827. height: math.unit(1, "inch")
  13828. },
  13829. {
  13830. name: "Normal",
  13831. height: math.unit(2 + 6 / 12, "feet"),
  13832. default: true
  13833. },
  13834. {
  13835. name: "Big",
  13836. height: math.unit(60, "feet")
  13837. },
  13838. {
  13839. name: "Macro",
  13840. height: math.unit(325, "feet")
  13841. },
  13842. ]
  13843. ))
  13844. characterMakers.push(() => makeCharacter(
  13845. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13846. {
  13847. front: {
  13848. height: math.unit(0.3, "meters"),
  13849. weight: math.unit(3.5, "kg"),
  13850. name: "Front",
  13851. image: {
  13852. source: "./media/characters/chip/front.svg",
  13853. extra: 748 / 674
  13854. }
  13855. },
  13856. },
  13857. [
  13858. {
  13859. name: "Micro",
  13860. height: math.unit(1, "inch"),
  13861. default: true
  13862. },
  13863. ]
  13864. ))
  13865. characterMakers.push(() => makeCharacter(
  13866. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13867. {
  13868. side: {
  13869. height: math.unit(2.3, "meters"),
  13870. weight: math.unit(3500, "lb"),
  13871. name: "Side",
  13872. image: {
  13873. source: "./media/characters/torvid/side.svg",
  13874. extra: 1972 / 722,
  13875. bottom: 0.035
  13876. }
  13877. },
  13878. },
  13879. [
  13880. {
  13881. name: "Normal",
  13882. height: math.unit(2.3, "meters"),
  13883. default: true
  13884. },
  13885. ]
  13886. ))
  13887. characterMakers.push(() => makeCharacter(
  13888. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13889. {
  13890. front: {
  13891. height: math.unit(2, "meters"),
  13892. weight: math.unit(150.5, "kg"),
  13893. name: "Front",
  13894. image: {
  13895. source: "./media/characters/susan/front.svg",
  13896. extra: 693 / 635,
  13897. bottom: 0.05
  13898. }
  13899. },
  13900. },
  13901. [
  13902. {
  13903. name: "Megamacro",
  13904. height: math.unit(505, "miles"),
  13905. default: true
  13906. },
  13907. ]
  13908. ))
  13909. characterMakers.push(() => makeCharacter(
  13910. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13911. {
  13912. front: {
  13913. height: math.unit(6, "feet"),
  13914. weight: math.unit(150, "lb"),
  13915. name: "Front",
  13916. image: {
  13917. source: "./media/characters/raindrops/front.svg",
  13918. extra: 2655 / 2461,
  13919. bottom: 49 / 2705
  13920. }
  13921. },
  13922. back: {
  13923. height: math.unit(6, "feet"),
  13924. weight: math.unit(150, "lb"),
  13925. name: "Back",
  13926. image: {
  13927. source: "./media/characters/raindrops/back.svg",
  13928. extra: 2574 / 2400,
  13929. bottom: 65 / 2634
  13930. }
  13931. },
  13932. },
  13933. [
  13934. {
  13935. name: "Micro",
  13936. height: math.unit(6, "inches")
  13937. },
  13938. {
  13939. name: "Normal",
  13940. height: math.unit(6 + 2 / 12, "feet")
  13941. },
  13942. {
  13943. name: "Macro",
  13944. height: math.unit(131, "feet"),
  13945. default: true
  13946. },
  13947. {
  13948. name: "Megamacro",
  13949. height: math.unit(15, "miles")
  13950. },
  13951. {
  13952. name: "Gigamacro",
  13953. height: math.unit(4000, "miles")
  13954. },
  13955. {
  13956. name: "Teramacro",
  13957. height: math.unit(315000, "miles")
  13958. },
  13959. ]
  13960. ))
  13961. characterMakers.push(() => makeCharacter(
  13962. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13963. {
  13964. front: {
  13965. height: math.unit(2.794, "meters"),
  13966. weight: math.unit(325, "kg"),
  13967. name: "Front",
  13968. image: {
  13969. source: "./media/characters/tezwa/front.svg",
  13970. extra: 2083 / 1906,
  13971. bottom: 0.031
  13972. }
  13973. },
  13974. foot: {
  13975. height: math.unit(0.687, "meters"),
  13976. name: "Foot",
  13977. image: {
  13978. source: "./media/characters/tezwa/foot.svg"
  13979. }
  13980. },
  13981. },
  13982. [
  13983. {
  13984. name: "Normal",
  13985. height: math.unit(9 + 2 / 12, "feet"),
  13986. default: true
  13987. },
  13988. ]
  13989. ))
  13990. characterMakers.push(() => makeCharacter(
  13991. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13992. {
  13993. front: {
  13994. height: math.unit(58, "feet"),
  13995. weight: math.unit(89000, "lb"),
  13996. name: "Front",
  13997. image: {
  13998. source: "./media/characters/typhus/front.svg",
  13999. extra: 816 / 800,
  14000. bottom: 0.065
  14001. }
  14002. },
  14003. },
  14004. [
  14005. {
  14006. name: "Macro",
  14007. height: math.unit(58, "feet"),
  14008. default: true
  14009. },
  14010. ]
  14011. ))
  14012. characterMakers.push(() => makeCharacter(
  14013. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14014. {
  14015. front: {
  14016. height: math.unit(12, "feet"),
  14017. weight: math.unit(6, "tonnes"),
  14018. name: "Front",
  14019. image: {
  14020. source: "./media/characters/lyra-von-wulf/front.svg",
  14021. extra: 1,
  14022. bottom: 0.10
  14023. }
  14024. },
  14025. frontMecha: {
  14026. height: math.unit(12, "feet"),
  14027. weight: math.unit(12, "tonnes"),
  14028. name: "Front (Mecha)",
  14029. image: {
  14030. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14031. extra: 1,
  14032. bottom: 0.042
  14033. }
  14034. },
  14035. maw: {
  14036. height: math.unit(2.2, "feet"),
  14037. name: "Maw",
  14038. image: {
  14039. source: "./media/characters/lyra-von-wulf/maw.svg"
  14040. }
  14041. },
  14042. },
  14043. [
  14044. {
  14045. name: "Normal",
  14046. height: math.unit(12, "feet"),
  14047. default: true
  14048. },
  14049. {
  14050. name: "Classic",
  14051. height: math.unit(50, "feet")
  14052. },
  14053. {
  14054. name: "Macro",
  14055. height: math.unit(500, "feet")
  14056. },
  14057. {
  14058. name: "Megamacro",
  14059. height: math.unit(1, "mile")
  14060. },
  14061. {
  14062. name: "Gigamacro",
  14063. height: math.unit(400, "miles")
  14064. },
  14065. {
  14066. name: "Teramacro",
  14067. height: math.unit(22000, "miles")
  14068. },
  14069. {
  14070. name: "Solarmacro",
  14071. height: math.unit(8600000, "miles")
  14072. },
  14073. {
  14074. name: "Galactic",
  14075. height: math.unit(1057000, "lightyears")
  14076. },
  14077. ]
  14078. ))
  14079. characterMakers.push(() => makeCharacter(
  14080. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14081. {
  14082. front: {
  14083. height: math.unit(6 + 10 / 12, "feet"),
  14084. weight: math.unit(150, "lb"),
  14085. name: "Front",
  14086. image: {
  14087. source: "./media/characters/dixon/front.svg",
  14088. extra: 3361 / 3209,
  14089. bottom: 0.01
  14090. }
  14091. },
  14092. },
  14093. [
  14094. {
  14095. name: "Normal",
  14096. height: math.unit(6 + 10 / 12, "feet"),
  14097. default: true
  14098. },
  14099. {
  14100. name: "Big",
  14101. height: math.unit(12, "meters")
  14102. },
  14103. {
  14104. name: "Macro",
  14105. height: math.unit(500, "meters")
  14106. },
  14107. {
  14108. name: "Megamacro",
  14109. height: math.unit(2, "km")
  14110. },
  14111. ]
  14112. ))
  14113. characterMakers.push(() => makeCharacter(
  14114. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14115. {
  14116. front: {
  14117. height: math.unit(185, "cm"),
  14118. weight: math.unit(68, "kg"),
  14119. name: "Front",
  14120. image: {
  14121. source: "./media/characters/kauko/front.svg",
  14122. extra: 1455 / 1421,
  14123. bottom: 0.03
  14124. }
  14125. },
  14126. back: {
  14127. height: math.unit(185, "cm"),
  14128. weight: math.unit(68, "kg"),
  14129. name: "Back",
  14130. image: {
  14131. source: "./media/characters/kauko/back.svg",
  14132. extra: 1455 / 1421,
  14133. bottom: 0.004
  14134. }
  14135. },
  14136. },
  14137. [
  14138. {
  14139. name: "Normal",
  14140. height: math.unit(185, "cm"),
  14141. default: true
  14142. },
  14143. ]
  14144. ))
  14145. characterMakers.push(() => makeCharacter(
  14146. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14147. {
  14148. frontSfw: {
  14149. height: math.unit(5, "meters"),
  14150. weight: math.unit(4250, "lb"),
  14151. name: "Front",
  14152. image: {
  14153. source: "./media/characters/varg/front-sfw.svg",
  14154. extra: 1103/1010,
  14155. bottom: 50/1153
  14156. },
  14157. form: "anthro",
  14158. default: true
  14159. },
  14160. backSfw: {
  14161. height: math.unit(5, "meters"),
  14162. weight: math.unit(4250, "lb"),
  14163. name: "Back",
  14164. image: {
  14165. source: "./media/characters/varg/back-sfw.svg",
  14166. extra: 1038/1022,
  14167. bottom: 36/1074
  14168. },
  14169. form: "anthro"
  14170. },
  14171. frontNsfw: {
  14172. height: math.unit(5, "meters"),
  14173. weight: math.unit(4250, "lb"),
  14174. name: "Front (NSFW)",
  14175. image: {
  14176. source: "./media/characters/varg/front-nsfw.svg",
  14177. extra: 1103/1010,
  14178. bottom: 50/1153
  14179. },
  14180. form: "anthro"
  14181. },
  14182. sheath: {
  14183. height: math.unit(3.8, "feet"),
  14184. weight: math.unit(90, "kilograms"),
  14185. name: "Sheath",
  14186. image: {
  14187. source: "./media/characters/varg/sheath.svg"
  14188. },
  14189. form: "anthro"
  14190. },
  14191. dick: {
  14192. height: math.unit(4.6, "feet"),
  14193. weight: math.unit(451, "kilograms"),
  14194. name: "Dick",
  14195. image: {
  14196. source: "./media/characters/varg/dick.svg"
  14197. },
  14198. form: "anthro"
  14199. },
  14200. feralSfw: {
  14201. height: math.unit(5, "meters"),
  14202. weight: math.unit(100000, "lb"),
  14203. name: "Side",
  14204. image: {
  14205. source: "./media/characters/varg/feral-sfw.svg",
  14206. extra: 1065/511,
  14207. bottom: 211/1276
  14208. },
  14209. form: "feral",
  14210. default: true
  14211. },
  14212. feralNsfw: {
  14213. height: math.unit(5, "meters"),
  14214. weight: math.unit(100000, "lb"),
  14215. name: "Side (NSFW)",
  14216. image: {
  14217. source: "./media/characters/varg/feral-nsfw.svg",
  14218. extra: 1065/511,
  14219. bottom: 211/1276
  14220. },
  14221. form: "feral",
  14222. },
  14223. feralSheath: {
  14224. height: math.unit(9.8, "feet"),
  14225. weight: math.unit(2000, "kilograms"),
  14226. name: "Sheath",
  14227. image: {
  14228. source: "./media/characters/varg/sheath.svg"
  14229. },
  14230. form: "feral"
  14231. },
  14232. feralDick: {
  14233. height: math.unit(13.11, "feet"),
  14234. weight: math.unit(10440, "kilograms"),
  14235. name: "Dick",
  14236. image: {
  14237. source: "./media/characters/varg/dick.svg"
  14238. },
  14239. form: "feral"
  14240. },
  14241. },
  14242. [
  14243. {
  14244. name: "Normal",
  14245. height: math.unit(5, "meters"),
  14246. form: "anthro"
  14247. },
  14248. {
  14249. name: "Macro",
  14250. height: math.unit(200, "meters"),
  14251. form: "anthro"
  14252. },
  14253. {
  14254. name: "Megamacro",
  14255. height: math.unit(20, "kilometers"),
  14256. form: "anthro"
  14257. },
  14258. {
  14259. name: "True Size",
  14260. height: math.unit(211, "km"),
  14261. form: "anthro",
  14262. default: true
  14263. },
  14264. {
  14265. name: "Gigamacro",
  14266. height: math.unit(1000, "km"),
  14267. form: "anthro"
  14268. },
  14269. {
  14270. name: "Gigamacro+",
  14271. height: math.unit(8000, "km"),
  14272. form: "anthro"
  14273. },
  14274. {
  14275. name: "Teramacro",
  14276. height: math.unit(1000000, "km"),
  14277. form: "anthro"
  14278. },
  14279. {
  14280. name: "Normal",
  14281. height: math.unit(5, "meters"),
  14282. form: "feral"
  14283. },
  14284. {
  14285. name: "Macro",
  14286. height: math.unit(200, "meters"),
  14287. form: "feral"
  14288. },
  14289. {
  14290. name: "Megamacro",
  14291. height: math.unit(20, "kilometers"),
  14292. form: "feral"
  14293. },
  14294. {
  14295. name: "True Size",
  14296. height: math.unit(211, "km"),
  14297. form: "feral",
  14298. default: true
  14299. },
  14300. {
  14301. name: "Gigamacro",
  14302. height: math.unit(1000, "km"),
  14303. form: "feral"
  14304. },
  14305. {
  14306. name: "Gigamacro+",
  14307. height: math.unit(8000, "km"),
  14308. form: "feral"
  14309. },
  14310. {
  14311. name: "Teramacro",
  14312. height: math.unit(1000000, "km"),
  14313. form: "feral"
  14314. },
  14315. ],
  14316. {
  14317. "anthro": {
  14318. name: "Anthro",
  14319. default: true
  14320. },
  14321. "feral": {
  14322. name: "Feral",
  14323. },
  14324. }
  14325. ))
  14326. characterMakers.push(() => makeCharacter(
  14327. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14328. {
  14329. front: {
  14330. height: math.unit(7 + 7 / 12, "feet"),
  14331. weight: math.unit(267, "lb"),
  14332. name: "Front",
  14333. image: {
  14334. source: "./media/characters/dayza/front.svg",
  14335. extra: 1262 / 1200,
  14336. bottom: 0.035
  14337. }
  14338. },
  14339. side: {
  14340. height: math.unit(7 + 7 / 12, "feet"),
  14341. weight: math.unit(267, "lb"),
  14342. name: "Side",
  14343. image: {
  14344. source: "./media/characters/dayza/side.svg",
  14345. extra: 1295 / 1245,
  14346. bottom: 0.05
  14347. }
  14348. },
  14349. back: {
  14350. height: math.unit(7 + 7 / 12, "feet"),
  14351. weight: math.unit(267, "lb"),
  14352. name: "Back",
  14353. image: {
  14354. source: "./media/characters/dayza/back.svg",
  14355. extra: 1241 / 1170
  14356. }
  14357. },
  14358. },
  14359. [
  14360. {
  14361. name: "Normal",
  14362. height: math.unit(7 + 7 / 12, "feet"),
  14363. default: true
  14364. },
  14365. {
  14366. name: "Macro",
  14367. height: math.unit(155, "feet")
  14368. },
  14369. ]
  14370. ))
  14371. characterMakers.push(() => makeCharacter(
  14372. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14373. {
  14374. front: {
  14375. height: math.unit(6 + 5 / 12, "feet"),
  14376. weight: math.unit(160, "lb"),
  14377. name: "Front",
  14378. image: {
  14379. source: "./media/characters/xanthos/front.svg",
  14380. extra: 1,
  14381. bottom: 0.04
  14382. }
  14383. },
  14384. back: {
  14385. height: math.unit(6 + 5 / 12, "feet"),
  14386. weight: math.unit(160, "lb"),
  14387. name: "Back",
  14388. image: {
  14389. source: "./media/characters/xanthos/back.svg",
  14390. extra: 1,
  14391. bottom: 0.03
  14392. }
  14393. },
  14394. hand: {
  14395. height: math.unit(0.928, "feet"),
  14396. name: "Hand",
  14397. image: {
  14398. source: "./media/characters/xanthos/hand.svg"
  14399. }
  14400. },
  14401. foot: {
  14402. height: math.unit(1.286, "feet"),
  14403. name: "Foot",
  14404. image: {
  14405. source: "./media/characters/xanthos/foot.svg"
  14406. }
  14407. },
  14408. },
  14409. [
  14410. {
  14411. name: "Normal",
  14412. height: math.unit(6 + 5 / 12, "feet"),
  14413. default: true
  14414. },
  14415. {
  14416. name: "Normal+",
  14417. height: math.unit(6, "meters")
  14418. },
  14419. {
  14420. name: "Macro",
  14421. height: math.unit(40, "feet")
  14422. },
  14423. {
  14424. name: "Macro+",
  14425. height: math.unit(200, "meters")
  14426. },
  14427. {
  14428. name: "Megamacro",
  14429. height: math.unit(20, "km")
  14430. },
  14431. {
  14432. name: "Megamacro+",
  14433. height: math.unit(100, "km")
  14434. },
  14435. {
  14436. name: "Gigamacro",
  14437. height: math.unit(200, "megameters")
  14438. },
  14439. {
  14440. name: "Gigamacro+",
  14441. height: math.unit(1.5, "gigameters")
  14442. },
  14443. ]
  14444. ))
  14445. characterMakers.push(() => makeCharacter(
  14446. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14447. {
  14448. front: {
  14449. height: math.unit(6 + 3 / 12, "feet"),
  14450. weight: math.unit(215, "lb"),
  14451. name: "Front",
  14452. image: {
  14453. source: "./media/characters/grynn/front.svg",
  14454. extra: 4627 / 4209,
  14455. bottom: 0.047
  14456. }
  14457. },
  14458. },
  14459. [
  14460. {
  14461. name: "Micro",
  14462. height: math.unit(6, "inches")
  14463. },
  14464. {
  14465. name: "Normal",
  14466. height: math.unit(6 + 3 / 12, "feet"),
  14467. default: true
  14468. },
  14469. {
  14470. name: "Big",
  14471. height: math.unit(104, "feet")
  14472. },
  14473. {
  14474. name: "Macro",
  14475. height: math.unit(944, "feet")
  14476. },
  14477. {
  14478. name: "Macro+",
  14479. height: math.unit(9480, "feet")
  14480. },
  14481. {
  14482. name: "Megamacro",
  14483. height: math.unit(78752, "feet")
  14484. },
  14485. {
  14486. name: "Megamacro+",
  14487. height: math.unit(630128, "feet")
  14488. },
  14489. {
  14490. name: "Megamacro++",
  14491. height: math.unit(3150695, "feet")
  14492. },
  14493. ]
  14494. ))
  14495. characterMakers.push(() => makeCharacter(
  14496. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14497. {
  14498. front: {
  14499. height: math.unit(7 + 5 / 12, "feet"),
  14500. weight: math.unit(450, "lb"),
  14501. name: "Front",
  14502. image: {
  14503. source: "./media/characters/mocha-aura/front.svg",
  14504. extra: 1907 / 1817,
  14505. bottom: 0.04
  14506. }
  14507. },
  14508. back: {
  14509. height: math.unit(7 + 5 / 12, "feet"),
  14510. weight: math.unit(450, "lb"),
  14511. name: "Back",
  14512. image: {
  14513. source: "./media/characters/mocha-aura/back.svg",
  14514. extra: 1900 / 1825,
  14515. bottom: 0.045
  14516. }
  14517. },
  14518. },
  14519. [
  14520. {
  14521. name: "Nano",
  14522. height: math.unit(1, "nm")
  14523. },
  14524. {
  14525. name: "Megamicro",
  14526. height: math.unit(1, "mm")
  14527. },
  14528. {
  14529. name: "Micro",
  14530. height: math.unit(3, "inches")
  14531. },
  14532. {
  14533. name: "Normal",
  14534. height: math.unit(7 + 5 / 12, "feet"),
  14535. default: true
  14536. },
  14537. {
  14538. name: "Macro",
  14539. height: math.unit(30, "feet")
  14540. },
  14541. {
  14542. name: "Megamacro",
  14543. height: math.unit(3500, "feet")
  14544. },
  14545. {
  14546. name: "Teramacro",
  14547. height: math.unit(500000, "miles")
  14548. },
  14549. {
  14550. name: "Petamacro",
  14551. height: math.unit(50000000000000000, "parsecs")
  14552. },
  14553. ]
  14554. ))
  14555. characterMakers.push(() => makeCharacter(
  14556. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14557. {
  14558. front: {
  14559. height: math.unit(6, "feet"),
  14560. weight: math.unit(150, "lb"),
  14561. name: "Front",
  14562. image: {
  14563. source: "./media/characters/ilisha-devya/front.svg",
  14564. extra: 1053/1049,
  14565. bottom: 270/1323
  14566. }
  14567. },
  14568. back: {
  14569. height: math.unit(6, "feet"),
  14570. weight: math.unit(150, "lb"),
  14571. name: "Back",
  14572. image: {
  14573. source: "./media/characters/ilisha-devya/back.svg",
  14574. extra: 1131/1128,
  14575. bottom: 39/1170
  14576. }
  14577. },
  14578. },
  14579. [
  14580. {
  14581. name: "Macro",
  14582. height: math.unit(500, "feet"),
  14583. default: true
  14584. },
  14585. {
  14586. name: "Megamacro",
  14587. height: math.unit(10, "miles")
  14588. },
  14589. {
  14590. name: "Gigamacro",
  14591. height: math.unit(100000, "miles")
  14592. },
  14593. {
  14594. name: "Examacro",
  14595. height: math.unit(1e9, "lightyears")
  14596. },
  14597. {
  14598. name: "Omniversal",
  14599. height: math.unit(1e33, "lightyears")
  14600. },
  14601. {
  14602. name: "Beyond Infinite",
  14603. height: math.unit(1e100, "lightyears")
  14604. },
  14605. ]
  14606. ))
  14607. characterMakers.push(() => makeCharacter(
  14608. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14609. {
  14610. Side: {
  14611. height: math.unit(6, "feet"),
  14612. weight: math.unit(150, "lb"),
  14613. name: "Side",
  14614. image: {
  14615. source: "./media/characters/mira/side.svg",
  14616. extra: 900 / 799,
  14617. bottom: 0.02
  14618. }
  14619. },
  14620. },
  14621. [
  14622. {
  14623. name: "Human Size",
  14624. height: math.unit(6, "feet")
  14625. },
  14626. {
  14627. name: "Macro",
  14628. height: math.unit(100, "feet"),
  14629. default: true
  14630. },
  14631. {
  14632. name: "Megamacro",
  14633. height: math.unit(10, "miles")
  14634. },
  14635. {
  14636. name: "Gigamacro",
  14637. height: math.unit(25000, "miles")
  14638. },
  14639. {
  14640. name: "Teramacro",
  14641. height: math.unit(300, "AU")
  14642. },
  14643. {
  14644. name: "Full Size",
  14645. height: math.unit(4.5e10, "lightyears")
  14646. },
  14647. ]
  14648. ))
  14649. characterMakers.push(() => makeCharacter(
  14650. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14651. {
  14652. front: {
  14653. height: math.unit(6, "feet"),
  14654. weight: math.unit(150, "lb"),
  14655. name: "Front",
  14656. image: {
  14657. source: "./media/characters/holly/front.svg",
  14658. extra: 639 / 606
  14659. }
  14660. },
  14661. back: {
  14662. height: math.unit(6, "feet"),
  14663. weight: math.unit(150, "lb"),
  14664. name: "Back",
  14665. image: {
  14666. source: "./media/characters/holly/back.svg",
  14667. extra: 623 / 598
  14668. }
  14669. },
  14670. frontWorking: {
  14671. height: math.unit(6, "feet"),
  14672. weight: math.unit(150, "lb"),
  14673. name: "Front (Working)",
  14674. image: {
  14675. source: "./media/characters/holly/front-working.svg",
  14676. extra: 607 / 577,
  14677. bottom: 0.048
  14678. }
  14679. },
  14680. },
  14681. [
  14682. {
  14683. name: "Normal",
  14684. height: math.unit(12 + 3 / 12, "feet"),
  14685. default: true
  14686. },
  14687. ]
  14688. ))
  14689. characterMakers.push(() => makeCharacter(
  14690. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14691. {
  14692. front: {
  14693. height: math.unit(6, "feet"),
  14694. weight: math.unit(150, "lb"),
  14695. name: "Front",
  14696. image: {
  14697. source: "./media/characters/porter/front.svg",
  14698. extra: 1,
  14699. bottom: 0.01
  14700. }
  14701. },
  14702. frontRobes: {
  14703. height: math.unit(6, "feet"),
  14704. weight: math.unit(150, "lb"),
  14705. name: "Front (Robes)",
  14706. image: {
  14707. source: "./media/characters/porter/front-robes.svg",
  14708. extra: 1.01,
  14709. bottom: 0.01
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Normal",
  14716. height: math.unit(11 + 9 / 12, "feet"),
  14717. default: true
  14718. },
  14719. ]
  14720. ))
  14721. characterMakers.push(() => makeCharacter(
  14722. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14723. {
  14724. legendary: {
  14725. height: math.unit(6, "feet"),
  14726. weight: math.unit(150, "lb"),
  14727. name: "Legendary",
  14728. image: {
  14729. source: "./media/characters/lucy/legendary.svg",
  14730. extra: 1355 / 1100,
  14731. bottom: 0.045
  14732. }
  14733. },
  14734. },
  14735. [
  14736. {
  14737. name: "Legendary",
  14738. height: math.unit(86882 * 2, "miles"),
  14739. default: true
  14740. },
  14741. ]
  14742. ))
  14743. characterMakers.push(() => makeCharacter(
  14744. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14745. {
  14746. front: {
  14747. height: math.unit(6, "feet"),
  14748. weight: math.unit(150, "lb"),
  14749. name: "Front",
  14750. image: {
  14751. source: "./media/characters/drusilla/front.svg",
  14752. extra: 678 / 635,
  14753. bottom: 0.03
  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/drusilla/back.svg",
  14762. extra: 678 / 635,
  14763. bottom: 0.005
  14764. }
  14765. },
  14766. },
  14767. [
  14768. {
  14769. name: "Macro",
  14770. height: math.unit(100, "feet")
  14771. },
  14772. {
  14773. name: "Canon Height",
  14774. height: math.unit(2000, "feet"),
  14775. default: true
  14776. },
  14777. ]
  14778. ))
  14779. characterMakers.push(() => makeCharacter(
  14780. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14781. {
  14782. front: {
  14783. height: math.unit(6, "feet"),
  14784. weight: math.unit(180, "lb"),
  14785. name: "Front",
  14786. image: {
  14787. source: "./media/characters/renard-thatch/front.svg",
  14788. extra: 2411 / 2275,
  14789. bottom: 0.01
  14790. }
  14791. },
  14792. frontPosing: {
  14793. height: math.unit(6, "feet"),
  14794. weight: math.unit(180, "lb"),
  14795. name: "Front (Posing)",
  14796. image: {
  14797. source: "./media/characters/renard-thatch/front-posing.svg",
  14798. extra: 2381 / 2261,
  14799. bottom: 0.01
  14800. }
  14801. },
  14802. back: {
  14803. height: math.unit(6, "feet"),
  14804. weight: math.unit(180, "lb"),
  14805. name: "Back",
  14806. image: {
  14807. source: "./media/characters/renard-thatch/back.svg",
  14808. extra: 2428 / 2288
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Micro",
  14815. height: math.unit(3, "inches")
  14816. },
  14817. {
  14818. name: "Default",
  14819. height: math.unit(6, "feet"),
  14820. default: true
  14821. },
  14822. {
  14823. name: "Macro",
  14824. height: math.unit(75, "feet")
  14825. },
  14826. ]
  14827. ))
  14828. characterMakers.push(() => makeCharacter(
  14829. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14830. {
  14831. front: {
  14832. height: math.unit(1450, "feet"),
  14833. weight: math.unit(1.21e6, "tons"),
  14834. name: "Front",
  14835. image: {
  14836. source: "./media/characters/sekvra/front.svg",
  14837. extra: 1193/1190,
  14838. bottom: 78/1271
  14839. }
  14840. },
  14841. side: {
  14842. height: math.unit(1450, "feet"),
  14843. weight: math.unit(1.21e6, "tons"),
  14844. name: "Side",
  14845. image: {
  14846. source: "./media/characters/sekvra/side.svg",
  14847. extra: 1193/1190,
  14848. bottom: 52/1245
  14849. }
  14850. },
  14851. back: {
  14852. height: math.unit(1450, "feet"),
  14853. weight: math.unit(1.21e6, "tons"),
  14854. name: "Back",
  14855. image: {
  14856. source: "./media/characters/sekvra/back.svg",
  14857. extra: 1219/1216,
  14858. bottom: 21/1240
  14859. }
  14860. },
  14861. frontClothed: {
  14862. height: math.unit(1450, "feet"),
  14863. weight: math.unit(1.21e6, "tons"),
  14864. name: "Front (Clothed)",
  14865. image: {
  14866. source: "./media/characters/sekvra/front-clothed.svg",
  14867. extra: 1192/1189,
  14868. bottom: 79/1271
  14869. }
  14870. },
  14871. },
  14872. [
  14873. {
  14874. name: "Macro",
  14875. height: math.unit(1450, "feet"),
  14876. default: true
  14877. },
  14878. {
  14879. name: "Megamacro",
  14880. height: math.unit(15000, "feet")
  14881. },
  14882. ]
  14883. ))
  14884. characterMakers.push(() => makeCharacter(
  14885. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14886. {
  14887. front: {
  14888. height: math.unit(6, "feet"),
  14889. weight: math.unit(150, "lb"),
  14890. name: "Front",
  14891. image: {
  14892. source: "./media/characters/carmine/front.svg",
  14893. extra: 1557/1538,
  14894. bottom: 68/1625
  14895. }
  14896. },
  14897. frontArmor: {
  14898. height: math.unit(6, "feet"),
  14899. weight: math.unit(150, "lb"),
  14900. name: "Front (Armor)",
  14901. image: {
  14902. source: "./media/characters/carmine/front-armor.svg",
  14903. extra: 1549/1530,
  14904. bottom: 82/1631
  14905. }
  14906. },
  14907. mouth: {
  14908. height: math.unit(0.55, "feet"),
  14909. name: "Mouth",
  14910. image: {
  14911. source: "./media/characters/carmine/mouth.svg"
  14912. }
  14913. },
  14914. hand: {
  14915. height: math.unit(1.05, "feet"),
  14916. name: "Hand",
  14917. image: {
  14918. source: "./media/characters/carmine/hand.svg"
  14919. }
  14920. },
  14921. foot: {
  14922. height: math.unit(0.6, "feet"),
  14923. name: "Foot",
  14924. image: {
  14925. source: "./media/characters/carmine/foot.svg"
  14926. }
  14927. },
  14928. },
  14929. [
  14930. {
  14931. name: "Large",
  14932. height: math.unit(1, "mile")
  14933. },
  14934. {
  14935. name: "Huge",
  14936. height: math.unit(40, "miles"),
  14937. default: true
  14938. },
  14939. {
  14940. name: "Colossal",
  14941. height: math.unit(2500, "miles")
  14942. },
  14943. ]
  14944. ))
  14945. characterMakers.push(() => makeCharacter(
  14946. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14947. {
  14948. front: {
  14949. height: math.unit(6, "feet"),
  14950. weight: math.unit(150, "lb"),
  14951. name: "Front",
  14952. image: {
  14953. source: "./media/characters/elyssia/front.svg",
  14954. extra: 2201 / 2035,
  14955. bottom: 0.05
  14956. }
  14957. },
  14958. frontClothed: {
  14959. height: math.unit(6, "feet"),
  14960. weight: math.unit(150, "lb"),
  14961. name: "Front (Clothed)",
  14962. image: {
  14963. source: "./media/characters/elyssia/front-clothed.svg",
  14964. extra: 2201 / 2035,
  14965. bottom: 0.05
  14966. }
  14967. },
  14968. back: {
  14969. height: math.unit(6, "feet"),
  14970. weight: math.unit(150, "lb"),
  14971. name: "Back",
  14972. image: {
  14973. source: "./media/characters/elyssia/back.svg",
  14974. extra: 2201 / 2035,
  14975. bottom: 0.013
  14976. }
  14977. },
  14978. },
  14979. [
  14980. {
  14981. name: "Smaller",
  14982. height: math.unit(150, "feet")
  14983. },
  14984. {
  14985. name: "Standard",
  14986. height: math.unit(1400, "feet"),
  14987. default: true
  14988. },
  14989. {
  14990. name: "Distracted",
  14991. height: math.unit(15000, "feet")
  14992. },
  14993. ]
  14994. ))
  14995. characterMakers.push(() => makeCharacter(
  14996. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14997. {
  14998. front: {
  14999. height: math.unit(7 + 4/12, "feet"),
  15000. weight: math.unit(690, "lb"),
  15001. name: "Front",
  15002. image: {
  15003. source: "./media/characters/geno-maxwell/front.svg",
  15004. extra: 984/856,
  15005. bottom: 87/1071
  15006. }
  15007. },
  15008. back: {
  15009. height: math.unit(7 + 4/12, "feet"),
  15010. weight: math.unit(690, "lb"),
  15011. name: "Back",
  15012. image: {
  15013. source: "./media/characters/geno-maxwell/back.svg",
  15014. extra: 981/854,
  15015. bottom: 57/1038
  15016. }
  15017. },
  15018. frontCostume: {
  15019. height: math.unit(7 + 4/12, "feet"),
  15020. weight: math.unit(690, "lb"),
  15021. name: "Front (Costume)",
  15022. image: {
  15023. source: "./media/characters/geno-maxwell/front-costume.svg",
  15024. extra: 984/856,
  15025. bottom: 87/1071
  15026. }
  15027. },
  15028. backcostume: {
  15029. height: math.unit(7 + 4/12, "feet"),
  15030. weight: math.unit(690, "lb"),
  15031. name: "Back (Costume)",
  15032. image: {
  15033. source: "./media/characters/geno-maxwell/back-costume.svg",
  15034. extra: 981/854,
  15035. bottom: 57/1038
  15036. }
  15037. },
  15038. },
  15039. [
  15040. {
  15041. name: "Micro",
  15042. height: math.unit(3, "inches")
  15043. },
  15044. {
  15045. name: "Normal",
  15046. height: math.unit(7 + 4 / 12, "feet"),
  15047. default: true
  15048. },
  15049. {
  15050. name: "Macro",
  15051. height: math.unit(220, "feet")
  15052. },
  15053. {
  15054. name: "Megamacro",
  15055. height: math.unit(11, "miles")
  15056. },
  15057. ]
  15058. ))
  15059. characterMakers.push(() => makeCharacter(
  15060. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15061. {
  15062. front: {
  15063. height: math.unit(7 + 4/12, "feet"),
  15064. weight: math.unit(750, "lb"),
  15065. name: "Front",
  15066. image: {
  15067. source: "./media/characters/regena-maxwell/front.svg",
  15068. extra: 984/856,
  15069. bottom: 87/1071
  15070. }
  15071. },
  15072. back: {
  15073. height: math.unit(7 + 4/12, "feet"),
  15074. weight: math.unit(750, "lb"),
  15075. name: "Back",
  15076. image: {
  15077. source: "./media/characters/regena-maxwell/back.svg",
  15078. extra: 981/854,
  15079. bottom: 57/1038
  15080. }
  15081. },
  15082. frontCostume: {
  15083. height: math.unit(7 + 4/12, "feet"),
  15084. weight: math.unit(750, "lb"),
  15085. name: "Front (Costume)",
  15086. image: {
  15087. source: "./media/characters/regena-maxwell/front-costume.svg",
  15088. extra: 984/856,
  15089. bottom: 87/1071
  15090. }
  15091. },
  15092. backcostume: {
  15093. height: math.unit(7 + 4/12, "feet"),
  15094. weight: math.unit(750, "lb"),
  15095. name: "Back (Costume)",
  15096. image: {
  15097. source: "./media/characters/regena-maxwell/back-costume.svg",
  15098. extra: 981/854,
  15099. bottom: 57/1038
  15100. }
  15101. },
  15102. },
  15103. [
  15104. {
  15105. name: "Normal",
  15106. height: math.unit(7 + 4 / 12, "feet"),
  15107. default: true
  15108. },
  15109. {
  15110. name: "Macro",
  15111. height: math.unit(220, "feet")
  15112. },
  15113. {
  15114. name: "Megamacro",
  15115. height: math.unit(11, "miles")
  15116. },
  15117. ]
  15118. ))
  15119. characterMakers.push(() => makeCharacter(
  15120. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15121. {
  15122. front: {
  15123. height: math.unit(6, "feet"),
  15124. weight: math.unit(150, "lb"),
  15125. name: "Front",
  15126. image: {
  15127. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15128. extra: 860 / 690,
  15129. bottom: 0.03
  15130. }
  15131. },
  15132. },
  15133. [
  15134. {
  15135. name: "Normal",
  15136. height: math.unit(1.7, "meters"),
  15137. default: true
  15138. },
  15139. ]
  15140. ))
  15141. characterMakers.push(() => makeCharacter(
  15142. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15143. {
  15144. front: {
  15145. height: math.unit(6, "feet"),
  15146. weight: math.unit(150, "lb"),
  15147. name: "Front",
  15148. image: {
  15149. source: "./media/characters/quilly/front.svg",
  15150. extra: 890 / 776
  15151. }
  15152. },
  15153. },
  15154. [
  15155. {
  15156. name: "Gigamacro",
  15157. height: math.unit(404090, "miles"),
  15158. default: true
  15159. },
  15160. ]
  15161. ))
  15162. characterMakers.push(() => makeCharacter(
  15163. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15164. {
  15165. front: {
  15166. height: math.unit(7 + 8 / 12, "feet"),
  15167. weight: math.unit(350, "lb"),
  15168. name: "Front",
  15169. image: {
  15170. source: "./media/characters/tempest/front.svg",
  15171. extra: 1175 / 1086,
  15172. bottom: 0.02
  15173. }
  15174. },
  15175. },
  15176. [
  15177. {
  15178. name: "Normal",
  15179. height: math.unit(7 + 8 / 12, "feet"),
  15180. default: true
  15181. },
  15182. ]
  15183. ))
  15184. characterMakers.push(() => makeCharacter(
  15185. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15186. {
  15187. side: {
  15188. height: math.unit(4 + 5 / 12, "feet"),
  15189. weight: math.unit(80, "lb"),
  15190. name: "Side",
  15191. image: {
  15192. source: "./media/characters/rodger/side.svg",
  15193. extra: 1235 / 1118
  15194. }
  15195. },
  15196. },
  15197. [
  15198. {
  15199. name: "Micro",
  15200. height: math.unit(1, "inch")
  15201. },
  15202. {
  15203. name: "Normal",
  15204. height: math.unit(4 + 5 / 12, "feet"),
  15205. default: true
  15206. },
  15207. {
  15208. name: "Macro",
  15209. height: math.unit(120, "feet")
  15210. },
  15211. ]
  15212. ))
  15213. characterMakers.push(() => makeCharacter(
  15214. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15215. {
  15216. front: {
  15217. height: math.unit(6, "feet"),
  15218. weight: math.unit(150, "lb"),
  15219. name: "Front",
  15220. image: {
  15221. source: "./media/characters/danyel/front.svg",
  15222. extra: 1185 / 1123,
  15223. bottom: 0.05
  15224. }
  15225. },
  15226. },
  15227. [
  15228. {
  15229. name: "Shrunken",
  15230. height: math.unit(0.5, "mm")
  15231. },
  15232. {
  15233. name: "Micro",
  15234. height: math.unit(1, "mm"),
  15235. default: true
  15236. },
  15237. {
  15238. name: "Upsized",
  15239. height: math.unit(5 + 5 / 12, "feet")
  15240. },
  15241. ]
  15242. ))
  15243. characterMakers.push(() => makeCharacter(
  15244. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15245. {
  15246. front: {
  15247. height: math.unit(5 + 6 / 12, "feet"),
  15248. weight: math.unit(200, "lb"),
  15249. name: "Front",
  15250. image: {
  15251. source: "./media/characters/vivian-bijoux/front.svg",
  15252. extra: 1217/1209,
  15253. bottom: 76/1293
  15254. }
  15255. },
  15256. back: {
  15257. height: math.unit(5 + 6 / 12, "feet"),
  15258. weight: math.unit(200, "lb"),
  15259. name: "Back",
  15260. image: {
  15261. source: "./media/characters/vivian-bijoux/back.svg",
  15262. extra: 1214/1208,
  15263. bottom: 51/1265
  15264. }
  15265. },
  15266. dressed: {
  15267. height: math.unit(5 + 6 / 12, "feet"),
  15268. weight: math.unit(200, "lb"),
  15269. name: "Dressed",
  15270. image: {
  15271. source: "./media/characters/vivian-bijoux/dressed.svg",
  15272. extra: 1217/1209,
  15273. bottom: 76/1293
  15274. }
  15275. },
  15276. },
  15277. [
  15278. {
  15279. name: "Normal",
  15280. height: math.unit(5 + 6 / 12, "feet"),
  15281. default: true
  15282. },
  15283. {
  15284. name: "Bad Dream",
  15285. height: math.unit(500, "feet")
  15286. },
  15287. {
  15288. name: "Nightmare",
  15289. height: math.unit(500, "miles")
  15290. },
  15291. ]
  15292. ))
  15293. characterMakers.push(() => makeCharacter(
  15294. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15295. {
  15296. front: {
  15297. height: math.unit(6 + 1 / 12, "feet"),
  15298. weight: math.unit(260, "lb"),
  15299. name: "Front",
  15300. image: {
  15301. source: "./media/characters/zeta/front.svg",
  15302. extra: 1968 / 1889,
  15303. bottom: 0.06
  15304. }
  15305. },
  15306. back: {
  15307. height: math.unit(6 + 1 / 12, "feet"),
  15308. weight: math.unit(260, "lb"),
  15309. name: "Back",
  15310. image: {
  15311. source: "./media/characters/zeta/back.svg",
  15312. extra: 1944 / 1858,
  15313. bottom: 0.03
  15314. }
  15315. },
  15316. hand: {
  15317. height: math.unit(1.112, "feet"),
  15318. name: "Hand",
  15319. image: {
  15320. source: "./media/characters/zeta/hand.svg"
  15321. }
  15322. },
  15323. foot: {
  15324. height: math.unit(1.48, "feet"),
  15325. name: "Foot",
  15326. image: {
  15327. source: "./media/characters/zeta/foot.svg"
  15328. }
  15329. },
  15330. },
  15331. [
  15332. {
  15333. name: "Micro",
  15334. height: math.unit(6, "inches")
  15335. },
  15336. {
  15337. name: "Normal",
  15338. height: math.unit(6 + 1 / 12, "feet"),
  15339. default: true
  15340. },
  15341. {
  15342. name: "Macro",
  15343. height: math.unit(20, "feet")
  15344. },
  15345. ]
  15346. ))
  15347. characterMakers.push(() => makeCharacter(
  15348. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15349. {
  15350. front: {
  15351. height: math.unit(6, "feet"),
  15352. weight: math.unit(150, "lb"),
  15353. name: "Front",
  15354. image: {
  15355. source: "./media/characters/jamie-larsen/front.svg",
  15356. extra: 962 / 933,
  15357. bottom: 0.02
  15358. }
  15359. },
  15360. back: {
  15361. height: math.unit(6, "feet"),
  15362. weight: math.unit(150, "lb"),
  15363. name: "Back",
  15364. image: {
  15365. source: "./media/characters/jamie-larsen/back.svg",
  15366. extra: 997 / 946
  15367. }
  15368. },
  15369. },
  15370. [
  15371. {
  15372. name: "Macro",
  15373. height: math.unit(28 + 7 / 12, "feet"),
  15374. default: true
  15375. },
  15376. {
  15377. name: "Macro+",
  15378. height: math.unit(180, "feet")
  15379. },
  15380. {
  15381. name: "Megamacro",
  15382. height: math.unit(10, "miles")
  15383. },
  15384. {
  15385. name: "Gigamacro",
  15386. height: math.unit(200000, "miles")
  15387. },
  15388. ]
  15389. ))
  15390. characterMakers.push(() => makeCharacter(
  15391. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15392. {
  15393. front: {
  15394. height: math.unit(6, "feet"),
  15395. weight: math.unit(120, "lb"),
  15396. name: "Front",
  15397. image: {
  15398. source: "./media/characters/vance/front.svg",
  15399. extra: 1980 / 1890,
  15400. bottom: 0.09
  15401. }
  15402. },
  15403. back: {
  15404. height: math.unit(6, "feet"),
  15405. weight: math.unit(120, "lb"),
  15406. name: "Back",
  15407. image: {
  15408. source: "./media/characters/vance/back.svg",
  15409. extra: 2081 / 1994,
  15410. bottom: 0.014
  15411. }
  15412. },
  15413. hand: {
  15414. height: math.unit(0.88, "feet"),
  15415. name: "Hand",
  15416. image: {
  15417. source: "./media/characters/vance/hand.svg"
  15418. }
  15419. },
  15420. foot: {
  15421. height: math.unit(0.64, "feet"),
  15422. name: "Foot",
  15423. image: {
  15424. source: "./media/characters/vance/foot.svg"
  15425. }
  15426. },
  15427. },
  15428. [
  15429. {
  15430. name: "Small",
  15431. height: math.unit(90, "feet"),
  15432. default: true
  15433. },
  15434. {
  15435. name: "Macro",
  15436. height: math.unit(100, "meters")
  15437. },
  15438. {
  15439. name: "Megamacro",
  15440. height: math.unit(15, "miles")
  15441. },
  15442. ]
  15443. ))
  15444. characterMakers.push(() => makeCharacter(
  15445. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15446. {
  15447. front: {
  15448. height: math.unit(6, "feet"),
  15449. weight: math.unit(180, "lb"),
  15450. name: "Front",
  15451. image: {
  15452. source: "./media/characters/xochitl/front.svg",
  15453. extra: 2297 / 2261,
  15454. bottom: 0.065
  15455. }
  15456. },
  15457. back: {
  15458. height: math.unit(6, "feet"),
  15459. weight: math.unit(180, "lb"),
  15460. name: "Back",
  15461. image: {
  15462. source: "./media/characters/xochitl/back.svg",
  15463. extra: 2386 / 2354,
  15464. bottom: 0.01
  15465. }
  15466. },
  15467. foot: {
  15468. height: math.unit(6 / 5 * 1.15, "feet"),
  15469. weight: math.unit(150, "lb"),
  15470. name: "Foot",
  15471. image: {
  15472. source: "./media/characters/xochitl/foot.svg"
  15473. }
  15474. },
  15475. },
  15476. [
  15477. {
  15478. name: "Macro",
  15479. height: math.unit(80, "feet")
  15480. },
  15481. {
  15482. name: "Macro+",
  15483. height: math.unit(400, "feet"),
  15484. default: true
  15485. },
  15486. {
  15487. name: "Gigamacro",
  15488. height: math.unit(80000, "miles")
  15489. },
  15490. {
  15491. name: "Gigamacro+",
  15492. height: math.unit(400000, "miles")
  15493. },
  15494. {
  15495. name: "Teramacro",
  15496. height: math.unit(300, "AU")
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15502. {
  15503. front: {
  15504. height: math.unit(6, "feet"),
  15505. weight: math.unit(150, "lb"),
  15506. name: "Front",
  15507. image: {
  15508. source: "./media/characters/vincent/front.svg",
  15509. extra: 1130 / 1080,
  15510. bottom: 0.055
  15511. }
  15512. },
  15513. beak: {
  15514. height: math.unit(6 * 0.1, "feet"),
  15515. name: "Beak",
  15516. image: {
  15517. source: "./media/characters/vincent/beak.svg"
  15518. }
  15519. },
  15520. hand: {
  15521. height: math.unit(6 * 0.85, "feet"),
  15522. weight: math.unit(150, "lb"),
  15523. name: "Hand",
  15524. image: {
  15525. source: "./media/characters/vincent/hand.svg"
  15526. }
  15527. },
  15528. foot: {
  15529. height: math.unit(6 * 0.19, "feet"),
  15530. weight: math.unit(150, "lb"),
  15531. name: "Foot",
  15532. image: {
  15533. source: "./media/characters/vincent/foot.svg"
  15534. }
  15535. },
  15536. },
  15537. [
  15538. {
  15539. name: "Base",
  15540. height: math.unit(6 + 5 / 12, "feet"),
  15541. default: true
  15542. },
  15543. {
  15544. name: "Macro",
  15545. height: math.unit(300, "feet")
  15546. },
  15547. {
  15548. name: "Megamacro",
  15549. height: math.unit(2, "miles")
  15550. },
  15551. {
  15552. name: "Gigamacro",
  15553. height: math.unit(1000, "miles")
  15554. },
  15555. ]
  15556. ))
  15557. characterMakers.push(() => makeCharacter(
  15558. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15559. {
  15560. front: {
  15561. height: math.unit(2, "meters"),
  15562. weight: math.unit(500, "kg"),
  15563. name: "Front",
  15564. image: {
  15565. source: "./media/characters/coatl/front.svg",
  15566. extra: 3948 / 3500,
  15567. bottom: 0.082
  15568. }
  15569. },
  15570. },
  15571. [
  15572. {
  15573. name: "Normal",
  15574. height: math.unit(4, "meters")
  15575. },
  15576. {
  15577. name: "Macro",
  15578. height: math.unit(100, "meters"),
  15579. default: true
  15580. },
  15581. {
  15582. name: "Macro+",
  15583. height: math.unit(300, "meters")
  15584. },
  15585. {
  15586. name: "Megamacro",
  15587. height: math.unit(3, "gigameters")
  15588. },
  15589. {
  15590. name: "Megamacro+",
  15591. height: math.unit(300, "terameters")
  15592. },
  15593. {
  15594. name: "Megamacro++",
  15595. height: math.unit(3, "lightyears")
  15596. },
  15597. ]
  15598. ))
  15599. characterMakers.push(() => makeCharacter(
  15600. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15601. {
  15602. front: {
  15603. height: math.unit(6, "feet"),
  15604. weight: math.unit(50, "kg"),
  15605. name: "front",
  15606. image: {
  15607. source: "./media/characters/shiroryu/front.svg",
  15608. extra: 1990 / 1935
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Mortal Mingling",
  15615. height: math.unit(3, "meters")
  15616. },
  15617. {
  15618. name: "Kaiju-ish",
  15619. height: math.unit(250, "meters")
  15620. },
  15621. {
  15622. name: "Somewhat Godly",
  15623. height: math.unit(400, "km"),
  15624. default: true
  15625. },
  15626. {
  15627. name: "Planetary",
  15628. height: math.unit(300, "megameters")
  15629. },
  15630. {
  15631. name: "Galaxy-dwarfing",
  15632. height: math.unit(450, "kiloparsecs")
  15633. },
  15634. {
  15635. name: "Universe Eater",
  15636. height: math.unit(150, "gigaparsecs")
  15637. },
  15638. {
  15639. name: "Almost Immeasurable",
  15640. height: math.unit(1.3e266, "yottaparsecs")
  15641. },
  15642. ]
  15643. ))
  15644. characterMakers.push(() => makeCharacter(
  15645. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15646. {
  15647. front: {
  15648. height: math.unit(6, "feet"),
  15649. weight: math.unit(150, "lb"),
  15650. name: "Front",
  15651. image: {
  15652. source: "./media/characters/umeko/front.svg",
  15653. extra: 1,
  15654. bottom: 0.019
  15655. }
  15656. },
  15657. frontArmored: {
  15658. height: math.unit(6, "feet"),
  15659. weight: math.unit(150, "lb"),
  15660. name: "Front (Armored)",
  15661. image: {
  15662. source: "./media/characters/umeko/front-armored.svg",
  15663. extra: 1,
  15664. bottom: 0.021
  15665. }
  15666. },
  15667. },
  15668. [
  15669. {
  15670. name: "Macro",
  15671. height: math.unit(220, "feet"),
  15672. default: true
  15673. },
  15674. {
  15675. name: "Guardian Dragon",
  15676. height: math.unit(50, "miles")
  15677. },
  15678. {
  15679. name: "Cosmic",
  15680. height: math.unit(800000, "miles")
  15681. },
  15682. ]
  15683. ))
  15684. characterMakers.push(() => makeCharacter(
  15685. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15686. {
  15687. front: {
  15688. height: math.unit(6, "feet"),
  15689. weight: math.unit(150, "lb"),
  15690. name: "Front",
  15691. image: {
  15692. source: "./media/characters/cassidy/front.svg",
  15693. extra: 810/808,
  15694. bottom: 41/851
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Canon Height",
  15701. height: math.unit(120, "feet"),
  15702. default: true
  15703. },
  15704. {
  15705. name: "Macro+",
  15706. height: math.unit(400, "feet")
  15707. },
  15708. {
  15709. name: "Macro++",
  15710. height: math.unit(4000, "feet")
  15711. },
  15712. {
  15713. name: "Megamacro",
  15714. height: math.unit(3, "miles")
  15715. },
  15716. ]
  15717. ))
  15718. characterMakers.push(() => makeCharacter(
  15719. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15720. {
  15721. front: {
  15722. height: math.unit(6, "feet"),
  15723. weight: math.unit(150, "lb"),
  15724. name: "Front",
  15725. image: {
  15726. source: "./media/characters/isaac/front.svg",
  15727. extra: 896 / 815,
  15728. bottom: 0.11
  15729. }
  15730. },
  15731. },
  15732. [
  15733. {
  15734. name: "Human Size",
  15735. height: math.unit(8, "feet"),
  15736. default: true
  15737. },
  15738. {
  15739. name: "Macro",
  15740. height: math.unit(400, "feet")
  15741. },
  15742. {
  15743. name: "Megamacro",
  15744. height: math.unit(50, "miles")
  15745. },
  15746. {
  15747. name: "Canon Height",
  15748. height: math.unit(200, "AU")
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15754. {
  15755. front: {
  15756. height: math.unit(6, "feet"),
  15757. weight: math.unit(72, "kg"),
  15758. name: "Front",
  15759. image: {
  15760. source: "./media/characters/sleekit/front.svg",
  15761. extra: 4693 / 4487,
  15762. bottom: 0.012
  15763. }
  15764. },
  15765. },
  15766. [
  15767. {
  15768. name: "Minimum Height",
  15769. height: math.unit(10, "meters")
  15770. },
  15771. {
  15772. name: "Smaller",
  15773. height: math.unit(25, "meters")
  15774. },
  15775. {
  15776. name: "Larger",
  15777. height: math.unit(38, "meters"),
  15778. default: true
  15779. },
  15780. {
  15781. name: "Maximum height",
  15782. height: math.unit(100, "meters")
  15783. },
  15784. ]
  15785. ))
  15786. characterMakers.push(() => makeCharacter(
  15787. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15788. {
  15789. front: {
  15790. height: math.unit(6, "feet"),
  15791. weight: math.unit(150, "lb"),
  15792. name: "Front",
  15793. image: {
  15794. source: "./media/characters/nillia/front.svg",
  15795. extra: 719/665,
  15796. bottom: 6/725
  15797. }
  15798. },
  15799. back: {
  15800. height: math.unit(6, "feet"),
  15801. weight: math.unit(150, "lb"),
  15802. name: "Back",
  15803. image: {
  15804. source: "./media/characters/nillia/back.svg",
  15805. extra: 705/651,
  15806. bottom: 5/710
  15807. }
  15808. },
  15809. },
  15810. [
  15811. {
  15812. name: "Canon Height",
  15813. height: math.unit(489, "feet"),
  15814. default: true
  15815. }
  15816. ]
  15817. ))
  15818. characterMakers.push(() => makeCharacter(
  15819. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15820. {
  15821. front: {
  15822. height: math.unit(6, "feet"),
  15823. weight: math.unit(150, "lb"),
  15824. name: "Front",
  15825. image: {
  15826. source: "./media/characters/mesmyriza/front.svg",
  15827. extra: 2067 / 1784,
  15828. bottom: 0.035
  15829. }
  15830. },
  15831. foot: {
  15832. height: math.unit(6 / (250 / 35), "feet"),
  15833. name: "Foot",
  15834. image: {
  15835. source: "./media/characters/mesmyriza/foot.svg"
  15836. }
  15837. },
  15838. },
  15839. [
  15840. {
  15841. name: "Macro",
  15842. height: math.unit(457, "meters"),
  15843. default: true
  15844. },
  15845. {
  15846. name: "Megamacro",
  15847. height: math.unit(8, "megameters")
  15848. },
  15849. ]
  15850. ))
  15851. characterMakers.push(() => makeCharacter(
  15852. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15853. {
  15854. front: {
  15855. height: math.unit(6, "feet"),
  15856. weight: math.unit(250, "lb"),
  15857. name: "Front",
  15858. image: {
  15859. source: "./media/characters/saudade/front.svg",
  15860. extra: 1172 / 1139,
  15861. bottom: 0.035
  15862. }
  15863. },
  15864. },
  15865. [
  15866. {
  15867. name: "Micro",
  15868. height: math.unit(3, "inches")
  15869. },
  15870. {
  15871. name: "Normal",
  15872. height: math.unit(6, "feet"),
  15873. default: true
  15874. },
  15875. {
  15876. name: "Macro",
  15877. height: math.unit(50, "feet")
  15878. },
  15879. {
  15880. name: "Megamacro",
  15881. height: math.unit(2800, "feet")
  15882. },
  15883. ]
  15884. ))
  15885. characterMakers.push(() => makeCharacter(
  15886. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15887. {
  15888. front: {
  15889. height: math.unit(5 + 4 / 12, "feet"),
  15890. weight: math.unit(100, "lb"),
  15891. name: "Front",
  15892. image: {
  15893. source: "./media/characters/keireer/front.svg",
  15894. extra: 716 / 666,
  15895. bottom: 0.05
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Normal",
  15902. height: math.unit(5 + 4 / 12, "feet"),
  15903. default: true
  15904. },
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15909. {
  15910. front: {
  15911. height: math.unit(5.5, "feet"),
  15912. weight: math.unit(90, "kg"),
  15913. name: "Front",
  15914. image: {
  15915. source: "./media/characters/mirja/front.svg",
  15916. extra: 1452/1262,
  15917. bottom: 67/1519
  15918. }
  15919. },
  15920. frontDressed: {
  15921. height: math.unit(5.5, "feet"),
  15922. weight: math.unit(90, "lb"),
  15923. name: "Front (Dressed)",
  15924. image: {
  15925. source: "./media/characters/mirja/dressed.svg",
  15926. extra: 1452/1262,
  15927. bottom: 67/1519
  15928. }
  15929. },
  15930. back: {
  15931. height: math.unit(6, "feet"),
  15932. weight: math.unit(90, "lb"),
  15933. name: "Back",
  15934. image: {
  15935. source: "./media/characters/mirja/back.svg",
  15936. extra: 1892/1795,
  15937. bottom: 48/1940
  15938. }
  15939. },
  15940. maw: {
  15941. height: math.unit(1.312, "feet"),
  15942. name: "Maw",
  15943. image: {
  15944. source: "./media/characters/mirja/maw.svg"
  15945. }
  15946. },
  15947. paw: {
  15948. height: math.unit(1.15, "feet"),
  15949. name: "Paw",
  15950. image: {
  15951. source: "./media/characters/mirja/paw.svg"
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "\"Incognito\"",
  15958. height: math.unit(3, "meters")
  15959. },
  15960. {
  15961. name: "Strolling Size",
  15962. height: math.unit(15, "km")
  15963. },
  15964. {
  15965. name: "Larger Strolling Size",
  15966. height: math.unit(400, "km")
  15967. },
  15968. {
  15969. name: "Preferred Size",
  15970. height: math.unit(5000, "km"),
  15971. default: true
  15972. },
  15973. {
  15974. name: "True Size",
  15975. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15976. },
  15977. ]
  15978. ))
  15979. characterMakers.push(() => makeCharacter(
  15980. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15981. {
  15982. front: {
  15983. height: math.unit(15, "feet"),
  15984. weight: math.unit(880, "kg"),
  15985. name: "Front",
  15986. image: {
  15987. source: "./media/characters/nightraver/front.svg",
  15988. extra: 2444 / 2160,
  15989. bottom: 0.027
  15990. }
  15991. },
  15992. back: {
  15993. height: math.unit(15, "feet"),
  15994. weight: math.unit(880, "kg"),
  15995. name: "Back",
  15996. image: {
  15997. source: "./media/characters/nightraver/back.svg",
  15998. extra: 2309 / 2180,
  15999. bottom: 0.005
  16000. }
  16001. },
  16002. sole: {
  16003. height: math.unit(2.878, "feet"),
  16004. name: "Sole",
  16005. image: {
  16006. source: "./media/characters/nightraver/sole.svg"
  16007. }
  16008. },
  16009. foot: {
  16010. height: math.unit(2.285, "feet"),
  16011. name: "Foot",
  16012. image: {
  16013. source: "./media/characters/nightraver/foot.svg"
  16014. }
  16015. },
  16016. maw: {
  16017. height: math.unit(2.67, "feet"),
  16018. name: "Maw",
  16019. image: {
  16020. source: "./media/characters/nightraver/maw.svg"
  16021. }
  16022. },
  16023. },
  16024. [
  16025. {
  16026. name: "Micro",
  16027. height: math.unit(1, "cm")
  16028. },
  16029. {
  16030. name: "Normal",
  16031. height: math.unit(15, "feet"),
  16032. default: true
  16033. },
  16034. {
  16035. name: "Macro",
  16036. height: math.unit(300, "feet")
  16037. },
  16038. {
  16039. name: "Megamacro",
  16040. height: math.unit(300, "miles")
  16041. },
  16042. {
  16043. name: "Gigamacro",
  16044. height: math.unit(10000, "miles")
  16045. },
  16046. ]
  16047. ))
  16048. characterMakers.push(() => makeCharacter(
  16049. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16050. {
  16051. side: {
  16052. height: math.unit(2, "inches"),
  16053. weight: math.unit(5, "grams"),
  16054. name: "Side",
  16055. image: {
  16056. source: "./media/characters/arc/side.svg"
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Micro",
  16063. height: math.unit(2, "inches"),
  16064. default: true
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(1.1938, "meters"),
  16073. weight: math.unit(54, "kg"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/nebula-shahar/front.svg",
  16077. extra: 1642 / 1436,
  16078. bottom: 0.06
  16079. }
  16080. },
  16081. },
  16082. [
  16083. {
  16084. name: "Megamicro",
  16085. height: math.unit(0.3, "mm")
  16086. },
  16087. {
  16088. name: "Micro",
  16089. height: math.unit(3, "cm")
  16090. },
  16091. {
  16092. name: "Normal",
  16093. height: math.unit(138, "cm"),
  16094. default: true
  16095. },
  16096. {
  16097. name: "Macro",
  16098. height: math.unit(30, "m")
  16099. },
  16100. ]
  16101. ))
  16102. characterMakers.push(() => makeCharacter(
  16103. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16104. {
  16105. front: {
  16106. height: math.unit(5.24, "feet"),
  16107. weight: math.unit(150, "lb"),
  16108. name: "Front",
  16109. image: {
  16110. source: "./media/characters/shayla/front.svg",
  16111. extra: 1512 / 1414,
  16112. bottom: 0.01
  16113. }
  16114. },
  16115. back: {
  16116. height: math.unit(5.24, "feet"),
  16117. weight: math.unit(150, "lb"),
  16118. name: "Back",
  16119. image: {
  16120. source: "./media/characters/shayla/back.svg",
  16121. extra: 1512 / 1414
  16122. }
  16123. },
  16124. hand: {
  16125. height: math.unit(0.7781496062992126, "feet"),
  16126. name: "Hand",
  16127. image: {
  16128. source: "./media/characters/shayla/hand.svg"
  16129. }
  16130. },
  16131. foot: {
  16132. height: math.unit(1.4206036745406823, "feet"),
  16133. name: "Foot",
  16134. image: {
  16135. source: "./media/characters/shayla/foot.svg"
  16136. }
  16137. },
  16138. },
  16139. [
  16140. {
  16141. name: "Micro",
  16142. height: math.unit(0.32, "feet")
  16143. },
  16144. {
  16145. name: "Normal",
  16146. height: math.unit(5.24, "feet"),
  16147. default: true
  16148. },
  16149. {
  16150. name: "Macro",
  16151. height: math.unit(492.12, "feet")
  16152. },
  16153. {
  16154. name: "Megamacro",
  16155. height: math.unit(186.41, "miles")
  16156. },
  16157. ]
  16158. ))
  16159. characterMakers.push(() => makeCharacter(
  16160. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16161. {
  16162. front: {
  16163. height: math.unit(2.2, "m"),
  16164. weight: math.unit(120, "kg"),
  16165. name: "Front",
  16166. image: {
  16167. source: "./media/characters/pia-jr/front.svg",
  16168. extra: 1000 / 970,
  16169. bottom: 0.035
  16170. }
  16171. },
  16172. hand: {
  16173. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16174. name: "Hand",
  16175. image: {
  16176. source: "./media/characters/pia-jr/hand.svg"
  16177. }
  16178. },
  16179. paw: {
  16180. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16181. name: "Paw",
  16182. image: {
  16183. source: "./media/characters/pia-jr/paw.svg"
  16184. }
  16185. },
  16186. },
  16187. [
  16188. {
  16189. name: "Micro",
  16190. height: math.unit(1.2, "cm")
  16191. },
  16192. {
  16193. name: "Normal",
  16194. height: math.unit(2.2, "m"),
  16195. default: true
  16196. },
  16197. {
  16198. name: "Macro",
  16199. height: math.unit(180, "m")
  16200. },
  16201. {
  16202. name: "Megamacro",
  16203. height: math.unit(420, "km")
  16204. },
  16205. ]
  16206. ))
  16207. characterMakers.push(() => makeCharacter(
  16208. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16209. {
  16210. front: {
  16211. height: math.unit(2, "m"),
  16212. weight: math.unit(115, "kg"),
  16213. name: "Front",
  16214. image: {
  16215. source: "./media/characters/pia-sr/front.svg",
  16216. extra: 760 / 730,
  16217. bottom: 0.015
  16218. }
  16219. },
  16220. back: {
  16221. height: math.unit(2, "m"),
  16222. weight: math.unit(115, "kg"),
  16223. name: "Back",
  16224. image: {
  16225. source: "./media/characters/pia-sr/back.svg",
  16226. extra: 760 / 730,
  16227. bottom: 0.01
  16228. }
  16229. },
  16230. hand: {
  16231. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16232. name: "Hand",
  16233. image: {
  16234. source: "./media/characters/pia-sr/hand.svg"
  16235. }
  16236. },
  16237. foot: {
  16238. height: math.unit(1.83, "feet"),
  16239. name: "Foot",
  16240. image: {
  16241. source: "./media/characters/pia-sr/foot.svg"
  16242. }
  16243. },
  16244. },
  16245. [
  16246. {
  16247. name: "Micro",
  16248. height: math.unit(88, "mm")
  16249. },
  16250. {
  16251. name: "Normal",
  16252. height: math.unit(2, "m"),
  16253. default: true
  16254. },
  16255. {
  16256. name: "Macro",
  16257. height: math.unit(200, "m")
  16258. },
  16259. {
  16260. name: "Megamacro",
  16261. height: math.unit(420, "km")
  16262. },
  16263. ]
  16264. ))
  16265. characterMakers.push(() => makeCharacter(
  16266. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16267. {
  16268. front: {
  16269. height: math.unit(8 + 2 / 12, "feet"),
  16270. weight: math.unit(300, "lb"),
  16271. name: "Front",
  16272. image: {
  16273. source: "./media/characters/kibibyte/front.svg",
  16274. extra: 2221 / 2098,
  16275. bottom: 0.04
  16276. }
  16277. },
  16278. },
  16279. [
  16280. {
  16281. name: "Normal",
  16282. height: math.unit(8 + 2 / 12, "feet"),
  16283. default: true
  16284. },
  16285. {
  16286. name: "Socialable Macro",
  16287. height: math.unit(50, "feet")
  16288. },
  16289. {
  16290. name: "Macro",
  16291. height: math.unit(300, "feet")
  16292. },
  16293. {
  16294. name: "Megamacro",
  16295. height: math.unit(500, "miles")
  16296. },
  16297. ]
  16298. ))
  16299. characterMakers.push(() => makeCharacter(
  16300. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16301. {
  16302. front: {
  16303. height: math.unit(6, "feet"),
  16304. weight: math.unit(150, "lb"),
  16305. name: "Front",
  16306. image: {
  16307. source: "./media/characters/felix/front.svg",
  16308. extra: 762 / 722,
  16309. bottom: 0.02
  16310. }
  16311. },
  16312. frontClothed: {
  16313. height: math.unit(6, "feet"),
  16314. weight: math.unit(150, "lb"),
  16315. name: "Front (Clothed)",
  16316. image: {
  16317. source: "./media/characters/felix/front-clothed.svg",
  16318. extra: 762 / 722,
  16319. bottom: 0.02
  16320. }
  16321. },
  16322. },
  16323. [
  16324. {
  16325. name: "Normal",
  16326. height: math.unit(6 + 8 / 12, "feet"),
  16327. default: true
  16328. },
  16329. {
  16330. name: "Macro",
  16331. height: math.unit(2600, "feet")
  16332. },
  16333. {
  16334. name: "Megamacro",
  16335. height: math.unit(450, "miles")
  16336. },
  16337. ]
  16338. ))
  16339. characterMakers.push(() => makeCharacter(
  16340. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16341. {
  16342. front: {
  16343. height: math.unit(6 + 1 / 12, "feet"),
  16344. weight: math.unit(250, "lb"),
  16345. name: "Front",
  16346. image: {
  16347. source: "./media/characters/tobo/front.svg",
  16348. extra: 608 / 586,
  16349. bottom: 0.023
  16350. }
  16351. },
  16352. back: {
  16353. height: math.unit(6 + 1 / 12, "feet"),
  16354. weight: math.unit(250, "lb"),
  16355. name: "Back",
  16356. image: {
  16357. source: "./media/characters/tobo/back.svg",
  16358. extra: 608 / 586
  16359. }
  16360. },
  16361. },
  16362. [
  16363. {
  16364. name: "Nano",
  16365. height: math.unit(2, "nm")
  16366. },
  16367. {
  16368. name: "Megamicro",
  16369. height: math.unit(0.1, "mm")
  16370. },
  16371. {
  16372. name: "Micro",
  16373. height: math.unit(1, "inch"),
  16374. default: true
  16375. },
  16376. {
  16377. name: "Human-sized",
  16378. height: math.unit(6 + 1 / 12, "feet")
  16379. },
  16380. {
  16381. name: "Macro",
  16382. height: math.unit(250, "feet")
  16383. },
  16384. {
  16385. name: "Megamacro",
  16386. height: math.unit(75, "miles")
  16387. },
  16388. {
  16389. name: "Texas-sized",
  16390. height: math.unit(750, "miles")
  16391. },
  16392. {
  16393. name: "Teramacro",
  16394. height: math.unit(50000, "miles")
  16395. },
  16396. ]
  16397. ))
  16398. characterMakers.push(() => makeCharacter(
  16399. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16400. {
  16401. front: {
  16402. height: math.unit(6, "feet"),
  16403. weight: math.unit(269, "lb"),
  16404. name: "Front",
  16405. image: {
  16406. source: "./media/characters/danny-kapowsky/front.svg",
  16407. extra: 766 / 736,
  16408. bottom: 0.044
  16409. }
  16410. },
  16411. back: {
  16412. height: math.unit(6, "feet"),
  16413. weight: math.unit(269, "lb"),
  16414. name: "Back",
  16415. image: {
  16416. source: "./media/characters/danny-kapowsky/back.svg",
  16417. extra: 797 / 760,
  16418. bottom: 0.025
  16419. }
  16420. },
  16421. },
  16422. [
  16423. {
  16424. name: "Macro",
  16425. height: math.unit(150, "feet"),
  16426. default: true
  16427. },
  16428. {
  16429. name: "Macro+",
  16430. height: math.unit(200, "feet")
  16431. },
  16432. {
  16433. name: "Macro++",
  16434. height: math.unit(300, "feet")
  16435. },
  16436. {
  16437. name: "Macro+++",
  16438. height: math.unit(400, "feet")
  16439. },
  16440. ]
  16441. ))
  16442. characterMakers.push(() => makeCharacter(
  16443. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16444. {
  16445. side: {
  16446. height: math.unit(6, "feet"),
  16447. weight: math.unit(170, "lb"),
  16448. name: "Side",
  16449. image: {
  16450. source: "./media/characters/finn/side.svg",
  16451. extra: 1953 / 1807,
  16452. bottom: 0.057
  16453. }
  16454. },
  16455. },
  16456. [
  16457. {
  16458. name: "Megamacro",
  16459. height: math.unit(14445, "feet"),
  16460. default: true
  16461. },
  16462. ]
  16463. ))
  16464. characterMakers.push(() => makeCharacter(
  16465. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16466. {
  16467. front: {
  16468. height: math.unit(5 + 6 / 12, "feet"),
  16469. weight: math.unit(125, "lb"),
  16470. name: "Front",
  16471. image: {
  16472. source: "./media/characters/roy/front.svg",
  16473. extra: 1,
  16474. bottom: 0.11
  16475. }
  16476. },
  16477. },
  16478. [
  16479. {
  16480. name: "Micro",
  16481. height: math.unit(3, "inches"),
  16482. default: true
  16483. },
  16484. {
  16485. name: "Normal",
  16486. height: math.unit(5 + 6 / 12, "feet")
  16487. },
  16488. {
  16489. name: "Lesser Macro",
  16490. height: math.unit(60, "feet")
  16491. },
  16492. {
  16493. name: "Greater Macro",
  16494. height: math.unit(120, "feet")
  16495. },
  16496. ]
  16497. ))
  16498. characterMakers.push(() => makeCharacter(
  16499. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16500. {
  16501. front: {
  16502. height: math.unit(6, "feet"),
  16503. weight: math.unit(100, "lb"),
  16504. name: "Front",
  16505. image: {
  16506. source: "./media/characters/aevsivs/front.svg",
  16507. extra: 1,
  16508. bottom: 0.03
  16509. }
  16510. },
  16511. back: {
  16512. height: math.unit(6, "feet"),
  16513. weight: math.unit(100, "lb"),
  16514. name: "Back",
  16515. image: {
  16516. source: "./media/characters/aevsivs/back.svg"
  16517. }
  16518. },
  16519. },
  16520. [
  16521. {
  16522. name: "Micro",
  16523. height: math.unit(2, "inches"),
  16524. default: true
  16525. },
  16526. {
  16527. name: "Normal",
  16528. height: math.unit(5, "feet")
  16529. },
  16530. ]
  16531. ))
  16532. characterMakers.push(() => makeCharacter(
  16533. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16534. {
  16535. front: {
  16536. height: math.unit(5 + 7 / 12, "feet"),
  16537. weight: math.unit(159, "lb"),
  16538. name: "Front",
  16539. image: {
  16540. source: "./media/characters/hildegard/front.svg",
  16541. extra: 289 / 269,
  16542. bottom: 7.63 / 297.8
  16543. }
  16544. },
  16545. back: {
  16546. height: math.unit(5 + 7 / 12, "feet"),
  16547. weight: math.unit(159, "lb"),
  16548. name: "Back",
  16549. image: {
  16550. source: "./media/characters/hildegard/back.svg",
  16551. extra: 280 / 260,
  16552. bottom: 2.3 / 282
  16553. }
  16554. },
  16555. },
  16556. [
  16557. {
  16558. name: "Normal",
  16559. height: math.unit(5 + 7 / 12, "feet"),
  16560. default: true
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16566. {
  16567. bernard: {
  16568. height: math.unit(2 + 7 / 12, "feet"),
  16569. weight: math.unit(66, "lb"),
  16570. name: "Bernard",
  16571. rename: true,
  16572. image: {
  16573. source: "./media/characters/bernard-wilder/bernard.svg",
  16574. extra: 192 / 128,
  16575. bottom: 0.05
  16576. }
  16577. },
  16578. wilder: {
  16579. height: math.unit(5 + 8 / 12, "feet"),
  16580. weight: math.unit(143, "lb"),
  16581. name: "Wilder",
  16582. rename: true,
  16583. image: {
  16584. source: "./media/characters/bernard-wilder/wilder.svg",
  16585. extra: 361 / 312,
  16586. bottom: 0.02
  16587. }
  16588. },
  16589. },
  16590. [
  16591. {
  16592. name: "Normal",
  16593. height: math.unit(2 + 7 / 12, "feet"),
  16594. default: true
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16600. {
  16601. anthro: {
  16602. height: math.unit(6 + 1 / 12, "feet"),
  16603. weight: math.unit(155, "lb"),
  16604. name: "Anthro",
  16605. image: {
  16606. source: "./media/characters/hearth/anthro.svg",
  16607. extra: 1178/1136,
  16608. bottom: 28/1206
  16609. }
  16610. },
  16611. feral: {
  16612. height: math.unit(3.78, "feet"),
  16613. weight: math.unit(35, "kg"),
  16614. name: "Feral",
  16615. image: {
  16616. source: "./media/characters/hearth/feral.svg",
  16617. extra: 153 / 135,
  16618. bottom: 0.03
  16619. }
  16620. },
  16621. },
  16622. [
  16623. {
  16624. name: "Normal",
  16625. height: math.unit(6 + 1 / 12, "feet"),
  16626. default: true
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16632. {
  16633. front: {
  16634. height: math.unit(6, "feet"),
  16635. weight: math.unit(182, "lb"),
  16636. name: "Front",
  16637. image: {
  16638. source: "./media/characters/ingrid/front.svg",
  16639. extra: 294 / 268,
  16640. bottom: 0.027
  16641. }
  16642. },
  16643. },
  16644. [
  16645. {
  16646. name: "Normal",
  16647. height: math.unit(6, "feet"),
  16648. default: true
  16649. },
  16650. ]
  16651. ))
  16652. characterMakers.push(() => makeCharacter(
  16653. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16654. {
  16655. eevee: {
  16656. height: math.unit(2 + 10 / 12, "feet"),
  16657. weight: math.unit(86, "lb"),
  16658. name: "Malgam",
  16659. image: {
  16660. source: "./media/characters/malgam/eevee.svg",
  16661. extra: 952/784,
  16662. bottom: 38/990
  16663. }
  16664. },
  16665. sylveon: {
  16666. height: math.unit(4, "feet"),
  16667. weight: math.unit(101, "lb"),
  16668. name: "Future Malgam",
  16669. rename: true,
  16670. image: {
  16671. source: "./media/characters/malgam/sylveon.svg",
  16672. extra: 371 / 325,
  16673. bottom: 0.015
  16674. }
  16675. },
  16676. gigantamax: {
  16677. height: math.unit(50, "feet"),
  16678. name: "Gigantamax Malgam",
  16679. rename: true,
  16680. image: {
  16681. source: "./media/characters/malgam/gigantamax.svg"
  16682. }
  16683. },
  16684. },
  16685. [
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(2 + 10 / 12, "feet"),
  16689. default: true
  16690. },
  16691. ]
  16692. ))
  16693. characterMakers.push(() => makeCharacter(
  16694. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16695. {
  16696. front: {
  16697. height: math.unit(5 + 11 / 12, "feet"),
  16698. weight: math.unit(188, "lb"),
  16699. name: "Front",
  16700. image: {
  16701. source: "./media/characters/fleur/front.svg",
  16702. extra: 309 / 283,
  16703. bottom: 0.007
  16704. }
  16705. },
  16706. },
  16707. [
  16708. {
  16709. name: "Normal",
  16710. height: math.unit(5 + 11 / 12, "feet"),
  16711. default: true
  16712. },
  16713. ]
  16714. ))
  16715. characterMakers.push(() => makeCharacter(
  16716. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16717. {
  16718. front: {
  16719. height: math.unit(5 + 4 / 12, "feet"),
  16720. weight: math.unit(122, "lb"),
  16721. name: "Front",
  16722. image: {
  16723. source: "./media/characters/jude/front.svg",
  16724. extra: 288 / 273,
  16725. bottom: 0.03
  16726. }
  16727. },
  16728. },
  16729. [
  16730. {
  16731. name: "Normal",
  16732. height: math.unit(5 + 4 / 12, "feet"),
  16733. default: true
  16734. },
  16735. ]
  16736. ))
  16737. characterMakers.push(() => makeCharacter(
  16738. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16739. {
  16740. front: {
  16741. height: math.unit(5 + 11 / 12, "feet"),
  16742. weight: math.unit(190, "lb"),
  16743. name: "Front",
  16744. image: {
  16745. source: "./media/characters/seara/front.svg",
  16746. extra: 1,
  16747. bottom: 0.05
  16748. }
  16749. },
  16750. },
  16751. [
  16752. {
  16753. name: "Normal",
  16754. height: math.unit(5 + 11 / 12, "feet"),
  16755. default: true
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16761. {
  16762. front: {
  16763. height: math.unit(16 + 5 / 12, "feet"),
  16764. weight: math.unit(524, "lb"),
  16765. name: "Front",
  16766. image: {
  16767. source: "./media/characters/caspian-lugia/front.svg",
  16768. extra: 1,
  16769. bottom: 0.04
  16770. }
  16771. },
  16772. },
  16773. [
  16774. {
  16775. name: "Normal",
  16776. height: math.unit(16 + 5 / 12, "feet"),
  16777. default: true
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16783. {
  16784. front: {
  16785. height: math.unit(5 + 7 / 12, "feet"),
  16786. weight: math.unit(170, "lb"),
  16787. name: "Front",
  16788. image: {
  16789. source: "./media/characters/mika/front.svg",
  16790. extra: 1,
  16791. bottom: 0.016
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Normal",
  16798. height: math.unit(5 + 7 / 12, "feet"),
  16799. default: true
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(6 + 2 / 12, "feet"),
  16808. weight: math.unit(268, "lb"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/sol/front.svg",
  16812. extra: 247 / 231,
  16813. bottom: 0.05
  16814. }
  16815. },
  16816. },
  16817. [
  16818. {
  16819. name: "Normal",
  16820. height: math.unit(6 + 2 / 12, "feet"),
  16821. default: true
  16822. },
  16823. ]
  16824. ))
  16825. characterMakers.push(() => makeCharacter(
  16826. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16827. {
  16828. buizel: {
  16829. height: math.unit(2 + 5 / 12, "feet"),
  16830. weight: math.unit(87, "lb"),
  16831. name: "Front",
  16832. image: {
  16833. source: "./media/characters/umiko/buizel.svg",
  16834. extra: 172 / 157,
  16835. bottom: 0.01
  16836. },
  16837. form: "buizel",
  16838. default: true
  16839. },
  16840. floatzel: {
  16841. height: math.unit(5 + 9 / 12, "feet"),
  16842. weight: math.unit(250, "lb"),
  16843. name: "Front",
  16844. image: {
  16845. source: "./media/characters/umiko/floatzel.svg",
  16846. extra: 1076/1006,
  16847. bottom: 15/1091
  16848. },
  16849. form: "floatzel",
  16850. default: true
  16851. },
  16852. },
  16853. [
  16854. {
  16855. name: "Normal",
  16856. height: math.unit(2 + 5 / 12, "feet"),
  16857. form: "buizel",
  16858. default: true
  16859. },
  16860. {
  16861. name: "Normal",
  16862. height: math.unit(5 + 9 / 12, "feet"),
  16863. form: "floatzel",
  16864. default: true
  16865. },
  16866. ],
  16867. {
  16868. "buizel": {
  16869. name: "Buizel"
  16870. },
  16871. "floatzel": {
  16872. name: "Floatzel",
  16873. default: true
  16874. }
  16875. }
  16876. ))
  16877. characterMakers.push(() => makeCharacter(
  16878. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16879. {
  16880. front: {
  16881. height: math.unit(6 + 2 / 12, "feet"),
  16882. weight: math.unit(146, "lb"),
  16883. name: "Front",
  16884. image: {
  16885. source: "./media/characters/iliac/front.svg",
  16886. extra: 389 / 365,
  16887. bottom: 0.035
  16888. }
  16889. },
  16890. },
  16891. [
  16892. {
  16893. name: "Normal",
  16894. height: math.unit(6 + 2 / 12, "feet"),
  16895. default: true
  16896. },
  16897. ]
  16898. ))
  16899. characterMakers.push(() => makeCharacter(
  16900. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16901. {
  16902. front: {
  16903. height: math.unit(6, "feet"),
  16904. weight: math.unit(170, "lb"),
  16905. name: "Front",
  16906. image: {
  16907. source: "./media/characters/topaz/front.svg",
  16908. extra: 317 / 303,
  16909. bottom: 0.055
  16910. }
  16911. },
  16912. },
  16913. [
  16914. {
  16915. name: "Normal",
  16916. height: math.unit(6, "feet"),
  16917. default: true
  16918. },
  16919. ]
  16920. ))
  16921. characterMakers.push(() => makeCharacter(
  16922. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16923. {
  16924. front: {
  16925. height: math.unit(5 + 11 / 12, "feet"),
  16926. weight: math.unit(144, "lb"),
  16927. name: "Front",
  16928. image: {
  16929. source: "./media/characters/gabriel/front.svg",
  16930. extra: 285 / 262,
  16931. bottom: 0.004
  16932. }
  16933. },
  16934. },
  16935. [
  16936. {
  16937. name: "Normal",
  16938. height: math.unit(5 + 11 / 12, "feet"),
  16939. default: true
  16940. },
  16941. ]
  16942. ))
  16943. characterMakers.push(() => makeCharacter(
  16944. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16945. {
  16946. side: {
  16947. height: math.unit(6 + 5 / 12, "feet"),
  16948. weight: math.unit(300, "lb"),
  16949. name: "Side",
  16950. image: {
  16951. source: "./media/characters/tempest-suicune/side.svg",
  16952. extra: 195 / 154,
  16953. bottom: 0.04
  16954. }
  16955. },
  16956. },
  16957. [
  16958. {
  16959. name: "Normal",
  16960. height: math.unit(6 + 5 / 12, "feet"),
  16961. default: true
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16967. {
  16968. front: {
  16969. height: math.unit(7 + 2 / 12, "feet"),
  16970. weight: math.unit(322, "lb"),
  16971. name: "Front",
  16972. image: {
  16973. source: "./media/characters/vulcan/front.svg",
  16974. extra: 154 / 147,
  16975. bottom: 0.04
  16976. }
  16977. },
  16978. },
  16979. [
  16980. {
  16981. name: "Normal",
  16982. height: math.unit(7 + 2 / 12, "feet"),
  16983. default: true
  16984. },
  16985. ]
  16986. ))
  16987. characterMakers.push(() => makeCharacter(
  16988. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16989. {
  16990. front: {
  16991. height: math.unit(5 + 10 / 12, "feet"),
  16992. weight: math.unit(264, "lb"),
  16993. name: "Front",
  16994. image: {
  16995. source: "./media/characters/gault/front.svg",
  16996. extra: 161 / 140,
  16997. bottom: 0.028
  16998. }
  16999. },
  17000. },
  17001. [
  17002. {
  17003. name: "Normal",
  17004. height: math.unit(5 + 10 / 12, "feet"),
  17005. default: true
  17006. },
  17007. ]
  17008. ))
  17009. characterMakers.push(() => makeCharacter(
  17010. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17011. {
  17012. front: {
  17013. height: math.unit(6, "feet"),
  17014. weight: math.unit(150, "lb"),
  17015. name: "Front",
  17016. image: {
  17017. source: "./media/characters/shard/front.svg",
  17018. extra: 273 / 238,
  17019. bottom: 0.02
  17020. }
  17021. },
  17022. },
  17023. [
  17024. {
  17025. name: "Normal",
  17026. height: math.unit(3 + 6 / 12, "feet"),
  17027. default: true
  17028. },
  17029. ]
  17030. ))
  17031. characterMakers.push(() => makeCharacter(
  17032. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17033. {
  17034. front: {
  17035. height: math.unit(5 + 11 / 12, "feet"),
  17036. weight: math.unit(146, "lb"),
  17037. name: "Front",
  17038. image: {
  17039. source: "./media/characters/ashe/front.svg",
  17040. extra: 400 / 373,
  17041. bottom: 0.01
  17042. }
  17043. },
  17044. },
  17045. [
  17046. {
  17047. name: "Normal",
  17048. height: math.unit(5 + 11 / 12, "feet"),
  17049. default: true
  17050. },
  17051. ]
  17052. ))
  17053. characterMakers.push(() => makeCharacter(
  17054. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17055. {
  17056. front: {
  17057. height: math.unit(5 + 5 / 12, "feet"),
  17058. weight: math.unit(135, "lb"),
  17059. name: "Front",
  17060. image: {
  17061. source: "./media/characters/beatrix/front.svg",
  17062. extra: 392 / 379,
  17063. bottom: 0.01
  17064. }
  17065. },
  17066. },
  17067. [
  17068. {
  17069. name: "Normal",
  17070. height: math.unit(6, "feet"),
  17071. default: true
  17072. },
  17073. ]
  17074. ))
  17075. characterMakers.push(() => makeCharacter(
  17076. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17077. {
  17078. front: {
  17079. height: math.unit(6 + 2/12, "feet"),
  17080. weight: math.unit(135, "lb"),
  17081. name: "Front",
  17082. image: {
  17083. source: "./media/characters/ignatius/front.svg",
  17084. extra: 1380/1259,
  17085. bottom: 27/1407
  17086. }
  17087. },
  17088. },
  17089. [
  17090. {
  17091. name: "Normal",
  17092. height: math.unit(6 + 2/12, "feet"),
  17093. default: true
  17094. },
  17095. ]
  17096. ))
  17097. characterMakers.push(() => makeCharacter(
  17098. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17099. {
  17100. front: {
  17101. height: math.unit(6 + 2 / 12, "feet"),
  17102. weight: math.unit(138, "lb"),
  17103. name: "Front",
  17104. image: {
  17105. source: "./media/characters/mei-li/front.svg",
  17106. extra: 237 / 229,
  17107. bottom: 0.03
  17108. }
  17109. },
  17110. },
  17111. [
  17112. {
  17113. name: "Normal",
  17114. height: math.unit(6 + 2 / 12, "feet"),
  17115. default: true
  17116. },
  17117. ]
  17118. ))
  17119. characterMakers.push(() => makeCharacter(
  17120. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17121. {
  17122. front: {
  17123. height: math.unit(2 + 4 / 12, "feet"),
  17124. weight: math.unit(62, "lb"),
  17125. name: "Front",
  17126. image: {
  17127. source: "./media/characters/puru/front.svg",
  17128. extra: 206 / 149,
  17129. bottom: 0.06
  17130. }
  17131. },
  17132. },
  17133. [
  17134. {
  17135. name: "Normal",
  17136. height: math.unit(2 + 4 / 12, "feet"),
  17137. default: true
  17138. },
  17139. ]
  17140. ))
  17141. characterMakers.push(() => makeCharacter(
  17142. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17143. {
  17144. anthro: {
  17145. height: math.unit(5 + 8/12, "feet"),
  17146. weight: math.unit(200, "lb"),
  17147. energyNeed: math.unit(2000, "kcal"),
  17148. name: "Anthro",
  17149. image: {
  17150. source: "./media/characters/kee/anthro.svg",
  17151. extra: 3251/3184,
  17152. bottom: 250/3501
  17153. }
  17154. },
  17155. taur: {
  17156. height: math.unit(11, "feet"),
  17157. weight: math.unit(500, "lb"),
  17158. energyNeed: math.unit(5000, "kcal"),
  17159. name: "Taur",
  17160. image: {
  17161. source: "./media/characters/kee/taur.svg",
  17162. extra: 1362/1320,
  17163. bottom: 83/1445
  17164. }
  17165. },
  17166. },
  17167. [
  17168. {
  17169. name: "Normal",
  17170. height: math.unit(5 + 8/12, "feet"),
  17171. default: true
  17172. },
  17173. {
  17174. name: "Macro",
  17175. height: math.unit(35, "feet")
  17176. },
  17177. ]
  17178. ))
  17179. characterMakers.push(() => makeCharacter(
  17180. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17181. {
  17182. anthro: {
  17183. height: math.unit(7, "feet"),
  17184. weight: math.unit(190, "lb"),
  17185. name: "Anthro",
  17186. image: {
  17187. source: "./media/characters/cobalt-dracha/anthro.svg",
  17188. extra: 231 / 225,
  17189. bottom: 0.04
  17190. }
  17191. },
  17192. feral: {
  17193. height: math.unit(9 + 7 / 12, "feet"),
  17194. weight: math.unit(294, "lb"),
  17195. name: "Feral",
  17196. image: {
  17197. source: "./media/characters/cobalt-dracha/feral.svg",
  17198. extra: 692 / 633,
  17199. bottom: 0.05
  17200. }
  17201. },
  17202. },
  17203. [
  17204. {
  17205. name: "Normal",
  17206. height: math.unit(7, "feet"),
  17207. default: true
  17208. },
  17209. ]
  17210. ))
  17211. characterMakers.push(() => makeCharacter(
  17212. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17213. {
  17214. fallen: {
  17215. height: math.unit(11 + 8 / 12, "feet"),
  17216. weight: math.unit(485, "lb"),
  17217. name: "Java (Fallen)",
  17218. rename: true,
  17219. image: {
  17220. source: "./media/characters/java/fallen.svg",
  17221. extra: 226 / 208,
  17222. bottom: 0.005
  17223. }
  17224. },
  17225. godkin: {
  17226. height: math.unit(10 + 6 / 12, "feet"),
  17227. weight: math.unit(328, "lb"),
  17228. name: "Java (Godkin)",
  17229. rename: true,
  17230. image: {
  17231. source: "./media/characters/java/godkin.svg",
  17232. extra: 1104/1068,
  17233. bottom: 36/1140
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Normal",
  17240. height: math.unit(11 + 8 / 12, "feet"),
  17241. default: true
  17242. },
  17243. ]
  17244. ))
  17245. characterMakers.push(() => makeCharacter(
  17246. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17247. {
  17248. front: {
  17249. height: math.unit(5 + 9 / 12, "feet"),
  17250. weight: math.unit(170, "lb"),
  17251. name: "Front",
  17252. image: {
  17253. source: "./media/characters/purna/front.svg",
  17254. extra: 239 / 229,
  17255. bottom: 0.01
  17256. }
  17257. },
  17258. },
  17259. [
  17260. {
  17261. name: "Normal",
  17262. height: math.unit(5 + 9 / 12, "feet"),
  17263. default: true
  17264. },
  17265. ]
  17266. ))
  17267. characterMakers.push(() => makeCharacter(
  17268. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17269. {
  17270. front: {
  17271. height: math.unit(5 + 9 / 12, "feet"),
  17272. weight: math.unit(142, "lb"),
  17273. name: "Front",
  17274. image: {
  17275. source: "./media/characters/kuva/front.svg",
  17276. extra: 281 / 271,
  17277. bottom: 0.006
  17278. }
  17279. },
  17280. },
  17281. [
  17282. {
  17283. name: "Normal",
  17284. height: math.unit(5 + 9 / 12, "feet"),
  17285. default: true
  17286. },
  17287. ]
  17288. ))
  17289. characterMakers.push(() => makeCharacter(
  17290. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17291. {
  17292. anthro: {
  17293. height: math.unit(9 + 2 / 12, "feet"),
  17294. weight: math.unit(270, "lb"),
  17295. name: "Anthro",
  17296. image: {
  17297. source: "./media/characters/embra/anthro.svg",
  17298. extra: 200 / 187,
  17299. bottom: 0.02
  17300. }
  17301. },
  17302. feral: {
  17303. height: math.unit(18 + 8 / 12, "feet"),
  17304. weight: math.unit(576, "lb"),
  17305. name: "Feral",
  17306. image: {
  17307. source: "./media/characters/embra/feral.svg",
  17308. extra: 152 / 137,
  17309. bottom: 0.037
  17310. }
  17311. },
  17312. },
  17313. [
  17314. {
  17315. name: "Normal",
  17316. height: math.unit(9 + 2 / 12, "feet"),
  17317. default: true
  17318. },
  17319. ]
  17320. ))
  17321. characterMakers.push(() => makeCharacter(
  17322. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17323. {
  17324. anthro: {
  17325. height: math.unit(10 + 9 / 12, "feet"),
  17326. weight: math.unit(224, "lb"),
  17327. name: "Anthro",
  17328. image: {
  17329. source: "./media/characters/grottos/anthro.svg",
  17330. extra: 350 / 332,
  17331. bottom: 0.045
  17332. }
  17333. },
  17334. feral: {
  17335. height: math.unit(20 + 7 / 12, "feet"),
  17336. weight: math.unit(629, "lb"),
  17337. name: "Feral",
  17338. image: {
  17339. source: "./media/characters/grottos/feral.svg",
  17340. extra: 207 / 190,
  17341. bottom: 0.05
  17342. }
  17343. },
  17344. },
  17345. [
  17346. {
  17347. name: "Normal",
  17348. height: math.unit(10 + 9 / 12, "feet"),
  17349. default: true
  17350. },
  17351. ]
  17352. ))
  17353. characterMakers.push(() => makeCharacter(
  17354. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17355. {
  17356. anthro: {
  17357. height: math.unit(9 + 6 / 12, "feet"),
  17358. weight: math.unit(298, "lb"),
  17359. name: "Anthro",
  17360. image: {
  17361. source: "./media/characters/frifna/anthro.svg",
  17362. extra: 282 / 269,
  17363. bottom: 0.015
  17364. }
  17365. },
  17366. feral: {
  17367. height: math.unit(16 + 2 / 12, "feet"),
  17368. weight: math.unit(624, "lb"),
  17369. name: "Feral",
  17370. image: {
  17371. source: "./media/characters/frifna/feral.svg"
  17372. }
  17373. },
  17374. },
  17375. [
  17376. {
  17377. name: "Normal",
  17378. height: math.unit(9 + 6 / 12, "feet"),
  17379. default: true
  17380. },
  17381. ]
  17382. ))
  17383. characterMakers.push(() => makeCharacter(
  17384. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17385. {
  17386. front: {
  17387. height: math.unit(6 + 2 / 12, "feet"),
  17388. weight: math.unit(168, "lb"),
  17389. name: "Front",
  17390. image: {
  17391. source: "./media/characters/elise/front.svg",
  17392. extra: 276 / 271
  17393. }
  17394. },
  17395. },
  17396. [
  17397. {
  17398. name: "Normal",
  17399. height: math.unit(6 + 2 / 12, "feet"),
  17400. default: true
  17401. },
  17402. ]
  17403. ))
  17404. characterMakers.push(() => makeCharacter(
  17405. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17406. {
  17407. front: {
  17408. height: math.unit(5 + 10 / 12, "feet"),
  17409. weight: math.unit(210, "lb"),
  17410. name: "Front",
  17411. image: {
  17412. source: "./media/characters/glade/front.svg",
  17413. extra: 258 / 247,
  17414. bottom: 0.008
  17415. }
  17416. },
  17417. },
  17418. [
  17419. {
  17420. name: "Normal",
  17421. height: math.unit(5 + 10 / 12, "feet"),
  17422. default: true
  17423. },
  17424. ]
  17425. ))
  17426. characterMakers.push(() => makeCharacter(
  17427. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17428. {
  17429. front: {
  17430. height: math.unit(5 + 10 / 12, "feet"),
  17431. weight: math.unit(129, "lb"),
  17432. name: "Front",
  17433. image: {
  17434. source: "./media/characters/rina/front.svg",
  17435. extra: 266 / 255,
  17436. bottom: 0.005
  17437. }
  17438. },
  17439. },
  17440. [
  17441. {
  17442. name: "Normal",
  17443. height: math.unit(5 + 10 / 12, "feet"),
  17444. default: true
  17445. },
  17446. ]
  17447. ))
  17448. characterMakers.push(() => makeCharacter(
  17449. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17450. {
  17451. front: {
  17452. height: math.unit(6 + 1 / 12, "feet"),
  17453. weight: math.unit(192, "lb"),
  17454. name: "Front",
  17455. image: {
  17456. source: "./media/characters/veronica/front.svg",
  17457. extra: 319 / 309,
  17458. bottom: 0.005
  17459. }
  17460. },
  17461. },
  17462. [
  17463. {
  17464. name: "Normal",
  17465. height: math.unit(6 + 1 / 12, "feet"),
  17466. default: true
  17467. },
  17468. ]
  17469. ))
  17470. characterMakers.push(() => makeCharacter(
  17471. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17472. {
  17473. front: {
  17474. height: math.unit(9 + 3 / 12, "feet"),
  17475. weight: math.unit(1100, "lb"),
  17476. name: "Front",
  17477. image: {
  17478. source: "./media/characters/braxton/front.svg",
  17479. extra: 1057 / 984,
  17480. bottom: 0.05
  17481. }
  17482. },
  17483. },
  17484. [
  17485. {
  17486. name: "Normal",
  17487. height: math.unit(9 + 3 / 12, "feet")
  17488. },
  17489. {
  17490. name: "Giant",
  17491. height: math.unit(300, "feet"),
  17492. default: true
  17493. },
  17494. {
  17495. name: "Macro",
  17496. height: math.unit(700, "feet")
  17497. },
  17498. {
  17499. name: "Megamacro",
  17500. height: math.unit(6000, "feet")
  17501. },
  17502. ]
  17503. ))
  17504. characterMakers.push(() => makeCharacter(
  17505. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17506. {
  17507. front: {
  17508. height: math.unit(6 + 7 / 12, "feet"),
  17509. weight: math.unit(150, "lb"),
  17510. name: "Front",
  17511. image: {
  17512. source: "./media/characters/blue-feyonics/front.svg",
  17513. extra: 1403 / 1306,
  17514. bottom: 0.047
  17515. }
  17516. },
  17517. },
  17518. [
  17519. {
  17520. name: "Normal",
  17521. height: math.unit(6 + 7 / 12, "feet"),
  17522. default: true
  17523. },
  17524. ]
  17525. ))
  17526. characterMakers.push(() => makeCharacter(
  17527. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17528. {
  17529. front: {
  17530. height: math.unit(1.8, "meters"),
  17531. weight: math.unit(60, "kg"),
  17532. name: "Front",
  17533. image: {
  17534. source: "./media/characters/maxwell/front.svg",
  17535. extra: 2060 / 1873
  17536. }
  17537. },
  17538. },
  17539. [
  17540. {
  17541. name: "Micro",
  17542. height: math.unit(1, "mm")
  17543. },
  17544. {
  17545. name: "Normal",
  17546. height: math.unit(1.8, "meter"),
  17547. default: true
  17548. },
  17549. {
  17550. name: "Macro",
  17551. height: math.unit(30, "meters")
  17552. },
  17553. {
  17554. name: "Megamacro",
  17555. height: math.unit(10, "km")
  17556. },
  17557. ]
  17558. ))
  17559. characterMakers.push(() => makeCharacter(
  17560. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17561. {
  17562. front: {
  17563. height: math.unit(6, "feet"),
  17564. weight: math.unit(150, "lb"),
  17565. name: "Front",
  17566. image: {
  17567. source: "./media/characters/jack/front.svg",
  17568. extra: 1754 / 1640,
  17569. bottom: 0.01
  17570. }
  17571. },
  17572. },
  17573. [
  17574. {
  17575. name: "Normal",
  17576. height: math.unit(80000, "feet"),
  17577. default: true
  17578. },
  17579. {
  17580. name: "Max size",
  17581. height: math.unit(10, "lightyears")
  17582. },
  17583. ]
  17584. ))
  17585. characterMakers.push(() => makeCharacter(
  17586. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17587. {
  17588. urban: {
  17589. height: math.unit(5, "feet"),
  17590. weight: math.unit(240, "lb"),
  17591. name: "Urban",
  17592. image: {
  17593. source: "./media/characters/cafat/urban.svg",
  17594. extra: 1223/1126,
  17595. bottom: 205/1428
  17596. }
  17597. },
  17598. summer: {
  17599. height: math.unit(5, "feet"),
  17600. weight: math.unit(240, "lb"),
  17601. name: "Summer",
  17602. image: {
  17603. source: "./media/characters/cafat/summer.svg",
  17604. extra: 1223/1126,
  17605. bottom: 205/1428
  17606. }
  17607. },
  17608. winter: {
  17609. height: math.unit(5, "feet"),
  17610. weight: math.unit(240, "lb"),
  17611. name: "Winter",
  17612. image: {
  17613. source: "./media/characters/cafat/winter.svg",
  17614. extra: 1223/1126,
  17615. bottom: 205/1428
  17616. }
  17617. },
  17618. lingerie: {
  17619. height: math.unit(5, "feet"),
  17620. weight: math.unit(240, "lb"),
  17621. name: "Lingerie",
  17622. image: {
  17623. source: "./media/characters/cafat/lingerie.svg",
  17624. extra: 1223/1126,
  17625. bottom: 205/1428
  17626. }
  17627. },
  17628. upright: {
  17629. height: math.unit(6.3, "feet"),
  17630. weight: math.unit(240, "lb"),
  17631. name: "Upright",
  17632. image: {
  17633. source: "./media/characters/cafat/upright.svg",
  17634. bottom: 0.01
  17635. }
  17636. },
  17637. uprightFull: {
  17638. height: math.unit(6.3, "feet"),
  17639. weight: math.unit(240, "lb"),
  17640. name: "Upright (Full)",
  17641. image: {
  17642. source: "./media/characters/cafat/upright-full.svg",
  17643. bottom: 0.01
  17644. }
  17645. },
  17646. },
  17647. [
  17648. {
  17649. name: "Small",
  17650. height: math.unit(5, "feet"),
  17651. default: true
  17652. },
  17653. {
  17654. name: "Large",
  17655. height: math.unit(13, "feet")
  17656. },
  17657. ]
  17658. ))
  17659. characterMakers.push(() => makeCharacter(
  17660. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17661. {
  17662. front: {
  17663. height: math.unit(6, "feet"),
  17664. weight: math.unit(150, "lb"),
  17665. name: "Front",
  17666. image: {
  17667. source: "./media/characters/verin-raharra/front.svg",
  17668. extra: 5019 / 4835,
  17669. bottom: 0.023
  17670. }
  17671. },
  17672. },
  17673. [
  17674. {
  17675. name: "Normal",
  17676. height: math.unit(7 + 5 / 12, "feet"),
  17677. default: true
  17678. },
  17679. {
  17680. name: "Upsized",
  17681. height: math.unit(20, "feet")
  17682. },
  17683. ]
  17684. ))
  17685. characterMakers.push(() => makeCharacter(
  17686. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17687. {
  17688. front: {
  17689. height: math.unit(7, "feet"),
  17690. weight: math.unit(230, "lb"),
  17691. name: "Front",
  17692. image: {
  17693. source: "./media/characters/nakata/front.svg",
  17694. extra: 1.005,
  17695. bottom: 0.01
  17696. }
  17697. },
  17698. },
  17699. [
  17700. {
  17701. name: "Normal",
  17702. height: math.unit(7, "feet"),
  17703. default: true
  17704. },
  17705. {
  17706. name: "Big",
  17707. height: math.unit(14, "feet")
  17708. },
  17709. {
  17710. name: "Macro",
  17711. height: math.unit(400, "feet")
  17712. },
  17713. ]
  17714. ))
  17715. characterMakers.push(() => makeCharacter(
  17716. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17717. {
  17718. front: {
  17719. height: math.unit(4.91, "feet"),
  17720. weight: math.unit(100, "lb"),
  17721. name: "Front",
  17722. image: {
  17723. source: "./media/characters/lily/front.svg",
  17724. extra: 1585 / 1415,
  17725. bottom: 0.02
  17726. }
  17727. },
  17728. },
  17729. [
  17730. {
  17731. name: "Normal",
  17732. height: math.unit(4.91, "feet"),
  17733. default: true
  17734. },
  17735. ]
  17736. ))
  17737. characterMakers.push(() => makeCharacter(
  17738. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17739. {
  17740. laying: {
  17741. height: math.unit(4 + 4 / 12, "feet"),
  17742. weight: math.unit(600, "lb"),
  17743. name: "Laying",
  17744. image: {
  17745. source: "./media/characters/sheila/laying.svg",
  17746. extra: 1333 / 1265,
  17747. bottom: 0.16
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Normal",
  17754. height: math.unit(4 + 4 / 12, "feet"),
  17755. default: true
  17756. },
  17757. ]
  17758. ))
  17759. characterMakers.push(() => makeCharacter(
  17760. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17761. {
  17762. front: {
  17763. height: math.unit(6, "feet"),
  17764. weight: math.unit(190, "lb"),
  17765. name: "Front",
  17766. image: {
  17767. source: "./media/characters/sax/front.svg",
  17768. extra: 1187 / 973,
  17769. bottom: 0.042
  17770. }
  17771. },
  17772. },
  17773. [
  17774. {
  17775. name: "Micro",
  17776. height: math.unit(4, "inches"),
  17777. default: true
  17778. },
  17779. ]
  17780. ))
  17781. characterMakers.push(() => makeCharacter(
  17782. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17783. {
  17784. front: {
  17785. height: math.unit(6, "feet"),
  17786. weight: math.unit(150, "lb"),
  17787. name: "Front",
  17788. image: {
  17789. source: "./media/characters/pandora/front.svg",
  17790. extra: 2720 / 2556,
  17791. bottom: 0.015
  17792. }
  17793. },
  17794. back: {
  17795. height: math.unit(6, "feet"),
  17796. weight: math.unit(150, "lb"),
  17797. name: "Back",
  17798. image: {
  17799. source: "./media/characters/pandora/back.svg",
  17800. extra: 2720 / 2556,
  17801. bottom: 0.01
  17802. }
  17803. },
  17804. beans: {
  17805. height: math.unit(6 / 8, "feet"),
  17806. name: "Beans",
  17807. image: {
  17808. source: "./media/characters/pandora/beans.svg"
  17809. }
  17810. },
  17811. collar: {
  17812. height: math.unit(0.31, "feet"),
  17813. name: "Collar",
  17814. image: {
  17815. source: "./media/characters/pandora/collar.svg"
  17816. }
  17817. },
  17818. skirt: {
  17819. height: math.unit(6, "feet"),
  17820. weight: math.unit(150, "lb"),
  17821. name: "Skirt",
  17822. image: {
  17823. source: "./media/characters/pandora/skirt.svg",
  17824. extra: 1622 / 1525,
  17825. bottom: 0.015
  17826. }
  17827. },
  17828. hoodie: {
  17829. height: math.unit(6, "feet"),
  17830. weight: math.unit(150, "lb"),
  17831. name: "Hoodie",
  17832. image: {
  17833. source: "./media/characters/pandora/hoodie.svg",
  17834. extra: 1622 / 1525,
  17835. bottom: 0.015
  17836. }
  17837. },
  17838. casual: {
  17839. height: math.unit(6, "feet"),
  17840. weight: math.unit(150, "lb"),
  17841. name: "Casual",
  17842. image: {
  17843. source: "./media/characters/pandora/casual.svg",
  17844. extra: 1622 / 1525,
  17845. bottom: 0.015
  17846. }
  17847. },
  17848. },
  17849. [
  17850. {
  17851. name: "Normal",
  17852. height: math.unit(6, "feet")
  17853. },
  17854. {
  17855. name: "Big Steppy",
  17856. height: math.unit(1, "km"),
  17857. default: true
  17858. },
  17859. {
  17860. name: "Galactic Steppy",
  17861. height: math.unit(2, "gigameters")
  17862. },
  17863. ]
  17864. ))
  17865. characterMakers.push(() => makeCharacter(
  17866. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17867. {
  17868. side: {
  17869. height: math.unit(10, "feet"),
  17870. weight: math.unit(800, "kg"),
  17871. name: "Side",
  17872. image: {
  17873. source: "./media/characters/venio-darcony/side.svg",
  17874. extra: 1373 / 1003,
  17875. bottom: 0.037
  17876. }
  17877. },
  17878. front: {
  17879. height: math.unit(19, "feet"),
  17880. weight: math.unit(800, "kg"),
  17881. name: "Front",
  17882. image: {
  17883. source: "./media/characters/venio-darcony/front.svg"
  17884. }
  17885. },
  17886. back: {
  17887. height: math.unit(19, "feet"),
  17888. weight: math.unit(800, "kg"),
  17889. name: "Back",
  17890. image: {
  17891. source: "./media/characters/venio-darcony/back.svg"
  17892. }
  17893. },
  17894. sideNsfw: {
  17895. height: math.unit(10, "feet"),
  17896. weight: math.unit(800, "kg"),
  17897. name: "Side (NSFW)",
  17898. image: {
  17899. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17900. extra: 1373 / 1003,
  17901. bottom: 0.037
  17902. }
  17903. },
  17904. frontNsfw: {
  17905. height: math.unit(19, "feet"),
  17906. weight: math.unit(800, "kg"),
  17907. name: "Front (NSFW)",
  17908. image: {
  17909. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17910. }
  17911. },
  17912. backNsfw: {
  17913. height: math.unit(19, "feet"),
  17914. weight: math.unit(800, "kg"),
  17915. name: "Back (NSFW)",
  17916. image: {
  17917. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17918. }
  17919. },
  17920. sideArmored: {
  17921. height: math.unit(10, "feet"),
  17922. weight: math.unit(800, "kg"),
  17923. name: "Side (Armored)",
  17924. image: {
  17925. source: "./media/characters/venio-darcony/side-armored.svg",
  17926. extra: 1373 / 1003,
  17927. bottom: 0.037
  17928. }
  17929. },
  17930. frontArmored: {
  17931. height: math.unit(19, "feet"),
  17932. weight: math.unit(900, "kg"),
  17933. name: "Front (Armored)",
  17934. image: {
  17935. source: "./media/characters/venio-darcony/front-armored.svg"
  17936. }
  17937. },
  17938. backArmored: {
  17939. height: math.unit(19, "feet"),
  17940. weight: math.unit(900, "kg"),
  17941. name: "Back (Armored)",
  17942. image: {
  17943. source: "./media/characters/venio-darcony/back-armored.svg"
  17944. }
  17945. },
  17946. sword: {
  17947. height: math.unit(10, "feet"),
  17948. weight: math.unit(50, "lb"),
  17949. name: "Sword",
  17950. image: {
  17951. source: "./media/characters/venio-darcony/sword.svg"
  17952. }
  17953. },
  17954. },
  17955. [
  17956. {
  17957. name: "Normal",
  17958. height: math.unit(10, "feet")
  17959. },
  17960. {
  17961. name: "Macro",
  17962. height: math.unit(130, "feet"),
  17963. default: true
  17964. },
  17965. {
  17966. name: "Macro+",
  17967. height: math.unit(240, "feet")
  17968. },
  17969. ]
  17970. ))
  17971. characterMakers.push(() => makeCharacter(
  17972. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17973. {
  17974. front: {
  17975. height: math.unit(6, "feet"),
  17976. weight: math.unit(150, "lb"),
  17977. name: "Front",
  17978. image: {
  17979. source: "./media/characters/veski/front.svg",
  17980. extra: 1299 / 1225,
  17981. bottom: 0.04
  17982. }
  17983. },
  17984. back: {
  17985. height: math.unit(6, "feet"),
  17986. weight: math.unit(150, "lb"),
  17987. name: "Back",
  17988. image: {
  17989. source: "./media/characters/veski/back.svg",
  17990. extra: 1299 / 1225,
  17991. bottom: 0.008
  17992. }
  17993. },
  17994. maw: {
  17995. height: math.unit(1.5 * 1.21, "feet"),
  17996. name: "Maw",
  17997. image: {
  17998. source: "./media/characters/veski/maw.svg"
  17999. }
  18000. },
  18001. },
  18002. [
  18003. {
  18004. name: "Macro",
  18005. height: math.unit(2, "km"),
  18006. default: true
  18007. },
  18008. ]
  18009. ))
  18010. characterMakers.push(() => makeCharacter(
  18011. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18012. {
  18013. front: {
  18014. height: math.unit(5 + 7 / 12, "feet"),
  18015. name: "Front",
  18016. image: {
  18017. source: "./media/characters/isabelle/front.svg",
  18018. extra: 2130 / 1976,
  18019. bottom: 0.05
  18020. }
  18021. },
  18022. },
  18023. [
  18024. {
  18025. name: "Supermicro",
  18026. height: math.unit(10, "micrometers")
  18027. },
  18028. {
  18029. name: "Micro",
  18030. height: math.unit(1, "inch")
  18031. },
  18032. {
  18033. name: "Tiny",
  18034. height: math.unit(5, "inches")
  18035. },
  18036. {
  18037. name: "Standard",
  18038. height: math.unit(5 + 7 / 12, "inches")
  18039. },
  18040. {
  18041. name: "Macro",
  18042. height: math.unit(80, "meters"),
  18043. default: true
  18044. },
  18045. {
  18046. name: "Megamacro",
  18047. height: math.unit(250, "meters")
  18048. },
  18049. {
  18050. name: "Gigamacro",
  18051. height: math.unit(5, "km")
  18052. },
  18053. {
  18054. name: "Cosmic",
  18055. height: math.unit(2.5e6, "miles")
  18056. },
  18057. ]
  18058. ))
  18059. characterMakers.push(() => makeCharacter(
  18060. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18061. {
  18062. front: {
  18063. height: math.unit(6, "feet"),
  18064. weight: math.unit(150, "lb"),
  18065. name: "Front",
  18066. image: {
  18067. source: "./media/characters/hanzo/front.svg",
  18068. extra: 374 / 344,
  18069. bottom: 0.02
  18070. }
  18071. },
  18072. },
  18073. [
  18074. {
  18075. name: "Normal",
  18076. height: math.unit(8, "feet"),
  18077. default: true
  18078. },
  18079. ]
  18080. ))
  18081. characterMakers.push(() => makeCharacter(
  18082. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18083. {
  18084. front: {
  18085. height: math.unit(7, "feet"),
  18086. weight: math.unit(130, "lb"),
  18087. name: "Front",
  18088. image: {
  18089. source: "./media/characters/anna/front.svg",
  18090. extra: 169 / 145,
  18091. bottom: 0.06
  18092. }
  18093. },
  18094. full: {
  18095. height: math.unit(4.96, "feet"),
  18096. weight: math.unit(220, "lb"),
  18097. name: "Full",
  18098. image: {
  18099. source: "./media/characters/anna/full.svg",
  18100. extra: 138 / 114,
  18101. bottom: 0.15
  18102. }
  18103. },
  18104. tongue: {
  18105. height: math.unit(2.53, "feet"),
  18106. name: "Tongue",
  18107. image: {
  18108. source: "./media/characters/anna/tongue.svg"
  18109. }
  18110. },
  18111. },
  18112. [
  18113. {
  18114. name: "Normal",
  18115. height: math.unit(7, "feet"),
  18116. default: true
  18117. },
  18118. ]
  18119. ))
  18120. characterMakers.push(() => makeCharacter(
  18121. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18122. {
  18123. front: {
  18124. height: math.unit(7, "feet"),
  18125. weight: math.unit(150, "lb"),
  18126. name: "Front",
  18127. image: {
  18128. source: "./media/characters/ian-corvid/front.svg",
  18129. extra: 150 / 142,
  18130. bottom: 0.02
  18131. }
  18132. },
  18133. back: {
  18134. height: math.unit(7, "feet"),
  18135. weight: math.unit(150, "lb"),
  18136. name: "Back",
  18137. image: {
  18138. source: "./media/characters/ian-corvid/back.svg",
  18139. extra: 150 / 143,
  18140. bottom: 0.01
  18141. }
  18142. },
  18143. stomping: {
  18144. height: math.unit(7, "feet"),
  18145. weight: math.unit(150, "lb"),
  18146. name: "Stomping",
  18147. image: {
  18148. source: "./media/characters/ian-corvid/stomping.svg",
  18149. extra: 76 / 72
  18150. }
  18151. },
  18152. sitting: {
  18153. height: math.unit(7 / 1.8, "feet"),
  18154. weight: math.unit(150, "lb"),
  18155. name: "Sitting",
  18156. image: {
  18157. source: "./media/characters/ian-corvid/sitting.svg",
  18158. extra: 1400 / 1269,
  18159. bottom: 0.15
  18160. }
  18161. },
  18162. },
  18163. [
  18164. {
  18165. name: "Tiny Microw",
  18166. height: math.unit(1, "inch")
  18167. },
  18168. {
  18169. name: "Microw",
  18170. height: math.unit(6, "inches")
  18171. },
  18172. {
  18173. name: "Crow",
  18174. height: math.unit(7 + 1 / 12, "feet"),
  18175. default: true
  18176. },
  18177. {
  18178. name: "Macrow",
  18179. height: math.unit(176, "feet")
  18180. },
  18181. ]
  18182. ))
  18183. characterMakers.push(() => makeCharacter(
  18184. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18185. {
  18186. front: {
  18187. height: math.unit(5 + 7 / 12, "feet"),
  18188. weight: math.unit(147, "lb"),
  18189. name: "Front",
  18190. image: {
  18191. source: "./media/characters/natalie-kellon/front.svg",
  18192. extra: 1214 / 1141,
  18193. bottom: 0.02
  18194. }
  18195. },
  18196. },
  18197. [
  18198. {
  18199. name: "Micro",
  18200. height: math.unit(1 / 16, "inch")
  18201. },
  18202. {
  18203. name: "Tiny",
  18204. height: math.unit(4, "inches")
  18205. },
  18206. {
  18207. name: "Normal",
  18208. height: math.unit(5 + 7 / 12, "feet"),
  18209. default: true
  18210. },
  18211. {
  18212. name: "Amazon",
  18213. height: math.unit(12, "feet")
  18214. },
  18215. {
  18216. name: "Giantess",
  18217. height: math.unit(160, "meters")
  18218. },
  18219. {
  18220. name: "Titaness",
  18221. height: math.unit(800, "meters")
  18222. },
  18223. ]
  18224. ))
  18225. characterMakers.push(() => makeCharacter(
  18226. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18227. {
  18228. front: {
  18229. height: math.unit(6, "feet"),
  18230. weight: math.unit(150, "lb"),
  18231. name: "Front",
  18232. image: {
  18233. source: "./media/characters/alluria/front.svg",
  18234. extra: 806 / 738,
  18235. bottom: 0.01
  18236. }
  18237. },
  18238. side: {
  18239. height: math.unit(6, "feet"),
  18240. weight: math.unit(150, "lb"),
  18241. name: "Side",
  18242. image: {
  18243. source: "./media/characters/alluria/side.svg",
  18244. extra: 800 / 750,
  18245. }
  18246. },
  18247. back: {
  18248. height: math.unit(6, "feet"),
  18249. weight: math.unit(150, "lb"),
  18250. name: "Back",
  18251. image: {
  18252. source: "./media/characters/alluria/back.svg",
  18253. extra: 806 / 738,
  18254. }
  18255. },
  18256. frontMaid: {
  18257. height: math.unit(6, "feet"),
  18258. weight: math.unit(150, "lb"),
  18259. name: "Front (Maid)",
  18260. image: {
  18261. source: "./media/characters/alluria/front-maid.svg",
  18262. extra: 806 / 738,
  18263. bottom: 0.01
  18264. }
  18265. },
  18266. sideMaid: {
  18267. height: math.unit(6, "feet"),
  18268. weight: math.unit(150, "lb"),
  18269. name: "Side (Maid)",
  18270. image: {
  18271. source: "./media/characters/alluria/side-maid.svg",
  18272. extra: 800 / 750,
  18273. bottom: 0.005
  18274. }
  18275. },
  18276. backMaid: {
  18277. height: math.unit(6, "feet"),
  18278. weight: math.unit(150, "lb"),
  18279. name: "Back (Maid)",
  18280. image: {
  18281. source: "./media/characters/alluria/back-maid.svg",
  18282. extra: 806 / 738,
  18283. }
  18284. },
  18285. },
  18286. [
  18287. {
  18288. name: "Micro",
  18289. height: math.unit(6, "inches"),
  18290. default: true
  18291. },
  18292. ]
  18293. ))
  18294. characterMakers.push(() => makeCharacter(
  18295. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18296. {
  18297. front: {
  18298. height: math.unit(6, "feet"),
  18299. weight: math.unit(150, "lb"),
  18300. name: "Front",
  18301. image: {
  18302. source: "./media/characters/kyle/front.svg",
  18303. extra: 1069 / 962,
  18304. bottom: 77.228 / 1727.45
  18305. }
  18306. },
  18307. },
  18308. [
  18309. {
  18310. name: "Macro",
  18311. height: math.unit(150, "feet"),
  18312. default: true
  18313. },
  18314. ]
  18315. ))
  18316. characterMakers.push(() => makeCharacter(
  18317. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18318. {
  18319. front: {
  18320. height: math.unit(6, "feet"),
  18321. weight: math.unit(300, "lb"),
  18322. name: "Front",
  18323. image: {
  18324. source: "./media/characters/duncan/front.svg",
  18325. extra: 1650 / 1482,
  18326. bottom: 0.05
  18327. }
  18328. },
  18329. },
  18330. [
  18331. {
  18332. name: "Macro",
  18333. height: math.unit(100, "feet"),
  18334. default: true
  18335. },
  18336. ]
  18337. ))
  18338. characterMakers.push(() => makeCharacter(
  18339. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18340. {
  18341. front: {
  18342. height: math.unit(5 + 4 / 12, "feet"),
  18343. weight: math.unit(220, "lb"),
  18344. name: "Front",
  18345. image: {
  18346. source: "./media/characters/memory/front.svg",
  18347. extra: 3641 / 3545,
  18348. bottom: 0.03
  18349. }
  18350. },
  18351. back: {
  18352. height: math.unit(5 + 4 / 12, "feet"),
  18353. weight: math.unit(220, "lb"),
  18354. name: "Back",
  18355. image: {
  18356. source: "./media/characters/memory/back.svg",
  18357. extra: 3641 / 3545,
  18358. bottom: 0.025
  18359. }
  18360. },
  18361. frontSkirt: {
  18362. height: math.unit(5 + 4 / 12, "feet"),
  18363. weight: math.unit(220, "lb"),
  18364. name: "Front (Skirt)",
  18365. image: {
  18366. source: "./media/characters/memory/front-skirt.svg",
  18367. extra: 3641 / 3545,
  18368. bottom: 0.03
  18369. }
  18370. },
  18371. frontDress: {
  18372. height: math.unit(5 + 4 / 12, "feet"),
  18373. weight: math.unit(220, "lb"),
  18374. name: "Front (Dress)",
  18375. image: {
  18376. source: "./media/characters/memory/front-dress.svg",
  18377. extra: 3641 / 3545,
  18378. bottom: 0.03
  18379. }
  18380. },
  18381. },
  18382. [
  18383. {
  18384. name: "Micro",
  18385. height: math.unit(6, "inches"),
  18386. default: true
  18387. },
  18388. {
  18389. name: "Normal",
  18390. height: math.unit(5 + 4 / 12, "feet")
  18391. },
  18392. ]
  18393. ))
  18394. characterMakers.push(() => makeCharacter(
  18395. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18396. {
  18397. front: {
  18398. height: math.unit(4 + 11 / 12, "feet"),
  18399. weight: math.unit(100, "lb"),
  18400. name: "Front",
  18401. image: {
  18402. source: "./media/characters/luno/front.svg",
  18403. extra: 1535 / 1487,
  18404. bottom: 0.03
  18405. }
  18406. },
  18407. },
  18408. [
  18409. {
  18410. name: "Micro",
  18411. height: math.unit(3, "inches")
  18412. },
  18413. {
  18414. name: "Normal",
  18415. height: math.unit(4 + 11 / 12, "feet"),
  18416. default: true
  18417. },
  18418. {
  18419. name: "Macro",
  18420. height: math.unit(300, "feet")
  18421. },
  18422. {
  18423. name: "Megamacro",
  18424. height: math.unit(700, "miles")
  18425. },
  18426. ]
  18427. ))
  18428. characterMakers.push(() => makeCharacter(
  18429. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18430. {
  18431. front: {
  18432. height: math.unit(6 + 2 / 12, "feet"),
  18433. weight: math.unit(170, "lb"),
  18434. name: "Front",
  18435. image: {
  18436. source: "./media/characters/jamesy/front.svg",
  18437. extra: 440 / 382,
  18438. bottom: 0.005
  18439. }
  18440. },
  18441. },
  18442. [
  18443. {
  18444. name: "Micro",
  18445. height: math.unit(3, "inches")
  18446. },
  18447. {
  18448. name: "Normal",
  18449. height: math.unit(6 + 2 / 12, "feet"),
  18450. default: true
  18451. },
  18452. {
  18453. name: "Macro",
  18454. height: math.unit(300, "feet")
  18455. },
  18456. {
  18457. name: "Megamacro",
  18458. height: math.unit(700, "miles")
  18459. },
  18460. ]
  18461. ))
  18462. characterMakers.push(() => makeCharacter(
  18463. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18464. {
  18465. front: {
  18466. height: math.unit(6, "feet"),
  18467. weight: math.unit(160, "lb"),
  18468. name: "Front",
  18469. image: {
  18470. source: "./media/characters/mark/front.svg",
  18471. extra: 3300 / 3100,
  18472. bottom: 136.42 / 3440.47
  18473. }
  18474. },
  18475. },
  18476. [
  18477. {
  18478. name: "Macro",
  18479. height: math.unit(120, "meters")
  18480. },
  18481. {
  18482. name: "Bigger Macro",
  18483. height: math.unit(350, "meters")
  18484. },
  18485. {
  18486. name: "Megamacro",
  18487. height: math.unit(8, "km"),
  18488. default: true
  18489. },
  18490. {
  18491. name: "Continental",
  18492. height: math.unit(4550, "km")
  18493. },
  18494. {
  18495. name: "Planetary",
  18496. height: math.unit(65000, "km")
  18497. },
  18498. ]
  18499. ))
  18500. characterMakers.push(() => makeCharacter(
  18501. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18502. {
  18503. front: {
  18504. height: math.unit(6, "feet"),
  18505. weight: math.unit(400, "lb"),
  18506. name: "Front",
  18507. image: {
  18508. source: "./media/characters/mac/front.svg",
  18509. extra: 1048 / 987.7,
  18510. bottom: 60 / 1107.6,
  18511. }
  18512. },
  18513. },
  18514. [
  18515. {
  18516. name: "Macro",
  18517. height: math.unit(500, "feet"),
  18518. default: true
  18519. },
  18520. ]
  18521. ))
  18522. characterMakers.push(() => makeCharacter(
  18523. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18524. {
  18525. front: {
  18526. height: math.unit(5 + 2 / 12, "feet"),
  18527. weight: math.unit(190, "lb"),
  18528. name: "Front",
  18529. image: {
  18530. source: "./media/characters/bari/front.svg",
  18531. extra: 3156 / 2880,
  18532. bottom: 0.03
  18533. }
  18534. },
  18535. back: {
  18536. height: math.unit(5 + 2 / 12, "feet"),
  18537. weight: math.unit(190, "lb"),
  18538. name: "Back",
  18539. image: {
  18540. source: "./media/characters/bari/back.svg",
  18541. extra: 3260 / 2834,
  18542. bottom: 0.025
  18543. }
  18544. },
  18545. frontPlush: {
  18546. height: math.unit(5 + 2 / 12, "feet"),
  18547. weight: math.unit(190, "lb"),
  18548. name: "Front (Plush)",
  18549. image: {
  18550. source: "./media/characters/bari/front-plush.svg",
  18551. extra: 1112 / 1061,
  18552. bottom: 0.002
  18553. }
  18554. },
  18555. },
  18556. [
  18557. {
  18558. name: "Micro",
  18559. height: math.unit(3, "inches")
  18560. },
  18561. {
  18562. name: "Normal",
  18563. height: math.unit(5 + 2 / 12, "feet"),
  18564. default: true
  18565. },
  18566. {
  18567. name: "Macro",
  18568. height: math.unit(20, "feet")
  18569. },
  18570. ]
  18571. ))
  18572. characterMakers.push(() => makeCharacter(
  18573. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18574. {
  18575. front: {
  18576. height: math.unit(6 + 1 / 12, "feet"),
  18577. weight: math.unit(275, "lb"),
  18578. name: "Front",
  18579. image: {
  18580. source: "./media/characters/hunter-misha-raven/front.svg"
  18581. }
  18582. },
  18583. },
  18584. [
  18585. {
  18586. name: "Mortal",
  18587. height: math.unit(6 + 1 / 12, "feet")
  18588. },
  18589. {
  18590. name: "Divine",
  18591. height: math.unit(1.12134e34, "parsecs"),
  18592. default: true
  18593. },
  18594. ]
  18595. ))
  18596. characterMakers.push(() => makeCharacter(
  18597. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18598. {
  18599. front: {
  18600. height: math.unit(6 + 3 / 12, "feet"),
  18601. weight: math.unit(220, "lb"),
  18602. name: "Front",
  18603. image: {
  18604. source: "./media/characters/max-calore/front.svg",
  18605. extra: 1700 / 1648,
  18606. bottom: 0.01
  18607. }
  18608. },
  18609. back: {
  18610. height: math.unit(6 + 3 / 12, "feet"),
  18611. weight: math.unit(220, "lb"),
  18612. name: "Back",
  18613. image: {
  18614. source: "./media/characters/max-calore/back.svg",
  18615. extra: 1700 / 1648,
  18616. bottom: 0.01
  18617. }
  18618. },
  18619. },
  18620. [
  18621. {
  18622. name: "Normal",
  18623. height: math.unit(6 + 3 / 12, "feet"),
  18624. default: true
  18625. },
  18626. ]
  18627. ))
  18628. characterMakers.push(() => makeCharacter(
  18629. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18630. {
  18631. side: {
  18632. height: math.unit(2 + 8 / 12, "feet"),
  18633. weight: math.unit(99, "lb"),
  18634. name: "Side",
  18635. image: {
  18636. source: "./media/characters/aspen/side.svg",
  18637. extra: 152 / 138,
  18638. bottom: 0.032
  18639. }
  18640. },
  18641. },
  18642. [
  18643. {
  18644. name: "Normal",
  18645. height: math.unit(2 + 8 / 12, "feet"),
  18646. default: true
  18647. },
  18648. ]
  18649. ))
  18650. characterMakers.push(() => makeCharacter(
  18651. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18652. {
  18653. side: {
  18654. height: math.unit(3 + 2 / 12, "feet"),
  18655. weight: math.unit(224, "lb"),
  18656. name: "Side",
  18657. image: {
  18658. source: "./media/characters/sheila-feral-wolf/side.svg",
  18659. extra: 179 / 166,
  18660. bottom: 0.03
  18661. }
  18662. },
  18663. },
  18664. [
  18665. {
  18666. name: "Normal",
  18667. height: math.unit(3 + 2 / 12, "feet"),
  18668. default: true
  18669. },
  18670. ]
  18671. ))
  18672. characterMakers.push(() => makeCharacter(
  18673. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18674. {
  18675. side: {
  18676. height: math.unit(1 + 9 / 12, "feet"),
  18677. weight: math.unit(38, "lb"),
  18678. name: "Side",
  18679. image: {
  18680. source: "./media/characters/michelle/side.svg",
  18681. extra: 147 / 136.7,
  18682. bottom: 0.03
  18683. }
  18684. },
  18685. },
  18686. [
  18687. {
  18688. name: "Normal",
  18689. height: math.unit(1 + 9 / 12, "feet"),
  18690. default: true
  18691. },
  18692. ]
  18693. ))
  18694. characterMakers.push(() => makeCharacter(
  18695. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18696. {
  18697. front: {
  18698. height: math.unit(1.54, "feet"),
  18699. weight: math.unit(50, "lb"),
  18700. name: "Front",
  18701. image: {
  18702. source: "./media/characters/nino/front.svg"
  18703. }
  18704. },
  18705. },
  18706. [
  18707. {
  18708. name: "Normal",
  18709. height: math.unit(1.54, "feet"),
  18710. default: true
  18711. },
  18712. ]
  18713. ))
  18714. characterMakers.push(() => makeCharacter(
  18715. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18716. {
  18717. front: {
  18718. height: math.unit(1.49, "feet"),
  18719. weight: math.unit(45, "lb"),
  18720. name: "Front",
  18721. image: {
  18722. source: "./media/characters/viola/front.svg"
  18723. }
  18724. },
  18725. },
  18726. [
  18727. {
  18728. name: "Normal",
  18729. height: math.unit(1.49, "feet"),
  18730. default: true
  18731. },
  18732. ]
  18733. ))
  18734. characterMakers.push(() => makeCharacter(
  18735. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18736. {
  18737. front: {
  18738. height: math.unit(6 + 5 / 12, "feet"),
  18739. weight: math.unit(580, "lb"),
  18740. name: "Front",
  18741. image: {
  18742. source: "./media/characters/atlas/front.svg",
  18743. extra: 298.5 / 290,
  18744. bottom: 0.015
  18745. }
  18746. },
  18747. },
  18748. [
  18749. {
  18750. name: "Normal",
  18751. height: math.unit(6 + 5 / 12, "feet"),
  18752. default: true
  18753. },
  18754. ]
  18755. ))
  18756. characterMakers.push(() => makeCharacter(
  18757. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18758. {
  18759. side: {
  18760. height: math.unit(15.6, "inches"),
  18761. weight: math.unit(10, "lb"),
  18762. name: "Side",
  18763. image: {
  18764. source: "./media/characters/davy/side.svg",
  18765. extra: 200 / 170,
  18766. bottom: 0.01
  18767. }
  18768. },
  18769. },
  18770. [
  18771. {
  18772. name: "Normal",
  18773. height: math.unit(15.6, "inches"),
  18774. default: true
  18775. },
  18776. ]
  18777. ))
  18778. characterMakers.push(() => makeCharacter(
  18779. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18780. {
  18781. side: {
  18782. height: math.unit(4 + 8 / 12, "feet"),
  18783. weight: math.unit(166, "lb"),
  18784. name: "Side",
  18785. image: {
  18786. source: "./media/characters/fiona/side.svg",
  18787. extra: 232 / 220,
  18788. bottom: 0.03
  18789. }
  18790. },
  18791. },
  18792. [
  18793. {
  18794. name: "Normal",
  18795. height: math.unit(4 + 8 / 12, "feet"),
  18796. default: true
  18797. },
  18798. ]
  18799. ))
  18800. characterMakers.push(() => makeCharacter(
  18801. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18802. {
  18803. front: {
  18804. height: math.unit(26, "inches"),
  18805. weight: math.unit(35, "lb"),
  18806. name: "Front",
  18807. image: {
  18808. source: "./media/characters/lyla/front.svg",
  18809. bottom: 0.1
  18810. }
  18811. },
  18812. },
  18813. [
  18814. {
  18815. name: "Normal",
  18816. height: math.unit(3, "feet"),
  18817. default: true
  18818. },
  18819. ]
  18820. ))
  18821. characterMakers.push(() => makeCharacter(
  18822. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18823. {
  18824. side: {
  18825. height: math.unit(1.8, "feet"),
  18826. weight: math.unit(44, "lb"),
  18827. name: "Side",
  18828. image: {
  18829. source: "./media/characters/perseus/side.svg",
  18830. bottom: 0.21
  18831. }
  18832. },
  18833. },
  18834. [
  18835. {
  18836. name: "Normal",
  18837. height: math.unit(1.8, "feet"),
  18838. default: true
  18839. },
  18840. ]
  18841. ))
  18842. characterMakers.push(() => makeCharacter(
  18843. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18844. {
  18845. side: {
  18846. height: math.unit(4 + 2 / 12, "feet"),
  18847. weight: math.unit(20, "lb"),
  18848. name: "Side",
  18849. image: {
  18850. source: "./media/characters/remus/side.svg"
  18851. }
  18852. },
  18853. },
  18854. [
  18855. {
  18856. name: "Normal",
  18857. height: math.unit(4 + 2 / 12, "feet"),
  18858. default: true
  18859. },
  18860. ]
  18861. ))
  18862. characterMakers.push(() => makeCharacter(
  18863. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18864. {
  18865. front: {
  18866. height: math.unit(4 + 11 / 12, "feet"),
  18867. weight: math.unit(114, "lb"),
  18868. name: "Front",
  18869. image: {
  18870. source: "./media/characters/raf/front.svg",
  18871. extra: 1504/1339,
  18872. bottom: 26/1530
  18873. }
  18874. },
  18875. side: {
  18876. height: math.unit(4 + 11 / 12, "feet"),
  18877. weight: math.unit(114, "lb"),
  18878. name: "Side",
  18879. image: {
  18880. source: "./media/characters/raf/side.svg",
  18881. extra: 1466/1316,
  18882. bottom: 29/1495
  18883. }
  18884. },
  18885. paw: {
  18886. height: math.unit(1.45, "feet"),
  18887. name: "Paw",
  18888. image: {
  18889. source: "./media/characters/raf/paw.svg"
  18890. },
  18891. extraAttributes: {
  18892. "toeSize": {
  18893. name: "Toe Size",
  18894. power: 2,
  18895. type: "area",
  18896. base: math.unit(0.004, "m^2")
  18897. },
  18898. "padSize": {
  18899. name: "Pad Size",
  18900. power: 2,
  18901. type: "area",
  18902. base: math.unit(0.04, "m^2")
  18903. },
  18904. "footSize": {
  18905. name: "Foot Size",
  18906. power: 2,
  18907. type: "area",
  18908. base: math.unit(0.08, "m^2")
  18909. },
  18910. }
  18911. },
  18912. },
  18913. [
  18914. {
  18915. name: "Micro",
  18916. height: math.unit(2, "inches")
  18917. },
  18918. {
  18919. name: "Normal",
  18920. height: math.unit(4 + 11 / 12, "feet"),
  18921. default: true
  18922. },
  18923. {
  18924. name: "Macro",
  18925. height: math.unit(70, "feet")
  18926. },
  18927. ]
  18928. ))
  18929. characterMakers.push(() => makeCharacter(
  18930. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18931. {
  18932. front: {
  18933. height: math.unit(1.5, "meters"),
  18934. weight: math.unit(68, "kg"),
  18935. name: "Front",
  18936. image: {
  18937. source: "./media/characters/liam-einarr/front.svg",
  18938. extra: 2822 / 2666
  18939. }
  18940. },
  18941. back: {
  18942. height: math.unit(1.5, "meters"),
  18943. weight: math.unit(68, "kg"),
  18944. name: "Back",
  18945. image: {
  18946. source: "./media/characters/liam-einarr/back.svg",
  18947. extra: 2822 / 2666,
  18948. bottom: 0.015
  18949. }
  18950. },
  18951. },
  18952. [
  18953. {
  18954. name: "Normal",
  18955. height: math.unit(1.5, "meters"),
  18956. default: true
  18957. },
  18958. {
  18959. name: "Macro",
  18960. height: math.unit(150, "meters")
  18961. },
  18962. {
  18963. name: "Megamacro",
  18964. height: math.unit(35, "km")
  18965. },
  18966. ]
  18967. ))
  18968. characterMakers.push(() => makeCharacter(
  18969. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18970. {
  18971. front: {
  18972. height: math.unit(6, "feet"),
  18973. weight: math.unit(75, "kg"),
  18974. name: "Front",
  18975. image: {
  18976. source: "./media/characters/linda/front.svg",
  18977. extra: 930 / 874,
  18978. bottom: 0.004
  18979. }
  18980. },
  18981. },
  18982. [
  18983. {
  18984. name: "Normal",
  18985. height: math.unit(6, "feet"),
  18986. default: true
  18987. },
  18988. ]
  18989. ))
  18990. characterMakers.push(() => makeCharacter(
  18991. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18992. {
  18993. front: {
  18994. height: math.unit(6 + 8 / 12, "feet"),
  18995. weight: math.unit(220, "lb"),
  18996. name: "Front",
  18997. image: {
  18998. source: "./media/characters/caylex/front.svg",
  18999. extra: 821 / 772,
  19000. bottom: 0.07
  19001. }
  19002. },
  19003. back: {
  19004. height: math.unit(6 + 8 / 12, "feet"),
  19005. weight: math.unit(220, "lb"),
  19006. name: "Back",
  19007. image: {
  19008. source: "./media/characters/caylex/back.svg",
  19009. extra: 821 / 772,
  19010. bottom: 0.022
  19011. }
  19012. },
  19013. hand: {
  19014. height: math.unit(1.25, "feet"),
  19015. name: "Hand",
  19016. image: {
  19017. source: "./media/characters/caylex/hand.svg"
  19018. }
  19019. },
  19020. foot: {
  19021. height: math.unit(1.6, "feet"),
  19022. name: "Foot",
  19023. image: {
  19024. source: "./media/characters/caylex/foot.svg"
  19025. }
  19026. },
  19027. armored: {
  19028. height: math.unit(6 + 8 / 12, "feet"),
  19029. weight: math.unit(250, "lb"),
  19030. name: "Armored",
  19031. image: {
  19032. source: "./media/characters/caylex/armored.svg",
  19033. extra: 1420 / 1310,
  19034. bottom: 0.045
  19035. }
  19036. },
  19037. },
  19038. [
  19039. {
  19040. name: "Normal",
  19041. height: math.unit(6 + 8 / 12, "feet"),
  19042. default: true
  19043. },
  19044. {
  19045. name: "Normal+",
  19046. height: math.unit(12, "feet")
  19047. },
  19048. ]
  19049. ))
  19050. characterMakers.push(() => makeCharacter(
  19051. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19052. {
  19053. front: {
  19054. height: math.unit(7 + 6 / 12, "feet"),
  19055. weight: math.unit(288, "lb"),
  19056. name: "Front",
  19057. image: {
  19058. source: "./media/characters/alana/front.svg",
  19059. extra: 679 / 653,
  19060. bottom: 22.5 / 701
  19061. }
  19062. },
  19063. },
  19064. [
  19065. {
  19066. name: "Normal",
  19067. height: math.unit(7 + 6 / 12, "feet")
  19068. },
  19069. {
  19070. name: "Large",
  19071. height: math.unit(50, "feet")
  19072. },
  19073. {
  19074. name: "Macro",
  19075. height: math.unit(100, "feet"),
  19076. default: true
  19077. },
  19078. {
  19079. name: "Macro+",
  19080. height: math.unit(200, "feet")
  19081. },
  19082. ]
  19083. ))
  19084. characterMakers.push(() => makeCharacter(
  19085. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19086. {
  19087. front: {
  19088. height: math.unit(6 + 1 / 12, "feet"),
  19089. weight: math.unit(210, "lb"),
  19090. name: "Front",
  19091. image: {
  19092. source: "./media/characters/hasani/front.svg",
  19093. extra: 244 / 232,
  19094. bottom: 0.01
  19095. }
  19096. },
  19097. back: {
  19098. height: math.unit(6 + 1 / 12, "feet"),
  19099. weight: math.unit(210, "lb"),
  19100. name: "Back",
  19101. image: {
  19102. source: "./media/characters/hasani/back.svg",
  19103. extra: 244 / 232,
  19104. bottom: 0.01
  19105. }
  19106. },
  19107. },
  19108. [
  19109. {
  19110. name: "Normal",
  19111. height: math.unit(6 + 1 / 12, "feet")
  19112. },
  19113. {
  19114. name: "Macro",
  19115. height: math.unit(175, "feet"),
  19116. default: true
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19122. {
  19123. front: {
  19124. height: math.unit(1.82, "meters"),
  19125. weight: math.unit(140, "lb"),
  19126. name: "Front",
  19127. image: {
  19128. source: "./media/characters/nita/front.svg",
  19129. extra: 2473 / 2363,
  19130. bottom: 0.01
  19131. }
  19132. },
  19133. },
  19134. [
  19135. {
  19136. name: "Normal",
  19137. height: math.unit(1.82, "m")
  19138. },
  19139. {
  19140. name: "Macro",
  19141. height: math.unit(300, "m")
  19142. },
  19143. {
  19144. name: "Mistake Canon",
  19145. height: math.unit(0.5, "miles"),
  19146. default: true
  19147. },
  19148. {
  19149. name: "Big Mistake",
  19150. height: math.unit(13, "miles")
  19151. },
  19152. {
  19153. name: "Playing God",
  19154. height: math.unit(2450, "miles")
  19155. },
  19156. ]
  19157. ))
  19158. characterMakers.push(() => makeCharacter(
  19159. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19160. {
  19161. front: {
  19162. height: math.unit(4, "feet"),
  19163. weight: math.unit(120, "lb"),
  19164. name: "Front",
  19165. image: {
  19166. source: "./media/characters/shiriko/front.svg",
  19167. extra: 970/934,
  19168. bottom: 5/975
  19169. }
  19170. },
  19171. },
  19172. [
  19173. {
  19174. name: "Normal",
  19175. height: math.unit(4, "feet"),
  19176. default: true
  19177. },
  19178. ]
  19179. ))
  19180. characterMakers.push(() => makeCharacter(
  19181. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19182. {
  19183. front: {
  19184. height: math.unit(6, "feet"),
  19185. name: "front",
  19186. image: {
  19187. source: "./media/characters/deja/front.svg",
  19188. extra: 926 / 840,
  19189. bottom: 0.07
  19190. }
  19191. },
  19192. },
  19193. [
  19194. {
  19195. name: "Planck Length",
  19196. height: math.unit(1.6e-35, "meters")
  19197. },
  19198. {
  19199. name: "Normal",
  19200. height: math.unit(30.48, "meters"),
  19201. default: true
  19202. },
  19203. {
  19204. name: "Universal",
  19205. height: math.unit(8.8e26, "meters")
  19206. },
  19207. ]
  19208. ))
  19209. characterMakers.push(() => makeCharacter(
  19210. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19211. {
  19212. side: {
  19213. height: math.unit(8, "feet"),
  19214. weight: math.unit(6300, "lb"),
  19215. name: "Side",
  19216. image: {
  19217. source: "./media/characters/anima/side.svg",
  19218. bottom: 0.035
  19219. }
  19220. },
  19221. },
  19222. [
  19223. {
  19224. name: "Normal",
  19225. height: math.unit(8, "feet"),
  19226. default: true
  19227. },
  19228. ]
  19229. ))
  19230. characterMakers.push(() => makeCharacter(
  19231. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19232. {
  19233. front: {
  19234. height: math.unit(8, "feet"),
  19235. weight: math.unit(350, "lb"),
  19236. name: "Front",
  19237. image: {
  19238. source: "./media/characters/bianca/front.svg",
  19239. extra: 234 / 225,
  19240. bottom: 0.03
  19241. }
  19242. },
  19243. },
  19244. [
  19245. {
  19246. name: "Normal",
  19247. height: math.unit(8, "feet"),
  19248. default: true
  19249. },
  19250. ]
  19251. ))
  19252. characterMakers.push(() => makeCharacter(
  19253. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19254. {
  19255. front: {
  19256. height: math.unit(11 + 5/12, "feet"),
  19257. weight: math.unit(1200, "lb"),
  19258. name: "Front",
  19259. image: {
  19260. source: "./media/characters/adinia/front.svg",
  19261. extra: 1767/1641,
  19262. bottom: 44/1811
  19263. },
  19264. extraAttributes: {
  19265. "energyIntake": {
  19266. name: "Energy Intake",
  19267. power: 3,
  19268. type: "energy",
  19269. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19270. },
  19271. }
  19272. },
  19273. back: {
  19274. height: math.unit(11 + 5/12, "feet"),
  19275. weight: math.unit(1200, "lb"),
  19276. name: "Back",
  19277. image: {
  19278. source: "./media/characters/adinia/back.svg",
  19279. extra: 1834/1684,
  19280. bottom: 14/1848
  19281. },
  19282. extraAttributes: {
  19283. "energyIntake": {
  19284. name: "Energy Intake",
  19285. power: 3,
  19286. type: "energy",
  19287. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19288. },
  19289. }
  19290. },
  19291. maw: {
  19292. height: math.unit(3.79, "feet"),
  19293. name: "Maw",
  19294. image: {
  19295. source: "./media/characters/adinia/maw.svg"
  19296. }
  19297. },
  19298. rump: {
  19299. height: math.unit(4.6, "feet"),
  19300. name: "Rump",
  19301. image: {
  19302. source: "./media/characters/adinia/rump.svg"
  19303. }
  19304. },
  19305. },
  19306. [
  19307. {
  19308. name: "Normal",
  19309. height: math.unit(11 + 5 / 12, "feet"),
  19310. default: true
  19311. },
  19312. ]
  19313. ))
  19314. characterMakers.push(() => makeCharacter(
  19315. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19316. {
  19317. front: {
  19318. height: math.unit(3, "meters"),
  19319. weight: math.unit(200, "kg"),
  19320. name: "Front",
  19321. image: {
  19322. source: "./media/characters/lykasa/front.svg",
  19323. extra: 1076 / 976,
  19324. bottom: 0.06
  19325. }
  19326. },
  19327. },
  19328. [
  19329. {
  19330. name: "Normal",
  19331. height: math.unit(3, "meters")
  19332. },
  19333. {
  19334. name: "Kaiju",
  19335. height: math.unit(120, "meters"),
  19336. default: true
  19337. },
  19338. {
  19339. name: "Mega Kaiju",
  19340. height: math.unit(240, "km")
  19341. },
  19342. {
  19343. name: "Giga Kaiju",
  19344. height: math.unit(400, "megameters")
  19345. },
  19346. {
  19347. name: "Tera Kaiju",
  19348. height: math.unit(800, "gigameters")
  19349. },
  19350. {
  19351. name: "Kaiju Dragon Goddess",
  19352. height: math.unit(26, "zettaparsecs")
  19353. },
  19354. ]
  19355. ))
  19356. characterMakers.push(() => makeCharacter(
  19357. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19358. {
  19359. side: {
  19360. height: math.unit(283 / 124 * 6, "feet"),
  19361. weight: math.unit(35000, "lb"),
  19362. name: "Side",
  19363. image: {
  19364. source: "./media/characters/malfaren/side.svg",
  19365. extra: 1310/529,
  19366. bottom: 24/1334
  19367. }
  19368. },
  19369. front: {
  19370. height: math.unit(22.36, "feet"),
  19371. weight: math.unit(35000, "lb"),
  19372. name: "Front",
  19373. image: {
  19374. source: "./media/characters/malfaren/front.svg",
  19375. extra: 1237/1115,
  19376. bottom: 32/1269
  19377. }
  19378. },
  19379. maw: {
  19380. height: math.unit(6.9, "feet"),
  19381. name: "Maw",
  19382. image: {
  19383. source: "./media/characters/malfaren/maw.svg"
  19384. }
  19385. },
  19386. dick: {
  19387. height: math.unit(6.19, "feet"),
  19388. name: "Dick",
  19389. image: {
  19390. source: "./media/characters/malfaren/dick.svg"
  19391. }
  19392. },
  19393. eye: {
  19394. height: math.unit(0.69, "feet"),
  19395. name: "Eye",
  19396. image: {
  19397. source: "./media/characters/malfaren/eye.svg"
  19398. }
  19399. },
  19400. },
  19401. [
  19402. {
  19403. name: "Big",
  19404. height: math.unit(283 / 162 * 6, "feet"),
  19405. },
  19406. {
  19407. name: "Bigger",
  19408. height: math.unit(283 / 124 * 6, "feet")
  19409. },
  19410. {
  19411. name: "Massive",
  19412. height: math.unit(283 / 92 * 6, "feet"),
  19413. default: true
  19414. },
  19415. {
  19416. name: "👀💦",
  19417. height: math.unit(283 / 73 * 6, "feet"),
  19418. },
  19419. ]
  19420. ))
  19421. characterMakers.push(() => makeCharacter(
  19422. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19423. {
  19424. front: {
  19425. height: math.unit(1.7, "m"),
  19426. weight: math.unit(70, "kg"),
  19427. name: "Front",
  19428. image: {
  19429. source: "./media/characters/kernel/front.svg",
  19430. extra: 222 / 210,
  19431. bottom: 0.007
  19432. }
  19433. },
  19434. },
  19435. [
  19436. {
  19437. name: "Nano",
  19438. height: math.unit(17, "micrometers")
  19439. },
  19440. {
  19441. name: "Micro",
  19442. height: math.unit(1.7, "mm")
  19443. },
  19444. {
  19445. name: "Small",
  19446. height: math.unit(1.7, "cm")
  19447. },
  19448. {
  19449. name: "Normal",
  19450. height: math.unit(1.7, "m"),
  19451. default: true
  19452. },
  19453. ]
  19454. ))
  19455. characterMakers.push(() => makeCharacter(
  19456. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19457. {
  19458. front: {
  19459. height: math.unit(1.75, "meters"),
  19460. weight: math.unit(65, "kg"),
  19461. name: "Front",
  19462. image: {
  19463. source: "./media/characters/jayne-folest/front.svg",
  19464. extra: 2115 / 2007,
  19465. bottom: 0.02
  19466. }
  19467. },
  19468. back: {
  19469. height: math.unit(1.75, "meters"),
  19470. weight: math.unit(65, "kg"),
  19471. name: "Back",
  19472. image: {
  19473. source: "./media/characters/jayne-folest/back.svg",
  19474. extra: 2115 / 2007,
  19475. bottom: 0.005
  19476. }
  19477. },
  19478. frontClothed: {
  19479. height: math.unit(1.75, "meters"),
  19480. weight: math.unit(65, "kg"),
  19481. name: "Front (Clothed)",
  19482. image: {
  19483. source: "./media/characters/jayne-folest/front-clothed.svg",
  19484. extra: 2115 / 2007,
  19485. bottom: 0.035
  19486. }
  19487. },
  19488. hand: {
  19489. height: math.unit(1 / 1.260, "feet"),
  19490. name: "Hand",
  19491. image: {
  19492. source: "./media/characters/jayne-folest/hand.svg"
  19493. }
  19494. },
  19495. foot: {
  19496. height: math.unit(1 / 0.918, "feet"),
  19497. name: "Foot",
  19498. image: {
  19499. source: "./media/characters/jayne-folest/foot.svg"
  19500. }
  19501. },
  19502. },
  19503. [
  19504. {
  19505. name: "Micro",
  19506. height: math.unit(4, "cm")
  19507. },
  19508. {
  19509. name: "Normal",
  19510. height: math.unit(1.75, "meters")
  19511. },
  19512. {
  19513. name: "Macro",
  19514. height: math.unit(47.5, "meters"),
  19515. default: true
  19516. },
  19517. ]
  19518. ))
  19519. characterMakers.push(() => makeCharacter(
  19520. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19521. {
  19522. front: {
  19523. height: math.unit(180, "cm"),
  19524. weight: math.unit(70, "kg"),
  19525. name: "Front",
  19526. image: {
  19527. source: "./media/characters/algier/front.svg",
  19528. extra: 596 / 572,
  19529. bottom: 0.04
  19530. }
  19531. },
  19532. back: {
  19533. height: math.unit(180, "cm"),
  19534. weight: math.unit(70, "kg"),
  19535. name: "Back",
  19536. image: {
  19537. source: "./media/characters/algier/back.svg",
  19538. extra: 596 / 572,
  19539. bottom: 0.025
  19540. }
  19541. },
  19542. frontdressed: {
  19543. height: math.unit(180, "cm"),
  19544. weight: math.unit(150, "kg"),
  19545. name: "Front-dressed",
  19546. image: {
  19547. source: "./media/characters/algier/front-dressed.svg",
  19548. extra: 596 / 572,
  19549. bottom: 0.038
  19550. }
  19551. },
  19552. },
  19553. [
  19554. {
  19555. name: "Micro",
  19556. height: math.unit(5, "cm")
  19557. },
  19558. {
  19559. name: "Normal",
  19560. height: math.unit(180, "cm"),
  19561. default: true
  19562. },
  19563. {
  19564. name: "Macro",
  19565. height: math.unit(64, "m")
  19566. },
  19567. ]
  19568. ))
  19569. characterMakers.push(() => makeCharacter(
  19570. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19571. {
  19572. upright: {
  19573. height: math.unit(7, "feet"),
  19574. weight: math.unit(300, "lb"),
  19575. name: "Upright",
  19576. image: {
  19577. source: "./media/characters/pretzel/upright.svg",
  19578. extra: 534 / 522,
  19579. bottom: 0.065
  19580. }
  19581. },
  19582. sprawling: {
  19583. height: math.unit(3.75, "feet"),
  19584. weight: math.unit(300, "lb"),
  19585. name: "Sprawling",
  19586. image: {
  19587. source: "./media/characters/pretzel/sprawling.svg",
  19588. extra: 314 / 281,
  19589. bottom: 0.1
  19590. }
  19591. },
  19592. tongue: {
  19593. height: math.unit(2, "feet"),
  19594. name: "Tongue",
  19595. image: {
  19596. source: "./media/characters/pretzel/tongue.svg"
  19597. }
  19598. },
  19599. },
  19600. [
  19601. {
  19602. name: "Normal",
  19603. height: math.unit(7, "feet"),
  19604. default: true
  19605. },
  19606. {
  19607. name: "Oversized",
  19608. height: math.unit(15, "feet")
  19609. },
  19610. {
  19611. name: "Huge",
  19612. height: math.unit(30, "feet")
  19613. },
  19614. {
  19615. name: "Macro",
  19616. height: math.unit(250, "feet")
  19617. },
  19618. ]
  19619. ))
  19620. characterMakers.push(() => makeCharacter(
  19621. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19622. {
  19623. sideFront: {
  19624. height: math.unit(5 + 2 / 12, "feet"),
  19625. weight: math.unit(120, "lb"),
  19626. name: "Front Side",
  19627. image: {
  19628. source: "./media/characters/roxi/side-front.svg",
  19629. extra: 2924 / 2717,
  19630. bottom: 0.08
  19631. }
  19632. },
  19633. sideBack: {
  19634. height: math.unit(5 + 2 / 12, "feet"),
  19635. weight: math.unit(120, "lb"),
  19636. name: "Back Side",
  19637. image: {
  19638. source: "./media/characters/roxi/side-back.svg",
  19639. extra: 2904 / 2693,
  19640. bottom: 0.06
  19641. }
  19642. },
  19643. front: {
  19644. height: math.unit(5 + 2 / 12, "feet"),
  19645. weight: math.unit(120, "lb"),
  19646. name: "Front",
  19647. image: {
  19648. source: "./media/characters/roxi/front.svg",
  19649. extra: 2028 / 1907,
  19650. bottom: 0.01
  19651. }
  19652. },
  19653. frontAlt: {
  19654. height: math.unit(5 + 2 / 12, "feet"),
  19655. weight: math.unit(120, "lb"),
  19656. name: "Front (Alt)",
  19657. image: {
  19658. source: "./media/characters/roxi/front-alt.svg",
  19659. extra: 1828 / 1798,
  19660. bottom: 0.01
  19661. }
  19662. },
  19663. sitting: {
  19664. height: math.unit(2.8, "feet"),
  19665. weight: math.unit(120, "lb"),
  19666. name: "Sitting",
  19667. image: {
  19668. source: "./media/characters/roxi/sitting.svg",
  19669. extra: 2660 / 2462,
  19670. bottom: 0.1
  19671. }
  19672. },
  19673. },
  19674. [
  19675. {
  19676. name: "Normal",
  19677. height: math.unit(5 + 2 / 12, "feet"),
  19678. default: true
  19679. },
  19680. ]
  19681. ))
  19682. characterMakers.push(() => makeCharacter(
  19683. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19684. {
  19685. side: {
  19686. height: math.unit(55, "feet"),
  19687. weight: math.unit(153, "tons"),
  19688. name: "Side",
  19689. image: {
  19690. source: "./media/characters/shadow/side.svg",
  19691. extra: 701 / 628,
  19692. bottom: 0.02
  19693. }
  19694. },
  19695. flying: {
  19696. height: math.unit(145, "feet"),
  19697. weight: math.unit(153, "tons"),
  19698. name: "Flying",
  19699. image: {
  19700. source: "./media/characters/shadow/flying.svg"
  19701. }
  19702. },
  19703. },
  19704. [
  19705. {
  19706. name: "Normal",
  19707. height: math.unit(55, "feet"),
  19708. default: true
  19709. },
  19710. ]
  19711. ))
  19712. characterMakers.push(() => makeCharacter(
  19713. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19714. {
  19715. front: {
  19716. height: math.unit(6, "feet"),
  19717. weight: math.unit(200, "lb"),
  19718. name: "Front",
  19719. image: {
  19720. source: "./media/characters/marcie/front.svg",
  19721. extra: 960 / 876,
  19722. bottom: 58 / 1017.87
  19723. }
  19724. },
  19725. },
  19726. [
  19727. {
  19728. name: "Macro",
  19729. height: math.unit(1, "mile"),
  19730. default: true
  19731. },
  19732. ]
  19733. ))
  19734. characterMakers.push(() => makeCharacter(
  19735. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19736. {
  19737. front: {
  19738. height: math.unit(7, "feet"),
  19739. weight: math.unit(200, "lb"),
  19740. name: "Front",
  19741. image: {
  19742. source: "./media/characters/kachina/front.svg",
  19743. extra: 1290.68 / 1119,
  19744. bottom: 36.5 / 1327.18
  19745. }
  19746. },
  19747. },
  19748. [
  19749. {
  19750. name: "Normal",
  19751. height: math.unit(7, "feet"),
  19752. default: true
  19753. },
  19754. ]
  19755. ))
  19756. characterMakers.push(() => makeCharacter(
  19757. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19758. {
  19759. looking: {
  19760. height: math.unit(2, "meters"),
  19761. weight: math.unit(300, "kg"),
  19762. name: "Looking",
  19763. image: {
  19764. source: "./media/characters/kash/looking.svg",
  19765. extra: 474 / 344,
  19766. bottom: 0.03
  19767. }
  19768. },
  19769. side: {
  19770. height: math.unit(2, "meters"),
  19771. weight: math.unit(300, "kg"),
  19772. name: "Side",
  19773. image: {
  19774. source: "./media/characters/kash/side.svg",
  19775. extra: 302 / 251,
  19776. bottom: 0.03
  19777. }
  19778. },
  19779. front: {
  19780. height: math.unit(2, "meters"),
  19781. weight: math.unit(300, "kg"),
  19782. name: "Front",
  19783. image: {
  19784. source: "./media/characters/kash/front.svg",
  19785. extra: 495 / 360,
  19786. bottom: 0.015
  19787. }
  19788. },
  19789. },
  19790. [
  19791. {
  19792. name: "Normal",
  19793. height: math.unit(2, "meters"),
  19794. default: true
  19795. },
  19796. {
  19797. name: "Big",
  19798. height: math.unit(3, "meters")
  19799. },
  19800. {
  19801. name: "Large",
  19802. height: math.unit(5, "meters")
  19803. },
  19804. ]
  19805. ))
  19806. characterMakers.push(() => makeCharacter(
  19807. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19808. {
  19809. feeding: {
  19810. height: math.unit(6.7, "feet"),
  19811. weight: math.unit(350, "lb"),
  19812. name: "Feeding",
  19813. image: {
  19814. source: "./media/characters/lalim/feeding.svg",
  19815. }
  19816. },
  19817. },
  19818. [
  19819. {
  19820. name: "Normal",
  19821. height: math.unit(6.7, "feet"),
  19822. default: true
  19823. },
  19824. ]
  19825. ))
  19826. characterMakers.push(() => makeCharacter(
  19827. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19828. {
  19829. front: {
  19830. height: math.unit(9.5, "feet"),
  19831. weight: math.unit(600, "lb"),
  19832. name: "Front",
  19833. image: {
  19834. source: "./media/characters/de'vout/front.svg",
  19835. extra: 1443 / 1328,
  19836. bottom: 0.025
  19837. }
  19838. },
  19839. back: {
  19840. height: math.unit(9.5, "feet"),
  19841. weight: math.unit(600, "lb"),
  19842. name: "Back",
  19843. image: {
  19844. source: "./media/characters/de'vout/back.svg",
  19845. extra: 1443 / 1328
  19846. }
  19847. },
  19848. frontDressed: {
  19849. height: math.unit(9.5, "feet"),
  19850. weight: math.unit(600, "lb"),
  19851. name: "Front (Dressed",
  19852. image: {
  19853. source: "./media/characters/de'vout/front-dressed.svg",
  19854. extra: 1443 / 1328,
  19855. bottom: 0.025
  19856. }
  19857. },
  19858. backDressed: {
  19859. height: math.unit(9.5, "feet"),
  19860. weight: math.unit(600, "lb"),
  19861. name: "Back (Dressed",
  19862. image: {
  19863. source: "./media/characters/de'vout/back-dressed.svg",
  19864. extra: 1443 / 1328
  19865. }
  19866. },
  19867. },
  19868. [
  19869. {
  19870. name: "Normal",
  19871. height: math.unit(9.5, "feet"),
  19872. default: true
  19873. },
  19874. ]
  19875. ))
  19876. characterMakers.push(() => makeCharacter(
  19877. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19878. {
  19879. front: {
  19880. height: math.unit(8, "feet"),
  19881. weight: math.unit(225, "lb"),
  19882. name: "Front",
  19883. image: {
  19884. source: "./media/characters/talana/front.svg",
  19885. extra: 1410 / 1300,
  19886. bottom: 0.015
  19887. }
  19888. },
  19889. frontDressed: {
  19890. height: math.unit(8, "feet"),
  19891. weight: math.unit(225, "lb"),
  19892. name: "Front (Dressed",
  19893. image: {
  19894. source: "./media/characters/talana/front-dressed.svg",
  19895. extra: 1410 / 1300,
  19896. bottom: 0.015
  19897. }
  19898. },
  19899. },
  19900. [
  19901. {
  19902. name: "Normal",
  19903. height: math.unit(8, "feet"),
  19904. default: true
  19905. },
  19906. ]
  19907. ))
  19908. characterMakers.push(() => makeCharacter(
  19909. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19910. {
  19911. side: {
  19912. height: math.unit(7.2, "feet"),
  19913. weight: math.unit(150, "lb"),
  19914. name: "Side",
  19915. image: {
  19916. source: "./media/characters/xeauvok/side.svg",
  19917. extra: 1975 / 1523,
  19918. bottom: 0.07
  19919. }
  19920. },
  19921. },
  19922. [
  19923. {
  19924. name: "Normal",
  19925. height: math.unit(7.2, "feet"),
  19926. default: true
  19927. },
  19928. ]
  19929. ))
  19930. characterMakers.push(() => makeCharacter(
  19931. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19932. {
  19933. side: {
  19934. height: math.unit(4, "meters"),
  19935. weight: math.unit(2200, "kg"),
  19936. name: "Side",
  19937. image: {
  19938. source: "./media/characters/zara/side.svg",
  19939. extra: 765/744,
  19940. bottom: 156/921
  19941. }
  19942. },
  19943. },
  19944. [
  19945. {
  19946. name: "Normal",
  19947. height: math.unit(4, "meters"),
  19948. default: true
  19949. },
  19950. ]
  19951. ))
  19952. characterMakers.push(() => makeCharacter(
  19953. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19954. {
  19955. side: {
  19956. height: math.unit(6, "feet"),
  19957. weight: math.unit(150, "lb"),
  19958. name: "Side",
  19959. image: {
  19960. source: "./media/characters/richard-dragon/side.svg",
  19961. extra: 845 / 340,
  19962. bottom: 0.017
  19963. }
  19964. },
  19965. maw: {
  19966. height: math.unit(2.97, "feet"),
  19967. name: "Maw",
  19968. image: {
  19969. source: "./media/characters/richard-dragon/maw.svg"
  19970. }
  19971. },
  19972. },
  19973. [
  19974. ]
  19975. ))
  19976. characterMakers.push(() => makeCharacter(
  19977. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19978. {
  19979. front: {
  19980. height: math.unit(4, "feet"),
  19981. weight: math.unit(100, "lb"),
  19982. name: "Front",
  19983. image: {
  19984. source: "./media/characters/richard-smeargle/front.svg",
  19985. extra: 2952 / 2820,
  19986. bottom: 0.028
  19987. }
  19988. },
  19989. },
  19990. [
  19991. {
  19992. name: "Normal",
  19993. height: math.unit(4, "feet"),
  19994. default: true
  19995. },
  19996. {
  19997. name: "Dynamax",
  19998. height: math.unit(20, "meters")
  19999. },
  20000. ]
  20001. ))
  20002. characterMakers.push(() => makeCharacter(
  20003. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20004. {
  20005. front: {
  20006. height: math.unit(6, "feet"),
  20007. weight: math.unit(110, "lb"),
  20008. name: "Front",
  20009. image: {
  20010. source: "./media/characters/klay/front.svg",
  20011. extra: 962 / 883,
  20012. bottom: 0.04
  20013. }
  20014. },
  20015. back: {
  20016. height: math.unit(6, "feet"),
  20017. weight: math.unit(110, "lb"),
  20018. name: "Back",
  20019. image: {
  20020. source: "./media/characters/klay/back.svg",
  20021. extra: 962 / 883
  20022. }
  20023. },
  20024. beans: {
  20025. height: math.unit(1.15, "feet"),
  20026. name: "Beans",
  20027. image: {
  20028. source: "./media/characters/klay/beans.svg"
  20029. }
  20030. },
  20031. },
  20032. [
  20033. {
  20034. name: "Micro",
  20035. height: math.unit(6, "inches")
  20036. },
  20037. {
  20038. name: "Mini",
  20039. height: math.unit(3, "feet")
  20040. },
  20041. {
  20042. name: "Normal",
  20043. height: math.unit(6, "feet"),
  20044. default: true
  20045. },
  20046. {
  20047. name: "Big",
  20048. height: math.unit(25, "feet")
  20049. },
  20050. {
  20051. name: "Macro",
  20052. height: math.unit(100, "feet")
  20053. },
  20054. {
  20055. name: "Megamacro",
  20056. height: math.unit(400, "feet")
  20057. },
  20058. ]
  20059. ))
  20060. characterMakers.push(() => makeCharacter(
  20061. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20062. {
  20063. front: {
  20064. height: math.unit(6, "feet"),
  20065. weight: math.unit(160, "lb"),
  20066. name: "Front",
  20067. image: {
  20068. source: "./media/characters/marcus/front.svg",
  20069. extra: 734 / 676,
  20070. bottom: 0.03
  20071. }
  20072. },
  20073. },
  20074. [
  20075. {
  20076. name: "Little",
  20077. height: math.unit(6, "feet")
  20078. },
  20079. {
  20080. name: "Normal",
  20081. height: math.unit(110, "feet"),
  20082. default: true
  20083. },
  20084. {
  20085. name: "Macro",
  20086. height: math.unit(250, "feet")
  20087. },
  20088. {
  20089. name: "Megamacro",
  20090. height: math.unit(1000, "feet")
  20091. },
  20092. ]
  20093. ))
  20094. characterMakers.push(() => makeCharacter(
  20095. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20096. {
  20097. front: {
  20098. height: math.unit(7, "feet"),
  20099. weight: math.unit(275, "lb"),
  20100. name: "Front",
  20101. image: {
  20102. source: "./media/characters/claude-delroute/front.svg",
  20103. extra: 902/827,
  20104. bottom: 26/928
  20105. }
  20106. },
  20107. side: {
  20108. height: math.unit(7, "feet"),
  20109. weight: math.unit(275, "lb"),
  20110. name: "Side",
  20111. image: {
  20112. source: "./media/characters/claude-delroute/side.svg",
  20113. extra: 908/853,
  20114. bottom: 16/924
  20115. }
  20116. },
  20117. back: {
  20118. height: math.unit(7, "feet"),
  20119. weight: math.unit(275, "lb"),
  20120. name: "Back",
  20121. image: {
  20122. source: "./media/characters/claude-delroute/back.svg",
  20123. extra: 911/829,
  20124. bottom: 18/929
  20125. }
  20126. },
  20127. maw: {
  20128. height: math.unit(0.6407, "meters"),
  20129. name: "Maw",
  20130. image: {
  20131. source: "./media/characters/claude-delroute/maw.svg"
  20132. }
  20133. },
  20134. },
  20135. [
  20136. {
  20137. name: "Normal",
  20138. height: math.unit(7, "feet"),
  20139. default: true
  20140. },
  20141. {
  20142. name: "Lorge",
  20143. height: math.unit(20, "feet")
  20144. },
  20145. ]
  20146. ))
  20147. characterMakers.push(() => makeCharacter(
  20148. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20149. {
  20150. front: {
  20151. height: math.unit(8 + 4 / 12, "feet"),
  20152. weight: math.unit(600, "lb"),
  20153. name: "Front",
  20154. image: {
  20155. source: "./media/characters/dragonien/front.svg",
  20156. extra: 100 / 94,
  20157. bottom: 3.3 / 103.3445
  20158. }
  20159. },
  20160. back: {
  20161. height: math.unit(8 + 4 / 12, "feet"),
  20162. weight: math.unit(600, "lb"),
  20163. name: "Back",
  20164. image: {
  20165. source: "./media/characters/dragonien/back.svg",
  20166. extra: 776 / 746,
  20167. bottom: 6.4 / 782.0616
  20168. }
  20169. },
  20170. foot: {
  20171. height: math.unit(1.54, "feet"),
  20172. name: "Foot",
  20173. image: {
  20174. source: "./media/characters/dragonien/foot.svg",
  20175. }
  20176. },
  20177. },
  20178. [
  20179. {
  20180. name: "Normal",
  20181. height: math.unit(8 + 4 / 12, "feet"),
  20182. default: true
  20183. },
  20184. {
  20185. name: "Macro",
  20186. height: math.unit(200, "feet")
  20187. },
  20188. {
  20189. name: "Megamacro",
  20190. height: math.unit(1, "mile")
  20191. },
  20192. {
  20193. name: "Gigamacro",
  20194. height: math.unit(1000, "miles")
  20195. },
  20196. ]
  20197. ))
  20198. characterMakers.push(() => makeCharacter(
  20199. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20200. {
  20201. front: {
  20202. height: math.unit(5 + 2 / 12, "feet"),
  20203. weight: math.unit(110, "lb"),
  20204. name: "Front",
  20205. image: {
  20206. source: "./media/characters/desta/front.svg",
  20207. extra: 767 / 726,
  20208. bottom: 11.7 / 779
  20209. }
  20210. },
  20211. back: {
  20212. height: math.unit(5 + 2 / 12, "feet"),
  20213. weight: math.unit(110, "lb"),
  20214. name: "Back",
  20215. image: {
  20216. source: "./media/characters/desta/back.svg",
  20217. extra: 777 / 728,
  20218. bottom: 6 / 784
  20219. }
  20220. },
  20221. frontAlt: {
  20222. height: math.unit(5 + 2 / 12, "feet"),
  20223. weight: math.unit(110, "lb"),
  20224. name: "Front",
  20225. image: {
  20226. source: "./media/characters/desta/front-alt.svg",
  20227. extra: 1482 / 1417
  20228. }
  20229. },
  20230. side: {
  20231. height: math.unit(5 + 2 / 12, "feet"),
  20232. weight: math.unit(110, "lb"),
  20233. name: "Side",
  20234. image: {
  20235. source: "./media/characters/desta/side.svg",
  20236. extra: 2579 / 2491,
  20237. bottom: 0.053
  20238. }
  20239. },
  20240. },
  20241. [
  20242. {
  20243. name: "Micro",
  20244. height: math.unit(6, "inches")
  20245. },
  20246. {
  20247. name: "Normal",
  20248. height: math.unit(5 + 2 / 12, "feet"),
  20249. default: true
  20250. },
  20251. {
  20252. name: "Macro",
  20253. height: math.unit(62, "feet")
  20254. },
  20255. {
  20256. name: "Megamacro",
  20257. height: math.unit(1800, "feet")
  20258. },
  20259. ]
  20260. ))
  20261. characterMakers.push(() => makeCharacter(
  20262. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20263. {
  20264. front: {
  20265. height: math.unit(10, "feet"),
  20266. weight: math.unit(700, "lb"),
  20267. name: "Front",
  20268. image: {
  20269. source: "./media/characters/storm-alystar/front.svg",
  20270. extra: 2112 / 1898,
  20271. bottom: 0.034
  20272. }
  20273. },
  20274. },
  20275. [
  20276. {
  20277. name: "Micro",
  20278. height: math.unit(3.5, "inches")
  20279. },
  20280. {
  20281. name: "Normal",
  20282. height: math.unit(10, "feet"),
  20283. default: true
  20284. },
  20285. {
  20286. name: "Macro",
  20287. height: math.unit(400, "feet")
  20288. },
  20289. {
  20290. name: "Deific",
  20291. height: math.unit(60, "miles")
  20292. },
  20293. ]
  20294. ))
  20295. characterMakers.push(() => makeCharacter(
  20296. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20297. {
  20298. front: {
  20299. height: math.unit(2.35, "meters"),
  20300. weight: math.unit(119, "kg"),
  20301. name: "Front",
  20302. image: {
  20303. source: "./media/characters/ilia/front.svg",
  20304. extra: 1285 / 1255,
  20305. bottom: 0.06
  20306. }
  20307. },
  20308. },
  20309. [
  20310. {
  20311. name: "Normal",
  20312. height: math.unit(2.35, "meters")
  20313. },
  20314. {
  20315. name: "Macro",
  20316. height: math.unit(140, "meters"),
  20317. default: true
  20318. },
  20319. {
  20320. name: "Megamacro",
  20321. height: math.unit(100, "miles")
  20322. },
  20323. ]
  20324. ))
  20325. characterMakers.push(() => makeCharacter(
  20326. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20327. {
  20328. front: {
  20329. height: math.unit(6 + 5 / 12, "feet"),
  20330. weight: math.unit(190, "lb"),
  20331. name: "Front",
  20332. image: {
  20333. source: "./media/characters/kingdead/front.svg",
  20334. extra: 1228 / 1177
  20335. }
  20336. },
  20337. },
  20338. [
  20339. {
  20340. name: "Micro",
  20341. height: math.unit(7, "inches")
  20342. },
  20343. {
  20344. name: "Normal",
  20345. height: math.unit(6 + 5 / 12, "feet")
  20346. },
  20347. {
  20348. name: "Macro",
  20349. height: math.unit(150, "feet"),
  20350. default: true
  20351. },
  20352. {
  20353. name: "Megamacro",
  20354. height: math.unit(200, "miles")
  20355. },
  20356. ]
  20357. ))
  20358. characterMakers.push(() => makeCharacter(
  20359. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20360. {
  20361. front: {
  20362. height: math.unit(8, "feet"),
  20363. weight: math.unit(600, "lb"),
  20364. name: "Front",
  20365. image: {
  20366. source: "./media/characters/kyrehx/front.svg",
  20367. extra: 1195 / 1095,
  20368. bottom: 0.034
  20369. }
  20370. },
  20371. },
  20372. [
  20373. {
  20374. name: "Micro",
  20375. height: math.unit(2, "inches")
  20376. },
  20377. {
  20378. name: "Normal",
  20379. height: math.unit(8, "feet"),
  20380. default: true
  20381. },
  20382. {
  20383. name: "Macro",
  20384. height: math.unit(255, "feet")
  20385. },
  20386. ]
  20387. ))
  20388. characterMakers.push(() => makeCharacter(
  20389. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20390. {
  20391. front: {
  20392. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20393. weight: math.unit(184, "lb"),
  20394. name: "Front",
  20395. image: {
  20396. source: "./media/characters/xang/front.svg",
  20397. extra: 845 / 755
  20398. }
  20399. },
  20400. },
  20401. [
  20402. {
  20403. name: "Normal",
  20404. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20405. default: true
  20406. },
  20407. {
  20408. name: "Macro",
  20409. height: math.unit(0.935 * 146, "feet")
  20410. },
  20411. {
  20412. name: "Megamacro",
  20413. height: math.unit(0.935 * 3, "miles")
  20414. },
  20415. ]
  20416. ))
  20417. characterMakers.push(() => makeCharacter(
  20418. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20419. {
  20420. frontDressed: {
  20421. height: math.unit(5 + 7 / 12, "feet"),
  20422. weight: math.unit(140, "lb"),
  20423. name: "Front (Dressed)",
  20424. image: {
  20425. source: "./media/characters/doc-weardno/front-dressed.svg",
  20426. extra: 263 / 234
  20427. }
  20428. },
  20429. backDressed: {
  20430. height: math.unit(5 + 7 / 12, "feet"),
  20431. weight: math.unit(140, "lb"),
  20432. name: "Back (Dressed)",
  20433. image: {
  20434. source: "./media/characters/doc-weardno/back-dressed.svg",
  20435. extra: 266 / 238
  20436. }
  20437. },
  20438. front: {
  20439. height: math.unit(5 + 7 / 12, "feet"),
  20440. weight: math.unit(140, "lb"),
  20441. name: "Front",
  20442. image: {
  20443. source: "./media/characters/doc-weardno/front.svg",
  20444. extra: 254 / 233
  20445. }
  20446. },
  20447. },
  20448. [
  20449. {
  20450. name: "Micro",
  20451. height: math.unit(3, "inches")
  20452. },
  20453. {
  20454. name: "Normal",
  20455. height: math.unit(5 + 7 / 12, "feet"),
  20456. default: true
  20457. },
  20458. {
  20459. name: "Macro",
  20460. height: math.unit(25, "feet")
  20461. },
  20462. {
  20463. name: "Megamacro",
  20464. height: math.unit(2, "miles")
  20465. },
  20466. ]
  20467. ))
  20468. characterMakers.push(() => makeCharacter(
  20469. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20470. {
  20471. front: {
  20472. height: math.unit(6 + 2 / 12, "feet"),
  20473. weight: math.unit(153, "lb"),
  20474. name: "Front",
  20475. image: {
  20476. source: "./media/characters/seth-whilst/front.svg",
  20477. bottom: 0.07
  20478. }
  20479. },
  20480. },
  20481. [
  20482. {
  20483. name: "Micro",
  20484. height: math.unit(5, "inches")
  20485. },
  20486. {
  20487. name: "Normal",
  20488. height: math.unit(6 + 2 / 12, "feet"),
  20489. default: true
  20490. },
  20491. ]
  20492. ))
  20493. characterMakers.push(() => makeCharacter(
  20494. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20495. {
  20496. front: {
  20497. height: math.unit(3, "inches"),
  20498. weight: math.unit(8, "grams"),
  20499. name: "Front",
  20500. image: {
  20501. source: "./media/characters/pocket-jabari/front.svg",
  20502. extra: 1024 / 974,
  20503. bottom: 0.039
  20504. }
  20505. },
  20506. },
  20507. [
  20508. {
  20509. name: "Minimicro",
  20510. height: math.unit(8, "mm")
  20511. },
  20512. {
  20513. name: "Micro",
  20514. height: math.unit(3, "inches"),
  20515. default: true
  20516. },
  20517. {
  20518. name: "Normal",
  20519. height: math.unit(3, "feet")
  20520. },
  20521. ]
  20522. ))
  20523. characterMakers.push(() => makeCharacter(
  20524. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20525. {
  20526. frontDressed: {
  20527. height: math.unit(15, "feet"),
  20528. weight: math.unit(3280, "lb"),
  20529. name: "Front (Dressed)",
  20530. image: {
  20531. source: "./media/characters/sapphy/front-dressed.svg",
  20532. extra: 1951/1654,
  20533. bottom: 194/2145
  20534. },
  20535. form: "anthro",
  20536. default: true
  20537. },
  20538. backDressed: {
  20539. height: math.unit(15, "feet"),
  20540. weight: math.unit(3280, "lb"),
  20541. name: "Back (Dressed)",
  20542. image: {
  20543. source: "./media/characters/sapphy/back-dressed.svg",
  20544. extra: 2058/1918,
  20545. bottom: 125/2183
  20546. },
  20547. form: "anthro"
  20548. },
  20549. frontNude: {
  20550. height: math.unit(15, "feet"),
  20551. weight: math.unit(3280, "lb"),
  20552. name: "Front (Nude)",
  20553. image: {
  20554. source: "./media/characters/sapphy/front-nude.svg",
  20555. extra: 1951/1654,
  20556. bottom: 194/2145
  20557. },
  20558. form: "anthro"
  20559. },
  20560. backNude: {
  20561. height: math.unit(15, "feet"),
  20562. weight: math.unit(3280, "lb"),
  20563. name: "Back (Nude)",
  20564. image: {
  20565. source: "./media/characters/sapphy/back-nude.svg",
  20566. extra: 2058/1918,
  20567. bottom: 125/2183
  20568. },
  20569. form: "anthro"
  20570. },
  20571. full: {
  20572. height: math.unit(15, "feet"),
  20573. weight: math.unit(3280, "lb"),
  20574. name: "Full",
  20575. image: {
  20576. source: "./media/characters/sapphy/full.svg",
  20577. extra: 1396/1317,
  20578. bottom: 44/1440
  20579. },
  20580. form: "anthro"
  20581. },
  20582. dick: {
  20583. height: math.unit(3.8, "feet"),
  20584. name: "Dick",
  20585. image: {
  20586. source: "./media/characters/sapphy/dick.svg"
  20587. },
  20588. form: "anthro"
  20589. },
  20590. feral: {
  20591. height: math.unit(35, "feet"),
  20592. weight: math.unit(160, "tons"),
  20593. name: "Feral",
  20594. image: {
  20595. source: "./media/characters/sapphy/feral.svg",
  20596. extra: 1050/573,
  20597. bottom: 60/1110
  20598. },
  20599. form: "feral",
  20600. default: true
  20601. },
  20602. },
  20603. [
  20604. {
  20605. name: "Normal",
  20606. height: math.unit(15, "feet"),
  20607. form: "anthro"
  20608. },
  20609. {
  20610. name: "Casual Macro",
  20611. height: math.unit(120, "feet"),
  20612. form: "anthro"
  20613. },
  20614. {
  20615. name: "Macro",
  20616. height: math.unit(2150, "feet"),
  20617. default: true,
  20618. form: "anthro"
  20619. },
  20620. {
  20621. name: "Megamacro",
  20622. height: math.unit(8, "miles"),
  20623. form: "anthro"
  20624. },
  20625. {
  20626. name: "Galaxy Mom",
  20627. height: math.unit(6, "megalightyears"),
  20628. form: "anthro"
  20629. },
  20630. {
  20631. name: "Normal",
  20632. height: math.unit(35, "feet"),
  20633. form: "feral",
  20634. default: true
  20635. },
  20636. {
  20637. name: "Macro",
  20638. height: math.unit(300, "feet"),
  20639. form: "feral"
  20640. },
  20641. {
  20642. name: "Galaxy Mom",
  20643. height: math.unit(10, "megalightyears"),
  20644. form: "feral"
  20645. },
  20646. ],
  20647. {
  20648. "anthro": {
  20649. name: "Anthro",
  20650. default: true
  20651. },
  20652. "feral": {
  20653. name: "Feral"
  20654. }
  20655. }
  20656. ))
  20657. characterMakers.push(() => makeCharacter(
  20658. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20659. {
  20660. hyenaFront: {
  20661. height: math.unit(6, "feet"),
  20662. weight: math.unit(190, "lb"),
  20663. name: "Front",
  20664. image: {
  20665. source: "./media/characters/kiro/hyena-front.svg",
  20666. extra: 927/839,
  20667. bottom: 91/1018
  20668. },
  20669. form: "hyena",
  20670. default: true
  20671. },
  20672. front: {
  20673. height: math.unit(6, "feet"),
  20674. weight: math.unit(170, "lb"),
  20675. name: "Front",
  20676. image: {
  20677. source: "./media/characters/kiro/front.svg",
  20678. extra: 1064 / 1012,
  20679. bottom: 0.052
  20680. },
  20681. form: "folf",
  20682. default: true
  20683. },
  20684. },
  20685. [
  20686. {
  20687. name: "Micro",
  20688. height: math.unit(6, "inches"),
  20689. form: "folf"
  20690. },
  20691. {
  20692. name: "Normal",
  20693. height: math.unit(6, "feet"),
  20694. form: "folf",
  20695. default: true
  20696. },
  20697. {
  20698. name: "Macro",
  20699. height: math.unit(72, "feet"),
  20700. form: "folf"
  20701. },
  20702. {
  20703. name: "Micro",
  20704. height: math.unit(6, "inches"),
  20705. form: "hyena"
  20706. },
  20707. {
  20708. name: "Normal",
  20709. height: math.unit(6, "feet"),
  20710. form: "hyena",
  20711. default: true
  20712. },
  20713. {
  20714. name: "Macro",
  20715. height: math.unit(72, "feet"),
  20716. form: "hyena"
  20717. },
  20718. ],
  20719. {
  20720. "hyena": {
  20721. name: "Hyena",
  20722. default: true
  20723. },
  20724. "folf": {
  20725. name: "Folf",
  20726. },
  20727. }
  20728. ))
  20729. characterMakers.push(() => makeCharacter(
  20730. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20731. {
  20732. front: {
  20733. height: math.unit(5 + 9 / 12, "feet"),
  20734. weight: math.unit(175, "lb"),
  20735. name: "Front",
  20736. image: {
  20737. source: "./media/characters/irishfox/front.svg",
  20738. extra: 1912 / 1680,
  20739. bottom: 0.02
  20740. }
  20741. },
  20742. },
  20743. [
  20744. {
  20745. name: "Nano",
  20746. height: math.unit(1, "mm")
  20747. },
  20748. {
  20749. name: "Micro",
  20750. height: math.unit(2, "inches")
  20751. },
  20752. {
  20753. name: "Normal",
  20754. height: math.unit(5 + 9 / 12, "feet"),
  20755. default: true
  20756. },
  20757. {
  20758. name: "Macro",
  20759. height: math.unit(45, "feet")
  20760. },
  20761. ]
  20762. ))
  20763. characterMakers.push(() => makeCharacter(
  20764. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20765. {
  20766. front: {
  20767. height: math.unit(6 + 1 / 12, "feet"),
  20768. weight: math.unit(75, "lb"),
  20769. name: "Front",
  20770. image: {
  20771. source: "./media/characters/aronai-sieyes/front.svg",
  20772. extra: 1532/1450,
  20773. bottom: 42/1574
  20774. }
  20775. },
  20776. side: {
  20777. height: math.unit(6 + 1 / 12, "feet"),
  20778. weight: math.unit(75, "lb"),
  20779. name: "Side",
  20780. image: {
  20781. source: "./media/characters/aronai-sieyes/side.svg",
  20782. extra: 1422/1365,
  20783. bottom: 148/1570
  20784. }
  20785. },
  20786. back: {
  20787. height: math.unit(6 + 1 / 12, "feet"),
  20788. weight: math.unit(75, "lb"),
  20789. name: "Back",
  20790. image: {
  20791. source: "./media/characters/aronai-sieyes/back.svg",
  20792. extra: 1526/1464,
  20793. bottom: 51/1577
  20794. }
  20795. },
  20796. dressed: {
  20797. height: math.unit(6 + 1 / 12, "feet"),
  20798. weight: math.unit(75, "lb"),
  20799. name: "Dressed",
  20800. image: {
  20801. source: "./media/characters/aronai-sieyes/dressed.svg",
  20802. extra: 1559/1483,
  20803. bottom: 39/1598
  20804. }
  20805. },
  20806. slit: {
  20807. height: math.unit(1.3, "feet"),
  20808. name: "Slit",
  20809. image: {
  20810. source: "./media/characters/aronai-sieyes/slit.svg"
  20811. }
  20812. },
  20813. slitSpread: {
  20814. height: math.unit(0.9, "feet"),
  20815. name: "Slit (Spread)",
  20816. image: {
  20817. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20818. }
  20819. },
  20820. rump: {
  20821. height: math.unit(1.3, "feet"),
  20822. name: "Rump",
  20823. image: {
  20824. source: "./media/characters/aronai-sieyes/rump.svg"
  20825. }
  20826. },
  20827. maw: {
  20828. height: math.unit(1.25, "feet"),
  20829. name: "Maw",
  20830. image: {
  20831. source: "./media/characters/aronai-sieyes/maw.svg"
  20832. }
  20833. },
  20834. feral: {
  20835. height: math.unit(18, "feet"),
  20836. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20837. name: "Feral",
  20838. image: {
  20839. source: "./media/characters/aronai-sieyes/feral.svg",
  20840. extra: 1530 / 1240,
  20841. bottom: 0.035
  20842. }
  20843. },
  20844. },
  20845. [
  20846. {
  20847. name: "Micro",
  20848. height: math.unit(2, "inches")
  20849. },
  20850. {
  20851. name: "Normal",
  20852. height: math.unit(6 + 1 / 12, "feet"),
  20853. default: true
  20854. }
  20855. ]
  20856. ))
  20857. characterMakers.push(() => makeCharacter(
  20858. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20859. {
  20860. front: {
  20861. height: math.unit(12, "feet"),
  20862. weight: math.unit(410, "kg"),
  20863. name: "Front",
  20864. image: {
  20865. source: "./media/characters/xuna/front.svg",
  20866. extra: 2184 / 1980
  20867. }
  20868. },
  20869. side: {
  20870. height: math.unit(12, "feet"),
  20871. weight: math.unit(410, "kg"),
  20872. name: "Side",
  20873. image: {
  20874. source: "./media/characters/xuna/side.svg",
  20875. extra: 2184 / 1980
  20876. }
  20877. },
  20878. back: {
  20879. height: math.unit(12, "feet"),
  20880. weight: math.unit(410, "kg"),
  20881. name: "Back",
  20882. image: {
  20883. source: "./media/characters/xuna/back.svg",
  20884. extra: 2184 / 1980
  20885. }
  20886. },
  20887. },
  20888. [
  20889. {
  20890. name: "Nano glow",
  20891. height: math.unit(10, "nm")
  20892. },
  20893. {
  20894. name: "Micro floof",
  20895. height: math.unit(0.3, "m")
  20896. },
  20897. {
  20898. name: "Huggable softy boi",
  20899. height: math.unit(3.6576, "m"),
  20900. default: true
  20901. },
  20902. {
  20903. name: "Admirable floof",
  20904. height: math.unit(80, "meters")
  20905. },
  20906. {
  20907. name: "Gentle macro",
  20908. height: math.unit(300, "meters")
  20909. },
  20910. {
  20911. name: "Very careful floof",
  20912. height: math.unit(3200, "meters")
  20913. },
  20914. {
  20915. name: "The mega floof",
  20916. height: math.unit(36000, "meters")
  20917. },
  20918. {
  20919. name: "Giga-fur-Wicker",
  20920. height: math.unit(4800000, "meters")
  20921. },
  20922. {
  20923. name: "Licky world",
  20924. height: math.unit(20000000, "meters")
  20925. },
  20926. {
  20927. name: "Floofy cyan sun",
  20928. height: math.unit(1500000000, "meters")
  20929. },
  20930. {
  20931. name: "Milky Wicker",
  20932. height: math.unit(1000000000000000000000, "meters")
  20933. },
  20934. {
  20935. name: "The observing Wicker",
  20936. height: math.unit(999999999999999999999999999, "meters")
  20937. },
  20938. ]
  20939. ))
  20940. characterMakers.push(() => makeCharacter(
  20941. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20942. {
  20943. front: {
  20944. height: math.unit(5 + 9 / 12, "feet"),
  20945. weight: math.unit(150, "lb"),
  20946. name: "Front",
  20947. image: {
  20948. source: "./media/characters/arokha-sieyes/front.svg",
  20949. extra: 1425 / 1284,
  20950. bottom: 0.05
  20951. }
  20952. },
  20953. },
  20954. [
  20955. {
  20956. name: "Normal",
  20957. height: math.unit(5 + 9 / 12, "feet")
  20958. },
  20959. {
  20960. name: "Macro",
  20961. height: math.unit(30, "meters"),
  20962. default: true
  20963. },
  20964. ]
  20965. ))
  20966. characterMakers.push(() => makeCharacter(
  20967. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20968. {
  20969. front: {
  20970. height: math.unit(6, "feet"),
  20971. weight: math.unit(180, "lb"),
  20972. name: "Front",
  20973. image: {
  20974. source: "./media/characters/arokh-sieyes/front.svg",
  20975. extra: 1830 / 1769,
  20976. bottom: 0.01
  20977. }
  20978. },
  20979. },
  20980. [
  20981. {
  20982. name: "Normal",
  20983. height: math.unit(6, "feet")
  20984. },
  20985. {
  20986. name: "Macro",
  20987. height: math.unit(30, "meters"),
  20988. default: true
  20989. },
  20990. ]
  20991. ))
  20992. characterMakers.push(() => makeCharacter(
  20993. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20994. {
  20995. side: {
  20996. height: math.unit(13 + 1 / 12, "feet"),
  20997. weight: math.unit(8.5, "tonnes"),
  20998. preyCapacity: math.unit(36, "people"),
  20999. name: "Side",
  21000. image: {
  21001. source: "./media/characters/goldeneye/side.svg",
  21002. extra: 1139/741,
  21003. bottom: 98/1237
  21004. }
  21005. },
  21006. front: {
  21007. height: math.unit(5.1, "feet"),
  21008. weight: math.unit(8.5, "tonnes"),
  21009. preyCapacity: math.unit(36, "people"),
  21010. name: "Front",
  21011. image: {
  21012. source: "./media/characters/goldeneye/front.svg",
  21013. extra: 635/365,
  21014. bottom: 598/1233
  21015. }
  21016. },
  21017. maw: {
  21018. height: math.unit(6.6, "feet"),
  21019. name: "Maw",
  21020. image: {
  21021. source: "./media/characters/goldeneye/maw.svg"
  21022. }
  21023. },
  21024. headFront: {
  21025. height: math.unit(8, "feet"),
  21026. name: "Head (Front)",
  21027. image: {
  21028. source: "./media/characters/goldeneye/head-front.svg"
  21029. }
  21030. },
  21031. headSide: {
  21032. height: math.unit(6, "feet"),
  21033. name: "Head (Side)",
  21034. image: {
  21035. source: "./media/characters/goldeneye/head-side.svg"
  21036. }
  21037. },
  21038. headBack: {
  21039. height: math.unit(8, "feet"),
  21040. name: "Head (Back)",
  21041. image: {
  21042. source: "./media/characters/goldeneye/head-back.svg"
  21043. }
  21044. },
  21045. paw: {
  21046. height: math.unit(3.4, "feet"),
  21047. name: "Paw",
  21048. image: {
  21049. source: "./media/characters/goldeneye/paw.svg"
  21050. }
  21051. },
  21052. toering: {
  21053. height: math.unit(0.45, "feet"),
  21054. name: "Toering",
  21055. image: {
  21056. source: "./media/characters/goldeneye/toering.svg"
  21057. }
  21058. },
  21059. eyes: {
  21060. height: math.unit(0.5, "feet"),
  21061. name: "Eyes",
  21062. image: {
  21063. source: "./media/characters/goldeneye/eyes.svg"
  21064. }
  21065. },
  21066. },
  21067. [
  21068. {
  21069. name: "Normal",
  21070. height: math.unit(13 + 1 / 12, "feet"),
  21071. default: true
  21072. },
  21073. ]
  21074. ))
  21075. characterMakers.push(() => makeCharacter(
  21076. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21077. {
  21078. front: {
  21079. height: math.unit(6 + 1 / 12, "feet"),
  21080. weight: math.unit(210, "lb"),
  21081. name: "Front",
  21082. image: {
  21083. source: "./media/characters/leonardo-lycheborne/front.svg",
  21084. extra: 776/723,
  21085. bottom: 34/810
  21086. }
  21087. },
  21088. side: {
  21089. height: math.unit(6 + 1 / 12, "feet"),
  21090. weight: math.unit(210, "lb"),
  21091. name: "Side",
  21092. image: {
  21093. source: "./media/characters/leonardo-lycheborne/side.svg",
  21094. extra: 780/728,
  21095. bottom: 12/792
  21096. }
  21097. },
  21098. back: {
  21099. height: math.unit(6 + 1 / 12, "feet"),
  21100. weight: math.unit(210, "lb"),
  21101. name: "Back",
  21102. image: {
  21103. source: "./media/characters/leonardo-lycheborne/back.svg",
  21104. extra: 775/721,
  21105. bottom: 17/792
  21106. }
  21107. },
  21108. hand: {
  21109. height: math.unit(1.08, "feet"),
  21110. name: "Hand",
  21111. image: {
  21112. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21113. }
  21114. },
  21115. foot: {
  21116. height: math.unit(1.32, "feet"),
  21117. name: "Foot",
  21118. image: {
  21119. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21120. }
  21121. },
  21122. maw: {
  21123. height: math.unit(1, "feet"),
  21124. name: "Maw",
  21125. image: {
  21126. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21127. }
  21128. },
  21129. were: {
  21130. height: math.unit(20, "feet"),
  21131. weight: math.unit(7800, "lb"),
  21132. name: "Were",
  21133. image: {
  21134. source: "./media/characters/leonardo-lycheborne/were.svg",
  21135. extra: 1224/1165,
  21136. bottom: 72/1296
  21137. }
  21138. },
  21139. feral: {
  21140. height: math.unit(7.5, "feet"),
  21141. weight: math.unit(600, "lb"),
  21142. name: "Feral",
  21143. image: {
  21144. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21145. extra: 797/702,
  21146. bottom: 139/936
  21147. }
  21148. },
  21149. taur: {
  21150. height: math.unit(11, "feet"),
  21151. weight: math.unit(3300, "lb"),
  21152. name: "Taur",
  21153. image: {
  21154. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21155. extra: 1271/1197,
  21156. bottom: 47/1318
  21157. }
  21158. },
  21159. barghest: {
  21160. height: math.unit(11, "feet"),
  21161. weight: math.unit(1300, "lb"),
  21162. name: "Barghest",
  21163. image: {
  21164. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21165. extra: 1291/1204,
  21166. bottom: 37/1328
  21167. }
  21168. },
  21169. dick: {
  21170. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21171. name: "Dick",
  21172. image: {
  21173. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21174. }
  21175. },
  21176. dickWere: {
  21177. height: math.unit((20) / 3.8, "feet"),
  21178. name: "Dick (Were)",
  21179. image: {
  21180. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21181. }
  21182. },
  21183. },
  21184. [
  21185. {
  21186. name: "Normal",
  21187. height: math.unit(6 + 1 / 12, "feet"),
  21188. default: true
  21189. },
  21190. ]
  21191. ))
  21192. characterMakers.push(() => makeCharacter(
  21193. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21194. {
  21195. front: {
  21196. height: math.unit(10, "feet"),
  21197. weight: math.unit(350, "lb"),
  21198. name: "Front",
  21199. image: {
  21200. source: "./media/characters/jet/front.svg",
  21201. extra: 2050 / 1980,
  21202. bottom: 0.013
  21203. }
  21204. },
  21205. back: {
  21206. height: math.unit(10, "feet"),
  21207. weight: math.unit(350, "lb"),
  21208. name: "Back",
  21209. image: {
  21210. source: "./media/characters/jet/back.svg",
  21211. extra: 2050 / 1980,
  21212. bottom: 0.013
  21213. }
  21214. },
  21215. },
  21216. [
  21217. {
  21218. name: "Micro",
  21219. height: math.unit(6, "inches")
  21220. },
  21221. {
  21222. name: "Normal",
  21223. height: math.unit(10, "feet"),
  21224. default: true
  21225. },
  21226. {
  21227. name: "Macro",
  21228. height: math.unit(100, "feet")
  21229. },
  21230. ]
  21231. ))
  21232. characterMakers.push(() => makeCharacter(
  21233. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21234. {
  21235. front: {
  21236. height: math.unit(15, "feet"),
  21237. weight: math.unit(2800, "lb"),
  21238. name: "Front",
  21239. image: {
  21240. source: "./media/characters/tanarath/front.svg",
  21241. extra: 2392 / 2220,
  21242. bottom: 0.03
  21243. }
  21244. },
  21245. back: {
  21246. height: math.unit(15, "feet"),
  21247. weight: math.unit(2800, "lb"),
  21248. name: "Back",
  21249. image: {
  21250. source: "./media/characters/tanarath/back.svg",
  21251. extra: 2392 / 2220,
  21252. bottom: 0.03
  21253. }
  21254. },
  21255. },
  21256. [
  21257. {
  21258. name: "Normal",
  21259. height: math.unit(15, "feet"),
  21260. default: true
  21261. },
  21262. ]
  21263. ))
  21264. characterMakers.push(() => makeCharacter(
  21265. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21266. {
  21267. front: {
  21268. height: math.unit(7 + 1 / 12, "feet"),
  21269. weight: math.unit(175, "lb"),
  21270. name: "Front",
  21271. image: {
  21272. source: "./media/characters/patty-cattybatty/front.svg",
  21273. extra: 908 / 874,
  21274. bottom: 0.025
  21275. }
  21276. },
  21277. },
  21278. [
  21279. {
  21280. name: "Micro",
  21281. height: math.unit(1, "inch")
  21282. },
  21283. {
  21284. name: "Normal",
  21285. height: math.unit(7 + 1 / 12, "feet")
  21286. },
  21287. {
  21288. name: "Mini Macro",
  21289. height: math.unit(155, "feet")
  21290. },
  21291. {
  21292. name: "Macro",
  21293. height: math.unit(1077, "feet")
  21294. },
  21295. {
  21296. name: "Mega Macro",
  21297. height: math.unit(47650, "feet"),
  21298. default: true
  21299. },
  21300. {
  21301. name: "Giga Macro",
  21302. height: math.unit(440, "miles")
  21303. },
  21304. {
  21305. name: "Tera Macro",
  21306. height: math.unit(8700, "miles")
  21307. },
  21308. {
  21309. name: "Planetary Macro",
  21310. height: math.unit(32700, "miles")
  21311. },
  21312. {
  21313. name: "Solar Macro",
  21314. height: math.unit(550000, "miles")
  21315. },
  21316. {
  21317. name: "Celestial Macro",
  21318. height: math.unit(2.5, "AU")
  21319. },
  21320. ]
  21321. ))
  21322. characterMakers.push(() => makeCharacter(
  21323. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21324. {
  21325. front: {
  21326. height: math.unit(4 + 5 / 12, "feet"),
  21327. weight: math.unit(90, "lb"),
  21328. name: "Front",
  21329. image: {
  21330. source: "./media/characters/cappu/front.svg",
  21331. extra: 1247 / 1152,
  21332. bottom: 0.012
  21333. }
  21334. },
  21335. },
  21336. [
  21337. {
  21338. name: "Normal",
  21339. height: math.unit(4 + 5 / 12, "feet"),
  21340. default: true
  21341. },
  21342. ]
  21343. ))
  21344. characterMakers.push(() => makeCharacter(
  21345. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21346. {
  21347. frontDressed: {
  21348. height: math.unit(70, "cm"),
  21349. weight: math.unit(6, "kg"),
  21350. name: "Front (Dressed)",
  21351. image: {
  21352. source: "./media/characters/sebi/front-dressed.svg",
  21353. extra: 713.5 / 686.5,
  21354. bottom: 0.003
  21355. }
  21356. },
  21357. front: {
  21358. height: math.unit(70, "cm"),
  21359. weight: math.unit(5, "kg"),
  21360. name: "Front",
  21361. image: {
  21362. source: "./media/characters/sebi/front.svg",
  21363. extra: 713.5 / 686.5,
  21364. bottom: 0.003
  21365. }
  21366. }
  21367. },
  21368. [
  21369. {
  21370. name: "Normal",
  21371. height: math.unit(70, "cm"),
  21372. default: true
  21373. },
  21374. {
  21375. name: "Macro",
  21376. height: math.unit(8, "meters")
  21377. },
  21378. ]
  21379. ))
  21380. characterMakers.push(() => makeCharacter(
  21381. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21382. {
  21383. front: {
  21384. height: math.unit(6, "feet"),
  21385. weight: math.unit(150, "lb"),
  21386. name: "Front",
  21387. image: {
  21388. source: "./media/characters/typhek/front.svg",
  21389. extra: 1948 / 1929,
  21390. bottom: 0.025
  21391. }
  21392. },
  21393. side: {
  21394. height: math.unit(6, "feet"),
  21395. weight: math.unit(150, "lb"),
  21396. name: "Side",
  21397. image: {
  21398. source: "./media/characters/typhek/side.svg",
  21399. extra: 2034 / 2010,
  21400. bottom: 0.003
  21401. }
  21402. },
  21403. back: {
  21404. height: math.unit(6, "feet"),
  21405. weight: math.unit(150, "lb"),
  21406. name: "Back",
  21407. image: {
  21408. source: "./media/characters/typhek/back.svg",
  21409. extra: 2005 / 1978,
  21410. bottom: 0.004
  21411. }
  21412. },
  21413. palm: {
  21414. height: math.unit(1.2, "feet"),
  21415. name: "Palm",
  21416. image: {
  21417. source: "./media/characters/typhek/palm.svg"
  21418. }
  21419. },
  21420. fist: {
  21421. height: math.unit(1.1, "feet"),
  21422. name: "Fist",
  21423. image: {
  21424. source: "./media/characters/typhek/fist.svg"
  21425. }
  21426. },
  21427. foot: {
  21428. height: math.unit(1.57, "feet"),
  21429. name: "Foot",
  21430. image: {
  21431. source: "./media/characters/typhek/foot.svg"
  21432. }
  21433. },
  21434. sole: {
  21435. height: math.unit(2.05, "feet"),
  21436. name: "Sole",
  21437. image: {
  21438. source: "./media/characters/typhek/sole.svg"
  21439. }
  21440. },
  21441. },
  21442. [
  21443. {
  21444. name: "Macro",
  21445. height: math.unit(40, "stories"),
  21446. default: true
  21447. },
  21448. {
  21449. name: "Megamacro",
  21450. height: math.unit(1, "mile")
  21451. },
  21452. {
  21453. name: "Gigamacro",
  21454. height: math.unit(4000, "solarradii")
  21455. },
  21456. {
  21457. name: "Universal",
  21458. height: math.unit(1.1, "universes")
  21459. }
  21460. ]
  21461. ))
  21462. characterMakers.push(() => makeCharacter(
  21463. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21464. {
  21465. side: {
  21466. height: math.unit(5 + 7 / 12, "feet"),
  21467. weight: math.unit(150, "lb"),
  21468. name: "Side",
  21469. image: {
  21470. source: "./media/characters/kassy/side.svg",
  21471. extra: 1280 / 1225,
  21472. bottom: 0.002
  21473. }
  21474. },
  21475. front: {
  21476. height: math.unit(5 + 7 / 12, "feet"),
  21477. weight: math.unit(150, "lb"),
  21478. name: "Front",
  21479. image: {
  21480. source: "./media/characters/kassy/front.svg",
  21481. extra: 1280 / 1225,
  21482. bottom: 0.025
  21483. }
  21484. },
  21485. back: {
  21486. height: math.unit(5 + 7 / 12, "feet"),
  21487. weight: math.unit(150, "lb"),
  21488. name: "Back",
  21489. image: {
  21490. source: "./media/characters/kassy/back.svg",
  21491. extra: 1280 / 1225,
  21492. bottom: 0.002
  21493. }
  21494. },
  21495. foot: {
  21496. height: math.unit(1.266, "feet"),
  21497. name: "Foot",
  21498. image: {
  21499. source: "./media/characters/kassy/foot.svg"
  21500. }
  21501. },
  21502. },
  21503. [
  21504. {
  21505. name: "Normal",
  21506. height: math.unit(5 + 7 / 12, "feet")
  21507. },
  21508. {
  21509. name: "Macro",
  21510. height: math.unit(137, "feet"),
  21511. default: true
  21512. },
  21513. {
  21514. name: "Megamacro",
  21515. height: math.unit(1, "mile")
  21516. },
  21517. ]
  21518. ))
  21519. characterMakers.push(() => makeCharacter(
  21520. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21521. {
  21522. front: {
  21523. height: math.unit(6 + 1 / 12, "feet"),
  21524. weight: math.unit(200, "lb"),
  21525. name: "Front",
  21526. image: {
  21527. source: "./media/characters/neil/front.svg",
  21528. extra: 1326 / 1250,
  21529. bottom: 0.023
  21530. }
  21531. },
  21532. },
  21533. [
  21534. {
  21535. name: "Normal",
  21536. height: math.unit(6 + 1 / 12, "feet"),
  21537. default: true
  21538. },
  21539. {
  21540. name: "Macro",
  21541. height: math.unit(200, "feet")
  21542. },
  21543. ]
  21544. ))
  21545. characterMakers.push(() => makeCharacter(
  21546. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21547. {
  21548. front: {
  21549. height: math.unit(5 + 9 / 12, "feet"),
  21550. weight: math.unit(190, "lb"),
  21551. name: "Front",
  21552. image: {
  21553. source: "./media/characters/atticus/front.svg",
  21554. extra: 2934 / 2785,
  21555. bottom: 0.025
  21556. }
  21557. },
  21558. },
  21559. [
  21560. {
  21561. name: "Normal",
  21562. height: math.unit(5 + 9 / 12, "feet"),
  21563. default: true
  21564. },
  21565. {
  21566. name: "Macro",
  21567. height: math.unit(180, "feet")
  21568. },
  21569. ]
  21570. ))
  21571. characterMakers.push(() => makeCharacter(
  21572. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21573. {
  21574. side: {
  21575. height: math.unit(9, "feet"),
  21576. weight: math.unit(650, "lb"),
  21577. name: "Side",
  21578. image: {
  21579. source: "./media/characters/milo/side.svg",
  21580. extra: 2644 / 2310,
  21581. bottom: 0.032
  21582. }
  21583. },
  21584. },
  21585. [
  21586. {
  21587. name: "Normal",
  21588. height: math.unit(9, "feet"),
  21589. default: true
  21590. },
  21591. {
  21592. name: "Macro",
  21593. height: math.unit(300, "feet")
  21594. },
  21595. ]
  21596. ))
  21597. characterMakers.push(() => makeCharacter(
  21598. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21599. {
  21600. side: {
  21601. height: math.unit(8, "meters"),
  21602. weight: math.unit(90000, "kg"),
  21603. name: "Side",
  21604. image: {
  21605. source: "./media/characters/ijzer/side.svg",
  21606. extra: 2756 / 1600,
  21607. bottom: 0.01
  21608. }
  21609. },
  21610. },
  21611. [
  21612. {
  21613. name: "Small",
  21614. height: math.unit(3, "meters")
  21615. },
  21616. {
  21617. name: "Normal",
  21618. height: math.unit(8, "meters"),
  21619. default: true
  21620. },
  21621. {
  21622. name: "Normal+",
  21623. height: math.unit(10, "meters")
  21624. },
  21625. {
  21626. name: "Bigger",
  21627. height: math.unit(24, "meters")
  21628. },
  21629. {
  21630. name: "Huge",
  21631. height: math.unit(80, "meters")
  21632. },
  21633. ]
  21634. ))
  21635. characterMakers.push(() => makeCharacter(
  21636. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21637. {
  21638. front: {
  21639. height: math.unit(6 + 2 / 12, "feet"),
  21640. weight: math.unit(153, "lb"),
  21641. name: "Front",
  21642. image: {
  21643. source: "./media/characters/luca-cervicum/front.svg",
  21644. extra: 370 / 327,
  21645. bottom: 0.015
  21646. }
  21647. },
  21648. back: {
  21649. height: math.unit(6 + 2 / 12, "feet"),
  21650. weight: math.unit(153, "lb"),
  21651. name: "Back",
  21652. image: {
  21653. source: "./media/characters/luca-cervicum/back.svg",
  21654. extra: 367 / 333,
  21655. bottom: 0.005
  21656. }
  21657. },
  21658. frontGear: {
  21659. height: math.unit(6 + 2 / 12, "feet"),
  21660. weight: math.unit(173, "lb"),
  21661. name: "Front (Gear)",
  21662. image: {
  21663. source: "./media/characters/luca-cervicum/front-gear.svg",
  21664. extra: 377 / 333,
  21665. bottom: 0.006
  21666. }
  21667. },
  21668. },
  21669. [
  21670. {
  21671. name: "Normal",
  21672. height: math.unit(6 + 2 / 12, "feet"),
  21673. default: true
  21674. },
  21675. ]
  21676. ))
  21677. characterMakers.push(() => makeCharacter(
  21678. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21679. {
  21680. front: {
  21681. height: math.unit(6 + 1 / 12, "feet"),
  21682. weight: math.unit(304, "lb"),
  21683. name: "Front",
  21684. image: {
  21685. source: "./media/characters/oliver/front.svg",
  21686. extra: 157 / 143,
  21687. bottom: 0.08
  21688. }
  21689. },
  21690. },
  21691. [
  21692. {
  21693. name: "Normal",
  21694. height: math.unit(6 + 1 / 12, "feet"),
  21695. default: true
  21696. },
  21697. ]
  21698. ))
  21699. characterMakers.push(() => makeCharacter(
  21700. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21701. {
  21702. front: {
  21703. height: math.unit(5 + 7 / 12, "feet"),
  21704. weight: math.unit(140, "lb"),
  21705. name: "Front",
  21706. image: {
  21707. source: "./media/characters/shane/front.svg",
  21708. extra: 304 / 289,
  21709. bottom: 0.005
  21710. }
  21711. },
  21712. },
  21713. [
  21714. {
  21715. name: "Normal",
  21716. height: math.unit(5 + 7 / 12, "feet"),
  21717. default: true
  21718. },
  21719. ]
  21720. ))
  21721. characterMakers.push(() => makeCharacter(
  21722. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21723. {
  21724. front: {
  21725. height: math.unit(5 + 9 / 12, "feet"),
  21726. weight: math.unit(178, "lb"),
  21727. name: "Front",
  21728. image: {
  21729. source: "./media/characters/shin/front.svg",
  21730. extra: 159 / 151,
  21731. bottom: 0.015
  21732. }
  21733. },
  21734. },
  21735. [
  21736. {
  21737. name: "Normal",
  21738. height: math.unit(5 + 9 / 12, "feet"),
  21739. default: true
  21740. },
  21741. ]
  21742. ))
  21743. characterMakers.push(() => makeCharacter(
  21744. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21745. {
  21746. front: {
  21747. height: math.unit(5 + 10 / 12, "feet"),
  21748. weight: math.unit(168, "lb"),
  21749. name: "Front",
  21750. image: {
  21751. source: "./media/characters/xerxes/front.svg",
  21752. extra: 282 / 260,
  21753. bottom: 0.045
  21754. }
  21755. },
  21756. },
  21757. [
  21758. {
  21759. name: "Normal",
  21760. height: math.unit(5 + 10 / 12, "feet"),
  21761. default: true
  21762. },
  21763. ]
  21764. ))
  21765. characterMakers.push(() => makeCharacter(
  21766. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21767. {
  21768. front: {
  21769. height: math.unit(6 + 7 / 12, "feet"),
  21770. weight: math.unit(208, "lb"),
  21771. name: "Front",
  21772. image: {
  21773. source: "./media/characters/chaska/front.svg",
  21774. extra: 332 / 319,
  21775. bottom: 0.015
  21776. }
  21777. },
  21778. },
  21779. [
  21780. {
  21781. name: "Normal",
  21782. height: math.unit(6 + 7 / 12, "feet"),
  21783. default: true
  21784. },
  21785. ]
  21786. ))
  21787. characterMakers.push(() => makeCharacter(
  21788. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21789. {
  21790. front: {
  21791. height: math.unit(5 + 8 / 12, "feet"),
  21792. weight: math.unit(208, "lb"),
  21793. name: "Front",
  21794. image: {
  21795. source: "./media/characters/enuk/front.svg",
  21796. extra: 437 / 406,
  21797. bottom: 0.02
  21798. }
  21799. },
  21800. },
  21801. [
  21802. {
  21803. name: "Normal",
  21804. height: math.unit(5 + 8 / 12, "feet"),
  21805. default: true
  21806. },
  21807. ]
  21808. ))
  21809. characterMakers.push(() => makeCharacter(
  21810. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21811. {
  21812. front: {
  21813. height: math.unit(5 + 10 / 12, "feet"),
  21814. weight: math.unit(252, "lb"),
  21815. name: "Front",
  21816. image: {
  21817. source: "./media/characters/bruun/front.svg",
  21818. extra: 197 / 187,
  21819. bottom: 0.012
  21820. }
  21821. },
  21822. },
  21823. [
  21824. {
  21825. name: "Normal",
  21826. height: math.unit(5 + 10 / 12, "feet"),
  21827. default: true
  21828. },
  21829. ]
  21830. ))
  21831. characterMakers.push(() => makeCharacter(
  21832. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21833. {
  21834. front: {
  21835. height: math.unit(6 + 10 / 12, "feet"),
  21836. weight: math.unit(255, "lb"),
  21837. name: "Front",
  21838. image: {
  21839. source: "./media/characters/alexeev/front.svg",
  21840. extra: 213 / 200,
  21841. bottom: 0.05
  21842. }
  21843. },
  21844. },
  21845. [
  21846. {
  21847. name: "Normal",
  21848. height: math.unit(6 + 10 / 12, "feet"),
  21849. default: true
  21850. },
  21851. ]
  21852. ))
  21853. characterMakers.push(() => makeCharacter(
  21854. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21855. {
  21856. front: {
  21857. height: math.unit(2 + 8 / 12, "feet"),
  21858. weight: math.unit(22, "lb"),
  21859. name: "Front",
  21860. image: {
  21861. source: "./media/characters/evelyn/front.svg",
  21862. extra: 208 / 180
  21863. }
  21864. },
  21865. },
  21866. [
  21867. {
  21868. name: "Normal",
  21869. height: math.unit(2 + 8 / 12, "feet"),
  21870. default: true
  21871. },
  21872. ]
  21873. ))
  21874. characterMakers.push(() => makeCharacter(
  21875. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21876. {
  21877. front: {
  21878. height: math.unit(5 + 9 / 12, "feet"),
  21879. weight: math.unit(139, "lb"),
  21880. name: "Front",
  21881. image: {
  21882. source: "./media/characters/inca/front.svg",
  21883. extra: 294 / 291,
  21884. bottom: 0.03
  21885. }
  21886. },
  21887. },
  21888. [
  21889. {
  21890. name: "Normal",
  21891. height: math.unit(5 + 9 / 12, "feet"),
  21892. default: true
  21893. },
  21894. ]
  21895. ))
  21896. characterMakers.push(() => makeCharacter(
  21897. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21898. {
  21899. front: {
  21900. height: math.unit(6 + 3 / 12, "feet"),
  21901. weight: math.unit(185, "lb"),
  21902. name: "Front",
  21903. image: {
  21904. source: "./media/characters/mera/front.svg",
  21905. extra: 291 / 277,
  21906. bottom: 0.03
  21907. }
  21908. },
  21909. },
  21910. [
  21911. {
  21912. name: "Normal",
  21913. height: math.unit(6 + 3 / 12, "feet"),
  21914. default: true
  21915. },
  21916. ]
  21917. ))
  21918. characterMakers.push(() => makeCharacter(
  21919. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21920. {
  21921. front: {
  21922. height: math.unit(6 + 7 / 12, "feet"),
  21923. weight: math.unit(160, "lb"),
  21924. name: "Front",
  21925. image: {
  21926. source: "./media/characters/ceres/front.svg",
  21927. extra: 1023 / 950,
  21928. bottom: 0.027
  21929. }
  21930. },
  21931. back: {
  21932. height: math.unit(6 + 7 / 12, "feet"),
  21933. weight: math.unit(160, "lb"),
  21934. name: "Back",
  21935. image: {
  21936. source: "./media/characters/ceres/back.svg",
  21937. extra: 1023 / 950
  21938. }
  21939. },
  21940. },
  21941. [
  21942. {
  21943. name: "Normal",
  21944. height: math.unit(6 + 7 / 12, "feet"),
  21945. default: true
  21946. },
  21947. ]
  21948. ))
  21949. characterMakers.push(() => makeCharacter(
  21950. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21951. {
  21952. front: {
  21953. height: math.unit(5 + 10 / 12, "feet"),
  21954. weight: math.unit(150, "lb"),
  21955. name: "Front",
  21956. image: {
  21957. source: "./media/characters/kris/front.svg",
  21958. extra: 885 / 803,
  21959. bottom: 0.03
  21960. }
  21961. },
  21962. },
  21963. [
  21964. {
  21965. name: "Normal",
  21966. height: math.unit(5 + 10 / 12, "feet"),
  21967. default: true
  21968. },
  21969. ]
  21970. ))
  21971. characterMakers.push(() => makeCharacter(
  21972. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21973. {
  21974. dragon_front: {
  21975. height: math.unit(5, "feet"),
  21976. name: "Front",
  21977. image: {
  21978. source: "./media/characters/taluthus/dragon-front.svg",
  21979. extra: 1203/1098,
  21980. bottom: 46/1249
  21981. },
  21982. form: "dragon",
  21983. default: true
  21984. },
  21985. dragon_maw: {
  21986. height: math.unit(2.35, "feet"),
  21987. name: "Maw",
  21988. image: {
  21989. source: "./media/characters/taluthus/dragon-maw.svg"
  21990. },
  21991. form: "dragon",
  21992. },
  21993. kitsune_front: {
  21994. height: math.unit(7, "feet"),
  21995. name: "Front",
  21996. image: {
  21997. source: "./media/characters/taluthus/kitsune-front.svg",
  21998. extra: 900/841,
  21999. bottom: 65/965
  22000. },
  22001. form: "kitsune",
  22002. default: true
  22003. },
  22004. },
  22005. [
  22006. {
  22007. name: "Normal",
  22008. height: math.unit(5, "feet"),
  22009. form: "dragon",
  22010. default: true,
  22011. },
  22012. {
  22013. name: "Normal",
  22014. height: math.unit(7, "feet"),
  22015. form: "kitsune",
  22016. default: true
  22017. },
  22018. {
  22019. name: "Macro",
  22020. height: math.unit(300, "feet"),
  22021. allForms: true
  22022. },
  22023. ],
  22024. {
  22025. "dragon": {
  22026. name: "Dragon",
  22027. default: true
  22028. },
  22029. "kitsune": {
  22030. name: "Kitsune",
  22031. },
  22032. }
  22033. ))
  22034. characterMakers.push(() => makeCharacter(
  22035. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22036. {
  22037. front: {
  22038. height: math.unit(5 + 9 / 12, "feet"),
  22039. weight: math.unit(145, "lb"),
  22040. name: "Front",
  22041. image: {
  22042. source: "./media/characters/dawn/front.svg",
  22043. extra: 2094 / 2016,
  22044. bottom: 0.025
  22045. }
  22046. },
  22047. back: {
  22048. height: math.unit(5 + 9 / 12, "feet"),
  22049. weight: math.unit(160, "lb"),
  22050. name: "Back",
  22051. image: {
  22052. source: "./media/characters/dawn/back.svg",
  22053. extra: 2112 / 2080,
  22054. bottom: 0.005
  22055. }
  22056. },
  22057. },
  22058. [
  22059. {
  22060. name: "Normal",
  22061. height: math.unit(6 + 7 / 12, "feet"),
  22062. default: true
  22063. },
  22064. ]
  22065. ))
  22066. characterMakers.push(() => makeCharacter(
  22067. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22068. {
  22069. anthro: {
  22070. height: math.unit(8 + 3 / 12, "feet"),
  22071. weight: math.unit(450, "lb"),
  22072. name: "Anthro",
  22073. image: {
  22074. source: "./media/characters/arador/anthro.svg",
  22075. extra: 1835 / 1718,
  22076. bottom: 0.025
  22077. }
  22078. },
  22079. feral: {
  22080. height: math.unit(4, "feet"),
  22081. weight: math.unit(200, "lb"),
  22082. name: "Feral",
  22083. image: {
  22084. source: "./media/characters/arador/feral.svg",
  22085. extra: 1683 / 1514,
  22086. bottom: 0.07
  22087. }
  22088. },
  22089. },
  22090. [
  22091. {
  22092. name: "Normal",
  22093. height: math.unit(8 + 3 / 12, "feet")
  22094. },
  22095. {
  22096. name: "Macro",
  22097. height: math.unit(82.5, "feet"),
  22098. default: true
  22099. },
  22100. ]
  22101. ))
  22102. characterMakers.push(() => makeCharacter(
  22103. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22104. {
  22105. front: {
  22106. height: math.unit(5 + 10 / 12, "feet"),
  22107. weight: math.unit(125, "lb"),
  22108. name: "Front",
  22109. image: {
  22110. source: "./media/characters/dharsi/front.svg",
  22111. extra: 716 / 630,
  22112. bottom: 0.035
  22113. }
  22114. },
  22115. },
  22116. [
  22117. {
  22118. name: "Nano",
  22119. height: math.unit(100, "nm")
  22120. },
  22121. {
  22122. name: "Micro",
  22123. height: math.unit(2, "inches")
  22124. },
  22125. {
  22126. name: "Normal",
  22127. height: math.unit(5 + 10 / 12, "feet"),
  22128. default: true
  22129. },
  22130. {
  22131. name: "Macro",
  22132. height: math.unit(1000, "feet")
  22133. },
  22134. {
  22135. name: "Megamacro",
  22136. height: math.unit(10, "miles")
  22137. },
  22138. {
  22139. name: "Gigamacro",
  22140. height: math.unit(3000, "miles")
  22141. },
  22142. {
  22143. name: "Teramacro",
  22144. height: math.unit(500000, "miles")
  22145. },
  22146. {
  22147. name: "Teramacro+",
  22148. height: math.unit(30, "galaxies")
  22149. },
  22150. ]
  22151. ))
  22152. characterMakers.push(() => makeCharacter(
  22153. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22154. {
  22155. front: {
  22156. height: math.unit(6, "feet"),
  22157. weight: math.unit(150, "lb"),
  22158. name: "Front",
  22159. image: {
  22160. source: "./media/characters/deathy/front.svg",
  22161. extra: 1552 / 1463,
  22162. bottom: 0.025
  22163. }
  22164. },
  22165. side: {
  22166. height: math.unit(6, "feet"),
  22167. weight: math.unit(150, "lb"),
  22168. name: "Side",
  22169. image: {
  22170. source: "./media/characters/deathy/side.svg",
  22171. extra: 1604 / 1455,
  22172. bottom: 0.025
  22173. }
  22174. },
  22175. back: {
  22176. height: math.unit(6, "feet"),
  22177. weight: math.unit(150, "lb"),
  22178. name: "Back",
  22179. image: {
  22180. source: "./media/characters/deathy/back.svg",
  22181. extra: 1580 / 1463,
  22182. bottom: 0.005
  22183. }
  22184. },
  22185. },
  22186. [
  22187. {
  22188. name: "Micro",
  22189. height: math.unit(5, "millimeters")
  22190. },
  22191. {
  22192. name: "Normal",
  22193. height: math.unit(6 + 5 / 12, "feet"),
  22194. default: true
  22195. },
  22196. ]
  22197. ))
  22198. characterMakers.push(() => makeCharacter(
  22199. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22200. {
  22201. front: {
  22202. height: math.unit(16, "feet"),
  22203. weight: math.unit(4000, "lb"),
  22204. name: "Front",
  22205. image: {
  22206. source: "./media/characters/juniper/front.svg",
  22207. bottom: 0.04
  22208. }
  22209. },
  22210. },
  22211. [
  22212. {
  22213. name: "Normal",
  22214. height: math.unit(16, "feet"),
  22215. default: true
  22216. },
  22217. ]
  22218. ))
  22219. characterMakers.push(() => makeCharacter(
  22220. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22221. {
  22222. front: {
  22223. height: math.unit(6, "feet"),
  22224. weight: math.unit(150, "lb"),
  22225. name: "Front",
  22226. image: {
  22227. source: "./media/characters/hipster/front.svg",
  22228. extra: 1312 / 1209,
  22229. bottom: 0.025
  22230. }
  22231. },
  22232. back: {
  22233. height: math.unit(6, "feet"),
  22234. weight: math.unit(150, "lb"),
  22235. name: "Back",
  22236. image: {
  22237. source: "./media/characters/hipster/back.svg",
  22238. extra: 1281 / 1196,
  22239. bottom: 0.01
  22240. }
  22241. },
  22242. },
  22243. [
  22244. {
  22245. name: "Micro",
  22246. height: math.unit(1, "mm")
  22247. },
  22248. {
  22249. name: "Normal",
  22250. height: math.unit(4, "inches"),
  22251. default: true
  22252. },
  22253. {
  22254. name: "Macro",
  22255. height: math.unit(500, "feet")
  22256. },
  22257. {
  22258. name: "Megamacro",
  22259. height: math.unit(1000, "miles")
  22260. },
  22261. ]
  22262. ))
  22263. characterMakers.push(() => makeCharacter(
  22264. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22265. {
  22266. front: {
  22267. height: math.unit(6, "feet"),
  22268. weight: math.unit(150, "lb"),
  22269. name: "Front",
  22270. image: {
  22271. source: "./media/characters/tendirmuldr/front.svg",
  22272. extra: 1878 / 1772,
  22273. bottom: 0.015
  22274. }
  22275. },
  22276. },
  22277. [
  22278. {
  22279. name: "Megamacro",
  22280. height: math.unit(1500, "miles"),
  22281. default: true
  22282. },
  22283. ]
  22284. ))
  22285. characterMakers.push(() => makeCharacter(
  22286. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22287. {
  22288. front: {
  22289. height: math.unit(14, "feet"),
  22290. weight: math.unit(12000, "lb"),
  22291. name: "Front",
  22292. image: {
  22293. source: "./media/characters/mort/front.svg",
  22294. extra: 365 / 318,
  22295. bottom: 0.01
  22296. }
  22297. },
  22298. side: {
  22299. height: math.unit(14, "feet"),
  22300. weight: math.unit(12000, "lb"),
  22301. name: "Side",
  22302. image: {
  22303. source: "./media/characters/mort/side.svg",
  22304. extra: 365 / 318,
  22305. bottom: 0.052
  22306. },
  22307. default: true
  22308. },
  22309. back: {
  22310. height: math.unit(14, "feet"),
  22311. weight: math.unit(12000, "lb"),
  22312. name: "Back",
  22313. image: {
  22314. source: "./media/characters/mort/back.svg",
  22315. extra: 371 / 332,
  22316. bottom: 0.18
  22317. }
  22318. },
  22319. },
  22320. [
  22321. {
  22322. name: "Normal",
  22323. height: math.unit(14, "feet"),
  22324. default: true
  22325. },
  22326. ]
  22327. ))
  22328. characterMakers.push(() => makeCharacter(
  22329. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22330. {
  22331. front: {
  22332. height: math.unit(8, "feet"),
  22333. weight: math.unit(1, "ton"),
  22334. name: "Front",
  22335. image: {
  22336. source: "./media/characters/lycoa/front.svg",
  22337. extra: 1836/1728,
  22338. bottom: 81/1917
  22339. }
  22340. },
  22341. back: {
  22342. height: math.unit(8, "feet"),
  22343. weight: math.unit(1, "ton"),
  22344. name: "Back",
  22345. image: {
  22346. source: "./media/characters/lycoa/back.svg",
  22347. extra: 1785/1720,
  22348. bottom: 91/1876
  22349. }
  22350. },
  22351. head: {
  22352. height: math.unit(1.6243, "feet"),
  22353. name: "Head",
  22354. image: {
  22355. source: "./media/characters/lycoa/head.svg",
  22356. extra: 1011/782,
  22357. bottom: 0/1011
  22358. }
  22359. },
  22360. tailmaw: {
  22361. height: math.unit(1.9, "feet"),
  22362. name: "Tailmaw",
  22363. image: {
  22364. source: "./media/characters/lycoa/tailmaw.svg"
  22365. }
  22366. },
  22367. tentacles: {
  22368. height: math.unit(2.1, "feet"),
  22369. name: "Tentacles",
  22370. image: {
  22371. source: "./media/characters/lycoa/tentacles.svg"
  22372. }
  22373. },
  22374. dick: {
  22375. height: math.unit(1.73, "feet"),
  22376. name: "Dick",
  22377. image: {
  22378. source: "./media/characters/lycoa/dick.svg"
  22379. }
  22380. },
  22381. },
  22382. [
  22383. {
  22384. name: "Normal",
  22385. height: math.unit(8, "feet"),
  22386. default: true
  22387. },
  22388. {
  22389. name: "Macro",
  22390. height: math.unit(30, "feet")
  22391. },
  22392. ]
  22393. ))
  22394. characterMakers.push(() => makeCharacter(
  22395. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22396. {
  22397. front: {
  22398. height: math.unit(4 + 2 / 12, "feet"),
  22399. weight: math.unit(70, "lb"),
  22400. name: "Front",
  22401. image: {
  22402. source: "./media/characters/naldara/front.svg",
  22403. extra: 1664/1387,
  22404. bottom: 81/1745
  22405. },
  22406. form: "anthro",
  22407. default: true
  22408. },
  22409. naga: {
  22410. height: math.unit(20, "feet"),
  22411. weight: math.unit(15000, "kg"),
  22412. name: "Front",
  22413. image: {
  22414. source: "./media/characters/naldara/naga.svg",
  22415. extra: 1590/1396,
  22416. bottom: 285/1875
  22417. },
  22418. form: "naga",
  22419. default: true
  22420. },
  22421. },
  22422. [
  22423. {
  22424. name: "Normal",
  22425. height: math.unit(4 + 2 / 12, "feet"),
  22426. form: "anthro",
  22427. default: true
  22428. },
  22429. {
  22430. name: "Normal",
  22431. height: math.unit(20, "feet"),
  22432. form: "naga",
  22433. default: true
  22434. },
  22435. ],
  22436. {
  22437. "anthro": {
  22438. name: "Anthro",
  22439. default: true
  22440. },
  22441. "naga": {
  22442. name: "Naga"
  22443. }
  22444. }
  22445. ))
  22446. characterMakers.push(() => makeCharacter(
  22447. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22448. {
  22449. front: {
  22450. height: math.unit(13 + 7 / 12, "feet"),
  22451. weight: math.unit(1500, "lb"),
  22452. name: "Front",
  22453. image: {
  22454. source: "./media/characters/briar/front.svg",
  22455. extra: 1223/1157,
  22456. bottom: 123/1346
  22457. }
  22458. },
  22459. },
  22460. [
  22461. {
  22462. name: "Normal",
  22463. height: math.unit(13 + 7 / 12, "feet"),
  22464. default: true
  22465. },
  22466. ]
  22467. ))
  22468. characterMakers.push(() => makeCharacter(
  22469. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22470. {
  22471. side: {
  22472. height: math.unit(16, "feet"),
  22473. weight: math.unit(500, "lb"),
  22474. name: "Side",
  22475. image: {
  22476. source: "./media/characters/vanguard/side.svg",
  22477. extra: 1022/914,
  22478. bottom: 30/1052
  22479. }
  22480. },
  22481. sideAlt: {
  22482. height: math.unit(10, "feet"),
  22483. weight: math.unit(500, "lb"),
  22484. name: "Side (Alt)",
  22485. image: {
  22486. source: "./media/characters/vanguard/side-alt.svg",
  22487. extra: 502 / 425,
  22488. bottom: 0.087
  22489. }
  22490. },
  22491. },
  22492. [
  22493. {
  22494. name: "Normal",
  22495. height: math.unit(17.71, "feet"),
  22496. default: true
  22497. },
  22498. ]
  22499. ))
  22500. characterMakers.push(() => makeCharacter(
  22501. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22502. {
  22503. front: {
  22504. height: math.unit(7.5, "feet"),
  22505. weight: math.unit(2, "lb"),
  22506. name: "Front",
  22507. image: {
  22508. source: "./media/characters/artemis/work-safe-front.svg",
  22509. extra: 1192 / 1075,
  22510. bottom: 0.07
  22511. },
  22512. form: "work-safe",
  22513. default: true
  22514. },
  22515. frontNsfw: {
  22516. height: math.unit(7.5, "feet"),
  22517. weight: math.unit(2, "lb"),
  22518. name: "Front",
  22519. image: {
  22520. source: "./media/characters/artemis/calibrating-front.svg",
  22521. extra: 1192 / 1075,
  22522. bottom: 0.07
  22523. },
  22524. form: "calibrating",
  22525. default: true
  22526. },
  22527. frontNsfwer: {
  22528. height: math.unit(7.5, "feet"),
  22529. weight: math.unit(2, "lb"),
  22530. name: "Front",
  22531. image: {
  22532. source: "./media/characters/artemis/oversize-load-front.svg",
  22533. extra: 1192 / 1075,
  22534. bottom: 0.07
  22535. },
  22536. form: "oversize-load",
  22537. default: true
  22538. },
  22539. side: {
  22540. height: math.unit(7.5, "feet"),
  22541. weight: math.unit(2, "lb"),
  22542. name: "Side",
  22543. image: {
  22544. source: "./media/characters/artemis/work-safe-side.svg",
  22545. extra: 1192 / 1075,
  22546. bottom: 0.07
  22547. },
  22548. form: "work-safe"
  22549. },
  22550. sideNsfw: {
  22551. height: math.unit(7.5, "feet"),
  22552. weight: math.unit(2, "lb"),
  22553. name: "Side",
  22554. image: {
  22555. source: "./media/characters/artemis/calibrating-side.svg",
  22556. extra: 1192 / 1075,
  22557. bottom: 0.07
  22558. },
  22559. form: "calibrating"
  22560. },
  22561. sideNsfwer: {
  22562. height: math.unit(7.5, "feet"),
  22563. weight: math.unit(2, "lb"),
  22564. name: "Side",
  22565. image: {
  22566. source: "./media/characters/artemis/oversize-load-side.svg",
  22567. extra: 1192 / 1075,
  22568. bottom: 0.07
  22569. },
  22570. form: "oversize-load"
  22571. },
  22572. maw: {
  22573. height: math.unit(1.1, "feet"),
  22574. name: "Maw",
  22575. image: {
  22576. source: "./media/characters/artemis/maw.svg"
  22577. },
  22578. form: "work-safe"
  22579. },
  22580. stomach: {
  22581. height: math.unit(0.95, "feet"),
  22582. name: "Stomach",
  22583. image: {
  22584. source: "./media/characters/artemis/stomach.svg"
  22585. },
  22586. form: "work-safe"
  22587. },
  22588. dickCanine: {
  22589. height: math.unit(1, "feet"),
  22590. name: "Dick (Canine)",
  22591. image: {
  22592. source: "./media/characters/artemis/dick-canine.svg"
  22593. },
  22594. form: "calibrating"
  22595. },
  22596. dickEquine: {
  22597. height: math.unit(0.85, "feet"),
  22598. name: "Dick (Equine)",
  22599. image: {
  22600. source: "./media/characters/artemis/dick-equine.svg"
  22601. },
  22602. form: "calibrating"
  22603. },
  22604. dickExotic: {
  22605. height: math.unit(0.85, "feet"),
  22606. name: "Dick (Exotic)",
  22607. image: {
  22608. source: "./media/characters/artemis/dick-exotic.svg"
  22609. },
  22610. form: "calibrating"
  22611. },
  22612. dickCanineBigger: {
  22613. height: math.unit(1 * 1.33, "feet"),
  22614. name: "Dick (Canine)",
  22615. image: {
  22616. source: "./media/characters/artemis/dick-canine.svg"
  22617. },
  22618. form: "oversize-load"
  22619. },
  22620. dickEquineBigger: {
  22621. height: math.unit(0.85 * 1.33, "feet"),
  22622. name: "Dick (Equine)",
  22623. image: {
  22624. source: "./media/characters/artemis/dick-equine.svg"
  22625. },
  22626. form: "oversize-load"
  22627. },
  22628. dickExoticBigger: {
  22629. height: math.unit(0.85 * 1.33, "feet"),
  22630. name: "Dick (Exotic)",
  22631. image: {
  22632. source: "./media/characters/artemis/dick-exotic.svg"
  22633. },
  22634. form: "oversize-load"
  22635. },
  22636. },
  22637. [
  22638. {
  22639. name: "Normal",
  22640. height: math.unit(7.5, "feet"),
  22641. form: "work-safe",
  22642. default: true
  22643. },
  22644. {
  22645. name: "Normal",
  22646. height: math.unit(7.5, "feet"),
  22647. form: "calibrating",
  22648. default: true
  22649. },
  22650. {
  22651. name: "Normal",
  22652. height: math.unit(7.5, "feet"),
  22653. form: "oversize-load",
  22654. default: true
  22655. },
  22656. {
  22657. name: "Enlarged",
  22658. height: math.unit(12, "feet"),
  22659. form: "work-safe",
  22660. },
  22661. {
  22662. name: "Enlarged",
  22663. height: math.unit(12, "feet"),
  22664. form: "calibrating",
  22665. },
  22666. {
  22667. name: "Enlarged",
  22668. height: math.unit(12, "feet"),
  22669. form: "oversize-load",
  22670. },
  22671. ],
  22672. {
  22673. "work-safe": {
  22674. name: "Work-Safe",
  22675. default: true
  22676. },
  22677. "calibrating": {
  22678. name: "Calibrating"
  22679. },
  22680. "oversize-load": {
  22681. name: "Oversize Load"
  22682. }
  22683. }
  22684. ))
  22685. characterMakers.push(() => makeCharacter(
  22686. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22687. {
  22688. front: {
  22689. height: math.unit(5 + 3 / 12, "feet"),
  22690. weight: math.unit(160, "lb"),
  22691. name: "Front",
  22692. image: {
  22693. source: "./media/characters/kira/front.svg",
  22694. extra: 906 / 786,
  22695. bottom: 0.01
  22696. }
  22697. },
  22698. back: {
  22699. height: math.unit(5 + 3 / 12, "feet"),
  22700. weight: math.unit(160, "lb"),
  22701. name: "Back",
  22702. image: {
  22703. source: "./media/characters/kira/back.svg",
  22704. extra: 882 / 757,
  22705. bottom: 0.005
  22706. }
  22707. },
  22708. frontDressed: {
  22709. height: math.unit(5 + 3 / 12, "feet"),
  22710. weight: math.unit(160, "lb"),
  22711. name: "Front (Dressed)",
  22712. image: {
  22713. source: "./media/characters/kira/front-dressed.svg",
  22714. extra: 906 / 786,
  22715. bottom: 0.01
  22716. }
  22717. },
  22718. beans: {
  22719. height: math.unit(0.92, "feet"),
  22720. name: "Beans",
  22721. image: {
  22722. source: "./media/characters/kira/beans.svg"
  22723. }
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "Normal",
  22729. height: math.unit(5 + 3 / 12, "feet"),
  22730. default: true
  22731. },
  22732. ]
  22733. ))
  22734. characterMakers.push(() => makeCharacter(
  22735. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22736. {
  22737. front: {
  22738. height: math.unit(5 + 4 / 12, "feet"),
  22739. weight: math.unit(145, "lb"),
  22740. name: "Front",
  22741. image: {
  22742. source: "./media/characters/scramble/front.svg",
  22743. extra: 763 / 727,
  22744. bottom: 0.05
  22745. }
  22746. },
  22747. back: {
  22748. height: math.unit(5 + 4 / 12, "feet"),
  22749. weight: math.unit(145, "lb"),
  22750. name: "Back",
  22751. image: {
  22752. source: "./media/characters/scramble/back.svg",
  22753. extra: 826 / 737,
  22754. bottom: 0.002
  22755. }
  22756. },
  22757. },
  22758. [
  22759. {
  22760. name: "Normal",
  22761. height: math.unit(5 + 4 / 12, "feet"),
  22762. default: true
  22763. },
  22764. ]
  22765. ))
  22766. characterMakers.push(() => makeCharacter(
  22767. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22768. {
  22769. side: {
  22770. height: math.unit(6 + 2 / 12, "feet"),
  22771. weight: math.unit(190, "lb"),
  22772. name: "Side",
  22773. image: {
  22774. source: "./media/characters/biscuit/side.svg",
  22775. extra: 858 / 791,
  22776. bottom: 0.044
  22777. }
  22778. },
  22779. },
  22780. [
  22781. {
  22782. name: "Normal",
  22783. height: math.unit(6 + 2 / 12, "feet"),
  22784. default: true
  22785. },
  22786. ]
  22787. ))
  22788. characterMakers.push(() => makeCharacter(
  22789. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22790. {
  22791. front: {
  22792. height: math.unit(5 + 2 / 12, "feet"),
  22793. weight: math.unit(120, "lb"),
  22794. name: "Front",
  22795. image: {
  22796. source: "./media/characters/poffin/front.svg",
  22797. extra: 786 / 680,
  22798. bottom: 0.005
  22799. }
  22800. },
  22801. },
  22802. [
  22803. {
  22804. name: "Normal",
  22805. height: math.unit(5 + 2 / 12, "feet"),
  22806. default: true
  22807. },
  22808. ]
  22809. ))
  22810. characterMakers.push(() => makeCharacter(
  22811. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22812. {
  22813. front: {
  22814. height: math.unit(6 + 3 / 12, "feet"),
  22815. weight: math.unit(519, "lb"),
  22816. name: "Front",
  22817. image: {
  22818. source: "./media/characters/dhari/front.svg",
  22819. extra: 1048 / 946,
  22820. bottom: 0.015
  22821. }
  22822. },
  22823. back: {
  22824. height: math.unit(6 + 3 / 12, "feet"),
  22825. weight: math.unit(519, "lb"),
  22826. name: "Back",
  22827. image: {
  22828. source: "./media/characters/dhari/back.svg",
  22829. extra: 1048 / 931,
  22830. bottom: 0.005
  22831. }
  22832. },
  22833. frontDressed: {
  22834. height: math.unit(6 + 3 / 12, "feet"),
  22835. weight: math.unit(519, "lb"),
  22836. name: "Front (Dressed)",
  22837. image: {
  22838. source: "./media/characters/dhari/front-dressed.svg",
  22839. extra: 1713 / 1546,
  22840. bottom: 0.02
  22841. }
  22842. },
  22843. backDressed: {
  22844. height: math.unit(6 + 3 / 12, "feet"),
  22845. weight: math.unit(519, "lb"),
  22846. name: "Back (Dressed)",
  22847. image: {
  22848. source: "./media/characters/dhari/back-dressed.svg",
  22849. extra: 1699 / 1537,
  22850. bottom: 0.01
  22851. }
  22852. },
  22853. maw: {
  22854. height: math.unit(0.95, "feet"),
  22855. name: "Maw",
  22856. image: {
  22857. source: "./media/characters/dhari/maw.svg"
  22858. }
  22859. },
  22860. wereFront: {
  22861. height: math.unit(12 + 8 / 12, "feet"),
  22862. weight: math.unit(4000, "lb"),
  22863. name: "Front (Were)",
  22864. image: {
  22865. source: "./media/characters/dhari/were-front.svg",
  22866. extra: 1065 / 969,
  22867. bottom: 0.015
  22868. }
  22869. },
  22870. wereBack: {
  22871. height: math.unit(12 + 8 / 12, "feet"),
  22872. weight: math.unit(4000, "lb"),
  22873. name: "Back (Were)",
  22874. image: {
  22875. source: "./media/characters/dhari/were-back.svg",
  22876. extra: 1065 / 969,
  22877. bottom: 0.012
  22878. }
  22879. },
  22880. wereMaw: {
  22881. height: math.unit(0.625, "meters"),
  22882. name: "Maw (Were)",
  22883. image: {
  22884. source: "./media/characters/dhari/were-maw.svg"
  22885. }
  22886. },
  22887. },
  22888. [
  22889. {
  22890. name: "Normal",
  22891. height: math.unit(6 + 3 / 12, "feet"),
  22892. default: true
  22893. },
  22894. ]
  22895. ))
  22896. characterMakers.push(() => makeCharacter(
  22897. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22898. {
  22899. anthro: {
  22900. height: math.unit(5 + 7 / 12, "feet"),
  22901. weight: math.unit(175, "lb"),
  22902. name: "Anthro",
  22903. image: {
  22904. source: "./media/characters/rena-dyne/anthro.svg",
  22905. extra: 1849 / 1785,
  22906. bottom: 0.005
  22907. }
  22908. },
  22909. taur: {
  22910. height: math.unit(15 + 6 / 12, "feet"),
  22911. weight: math.unit(8000, "lb"),
  22912. name: "Taur",
  22913. image: {
  22914. source: "./media/characters/rena-dyne/taur.svg",
  22915. extra: 2315 / 2234,
  22916. bottom: 0.033
  22917. }
  22918. },
  22919. },
  22920. [
  22921. {
  22922. name: "Normal",
  22923. height: math.unit(5 + 7 / 12, "feet"),
  22924. default: true
  22925. },
  22926. ]
  22927. ))
  22928. characterMakers.push(() => makeCharacter(
  22929. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22930. {
  22931. front: {
  22932. height: math.unit(8, "feet"),
  22933. weight: math.unit(600, "lb"),
  22934. name: "Front",
  22935. image: {
  22936. source: "./media/characters/weremeep/front.svg",
  22937. extra: 970/849,
  22938. bottom: 7/977
  22939. }
  22940. },
  22941. },
  22942. [
  22943. {
  22944. name: "Normal",
  22945. height: math.unit(8, "feet"),
  22946. default: true
  22947. },
  22948. {
  22949. name: "Lorg",
  22950. height: math.unit(12, "feet")
  22951. },
  22952. {
  22953. name: "Oh Lawd She Comin'",
  22954. height: math.unit(20, "feet")
  22955. },
  22956. ]
  22957. ))
  22958. characterMakers.push(() => makeCharacter(
  22959. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22960. {
  22961. front: {
  22962. height: math.unit(4, "feet"),
  22963. weight: math.unit(90, "lb"),
  22964. name: "Front",
  22965. image: {
  22966. source: "./media/characters/reza/front.svg",
  22967. extra: 1183 / 1111,
  22968. bottom: 0.017
  22969. }
  22970. },
  22971. back: {
  22972. height: math.unit(4, "feet"),
  22973. weight: math.unit(90, "lb"),
  22974. name: "Back",
  22975. image: {
  22976. source: "./media/characters/reza/back.svg",
  22977. extra: 1183 / 1111,
  22978. bottom: 0.01
  22979. }
  22980. },
  22981. drake: {
  22982. height: math.unit(30, "feet"),
  22983. weight: math.unit(246960, "lb"),
  22984. name: "Drake",
  22985. image: {
  22986. source: "./media/characters/reza/drake.svg",
  22987. extra: 2350 / 2024,
  22988. bottom: 60.7 / 2403
  22989. }
  22990. },
  22991. },
  22992. [
  22993. {
  22994. name: "Normal",
  22995. height: math.unit(4, "feet"),
  22996. default: true
  22997. },
  22998. ]
  22999. ))
  23000. characterMakers.push(() => makeCharacter(
  23001. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23002. {
  23003. side: {
  23004. height: math.unit(15, "feet"),
  23005. weight: math.unit(14, "tons"),
  23006. name: "Side",
  23007. image: {
  23008. source: "./media/characters/athea/side.svg",
  23009. extra: 960 / 540,
  23010. bottom: 0.003
  23011. }
  23012. },
  23013. sitting: {
  23014. height: math.unit(6 * 2.85, "feet"),
  23015. weight: math.unit(14, "tons"),
  23016. name: "Sitting",
  23017. image: {
  23018. source: "./media/characters/athea/sitting.svg",
  23019. extra: 621 / 581,
  23020. bottom: 0.075
  23021. }
  23022. },
  23023. maw: {
  23024. height: math.unit(7.59498031496063, "feet"),
  23025. name: "Maw",
  23026. image: {
  23027. source: "./media/characters/athea/maw.svg"
  23028. }
  23029. },
  23030. },
  23031. [
  23032. {
  23033. name: "Lap Cat",
  23034. height: math.unit(2.5, "feet")
  23035. },
  23036. {
  23037. name: "Minimacro",
  23038. height: math.unit(15, "feet"),
  23039. default: true
  23040. },
  23041. {
  23042. name: "Macro",
  23043. height: math.unit(120, "feet")
  23044. },
  23045. {
  23046. name: "Macro+",
  23047. height: math.unit(640, "feet")
  23048. },
  23049. {
  23050. name: "Colossus",
  23051. height: math.unit(2.2, "miles")
  23052. },
  23053. ]
  23054. ))
  23055. characterMakers.push(() => makeCharacter(
  23056. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23057. {
  23058. front: {
  23059. height: math.unit(8 + 8 / 12, "feet"),
  23060. weight: math.unit(130, "kg"),
  23061. name: "Front",
  23062. image: {
  23063. source: "./media/characters/seroko/front.svg",
  23064. extra: 1385 / 1280,
  23065. bottom: 0.025
  23066. }
  23067. },
  23068. back: {
  23069. height: math.unit(8 + 8 / 12, "feet"),
  23070. weight: math.unit(130, "kg"),
  23071. name: "Back",
  23072. image: {
  23073. source: "./media/characters/seroko/back.svg",
  23074. extra: 1369 / 1238,
  23075. bottom: 0.018
  23076. }
  23077. },
  23078. frontDressed: {
  23079. height: math.unit(8 + 8 / 12, "feet"),
  23080. weight: math.unit(130, "kg"),
  23081. name: "Front (Dressed)",
  23082. image: {
  23083. source: "./media/characters/seroko/front-dressed.svg",
  23084. extra: 1366 / 1275,
  23085. bottom: 0.03
  23086. }
  23087. },
  23088. },
  23089. [
  23090. {
  23091. name: "Normal",
  23092. height: math.unit(8 + 8 / 12, "feet"),
  23093. default: true
  23094. },
  23095. ]
  23096. ))
  23097. characterMakers.push(() => makeCharacter(
  23098. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23099. {
  23100. front: {
  23101. height: math.unit(5.5, "feet"),
  23102. weight: math.unit(160, "lb"),
  23103. name: "Front",
  23104. image: {
  23105. source: "./media/characters/quatzi/front.svg",
  23106. extra: 2346 / 2242,
  23107. bottom: 0.015
  23108. }
  23109. },
  23110. },
  23111. [
  23112. {
  23113. name: "Normal",
  23114. height: math.unit(5.5, "feet"),
  23115. default: true
  23116. },
  23117. {
  23118. name: "Big",
  23119. height: math.unit(7.7, "feet")
  23120. },
  23121. ]
  23122. ))
  23123. characterMakers.push(() => makeCharacter(
  23124. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23125. {
  23126. front: {
  23127. height: math.unit(5 + 11 / 12, "feet"),
  23128. weight: math.unit(180, "lb"),
  23129. name: "Front",
  23130. image: {
  23131. source: "./media/characters/sen/front.svg",
  23132. extra: 1321 / 1254,
  23133. bottom: 0.015
  23134. }
  23135. },
  23136. side: {
  23137. height: math.unit(5 + 11 / 12, "feet"),
  23138. weight: math.unit(180, "lb"),
  23139. name: "Side",
  23140. image: {
  23141. source: "./media/characters/sen/side.svg",
  23142. extra: 1321 / 1254,
  23143. bottom: 0.007
  23144. }
  23145. },
  23146. back: {
  23147. height: math.unit(5 + 11 / 12, "feet"),
  23148. weight: math.unit(180, "lb"),
  23149. name: "Back",
  23150. image: {
  23151. source: "./media/characters/sen/back.svg",
  23152. extra: 1321 / 1254
  23153. }
  23154. },
  23155. },
  23156. [
  23157. {
  23158. name: "Normal",
  23159. height: math.unit(5 + 11 / 12, "feet"),
  23160. default: true
  23161. },
  23162. ]
  23163. ))
  23164. characterMakers.push(() => makeCharacter(
  23165. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23166. {
  23167. front: {
  23168. height: math.unit(166.6, "cm"),
  23169. weight: math.unit(66.6, "kg"),
  23170. name: "Front",
  23171. image: {
  23172. source: "./media/characters/fruity/front.svg",
  23173. extra: 1510 / 1386,
  23174. bottom: 0.04
  23175. }
  23176. },
  23177. back: {
  23178. height: math.unit(166.6, "cm"),
  23179. weight: math.unit(66.6, "lb"),
  23180. name: "Back",
  23181. image: {
  23182. source: "./media/characters/fruity/back.svg",
  23183. extra: 1563 / 1435,
  23184. bottom: 0.005
  23185. }
  23186. },
  23187. },
  23188. [
  23189. {
  23190. name: "Normal",
  23191. height: math.unit(166.6, "cm"),
  23192. default: true
  23193. },
  23194. {
  23195. name: "Demonic",
  23196. height: math.unit(166.6, "feet")
  23197. },
  23198. ]
  23199. ))
  23200. characterMakers.push(() => makeCharacter(
  23201. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23202. {
  23203. side: {
  23204. height: math.unit(10, "feet"),
  23205. weight: math.unit(500, "lb"),
  23206. name: "Side",
  23207. image: {
  23208. source: "./media/characters/zost/side.svg",
  23209. extra: 2870/2533,
  23210. bottom: 252/3122
  23211. }
  23212. },
  23213. mawFront: {
  23214. height: math.unit(1.08, "meters"),
  23215. name: "Maw (Front)",
  23216. image: {
  23217. source: "./media/characters/zost/maw-front.svg"
  23218. }
  23219. },
  23220. mawSide: {
  23221. height: math.unit(2.66, "feet"),
  23222. name: "Maw (Side)",
  23223. image: {
  23224. source: "./media/characters/zost/maw-side.svg"
  23225. }
  23226. },
  23227. wingspan: {
  23228. height: math.unit(7.4, "feet"),
  23229. name: "Wingspan",
  23230. image: {
  23231. source: "./media/characters/zost/wingspan.svg"
  23232. }
  23233. },
  23234. },
  23235. [
  23236. {
  23237. name: "Normal",
  23238. height: math.unit(10, "feet"),
  23239. default: true
  23240. },
  23241. ]
  23242. ))
  23243. characterMakers.push(() => makeCharacter(
  23244. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23245. {
  23246. front: {
  23247. height: math.unit(5 + 4 / 12, "feet"),
  23248. weight: math.unit(120, "lb"),
  23249. name: "Front",
  23250. image: {
  23251. source: "./media/characters/luci/front.svg",
  23252. extra: 1985 / 1884,
  23253. bottom: 0.04
  23254. }
  23255. },
  23256. back: {
  23257. height: math.unit(5 + 4 / 12, "feet"),
  23258. weight: math.unit(120, "lb"),
  23259. name: "Back",
  23260. image: {
  23261. source: "./media/characters/luci/back.svg",
  23262. extra: 1892 / 1791,
  23263. bottom: 0.002
  23264. }
  23265. },
  23266. },
  23267. [
  23268. {
  23269. name: "Normal",
  23270. height: math.unit(5 + 4 / 12, "feet"),
  23271. default: true
  23272. },
  23273. ]
  23274. ))
  23275. characterMakers.push(() => makeCharacter(
  23276. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23277. {
  23278. front: {
  23279. height: math.unit(1500, "feet"),
  23280. weight: math.unit(3.8e6, "tons"),
  23281. name: "Front",
  23282. image: {
  23283. source: "./media/characters/2th/front.svg",
  23284. extra: 3489 / 3350,
  23285. bottom: 0.1
  23286. }
  23287. },
  23288. foot: {
  23289. height: math.unit(461, "feet"),
  23290. name: "Foot",
  23291. image: {
  23292. source: "./media/characters/2th/foot.svg"
  23293. }
  23294. },
  23295. },
  23296. [
  23297. {
  23298. name: "\"Micro\"",
  23299. height: math.unit(15 + 7 / 12, "feet")
  23300. },
  23301. {
  23302. name: "Normal",
  23303. height: math.unit(1500, "feet"),
  23304. default: true
  23305. },
  23306. {
  23307. name: "Macro",
  23308. height: math.unit(5000, "feet")
  23309. },
  23310. {
  23311. name: "Megamacro",
  23312. height: math.unit(15, "miles")
  23313. },
  23314. {
  23315. name: "Gigamacro",
  23316. height: math.unit(4000, "miles")
  23317. },
  23318. {
  23319. name: "Galactic",
  23320. height: math.unit(50, "AU")
  23321. },
  23322. ]
  23323. ))
  23324. characterMakers.push(() => makeCharacter(
  23325. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23326. {
  23327. front: {
  23328. height: math.unit(5 + 6 / 12, "feet"),
  23329. weight: math.unit(220, "lb"),
  23330. name: "Front",
  23331. image: {
  23332. source: "./media/characters/amethyst/front.svg",
  23333. extra: 2078 / 2040,
  23334. bottom: 0.045
  23335. }
  23336. },
  23337. back: {
  23338. height: math.unit(5 + 6 / 12, "feet"),
  23339. weight: math.unit(220, "lb"),
  23340. name: "Back",
  23341. image: {
  23342. source: "./media/characters/amethyst/back.svg",
  23343. extra: 2021 / 1989,
  23344. bottom: 0.02
  23345. }
  23346. },
  23347. },
  23348. [
  23349. {
  23350. name: "Normal",
  23351. height: math.unit(5 + 6 / 12, "feet"),
  23352. default: true
  23353. },
  23354. ]
  23355. ))
  23356. characterMakers.push(() => makeCharacter(
  23357. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23358. {
  23359. front: {
  23360. height: math.unit(4 + 11 / 12, "feet"),
  23361. weight: math.unit(120, "lb"),
  23362. name: "Front",
  23363. image: {
  23364. source: "./media/characters/yumi-akiyama/front.svg",
  23365. extra: 1327 / 1235,
  23366. bottom: 0.02
  23367. }
  23368. },
  23369. back: {
  23370. height: math.unit(4 + 11 / 12, "feet"),
  23371. weight: math.unit(120, "lb"),
  23372. name: "Back",
  23373. image: {
  23374. source: "./media/characters/yumi-akiyama/back.svg",
  23375. extra: 1287 / 1245,
  23376. bottom: 0.002
  23377. }
  23378. },
  23379. },
  23380. [
  23381. {
  23382. name: "Galactic",
  23383. height: math.unit(50, "galaxies"),
  23384. default: true
  23385. },
  23386. {
  23387. name: "Universal",
  23388. height: math.unit(100, "universes")
  23389. },
  23390. ]
  23391. ))
  23392. characterMakers.push(() => makeCharacter(
  23393. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23394. {
  23395. front: {
  23396. height: math.unit(8, "feet"),
  23397. weight: math.unit(500, "lb"),
  23398. name: "Front",
  23399. image: {
  23400. source: "./media/characters/rifter-yrmori/front.svg",
  23401. extra: 1180 / 1125,
  23402. bottom: 0.02
  23403. }
  23404. },
  23405. back: {
  23406. height: math.unit(8, "feet"),
  23407. weight: math.unit(500, "lb"),
  23408. name: "Back",
  23409. image: {
  23410. source: "./media/characters/rifter-yrmori/back.svg",
  23411. extra: 1190 / 1145,
  23412. bottom: 0.001
  23413. }
  23414. },
  23415. wings: {
  23416. height: math.unit(7.75, "feet"),
  23417. weight: math.unit(500, "lb"),
  23418. name: "Wings",
  23419. image: {
  23420. source: "./media/characters/rifter-yrmori/wings.svg",
  23421. extra: 1357 / 1285
  23422. }
  23423. },
  23424. maw: {
  23425. height: math.unit(0.8, "feet"),
  23426. name: "Maw",
  23427. image: {
  23428. source: "./media/characters/rifter-yrmori/maw.svg"
  23429. }
  23430. },
  23431. mawfront: {
  23432. height: math.unit(1.45, "feet"),
  23433. name: "Maw (Front)",
  23434. image: {
  23435. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23436. }
  23437. },
  23438. },
  23439. [
  23440. {
  23441. name: "Normal",
  23442. height: math.unit(8, "feet"),
  23443. default: true
  23444. },
  23445. {
  23446. name: "Macro",
  23447. height: math.unit(42, "meters")
  23448. },
  23449. ]
  23450. ))
  23451. characterMakers.push(() => makeCharacter(
  23452. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23453. {
  23454. were: {
  23455. height: math.unit(25 + 6 / 12, "feet"),
  23456. weight: math.unit(10000, "lb"),
  23457. name: "Were",
  23458. image: {
  23459. source: "./media/characters/tahajin/were.svg",
  23460. extra: 801 / 770,
  23461. bottom: 0.042
  23462. }
  23463. },
  23464. aquatic: {
  23465. height: math.unit(6 + 4 / 12, "feet"),
  23466. weight: math.unit(160, "lb"),
  23467. name: "Aquatic",
  23468. image: {
  23469. source: "./media/characters/tahajin/aquatic.svg",
  23470. extra: 572 / 542,
  23471. bottom: 0.04
  23472. }
  23473. },
  23474. chow: {
  23475. height: math.unit(8 + 11 / 12, "feet"),
  23476. weight: math.unit(450, "lb"),
  23477. name: "Chow",
  23478. image: {
  23479. source: "./media/characters/tahajin/chow.svg",
  23480. extra: 660 / 640,
  23481. bottom: 0.015
  23482. }
  23483. },
  23484. demiNaga: {
  23485. height: math.unit(6 + 8 / 12, "feet"),
  23486. weight: math.unit(300, "lb"),
  23487. name: "Demi Naga",
  23488. image: {
  23489. source: "./media/characters/tahajin/demi-naga.svg",
  23490. extra: 643 / 615,
  23491. bottom: 0.1
  23492. }
  23493. },
  23494. data: {
  23495. height: math.unit(5, "inches"),
  23496. weight: math.unit(0.1, "lb"),
  23497. name: "Data",
  23498. image: {
  23499. source: "./media/characters/tahajin/data.svg"
  23500. }
  23501. },
  23502. fluu: {
  23503. height: math.unit(5 + 7 / 12, "feet"),
  23504. weight: math.unit(140, "lb"),
  23505. name: "Fluu",
  23506. image: {
  23507. source: "./media/characters/tahajin/fluu.svg",
  23508. extra: 628 / 592,
  23509. bottom: 0.02
  23510. }
  23511. },
  23512. starWarrior: {
  23513. height: math.unit(4 + 5 / 12, "feet"),
  23514. weight: math.unit(50, "lb"),
  23515. name: "Star Warrior",
  23516. image: {
  23517. source: "./media/characters/tahajin/star-warrior.svg"
  23518. }
  23519. },
  23520. },
  23521. [
  23522. {
  23523. name: "Normal",
  23524. height: math.unit(25 + 6 / 12, "feet"),
  23525. default: true
  23526. },
  23527. ]
  23528. ))
  23529. characterMakers.push(() => makeCharacter(
  23530. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23531. {
  23532. front: {
  23533. height: math.unit(8, "feet"),
  23534. weight: math.unit(350, "lb"),
  23535. name: "Front",
  23536. image: {
  23537. source: "./media/characters/gabira/front.svg",
  23538. extra: 1261/1154,
  23539. bottom: 51/1312
  23540. }
  23541. },
  23542. back: {
  23543. height: math.unit(8, "feet"),
  23544. weight: math.unit(350, "lb"),
  23545. name: "Back",
  23546. image: {
  23547. source: "./media/characters/gabira/back.svg",
  23548. extra: 1265/1163,
  23549. bottom: 46/1311
  23550. }
  23551. },
  23552. head: {
  23553. height: math.unit(2.85, "feet"),
  23554. name: "Head",
  23555. image: {
  23556. source: "./media/characters/gabira/head.svg"
  23557. }
  23558. },
  23559. },
  23560. [
  23561. {
  23562. name: "Normal",
  23563. height: math.unit(8, "feet"),
  23564. default: true
  23565. },
  23566. ]
  23567. ))
  23568. characterMakers.push(() => makeCharacter(
  23569. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23570. {
  23571. front: {
  23572. height: math.unit(5 + 3 / 12, "feet"),
  23573. weight: math.unit(137, "lb"),
  23574. name: "Front",
  23575. image: {
  23576. source: "./media/characters/sasha-katraine/front.svg",
  23577. extra: 1745/1694,
  23578. bottom: 37/1782
  23579. }
  23580. },
  23581. back: {
  23582. height: math.unit(5 + 3 / 12, "feet"),
  23583. weight: math.unit(137, "lb"),
  23584. name: "Back",
  23585. image: {
  23586. source: "./media/characters/sasha-katraine/back.svg",
  23587. extra: 1776/1699,
  23588. bottom: 26/1802
  23589. }
  23590. },
  23591. },
  23592. [
  23593. {
  23594. name: "Micro",
  23595. height: math.unit(5, "inches")
  23596. },
  23597. {
  23598. name: "Normal",
  23599. height: math.unit(5 + 3 / 12, "feet"),
  23600. default: true
  23601. },
  23602. ]
  23603. ))
  23604. characterMakers.push(() => makeCharacter(
  23605. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23606. {
  23607. side: {
  23608. height: math.unit(4, "inches"),
  23609. weight: math.unit(200, "grams"),
  23610. name: "Side",
  23611. image: {
  23612. source: "./media/characters/der/side.svg",
  23613. extra: 719 / 400,
  23614. bottom: 30.6 / 749.9187
  23615. }
  23616. },
  23617. },
  23618. [
  23619. {
  23620. name: "Micro",
  23621. height: math.unit(4, "inches"),
  23622. default: true
  23623. },
  23624. ]
  23625. ))
  23626. characterMakers.push(() => makeCharacter(
  23627. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23628. {
  23629. side: {
  23630. height: math.unit(30, "meters"),
  23631. weight: math.unit(700, "tonnes"),
  23632. name: "Side",
  23633. image: {
  23634. source: "./media/characters/fixerdragon/side.svg",
  23635. extra: (1293.0514 - 116.03) / 1106.86,
  23636. bottom: 116.03 / 1293.0514
  23637. }
  23638. },
  23639. },
  23640. [
  23641. {
  23642. name: "Planck",
  23643. height: math.unit(1.6e-35, "meters")
  23644. },
  23645. {
  23646. name: "Micro",
  23647. height: math.unit(0.4, "meters")
  23648. },
  23649. {
  23650. name: "Normal",
  23651. height: math.unit(30, "meters"),
  23652. default: true
  23653. },
  23654. {
  23655. name: "Megamacro",
  23656. height: math.unit(1.2, "megameters")
  23657. },
  23658. {
  23659. name: "Teramacro",
  23660. height: math.unit(130, "terameters")
  23661. },
  23662. {
  23663. name: "Yottamacro",
  23664. height: math.unit(6200, "yottameters")
  23665. },
  23666. ]
  23667. ));
  23668. characterMakers.push(() => makeCharacter(
  23669. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23670. {
  23671. front: {
  23672. height: math.unit(8, "feet"),
  23673. weight: math.unit(250, "lb"),
  23674. name: "Front",
  23675. image: {
  23676. source: "./media/characters/kite/front.svg",
  23677. extra: 2796 / 2659,
  23678. bottom: 0.002
  23679. }
  23680. },
  23681. },
  23682. [
  23683. {
  23684. name: "Normal",
  23685. height: math.unit(8, "feet"),
  23686. default: true
  23687. },
  23688. {
  23689. name: "Macro",
  23690. height: math.unit(360, "feet")
  23691. },
  23692. {
  23693. name: "Megamacro",
  23694. height: math.unit(1500, "feet")
  23695. },
  23696. ]
  23697. ))
  23698. characterMakers.push(() => makeCharacter(
  23699. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23700. {
  23701. front: {
  23702. height: math.unit(5 + 11/12, "feet"),
  23703. weight: math.unit(170, "lb"),
  23704. name: "Front",
  23705. image: {
  23706. source: "./media/characters/poojawa-vynar/front.svg",
  23707. extra: 1735/1585,
  23708. bottom: 96/1831
  23709. }
  23710. },
  23711. back: {
  23712. height: math.unit(5 + 11/12, "feet"),
  23713. weight: math.unit(170, "lb"),
  23714. name: "Back",
  23715. image: {
  23716. source: "./media/characters/poojawa-vynar/back.svg",
  23717. extra: 1749/1607,
  23718. bottom: 28/1777
  23719. }
  23720. },
  23721. male: {
  23722. height: math.unit(5 + 11/12, "feet"),
  23723. weight: math.unit(170, "lb"),
  23724. name: "Male",
  23725. image: {
  23726. source: "./media/characters/poojawa-vynar/male.svg",
  23727. extra: 1855/1713,
  23728. bottom: 63/1918
  23729. }
  23730. },
  23731. taur: {
  23732. height: math.unit(5 + 11/12, "feet"),
  23733. weight: math.unit(170, "lb"),
  23734. name: "Taur",
  23735. image: {
  23736. source: "./media/characters/poojawa-vynar/taur.svg",
  23737. extra: 1151/1059,
  23738. bottom: 356/1507
  23739. }
  23740. },
  23741. frontDressed: {
  23742. height: math.unit(5 + 11/12, "feet"),
  23743. weight: math.unit(170, "lb"),
  23744. name: "Front (Dressed)",
  23745. image: {
  23746. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23747. extra: 1735/1585,
  23748. bottom: 96/1831
  23749. }
  23750. },
  23751. backDressed: {
  23752. height: math.unit(5 + 11/12, "feet"),
  23753. weight: math.unit(170, "lb"),
  23754. name: "Back (Dressed)",
  23755. image: {
  23756. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23757. extra: 1749/1607,
  23758. bottom: 28/1777
  23759. }
  23760. },
  23761. maleDressed: {
  23762. height: math.unit(5 + 11/12, "feet"),
  23763. weight: math.unit(170, "lb"),
  23764. name: "Male (Dressed)",
  23765. image: {
  23766. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23767. extra: 1855/1713,
  23768. bottom: 63/1918
  23769. }
  23770. },
  23771. taurDressed: {
  23772. height: math.unit(5 + 11/12, "feet"),
  23773. weight: math.unit(170, "lb"),
  23774. name: "Taur (Dressed)",
  23775. image: {
  23776. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23777. extra: 1151/1059,
  23778. bottom: 356/1507
  23779. }
  23780. },
  23781. maw: {
  23782. height: math.unit(1.46, "feet"),
  23783. name: "Maw",
  23784. image: {
  23785. source: "./media/characters/poojawa-vynar/maw.svg"
  23786. }
  23787. },
  23788. head: {
  23789. height: math.unit(2.34, "feet"),
  23790. name: "Head",
  23791. image: {
  23792. source: "./media/characters/poojawa-vynar/head.svg"
  23793. }
  23794. },
  23795. paw: {
  23796. height: math.unit(1.61, "feet"),
  23797. name: "Paw",
  23798. image: {
  23799. source: "./media/characters/poojawa-vynar/paw.svg"
  23800. }
  23801. },
  23802. pawToering: {
  23803. height: math.unit(1.72, "feet"),
  23804. name: "Paw (Toering)",
  23805. image: {
  23806. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23807. }
  23808. },
  23809. toering: {
  23810. height: math.unit(2.9, "inches"),
  23811. name: "Toering",
  23812. image: {
  23813. source: "./media/characters/poojawa-vynar/toering.svg"
  23814. }
  23815. },
  23816. shaft: {
  23817. height: math.unit(0.625, "feet"),
  23818. name: "Shaft",
  23819. image: {
  23820. source: "./media/characters/poojawa-vynar/shaft.svg"
  23821. }
  23822. },
  23823. spade: {
  23824. height: math.unit(0.42, "feet"),
  23825. name: "Spade",
  23826. image: {
  23827. source: "./media/characters/poojawa-vynar/spade.svg"
  23828. }
  23829. },
  23830. },
  23831. [
  23832. {
  23833. name: "Shortstack",
  23834. height: math.unit(4, "feet")
  23835. },
  23836. {
  23837. name: "Normal",
  23838. height: math.unit(5 + 11 / 12, "feet"),
  23839. default: true
  23840. },
  23841. {
  23842. name: "Tauric",
  23843. height: math.unit(4, "meters")
  23844. },
  23845. ]
  23846. ))
  23847. characterMakers.push(() => makeCharacter(
  23848. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23849. {
  23850. front: {
  23851. height: math.unit(293, "meters"),
  23852. weight: math.unit(70400, "tons"),
  23853. name: "Front",
  23854. image: {
  23855. source: "./media/characters/violette/front.svg",
  23856. extra: 1227 / 1180,
  23857. bottom: 0.005
  23858. }
  23859. },
  23860. back: {
  23861. height: math.unit(293, "meters"),
  23862. weight: math.unit(70400, "tons"),
  23863. name: "Back",
  23864. image: {
  23865. source: "./media/characters/violette/back.svg",
  23866. extra: 1227 / 1180,
  23867. bottom: 0.005
  23868. }
  23869. },
  23870. },
  23871. [
  23872. {
  23873. name: "Macro",
  23874. height: math.unit(293, "meters"),
  23875. default: true
  23876. },
  23877. ]
  23878. ))
  23879. characterMakers.push(() => makeCharacter(
  23880. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23881. {
  23882. front: {
  23883. height: math.unit(1050, "feet"),
  23884. weight: math.unit(200000, "tons"),
  23885. name: "Front",
  23886. image: {
  23887. source: "./media/characters/alessandra/front.svg",
  23888. extra: 960 / 912,
  23889. bottom: 0.06
  23890. }
  23891. },
  23892. },
  23893. [
  23894. {
  23895. name: "Macro",
  23896. height: math.unit(1050, "feet")
  23897. },
  23898. {
  23899. name: "Macro+",
  23900. height: math.unit(900, "meters"),
  23901. default: true
  23902. },
  23903. ]
  23904. ))
  23905. characterMakers.push(() => makeCharacter(
  23906. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23907. {
  23908. front: {
  23909. height: math.unit(5, "feet"),
  23910. weight: math.unit(187, "lb"),
  23911. name: "Front",
  23912. image: {
  23913. source: "./media/characters/person/front.svg",
  23914. extra: 3087 / 2945,
  23915. bottom: 91 / 3181
  23916. }
  23917. },
  23918. },
  23919. [
  23920. {
  23921. name: "Micro",
  23922. height: math.unit(3, "inches")
  23923. },
  23924. {
  23925. name: "Normal",
  23926. height: math.unit(5, "feet"),
  23927. default: true
  23928. },
  23929. {
  23930. name: "Macro",
  23931. height: math.unit(90, "feet")
  23932. },
  23933. {
  23934. name: "Max Size",
  23935. height: math.unit(280, "feet")
  23936. },
  23937. ]
  23938. ))
  23939. characterMakers.push(() => makeCharacter(
  23940. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23941. {
  23942. front: {
  23943. height: math.unit(4.5, "meters"),
  23944. weight: math.unit(3200, "lb"),
  23945. name: "Front",
  23946. image: {
  23947. source: "./media/characters/ty/front.svg",
  23948. extra: 1038 / 960,
  23949. bottom: 31.156 / 1068
  23950. }
  23951. },
  23952. back: {
  23953. height: math.unit(4.5, "meters"),
  23954. weight: math.unit(3200, "lb"),
  23955. name: "Back",
  23956. image: {
  23957. source: "./media/characters/ty/back.svg",
  23958. extra: 1044 / 966,
  23959. bottom: 7.48 / 1049
  23960. }
  23961. },
  23962. },
  23963. [
  23964. {
  23965. name: "Normal",
  23966. height: math.unit(4.5, "meters"),
  23967. default: true
  23968. },
  23969. ]
  23970. ))
  23971. characterMakers.push(() => makeCharacter(
  23972. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23973. {
  23974. front: {
  23975. height: math.unit(5 + 4 / 12, "feet"),
  23976. weight: math.unit(115, "lb"),
  23977. name: "Front",
  23978. image: {
  23979. source: "./media/characters/rocky/front.svg",
  23980. extra: 1012 / 975,
  23981. bottom: 54 / 1066
  23982. }
  23983. },
  23984. },
  23985. [
  23986. {
  23987. name: "Normal",
  23988. height: math.unit(5 + 4 / 12, "feet"),
  23989. default: true
  23990. },
  23991. ]
  23992. ))
  23993. characterMakers.push(() => makeCharacter(
  23994. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23995. {
  23996. upright: {
  23997. height: math.unit(6, "meters"),
  23998. weight: math.unit(4000, "kg"),
  23999. name: "Upright",
  24000. image: {
  24001. source: "./media/characters/ruin/upright.svg",
  24002. extra: 668 / 661,
  24003. bottom: 42 / 799.8396
  24004. }
  24005. },
  24006. },
  24007. [
  24008. {
  24009. name: "Normal",
  24010. height: math.unit(6, "meters"),
  24011. default: true
  24012. },
  24013. ]
  24014. ))
  24015. characterMakers.push(() => makeCharacter(
  24016. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24017. {
  24018. front: {
  24019. height: math.unit(5, "feet"),
  24020. weight: math.unit(106, "lb"),
  24021. name: "Front",
  24022. image: {
  24023. source: "./media/characters/robin/front.svg",
  24024. extra: 862 / 799,
  24025. bottom: 42.4 / 914.8856
  24026. }
  24027. },
  24028. },
  24029. [
  24030. {
  24031. name: "Normal",
  24032. height: math.unit(5, "feet"),
  24033. default: true
  24034. },
  24035. ]
  24036. ))
  24037. characterMakers.push(() => makeCharacter(
  24038. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24039. {
  24040. side: {
  24041. height: math.unit(3, "feet"),
  24042. weight: math.unit(225, "lb"),
  24043. name: "Side",
  24044. image: {
  24045. source: "./media/characters/saian/side.svg",
  24046. extra: 566 / 356,
  24047. bottom: 79.7 / 643
  24048. }
  24049. },
  24050. maw: {
  24051. height: math.unit(2.85, "feet"),
  24052. name: "Maw",
  24053. image: {
  24054. source: "./media/characters/saian/maw.svg"
  24055. }
  24056. },
  24057. },
  24058. [
  24059. {
  24060. name: "Normal",
  24061. height: math.unit(3, "feet"),
  24062. default: true
  24063. },
  24064. ]
  24065. ))
  24066. characterMakers.push(() => makeCharacter(
  24067. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24068. {
  24069. side: {
  24070. height: math.unit(8, "feet"),
  24071. weight: math.unit(300, "lb"),
  24072. name: "Side",
  24073. image: {
  24074. source: "./media/characters/equus-silvermane/side.svg",
  24075. extra: 2176 / 2050,
  24076. bottom: 65.7 / 2245
  24077. }
  24078. },
  24079. front: {
  24080. height: math.unit(8, "feet"),
  24081. weight: math.unit(300, "lb"),
  24082. name: "Front",
  24083. image: {
  24084. source: "./media/characters/equus-silvermane/front.svg",
  24085. extra: 4633 / 4400,
  24086. bottom: 71.3 / 4706.915
  24087. }
  24088. },
  24089. sideStepping: {
  24090. height: math.unit(8, "feet"),
  24091. weight: math.unit(300, "lb"),
  24092. name: "Side (Stepping)",
  24093. image: {
  24094. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24095. extra: 1968 / 1860,
  24096. bottom: 16.4 / 1989
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Normal",
  24103. height: math.unit(8, "feet")
  24104. },
  24105. {
  24106. name: "Minimacro",
  24107. height: math.unit(75, "feet"),
  24108. default: true
  24109. },
  24110. {
  24111. name: "Macro",
  24112. height: math.unit(150, "feet")
  24113. },
  24114. {
  24115. name: "Macro+",
  24116. height: math.unit(1000, "feet")
  24117. },
  24118. {
  24119. name: "Megamacro",
  24120. height: math.unit(1, "mile")
  24121. },
  24122. ]
  24123. ))
  24124. characterMakers.push(() => makeCharacter(
  24125. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24126. {
  24127. side: {
  24128. height: math.unit(20, "feet"),
  24129. weight: math.unit(30000, "kg"),
  24130. name: "Side",
  24131. image: {
  24132. source: "./media/characters/windar/side.svg",
  24133. extra: 1491 / 1248,
  24134. bottom: 82.56 / 1568
  24135. }
  24136. },
  24137. },
  24138. [
  24139. {
  24140. name: "Normal",
  24141. height: math.unit(20, "feet"),
  24142. default: true
  24143. },
  24144. ]
  24145. ))
  24146. characterMakers.push(() => makeCharacter(
  24147. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24148. {
  24149. side: {
  24150. height: math.unit(15.66, "feet"),
  24151. weight: math.unit(150, "lb"),
  24152. name: "Side",
  24153. image: {
  24154. source: "./media/characters/melody/side.svg",
  24155. extra: 1097 / 944,
  24156. bottom: 11.8 / 1109
  24157. }
  24158. },
  24159. sideOutfit: {
  24160. height: math.unit(15.66, "feet"),
  24161. weight: math.unit(150, "lb"),
  24162. name: "Side (Outfit)",
  24163. image: {
  24164. source: "./media/characters/melody/side-outfit.svg",
  24165. extra: 1097 / 944,
  24166. bottom: 11.8 / 1109
  24167. }
  24168. },
  24169. },
  24170. [
  24171. {
  24172. name: "Normal",
  24173. height: math.unit(15.66, "feet"),
  24174. default: true
  24175. },
  24176. ]
  24177. ))
  24178. characterMakers.push(() => makeCharacter(
  24179. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24180. {
  24181. armoredFront: {
  24182. height: math.unit(8, "feet"),
  24183. weight: math.unit(325, "lb"),
  24184. name: "Front",
  24185. image: {
  24186. source: "./media/characters/windera/armored-front.svg",
  24187. extra: 1830/1598,
  24188. bottom: 151/1981
  24189. },
  24190. form: "armored",
  24191. default: true
  24192. },
  24193. macroFront: {
  24194. height: math.unit(70, "feet"),
  24195. weight: math.unit(315453, "lb"),
  24196. name: "Front",
  24197. image: {
  24198. source: "./media/characters/windera/macro-front.svg",
  24199. extra: 963/883,
  24200. bottom: 23/986
  24201. },
  24202. form: "macro",
  24203. default: true
  24204. },
  24205. },
  24206. [
  24207. {
  24208. name: "Normal",
  24209. height: math.unit(8, "feet"),
  24210. default: true,
  24211. form: "armored"
  24212. },
  24213. {
  24214. name: "Normal",
  24215. height: math.unit(70, "feet"),
  24216. default: true,
  24217. form: "macro"
  24218. },
  24219. ],
  24220. {
  24221. "armored": {
  24222. name: "Armored",
  24223. default: true
  24224. },
  24225. "macro": {
  24226. name: "Macro",
  24227. },
  24228. }
  24229. ))
  24230. characterMakers.push(() => makeCharacter(
  24231. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24232. {
  24233. front: {
  24234. height: math.unit(28.75, "feet"),
  24235. weight: math.unit(2000, "kg"),
  24236. name: "Front",
  24237. image: {
  24238. source: "./media/characters/sonear/front.svg",
  24239. extra: 1041.1 / 964.9,
  24240. bottom: 53.7 / 1096.6
  24241. }
  24242. },
  24243. },
  24244. [
  24245. {
  24246. name: "Normal",
  24247. height: math.unit(28.75, "feet"),
  24248. default: true
  24249. },
  24250. ]
  24251. ))
  24252. characterMakers.push(() => makeCharacter(
  24253. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24254. {
  24255. side: {
  24256. height: math.unit(25.5, "feet"),
  24257. weight: math.unit(23000, "kg"),
  24258. name: "Side",
  24259. image: {
  24260. source: "./media/characters/kanara/side.svg"
  24261. }
  24262. },
  24263. },
  24264. [
  24265. {
  24266. name: "Normal",
  24267. height: math.unit(25.5, "feet"),
  24268. default: true
  24269. },
  24270. ]
  24271. ))
  24272. characterMakers.push(() => makeCharacter(
  24273. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24274. {
  24275. side: {
  24276. height: math.unit(10, "feet"),
  24277. weight: math.unit(1000, "kg"),
  24278. name: "Side",
  24279. image: {
  24280. source: "./media/characters/ereus/side.svg",
  24281. extra: 1157 / 959,
  24282. bottom: 153 / 1312.5
  24283. }
  24284. },
  24285. },
  24286. [
  24287. {
  24288. name: "Normal",
  24289. height: math.unit(10, "feet"),
  24290. default: true
  24291. },
  24292. ]
  24293. ))
  24294. characterMakers.push(() => makeCharacter(
  24295. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24296. {
  24297. side: {
  24298. height: math.unit(4.5, "feet"),
  24299. weight: math.unit(500, "lb"),
  24300. name: "Side",
  24301. image: {
  24302. source: "./media/characters/e-ter/side.svg",
  24303. extra: 1550 / 1248,
  24304. bottom: 146 / 1694
  24305. }
  24306. },
  24307. },
  24308. [
  24309. {
  24310. name: "Normal",
  24311. height: math.unit(4.5, "feet"),
  24312. default: true
  24313. },
  24314. ]
  24315. ))
  24316. characterMakers.push(() => makeCharacter(
  24317. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24318. {
  24319. side: {
  24320. height: math.unit(9.7, "feet"),
  24321. weight: math.unit(4000, "kg"),
  24322. name: "Side",
  24323. image: {
  24324. source: "./media/characters/yamie/side.svg"
  24325. }
  24326. },
  24327. },
  24328. [
  24329. {
  24330. name: "Normal",
  24331. height: math.unit(9.7, "feet"),
  24332. default: true
  24333. },
  24334. ]
  24335. ))
  24336. characterMakers.push(() => makeCharacter(
  24337. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24338. {
  24339. front: {
  24340. height: math.unit(50, "feet"),
  24341. weight: math.unit(50000, "kg"),
  24342. name: "Front",
  24343. image: {
  24344. source: "./media/characters/anders/front.svg",
  24345. extra: 570 / 539,
  24346. bottom: 14.7 / 586.7
  24347. }
  24348. },
  24349. },
  24350. [
  24351. {
  24352. name: "Large",
  24353. height: math.unit(50, "feet")
  24354. },
  24355. {
  24356. name: "Macro",
  24357. height: math.unit(2000, "feet"),
  24358. default: true
  24359. },
  24360. {
  24361. name: "Megamacro",
  24362. height: math.unit(12, "miles")
  24363. },
  24364. ]
  24365. ))
  24366. characterMakers.push(() => makeCharacter(
  24367. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24368. {
  24369. front: {
  24370. height: math.unit(7 + 2 / 12, "feet"),
  24371. weight: math.unit(300, "lb"),
  24372. name: "Front",
  24373. image: {
  24374. source: "./media/characters/reban/front.svg",
  24375. extra: 1287/1212,
  24376. bottom: 148/1435
  24377. }
  24378. },
  24379. head: {
  24380. height: math.unit(1.95, "feet"),
  24381. name: "Head",
  24382. image: {
  24383. source: "./media/characters/reban/head.svg"
  24384. }
  24385. },
  24386. maw: {
  24387. height: math.unit(0.95, "feet"),
  24388. name: "Maw",
  24389. image: {
  24390. source: "./media/characters/reban/maw.svg"
  24391. }
  24392. },
  24393. foot: {
  24394. height: math.unit(1.65, "feet"),
  24395. name: "Foot",
  24396. image: {
  24397. source: "./media/characters/reban/foot.svg"
  24398. }
  24399. },
  24400. dick: {
  24401. height: math.unit(7 / 5, "feet"),
  24402. name: "Dick",
  24403. image: {
  24404. source: "./media/characters/reban/dick.svg"
  24405. }
  24406. },
  24407. },
  24408. [
  24409. {
  24410. name: "Natural Height",
  24411. height: math.unit(7 + 2 / 12, "feet")
  24412. },
  24413. {
  24414. name: "Macro",
  24415. height: math.unit(500, "feet"),
  24416. default: true
  24417. },
  24418. {
  24419. name: "Canon Height",
  24420. height: math.unit(50, "AU")
  24421. },
  24422. ]
  24423. ))
  24424. characterMakers.push(() => makeCharacter(
  24425. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24426. {
  24427. front: {
  24428. height: math.unit(6, "feet"),
  24429. weight: math.unit(150, "lb"),
  24430. name: "Front",
  24431. image: {
  24432. source: "./media/characters/terrance-keayes/front.svg",
  24433. extra: 1.005,
  24434. bottom: 151 / 1615
  24435. }
  24436. },
  24437. side: {
  24438. height: math.unit(6, "feet"),
  24439. weight: math.unit(150, "lb"),
  24440. name: "Side",
  24441. image: {
  24442. source: "./media/characters/terrance-keayes/side.svg",
  24443. extra: 1.005,
  24444. bottom: 129.4 / 1544
  24445. }
  24446. },
  24447. back: {
  24448. height: math.unit(6, "feet"),
  24449. weight: math.unit(150, "lb"),
  24450. name: "Back",
  24451. image: {
  24452. source: "./media/characters/terrance-keayes/back.svg",
  24453. extra: 1.005,
  24454. bottom: 58.4 / 1557.3
  24455. }
  24456. },
  24457. dick: {
  24458. height: math.unit(6 * 0.208, "feet"),
  24459. name: "Dick",
  24460. image: {
  24461. source: "./media/characters/terrance-keayes/dick.svg"
  24462. }
  24463. },
  24464. },
  24465. [
  24466. {
  24467. name: "Canon Height",
  24468. height: math.unit(35, "miles"),
  24469. default: true
  24470. },
  24471. ]
  24472. ))
  24473. characterMakers.push(() => makeCharacter(
  24474. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24475. {
  24476. front: {
  24477. height: math.unit(6, "feet"),
  24478. weight: math.unit(150, "lb"),
  24479. name: "Front",
  24480. image: {
  24481. source: "./media/characters/ofelia/front.svg",
  24482. extra: 1130/1117,
  24483. bottom: 91/1221
  24484. }
  24485. },
  24486. back: {
  24487. height: math.unit(6, "feet"),
  24488. weight: math.unit(150, "lb"),
  24489. name: "Back",
  24490. image: {
  24491. source: "./media/characters/ofelia/back.svg",
  24492. extra: 1172/1159,
  24493. bottom: 28/1200
  24494. }
  24495. },
  24496. maw: {
  24497. height: math.unit(1, "feet"),
  24498. name: "Maw",
  24499. image: {
  24500. source: "./media/characters/ofelia/maw.svg"
  24501. }
  24502. },
  24503. foot: {
  24504. height: math.unit(1.949, "feet"),
  24505. name: "Foot",
  24506. image: {
  24507. source: "./media/characters/ofelia/foot.svg"
  24508. }
  24509. },
  24510. },
  24511. [
  24512. {
  24513. name: "Canon Height",
  24514. height: math.unit(2000, "miles"),
  24515. default: true
  24516. },
  24517. ]
  24518. ))
  24519. characterMakers.push(() => makeCharacter(
  24520. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24521. {
  24522. front: {
  24523. height: math.unit(6, "feet"),
  24524. weight: math.unit(150, "lb"),
  24525. name: "Front",
  24526. image: {
  24527. source: "./media/characters/samuel/front.svg",
  24528. extra: 265 / 258,
  24529. bottom: 2 / 266.1566
  24530. }
  24531. },
  24532. },
  24533. [
  24534. {
  24535. name: "Macro",
  24536. height: math.unit(100, "feet"),
  24537. default: true
  24538. },
  24539. {
  24540. name: "Full Size",
  24541. height: math.unit(1000, "miles")
  24542. },
  24543. ]
  24544. ))
  24545. characterMakers.push(() => makeCharacter(
  24546. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24547. {
  24548. front: {
  24549. height: math.unit(6, "feet"),
  24550. weight: math.unit(300, "lb"),
  24551. name: "Front",
  24552. image: {
  24553. source: "./media/characters/beishir-kiel/front.svg",
  24554. extra: 569 / 547,
  24555. bottom: 41.9 / 609
  24556. }
  24557. },
  24558. maw: {
  24559. height: math.unit(6 * 0.202, "feet"),
  24560. name: "Maw",
  24561. image: {
  24562. source: "./media/characters/beishir-kiel/maw.svg"
  24563. }
  24564. },
  24565. },
  24566. [
  24567. {
  24568. name: "Macro",
  24569. height: math.unit(300, "feet"),
  24570. default: true
  24571. },
  24572. ]
  24573. ))
  24574. characterMakers.push(() => makeCharacter(
  24575. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24576. {
  24577. front: {
  24578. height: math.unit(5 + 7/12, "feet"),
  24579. weight: math.unit(120, "lb"),
  24580. name: "Front",
  24581. image: {
  24582. source: "./media/characters/logan-grey/front.svg",
  24583. extra: 1836/1738,
  24584. bottom: 108/1944
  24585. }
  24586. },
  24587. back: {
  24588. height: math.unit(5 + 7/12, "feet"),
  24589. weight: math.unit(120, "lb"),
  24590. name: "Back",
  24591. image: {
  24592. source: "./media/characters/logan-grey/back.svg",
  24593. extra: 1880/1794,
  24594. bottom: 24/1904
  24595. }
  24596. },
  24597. frontSfw: {
  24598. height: math.unit(5 + 7/12, "feet"),
  24599. weight: math.unit(120, "lb"),
  24600. name: "Front (SFW)",
  24601. image: {
  24602. source: "./media/characters/logan-grey/front-sfw.svg",
  24603. extra: 1836/1738,
  24604. bottom: 108/1944
  24605. }
  24606. },
  24607. backSfw: {
  24608. height: math.unit(5 + 7/12, "feet"),
  24609. weight: math.unit(120, "lb"),
  24610. name: "Back (SFW)",
  24611. image: {
  24612. source: "./media/characters/logan-grey/back-sfw.svg",
  24613. extra: 1880/1794,
  24614. bottom: 24/1904
  24615. }
  24616. },
  24617. hands: {
  24618. height: math.unit(0.84, "feet"),
  24619. name: "Hands",
  24620. image: {
  24621. source: "./media/characters/logan-grey/hands.svg"
  24622. }
  24623. },
  24624. paws: {
  24625. height: math.unit(0.72, "feet"),
  24626. name: "Paws",
  24627. image: {
  24628. source: "./media/characters/logan-grey/paws.svg"
  24629. }
  24630. },
  24631. cock: {
  24632. height: math.unit(1.45, "feet"),
  24633. name: "Cock",
  24634. image: {
  24635. source: "./media/characters/logan-grey/cock.svg"
  24636. }
  24637. },
  24638. cockAlt: {
  24639. height: math.unit(1.437, "feet"),
  24640. name: "Cock (alt)",
  24641. image: {
  24642. source: "./media/characters/logan-grey/cock-alt.svg"
  24643. }
  24644. },
  24645. },
  24646. [
  24647. {
  24648. name: "Normal",
  24649. height: math.unit(5 + 8 / 12, "feet")
  24650. },
  24651. {
  24652. name: "The 500 Foot Femboy",
  24653. height: math.unit(500, "feet"),
  24654. default: true
  24655. },
  24656. {
  24657. name: "Megmacro",
  24658. height: math.unit(20, "miles")
  24659. },
  24660. ]
  24661. ))
  24662. characterMakers.push(() => makeCharacter(
  24663. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24664. {
  24665. front: {
  24666. height: math.unit(8 + 2 / 12, "feet"),
  24667. weight: math.unit(275, "lb"),
  24668. name: "Front",
  24669. image: {
  24670. source: "./media/characters/draganta/front.svg",
  24671. extra: 1177 / 1135,
  24672. bottom: 33.46 / 1212.1
  24673. }
  24674. },
  24675. },
  24676. [
  24677. {
  24678. name: "Normal",
  24679. height: math.unit(8 + 6 / 12, "feet"),
  24680. default: true
  24681. },
  24682. {
  24683. name: "Macro",
  24684. height: math.unit(150, "feet")
  24685. },
  24686. {
  24687. name: "Megamacro",
  24688. height: math.unit(1000, "miles")
  24689. },
  24690. ]
  24691. ))
  24692. characterMakers.push(() => makeCharacter(
  24693. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24694. {
  24695. front: {
  24696. height: math.unit(1.72, "m"),
  24697. weight: math.unit(80, "lb"),
  24698. name: "Front",
  24699. image: {
  24700. source: "./media/characters/voski/front.svg",
  24701. extra: 2076.22 / 2022.4,
  24702. bottom: 102.7 / 2177.3866
  24703. }
  24704. },
  24705. frontFlaccid: {
  24706. height: math.unit(1.72, "m"),
  24707. weight: math.unit(80, "lb"),
  24708. name: "Front (Flaccid)",
  24709. image: {
  24710. source: "./media/characters/voski/front-flaccid.svg",
  24711. extra: 2076.22 / 2022.4,
  24712. bottom: 102.7 / 2177.3866
  24713. }
  24714. },
  24715. frontErect: {
  24716. height: math.unit(1.72, "m"),
  24717. weight: math.unit(80, "lb"),
  24718. name: "Front (Erect)",
  24719. image: {
  24720. source: "./media/characters/voski/front-erect.svg",
  24721. extra: 2076.22 / 2022.4,
  24722. bottom: 102.7 / 2177.3866
  24723. }
  24724. },
  24725. back: {
  24726. height: math.unit(1.72, "m"),
  24727. weight: math.unit(80, "lb"),
  24728. name: "Back",
  24729. image: {
  24730. source: "./media/characters/voski/back.svg",
  24731. extra: 2104 / 2051,
  24732. bottom: 10.45 / 2113.63
  24733. }
  24734. },
  24735. },
  24736. [
  24737. {
  24738. name: "Normal",
  24739. height: math.unit(1.72, "m")
  24740. },
  24741. {
  24742. name: "Macro",
  24743. height: math.unit(55, "m"),
  24744. default: true
  24745. },
  24746. {
  24747. name: "Macro+",
  24748. height: math.unit(300, "m")
  24749. },
  24750. {
  24751. name: "Macro++",
  24752. height: math.unit(700, "m")
  24753. },
  24754. {
  24755. name: "Macro+++",
  24756. height: math.unit(4500, "m")
  24757. },
  24758. {
  24759. name: "Macro++++",
  24760. height: math.unit(45, "km")
  24761. },
  24762. {
  24763. name: "Macro+++++",
  24764. height: math.unit(1220, "km")
  24765. },
  24766. ]
  24767. ))
  24768. characterMakers.push(() => makeCharacter(
  24769. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24770. {
  24771. front: {
  24772. height: math.unit(2.3, "m"),
  24773. weight: math.unit(304, "kg"),
  24774. name: "Front",
  24775. image: {
  24776. source: "./media/characters/icowom-lee/front.svg",
  24777. extra: 985 / 955,
  24778. bottom: 25.4 / 1012
  24779. }
  24780. },
  24781. fronttentacles: {
  24782. height: math.unit(2.3, "m"),
  24783. weight: math.unit(304, "kg"),
  24784. name: "Front-tentacles",
  24785. image: {
  24786. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24787. extra: 985 / 955,
  24788. bottom: 25.4 / 1012
  24789. }
  24790. },
  24791. back: {
  24792. height: math.unit(2.3, "m"),
  24793. weight: math.unit(304, "kg"),
  24794. name: "Back",
  24795. image: {
  24796. source: "./media/characters/icowom-lee/back.svg",
  24797. extra: 975 / 954,
  24798. bottom: 9.5 / 985
  24799. }
  24800. },
  24801. backtentacles: {
  24802. height: math.unit(2.3, "m"),
  24803. weight: math.unit(304, "kg"),
  24804. name: "Back-tentacles",
  24805. image: {
  24806. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24807. extra: 975 / 954,
  24808. bottom: 9.5 / 985
  24809. }
  24810. },
  24811. frontDressed: {
  24812. height: math.unit(2.3, "m"),
  24813. weight: math.unit(304, "kg"),
  24814. name: "Front (Dressed)",
  24815. image: {
  24816. source: "./media/characters/icowom-lee/front-dressed.svg",
  24817. extra: 3076 / 2933,
  24818. bottom: 51.4 / 3125.1889
  24819. }
  24820. },
  24821. rump: {
  24822. height: math.unit(0.776, "meters"),
  24823. name: "Rump",
  24824. image: {
  24825. source: "./media/characters/icowom-lee/rump.svg"
  24826. }
  24827. },
  24828. genitals: {
  24829. height: math.unit(0.78, "meters"),
  24830. name: "Genitals",
  24831. image: {
  24832. source: "./media/characters/icowom-lee/genitals.svg"
  24833. }
  24834. },
  24835. },
  24836. [
  24837. {
  24838. name: "Normal",
  24839. height: math.unit(2.3, "meters"),
  24840. default: true
  24841. },
  24842. {
  24843. name: "Macro",
  24844. height: math.unit(94, "meters"),
  24845. default: true
  24846. },
  24847. ]
  24848. ))
  24849. characterMakers.push(() => makeCharacter(
  24850. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24851. {
  24852. front: {
  24853. height: math.unit(22, "meters"),
  24854. weight: math.unit(21000, "kg"),
  24855. name: "Front",
  24856. image: {
  24857. source: "./media/characters/shock-diamond/front.svg",
  24858. extra: 2204 / 2053,
  24859. bottom: 65 / 2239.47
  24860. }
  24861. },
  24862. frontNude: {
  24863. height: math.unit(22, "meters"),
  24864. weight: math.unit(21000, "kg"),
  24865. name: "Front (Nude)",
  24866. image: {
  24867. source: "./media/characters/shock-diamond/front-nude.svg",
  24868. extra: 2514 / 2285,
  24869. bottom: 13 / 2527.56
  24870. }
  24871. },
  24872. },
  24873. [
  24874. {
  24875. name: "Normal",
  24876. height: math.unit(3, "meters")
  24877. },
  24878. {
  24879. name: "Macro",
  24880. height: math.unit(22, "meters"),
  24881. default: true
  24882. },
  24883. ]
  24884. ))
  24885. characterMakers.push(() => makeCharacter(
  24886. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24887. {
  24888. front: {
  24889. height: math.unit(5 + 4/12, "feet"),
  24890. weight: math.unit(125, "lb"),
  24891. name: "Front",
  24892. image: {
  24893. source: "./media/characters/rory/front.svg",
  24894. extra: 1790/1681,
  24895. bottom: 66/1856
  24896. },
  24897. form: "normal",
  24898. default: true
  24899. },
  24900. back: {
  24901. height: math.unit(5 + 4/12, "feet"),
  24902. weight: math.unit(125, "lb"),
  24903. name: "Back",
  24904. image: {
  24905. source: "./media/characters/rory/back.svg",
  24906. extra: 1805/1690,
  24907. bottom: 56/1861
  24908. },
  24909. form: "normal"
  24910. },
  24911. frontDressed: {
  24912. height: math.unit(5 + 4/12, "feet"),
  24913. weight: math.unit(125, "lb"),
  24914. name: "Front (Dressed)",
  24915. image: {
  24916. source: "./media/characters/rory/front-dressed.svg",
  24917. extra: 1790/1681,
  24918. bottom: 66/1856
  24919. },
  24920. form: "normal"
  24921. },
  24922. backDressed: {
  24923. height: math.unit(5 + 4/12, "feet"),
  24924. weight: math.unit(125, "lb"),
  24925. name: "Back (Dressed)",
  24926. image: {
  24927. source: "./media/characters/rory/back-dressed.svg",
  24928. extra: 1805/1690,
  24929. bottom: 56/1861
  24930. },
  24931. form: "normal"
  24932. },
  24933. frontNsfw: {
  24934. height: math.unit(5 + 4/12, "feet"),
  24935. weight: math.unit(125, "lb"),
  24936. name: "Front (NSFW)",
  24937. image: {
  24938. source: "./media/characters/rory/front-nsfw.svg",
  24939. extra: 1790/1681,
  24940. bottom: 66/1856
  24941. },
  24942. form: "normal"
  24943. },
  24944. backNsfw: {
  24945. height: math.unit(5 + 4/12, "feet"),
  24946. weight: math.unit(125, "lb"),
  24947. name: "Back (NSFW)",
  24948. image: {
  24949. source: "./media/characters/rory/back-nsfw.svg",
  24950. extra: 1805/1690,
  24951. bottom: 56/1861
  24952. },
  24953. form: "normal"
  24954. },
  24955. dick: {
  24956. height: math.unit(0.8, "feet"),
  24957. name: "Dick",
  24958. image: {
  24959. source: "./media/characters/rory/dick.svg"
  24960. },
  24961. form: "normal"
  24962. },
  24963. thicc_front: {
  24964. height: math.unit(5 + 4/12, "feet"),
  24965. weight: math.unit(195, "lb"),
  24966. name: "Front",
  24967. image: {
  24968. source: "./media/characters/rory/thicc-front.svg",
  24969. extra: 1220/1100,
  24970. bottom: 103/1323
  24971. },
  24972. form: "thicc",
  24973. default: true
  24974. },
  24975. thicc_back: {
  24976. height: math.unit(5 + 4/12, "feet"),
  24977. weight: math.unit(195, "lb"),
  24978. name: "Back",
  24979. image: {
  24980. source: "./media/characters/rory/thicc-back.svg",
  24981. extra: 1166/1086,
  24982. bottom: 35/1201
  24983. },
  24984. form: "thicc"
  24985. },
  24986. },
  24987. [
  24988. {
  24989. name: "Micro",
  24990. height: math.unit(3, "inches"),
  24991. allForms: true
  24992. },
  24993. {
  24994. name: "Normal",
  24995. height: math.unit(5 + 4/12, "feet"),
  24996. allForms: true,
  24997. default: true
  24998. },
  24999. {
  25000. name: "Macro",
  25001. height: math.unit(90, "feet"),
  25002. allForms: true
  25003. },
  25004. {
  25005. name: "Supercharged",
  25006. height: math.unit(270, "feet"),
  25007. allForms: true
  25008. },
  25009. ],
  25010. {
  25011. "normal": {
  25012. name: "Normal",
  25013. default: true
  25014. },
  25015. "thicc": {
  25016. name: "Thicc",
  25017. },
  25018. }
  25019. ))
  25020. characterMakers.push(() => makeCharacter(
  25021. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25022. {
  25023. front: {
  25024. height: math.unit(5 + 9 / 12, "feet"),
  25025. weight: math.unit(190, "lb"),
  25026. name: "Front",
  25027. image: {
  25028. source: "./media/characters/sprisk/front.svg",
  25029. extra: 1225 / 1180,
  25030. bottom: 42.7 / 1266.4
  25031. }
  25032. },
  25033. frontNsfw: {
  25034. height: math.unit(5 + 9 / 12, "feet"),
  25035. weight: math.unit(190, "lb"),
  25036. name: "Front (NSFW)",
  25037. image: {
  25038. source: "./media/characters/sprisk/front-nsfw.svg",
  25039. extra: 1225 / 1180,
  25040. bottom: 42.7 / 1266.4
  25041. }
  25042. },
  25043. back: {
  25044. height: math.unit(5 + 9 / 12, "feet"),
  25045. weight: math.unit(190, "lb"),
  25046. name: "Back",
  25047. image: {
  25048. source: "./media/characters/sprisk/back.svg",
  25049. extra: 1247 / 1200,
  25050. bottom: 5.6 / 1253.04
  25051. }
  25052. },
  25053. },
  25054. [
  25055. {
  25056. name: "Tiny",
  25057. height: math.unit(2, "inches")
  25058. },
  25059. {
  25060. name: "Normal",
  25061. height: math.unit(5 + 9 / 12, "feet"),
  25062. default: true
  25063. },
  25064. {
  25065. name: "Mini Macro",
  25066. height: math.unit(18, "feet")
  25067. },
  25068. {
  25069. name: "Macro",
  25070. height: math.unit(100, "feet")
  25071. },
  25072. {
  25073. name: "MACRO",
  25074. height: math.unit(50, "miles")
  25075. },
  25076. {
  25077. name: "M A C R O",
  25078. height: math.unit(300, "miles")
  25079. },
  25080. ]
  25081. ))
  25082. characterMakers.push(() => makeCharacter(
  25083. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25084. {
  25085. side: {
  25086. height: math.unit(15.6, "meters"),
  25087. weight: math.unit(700000, "kg"),
  25088. name: "Side",
  25089. image: {
  25090. source: "./media/characters/bunsen/side.svg",
  25091. extra: 1644 / 358
  25092. }
  25093. },
  25094. foot: {
  25095. height: math.unit(1.611 * 1644 / 358, "meter"),
  25096. name: "Foot",
  25097. image: {
  25098. source: "./media/characters/bunsen/foot.svg"
  25099. }
  25100. },
  25101. },
  25102. [
  25103. {
  25104. name: "Small",
  25105. height: math.unit(10, "feet")
  25106. },
  25107. {
  25108. name: "Normal",
  25109. height: math.unit(15.6, "meters"),
  25110. default: true
  25111. },
  25112. ]
  25113. ))
  25114. characterMakers.push(() => makeCharacter(
  25115. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25116. {
  25117. front: {
  25118. height: math.unit(4 + 11 / 12, "feet"),
  25119. weight: math.unit(140, "lb"),
  25120. name: "Front",
  25121. image: {
  25122. source: "./media/characters/sesh/front.svg",
  25123. extra: 3420 / 3231,
  25124. bottom: 72 / 3949.5
  25125. }
  25126. },
  25127. },
  25128. [
  25129. {
  25130. name: "Normal",
  25131. height: math.unit(4 + 11 / 12, "feet")
  25132. },
  25133. {
  25134. name: "Grown",
  25135. height: math.unit(15, "feet"),
  25136. default: true
  25137. },
  25138. {
  25139. name: "Macro",
  25140. height: math.unit(1500, "feet")
  25141. },
  25142. {
  25143. name: "Megamacro",
  25144. height: math.unit(30, "miles")
  25145. },
  25146. {
  25147. name: "Continental",
  25148. height: math.unit(3000, "miles")
  25149. },
  25150. {
  25151. name: "Gravity Mass",
  25152. height: math.unit(300000, "miles")
  25153. },
  25154. {
  25155. name: "Planet Buster",
  25156. height: math.unit(30000000, "miles")
  25157. },
  25158. {
  25159. name: "Big",
  25160. height: math.unit(3000000000, "miles")
  25161. },
  25162. ]
  25163. ))
  25164. characterMakers.push(() => makeCharacter(
  25165. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25166. {
  25167. front: {
  25168. height: math.unit(9, "feet"),
  25169. weight: math.unit(350, "lb"),
  25170. name: "Front",
  25171. image: {
  25172. source: "./media/characters/pepper/front.svg",
  25173. extra: 1448 / 1312,
  25174. bottom: 9.4 / 1457.88
  25175. }
  25176. },
  25177. back: {
  25178. height: math.unit(9, "feet"),
  25179. weight: math.unit(350, "lb"),
  25180. name: "Back",
  25181. image: {
  25182. source: "./media/characters/pepper/back.svg",
  25183. extra: 1423 / 1300,
  25184. bottom: 4.6 / 1429
  25185. }
  25186. },
  25187. maw: {
  25188. height: math.unit(0.932, "feet"),
  25189. name: "Maw",
  25190. image: {
  25191. source: "./media/characters/pepper/maw.svg"
  25192. }
  25193. },
  25194. },
  25195. [
  25196. {
  25197. name: "Normal",
  25198. height: math.unit(9, "feet"),
  25199. default: true
  25200. },
  25201. ]
  25202. ))
  25203. characterMakers.push(() => makeCharacter(
  25204. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25205. {
  25206. front: {
  25207. height: math.unit(6, "feet"),
  25208. weight: math.unit(150, "lb"),
  25209. name: "Front",
  25210. image: {
  25211. source: "./media/characters/maelstrom/front.svg",
  25212. extra: 2100 / 1883,
  25213. bottom: 94 / 2196.7
  25214. }
  25215. },
  25216. },
  25217. [
  25218. {
  25219. name: "Less Kaiju",
  25220. height: math.unit(200, "feet")
  25221. },
  25222. {
  25223. name: "Kaiju",
  25224. height: math.unit(400, "feet"),
  25225. default: true
  25226. },
  25227. {
  25228. name: "Kaiju-er",
  25229. height: math.unit(600, "feet")
  25230. },
  25231. ]
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25235. {
  25236. front: {
  25237. height: math.unit(6 + 5 / 12, "feet"),
  25238. weight: math.unit(180, "lb"),
  25239. name: "Front",
  25240. image: {
  25241. source: "./media/characters/lexir/front.svg",
  25242. extra: 180 / 172,
  25243. bottom: 12 / 192
  25244. }
  25245. },
  25246. back: {
  25247. height: math.unit(6 + 5 / 12, "feet"),
  25248. weight: math.unit(180, "lb"),
  25249. name: "Back",
  25250. image: {
  25251. source: "./media/characters/lexir/back.svg",
  25252. extra: 1273/1201,
  25253. bottom: 39/1312
  25254. }
  25255. },
  25256. },
  25257. [
  25258. {
  25259. name: "Very Smal",
  25260. height: math.unit(1, "nm")
  25261. },
  25262. {
  25263. name: "Normal",
  25264. height: math.unit(6 + 5 / 12, "feet"),
  25265. default: true
  25266. },
  25267. {
  25268. name: "Macro",
  25269. height: math.unit(1, "mile")
  25270. },
  25271. {
  25272. name: "Megamacro",
  25273. height: math.unit(50, "miles")
  25274. },
  25275. ]
  25276. ))
  25277. characterMakers.push(() => makeCharacter(
  25278. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25279. {
  25280. front: {
  25281. height: math.unit(1.5, "meters"),
  25282. weight: math.unit(100, "lb"),
  25283. name: "Front",
  25284. image: {
  25285. source: "./media/characters/maksio/front.svg",
  25286. extra: 1549 / 1531,
  25287. bottom: 123.7 / 1674.5429
  25288. }
  25289. },
  25290. back: {
  25291. height: math.unit(1.5, "meters"),
  25292. weight: math.unit(100, "lb"),
  25293. name: "Back",
  25294. image: {
  25295. source: "./media/characters/maksio/back.svg",
  25296. extra: 1541 / 1509,
  25297. bottom: 97 / 1639
  25298. }
  25299. },
  25300. hand: {
  25301. height: math.unit(0.621, "feet"),
  25302. name: "Hand",
  25303. image: {
  25304. source: "./media/characters/maksio/hand.svg"
  25305. }
  25306. },
  25307. foot: {
  25308. height: math.unit(1.611, "feet"),
  25309. name: "Foot",
  25310. image: {
  25311. source: "./media/characters/maksio/foot.svg"
  25312. }
  25313. },
  25314. },
  25315. [
  25316. {
  25317. name: "Shrunken",
  25318. height: math.unit(10, "cm")
  25319. },
  25320. {
  25321. name: "Normal",
  25322. height: math.unit(150, "cm"),
  25323. default: true
  25324. },
  25325. ]
  25326. ))
  25327. characterMakers.push(() => makeCharacter(
  25328. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25329. {
  25330. front: {
  25331. height: math.unit(100, "feet"),
  25332. name: "Front",
  25333. image: {
  25334. source: "./media/characters/erza-bear/front.svg",
  25335. extra: 2449 / 2390,
  25336. bottom: 46 / 2494
  25337. }
  25338. },
  25339. back: {
  25340. height: math.unit(100, "feet"),
  25341. name: "Back",
  25342. image: {
  25343. source: "./media/characters/erza-bear/back.svg",
  25344. extra: 2489 / 2430,
  25345. bottom: 85.4 / 2480
  25346. }
  25347. },
  25348. tail: {
  25349. height: math.unit(42, "feet"),
  25350. name: "Tail",
  25351. image: {
  25352. source: "./media/characters/erza-bear/tail.svg"
  25353. }
  25354. },
  25355. tongue: {
  25356. height: math.unit(8, "feet"),
  25357. name: "Tongue",
  25358. image: {
  25359. source: "./media/characters/erza-bear/tongue.svg"
  25360. }
  25361. },
  25362. dick: {
  25363. height: math.unit(10.5, "feet"),
  25364. name: "Dick",
  25365. image: {
  25366. source: "./media/characters/erza-bear/dick.svg"
  25367. }
  25368. },
  25369. dickVertical: {
  25370. height: math.unit(16.9, "feet"),
  25371. name: "Dick (Vertical)",
  25372. image: {
  25373. source: "./media/characters/erza-bear/dick-vertical.svg"
  25374. }
  25375. },
  25376. },
  25377. [
  25378. {
  25379. name: "Macro",
  25380. height: math.unit(100, "feet"),
  25381. default: true
  25382. },
  25383. ]
  25384. ))
  25385. characterMakers.push(() => makeCharacter(
  25386. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25387. {
  25388. front: {
  25389. height: math.unit(172, "cm"),
  25390. weight: math.unit(73, "kg"),
  25391. name: "Front",
  25392. image: {
  25393. source: "./media/characters/violet-flor/front.svg",
  25394. extra: 1530 / 1442,
  25395. bottom: 61.9 / 1588.8
  25396. }
  25397. },
  25398. back: {
  25399. height: math.unit(180, "cm"),
  25400. weight: math.unit(73, "kg"),
  25401. name: "Back",
  25402. image: {
  25403. source: "./media/characters/violet-flor/back.svg",
  25404. extra: 1692 / 1630,
  25405. bottom: 20 / 1712
  25406. }
  25407. },
  25408. },
  25409. [
  25410. {
  25411. name: "Normal",
  25412. height: math.unit(172, "cm"),
  25413. default: true
  25414. },
  25415. ]
  25416. ))
  25417. characterMakers.push(() => makeCharacter(
  25418. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25419. {
  25420. front: {
  25421. height: math.unit(6, "feet"),
  25422. weight: math.unit(220, "lb"),
  25423. name: "Front",
  25424. image: {
  25425. source: "./media/characters/lynn-rhea/front.svg",
  25426. extra: 310 / 273
  25427. }
  25428. },
  25429. back: {
  25430. height: math.unit(6, "feet"),
  25431. weight: math.unit(220, "lb"),
  25432. name: "Back",
  25433. image: {
  25434. source: "./media/characters/lynn-rhea/back.svg",
  25435. extra: 310 / 273
  25436. }
  25437. },
  25438. dicks: {
  25439. height: math.unit(0.9, "feet"),
  25440. name: "Dicks",
  25441. image: {
  25442. source: "./media/characters/lynn-rhea/dicks.svg"
  25443. }
  25444. },
  25445. slit: {
  25446. height: math.unit(0.4, "feet"),
  25447. name: "Slit",
  25448. image: {
  25449. source: "./media/characters/lynn-rhea/slit.svg"
  25450. }
  25451. },
  25452. },
  25453. [
  25454. {
  25455. name: "Micro",
  25456. height: math.unit(1, "inch")
  25457. },
  25458. {
  25459. name: "Macro",
  25460. height: math.unit(60, "feet"),
  25461. default: true
  25462. },
  25463. {
  25464. name: "Megamacro",
  25465. height: math.unit(2, "miles")
  25466. },
  25467. {
  25468. name: "Gigamacro",
  25469. height: math.unit(3, "earths")
  25470. },
  25471. {
  25472. name: "Galactic",
  25473. height: math.unit(0.8, "galaxies")
  25474. },
  25475. ]
  25476. ))
  25477. characterMakers.push(() => makeCharacter(
  25478. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25479. {
  25480. front: {
  25481. height: math.unit(1600, "feet"),
  25482. weight: math.unit(85758785169, "kg"),
  25483. name: "Front",
  25484. image: {
  25485. source: "./media/characters/valathos/front.svg",
  25486. extra: 1451 / 1339
  25487. }
  25488. },
  25489. },
  25490. [
  25491. {
  25492. name: "Macro",
  25493. height: math.unit(1600, "feet"),
  25494. default: true
  25495. },
  25496. ]
  25497. ))
  25498. characterMakers.push(() => makeCharacter(
  25499. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25500. {
  25501. front: {
  25502. height: math.unit(7 + 5 / 12, "feet"),
  25503. weight: math.unit(300, "lb"),
  25504. name: "Front",
  25505. image: {
  25506. source: "./media/characters/azula/front.svg",
  25507. extra: 3208 / 2880,
  25508. bottom: 80.2 / 3277
  25509. }
  25510. },
  25511. back: {
  25512. height: math.unit(7 + 5 / 12, "feet"),
  25513. weight: math.unit(300, "lb"),
  25514. name: "Back",
  25515. image: {
  25516. source: "./media/characters/azula/back.svg",
  25517. extra: 3169 / 2822,
  25518. bottom: 150.6 / 3321
  25519. }
  25520. },
  25521. },
  25522. [
  25523. {
  25524. name: "Normal",
  25525. height: math.unit(7 + 5 / 12, "feet"),
  25526. default: true
  25527. },
  25528. {
  25529. name: "Big",
  25530. height: math.unit(20, "feet")
  25531. },
  25532. ]
  25533. ))
  25534. characterMakers.push(() => makeCharacter(
  25535. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25536. {
  25537. front: {
  25538. height: math.unit(5 + 1 / 12, "feet"),
  25539. weight: math.unit(110, "lb"),
  25540. name: "Front",
  25541. image: {
  25542. source: "./media/characters/rupert/front.svg",
  25543. extra: 1549 / 1495,
  25544. bottom: 54.2 / 1604.4
  25545. }
  25546. },
  25547. },
  25548. [
  25549. {
  25550. name: "Normal",
  25551. height: math.unit(5 + 1 / 12, "feet"),
  25552. default: true
  25553. },
  25554. ]
  25555. ))
  25556. characterMakers.push(() => makeCharacter(
  25557. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25558. {
  25559. front: {
  25560. height: math.unit(8 + 4 / 12, "feet"),
  25561. weight: math.unit(350, "lb"),
  25562. name: "Front",
  25563. image: {
  25564. source: "./media/characters/sheera-castellar/front.svg",
  25565. extra: 1957 / 1894,
  25566. bottom: 26.97 / 1975.017
  25567. }
  25568. },
  25569. side: {
  25570. height: math.unit(8 + 4 / 12, "feet"),
  25571. weight: math.unit(350, "lb"),
  25572. name: "Side",
  25573. image: {
  25574. source: "./media/characters/sheera-castellar/side.svg",
  25575. extra: 1957 / 1894
  25576. }
  25577. },
  25578. back: {
  25579. height: math.unit(8 + 4 / 12, "feet"),
  25580. weight: math.unit(350, "lb"),
  25581. name: "Back",
  25582. image: {
  25583. source: "./media/characters/sheera-castellar/back.svg",
  25584. extra: 1957 / 1894
  25585. }
  25586. },
  25587. angled: {
  25588. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25589. weight: math.unit(350, "lb"),
  25590. name: "Angled",
  25591. image: {
  25592. source: "./media/characters/sheera-castellar/angled.svg",
  25593. extra: 1807 / 1707,
  25594. bottom: 68 / 1875
  25595. }
  25596. },
  25597. genitals: {
  25598. height: math.unit(2.2, "feet"),
  25599. name: "Genitals",
  25600. image: {
  25601. source: "./media/characters/sheera-castellar/genitals.svg"
  25602. }
  25603. },
  25604. taur: {
  25605. height: math.unit(10 + 6/12, "feet"),
  25606. name: "Taur",
  25607. image: {
  25608. source: "./media/characters/sheera-castellar/taur.svg",
  25609. extra: 2017/1909,
  25610. bottom: 185/2202
  25611. }
  25612. },
  25613. },
  25614. [
  25615. {
  25616. name: "Normal",
  25617. height: math.unit(8 + 4 / 12, "feet")
  25618. },
  25619. {
  25620. name: "Macro",
  25621. height: math.unit(150, "feet"),
  25622. default: true
  25623. },
  25624. {
  25625. name: "Macro+",
  25626. height: math.unit(800, "feet")
  25627. },
  25628. ]
  25629. ))
  25630. characterMakers.push(() => makeCharacter(
  25631. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25632. {
  25633. front: {
  25634. height: math.unit(6, "feet"),
  25635. weight: math.unit(150, "lb"),
  25636. name: "Front",
  25637. image: {
  25638. source: "./media/characters/jaipur/front.svg",
  25639. extra: 3860 / 3731,
  25640. bottom: 287 / 4140
  25641. }
  25642. },
  25643. back: {
  25644. height: math.unit(6, "feet"),
  25645. weight: math.unit(150, "lb"),
  25646. name: "Back",
  25647. image: {
  25648. source: "./media/characters/jaipur/back.svg",
  25649. extra: 1637/1561,
  25650. bottom: 154/1791
  25651. }
  25652. },
  25653. },
  25654. [
  25655. {
  25656. name: "Normal",
  25657. height: math.unit(1.85, "meters"),
  25658. default: true
  25659. },
  25660. {
  25661. name: "Macro",
  25662. height: math.unit(150, "meters")
  25663. },
  25664. {
  25665. name: "Macro+",
  25666. height: math.unit(0.5, "miles")
  25667. },
  25668. {
  25669. name: "Macro++",
  25670. height: math.unit(2.5, "miles")
  25671. },
  25672. {
  25673. name: "Macro+++",
  25674. height: math.unit(12, "miles")
  25675. },
  25676. {
  25677. name: "Macro++++",
  25678. height: math.unit(120, "miles")
  25679. },
  25680. {
  25681. name: "Macro+++++",
  25682. height: math.unit(1200, "miles")
  25683. },
  25684. ]
  25685. ))
  25686. characterMakers.push(() => makeCharacter(
  25687. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25688. {
  25689. front: {
  25690. height: math.unit(6, "feet"),
  25691. weight: math.unit(150, "lb"),
  25692. name: "Front",
  25693. image: {
  25694. source: "./media/characters/sheila-wolf/front.svg",
  25695. extra: 1931 / 1808,
  25696. bottom: 29.5 / 1960
  25697. }
  25698. },
  25699. dick: {
  25700. height: math.unit(1.464, "feet"),
  25701. name: "Dick",
  25702. image: {
  25703. source: "./media/characters/sheila-wolf/dick.svg"
  25704. }
  25705. },
  25706. muzzle: {
  25707. height: math.unit(0.513, "feet"),
  25708. name: "Muzzle",
  25709. image: {
  25710. source: "./media/characters/sheila-wolf/muzzle.svg"
  25711. }
  25712. },
  25713. },
  25714. [
  25715. {
  25716. name: "Macro",
  25717. height: math.unit(70, "feet"),
  25718. default: true
  25719. },
  25720. ]
  25721. ))
  25722. characterMakers.push(() => makeCharacter(
  25723. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25724. {
  25725. front: {
  25726. height: math.unit(32, "meters"),
  25727. weight: math.unit(300000, "kg"),
  25728. name: "Front",
  25729. image: {
  25730. source: "./media/characters/almor/front.svg",
  25731. extra: 1408 / 1322,
  25732. bottom: 94.6 / 1506.5
  25733. }
  25734. },
  25735. },
  25736. [
  25737. {
  25738. name: "Macro",
  25739. height: math.unit(32, "meters"),
  25740. default: true
  25741. },
  25742. ]
  25743. ))
  25744. characterMakers.push(() => makeCharacter(
  25745. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25746. {
  25747. front: {
  25748. height: math.unit(7, "feet"),
  25749. weight: math.unit(200, "lb"),
  25750. name: "Front",
  25751. image: {
  25752. source: "./media/characters/silver/front.svg",
  25753. extra: 472.1 / 450.5,
  25754. bottom: 26.5 / 499.424
  25755. }
  25756. },
  25757. },
  25758. [
  25759. {
  25760. name: "Normal",
  25761. height: math.unit(7, "feet"),
  25762. default: true
  25763. },
  25764. {
  25765. name: "Macro",
  25766. height: math.unit(800, "feet")
  25767. },
  25768. {
  25769. name: "Megamacro",
  25770. height: math.unit(250, "miles")
  25771. },
  25772. ]
  25773. ))
  25774. characterMakers.push(() => makeCharacter(
  25775. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25776. {
  25777. front: {
  25778. height: math.unit(6, "feet"),
  25779. weight: math.unit(150, "lb"),
  25780. name: "Front",
  25781. image: {
  25782. source: "./media/characters/pliskin/front.svg",
  25783. extra: 1469 / 1359,
  25784. bottom: 70 / 1540
  25785. }
  25786. },
  25787. },
  25788. [
  25789. {
  25790. name: "Micro",
  25791. height: math.unit(3, "inches")
  25792. },
  25793. {
  25794. name: "Normal",
  25795. height: math.unit(5 + 11 / 12, "feet"),
  25796. default: true
  25797. },
  25798. {
  25799. name: "Macro",
  25800. height: math.unit(120, "feet")
  25801. },
  25802. ]
  25803. ))
  25804. characterMakers.push(() => makeCharacter(
  25805. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25806. {
  25807. front: {
  25808. height: math.unit(6, "feet"),
  25809. weight: math.unit(150, "lb"),
  25810. name: "Front",
  25811. image: {
  25812. source: "./media/characters/sammy/front.svg",
  25813. extra: 1193 / 1089,
  25814. bottom: 30.5 / 1226
  25815. }
  25816. },
  25817. },
  25818. [
  25819. {
  25820. name: "Macro",
  25821. height: math.unit(1700, "feet"),
  25822. default: true
  25823. },
  25824. {
  25825. name: "Examacro",
  25826. height: math.unit(2.5e9, "lightyears")
  25827. },
  25828. ]
  25829. ))
  25830. characterMakers.push(() => makeCharacter(
  25831. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25832. {
  25833. front: {
  25834. height: math.unit(21, "meters"),
  25835. weight: math.unit(12, "tonnes"),
  25836. name: "Front",
  25837. image: {
  25838. source: "./media/characters/kuru/front.svg",
  25839. extra: 4301 / 3785,
  25840. bottom: 371.3 / 4691
  25841. }
  25842. },
  25843. },
  25844. [
  25845. {
  25846. name: "Macro",
  25847. height: math.unit(21, "meters"),
  25848. default: true
  25849. },
  25850. ]
  25851. ))
  25852. characterMakers.push(() => makeCharacter(
  25853. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25854. {
  25855. front: {
  25856. height: math.unit(23, "meters"),
  25857. weight: math.unit(12.2, "tonnes"),
  25858. name: "Front",
  25859. image: {
  25860. source: "./media/characters/rakka/front.svg",
  25861. extra: 4670 / 4169,
  25862. bottom: 301 / 4968.7
  25863. }
  25864. },
  25865. },
  25866. [
  25867. {
  25868. name: "Macro",
  25869. height: math.unit(23, "meters"),
  25870. default: true
  25871. },
  25872. ]
  25873. ))
  25874. characterMakers.push(() => makeCharacter(
  25875. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25876. {
  25877. front: {
  25878. height: math.unit(6, "feet"),
  25879. weight: math.unit(150, "lb"),
  25880. name: "Front",
  25881. image: {
  25882. source: "./media/characters/rhys-feline/front.svg",
  25883. extra: 2488 / 2308,
  25884. bottom: 35.67 / 2519.19
  25885. }
  25886. },
  25887. },
  25888. [
  25889. {
  25890. name: "Really Small",
  25891. height: math.unit(1, "nm")
  25892. },
  25893. {
  25894. name: "Micro",
  25895. height: math.unit(4, "inches")
  25896. },
  25897. {
  25898. name: "Normal",
  25899. height: math.unit(4 + 10 / 12, "feet"),
  25900. default: true
  25901. },
  25902. {
  25903. name: "Macro",
  25904. height: math.unit(100, "feet")
  25905. },
  25906. {
  25907. name: "Megamacto",
  25908. height: math.unit(50, "miles")
  25909. },
  25910. ]
  25911. ))
  25912. characterMakers.push(() => makeCharacter(
  25913. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25914. {
  25915. side: {
  25916. height: math.unit(30, "feet"),
  25917. weight: math.unit(35000, "kg"),
  25918. name: "Side",
  25919. image: {
  25920. source: "./media/characters/alydar/side.svg",
  25921. extra: 234 / 222,
  25922. bottom: 6.5 / 241
  25923. }
  25924. },
  25925. front: {
  25926. height: math.unit(30, "feet"),
  25927. weight: math.unit(35000, "kg"),
  25928. name: "Front",
  25929. image: {
  25930. source: "./media/characters/alydar/front.svg",
  25931. extra: 223.37 / 210.2,
  25932. bottom: 22.3 / 246.76
  25933. }
  25934. },
  25935. top: {
  25936. height: math.unit(64.54, "feet"),
  25937. weight: math.unit(35000, "kg"),
  25938. name: "Top",
  25939. image: {
  25940. source: "./media/characters/alydar/top.svg"
  25941. }
  25942. },
  25943. anthro: {
  25944. height: math.unit(30, "feet"),
  25945. weight: math.unit(9000, "kg"),
  25946. name: "Anthro",
  25947. image: {
  25948. source: "./media/characters/alydar/anthro.svg",
  25949. extra: 432 / 421,
  25950. bottom: 7.18 / 440
  25951. }
  25952. },
  25953. maw: {
  25954. height: math.unit(11.693, "feet"),
  25955. name: "Maw",
  25956. image: {
  25957. source: "./media/characters/alydar/maw.svg"
  25958. }
  25959. },
  25960. head: {
  25961. height: math.unit(11.693, "feet"),
  25962. name: "Head",
  25963. image: {
  25964. source: "./media/characters/alydar/head.svg"
  25965. }
  25966. },
  25967. headAlt: {
  25968. height: math.unit(12.861, "feet"),
  25969. name: "Head (Alt)",
  25970. image: {
  25971. source: "./media/characters/alydar/head-alt.svg"
  25972. }
  25973. },
  25974. wing: {
  25975. height: math.unit(20.712, "feet"),
  25976. name: "Wing",
  25977. image: {
  25978. source: "./media/characters/alydar/wing.svg"
  25979. }
  25980. },
  25981. wingFeather: {
  25982. height: math.unit(9.662, "feet"),
  25983. name: "Wing Feather",
  25984. image: {
  25985. source: "./media/characters/alydar/wing-feather.svg"
  25986. }
  25987. },
  25988. countourFeather: {
  25989. height: math.unit(4.154, "feet"),
  25990. name: "Contour Feather",
  25991. image: {
  25992. source: "./media/characters/alydar/contour-feather.svg"
  25993. }
  25994. },
  25995. },
  25996. [
  25997. {
  25998. name: "Diplomatic",
  25999. height: math.unit(13, "feet"),
  26000. default: true
  26001. },
  26002. {
  26003. name: "Small",
  26004. height: math.unit(30, "feet")
  26005. },
  26006. {
  26007. name: "Normal",
  26008. height: math.unit(95, "feet"),
  26009. default: true
  26010. },
  26011. {
  26012. name: "Large",
  26013. height: math.unit(285, "feet")
  26014. },
  26015. {
  26016. name: "Incomprehensible",
  26017. height: math.unit(450, "megameters")
  26018. },
  26019. ]
  26020. ))
  26021. characterMakers.push(() => makeCharacter(
  26022. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26023. {
  26024. side: {
  26025. height: math.unit(11, "feet"),
  26026. weight: math.unit(1750, "kg"),
  26027. name: "Side",
  26028. image: {
  26029. source: "./media/characters/selicia/side.svg",
  26030. extra: 440 / 396,
  26031. bottom: 24.8 / 465.979
  26032. }
  26033. },
  26034. maw: {
  26035. height: math.unit(4.665, "feet"),
  26036. name: "Maw",
  26037. image: {
  26038. source: "./media/characters/selicia/maw.svg"
  26039. }
  26040. },
  26041. },
  26042. [
  26043. {
  26044. name: "Normal",
  26045. height: math.unit(11, "feet"),
  26046. default: true
  26047. },
  26048. ]
  26049. ))
  26050. characterMakers.push(() => makeCharacter(
  26051. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26052. {
  26053. side: {
  26054. height: math.unit(2 + 6 / 12, "feet"),
  26055. weight: math.unit(30, "lb"),
  26056. name: "Side",
  26057. image: {
  26058. source: "./media/characters/layla/side.svg",
  26059. extra: 244 / 188,
  26060. bottom: 18.2 / 262.1
  26061. }
  26062. },
  26063. back: {
  26064. height: math.unit(2 + 6 / 12, "feet"),
  26065. weight: math.unit(30, "lb"),
  26066. name: "Back",
  26067. image: {
  26068. source: "./media/characters/layla/back.svg",
  26069. extra: 308 / 241.5,
  26070. bottom: 8.9 / 316.8
  26071. }
  26072. },
  26073. cumming: {
  26074. height: math.unit(2 + 6 / 12, "feet"),
  26075. weight: math.unit(30, "lb"),
  26076. name: "Cumming",
  26077. image: {
  26078. source: "./media/characters/layla/cumming.svg",
  26079. extra: 342 / 279,
  26080. bottom: 595 / 938
  26081. }
  26082. },
  26083. dickFlaccid: {
  26084. height: math.unit(2.595, "feet"),
  26085. name: "Flaccid Genitals",
  26086. image: {
  26087. source: "./media/characters/layla/dick-flaccid.svg"
  26088. }
  26089. },
  26090. dickErect: {
  26091. height: math.unit(2.359, "feet"),
  26092. name: "Erect Genitals",
  26093. image: {
  26094. source: "./media/characters/layla/dick-erect.svg"
  26095. }
  26096. },
  26097. dragon: {
  26098. height: math.unit(40, "feet"),
  26099. name: "Dragon",
  26100. image: {
  26101. source: "./media/characters/layla/dragon.svg",
  26102. extra: 610/535,
  26103. bottom: 367/977
  26104. }
  26105. },
  26106. taur: {
  26107. height: math.unit(30, "feet"),
  26108. name: "Taur",
  26109. image: {
  26110. source: "./media/characters/layla/taur.svg",
  26111. extra: 1268/1199,
  26112. bottom: 112/1380
  26113. }
  26114. },
  26115. },
  26116. [
  26117. {
  26118. name: "Micro",
  26119. height: math.unit(1, "inch")
  26120. },
  26121. {
  26122. name: "Small",
  26123. height: math.unit(1, "foot")
  26124. },
  26125. {
  26126. name: "Normal",
  26127. height: math.unit(2 + 6 / 12, "feet"),
  26128. default: true
  26129. },
  26130. {
  26131. name: "Macro",
  26132. height: math.unit(200, "feet")
  26133. },
  26134. {
  26135. name: "Megamacro",
  26136. height: math.unit(1000, "miles")
  26137. },
  26138. {
  26139. name: "Planetary",
  26140. height: math.unit(8000, "miles")
  26141. },
  26142. {
  26143. name: "True Layla",
  26144. height: math.unit(200000 * 7, "multiverses")
  26145. },
  26146. ]
  26147. ))
  26148. characterMakers.push(() => makeCharacter(
  26149. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26150. {
  26151. back: {
  26152. height: math.unit(10.5, "feet"),
  26153. weight: math.unit(800, "lb"),
  26154. name: "Back",
  26155. image: {
  26156. source: "./media/characters/knox/back.svg",
  26157. extra: 1486 / 1089,
  26158. bottom: 107 / 1601.4
  26159. }
  26160. },
  26161. side: {
  26162. height: math.unit(10.5, "feet"),
  26163. weight: math.unit(800, "lb"),
  26164. name: "Side",
  26165. image: {
  26166. source: "./media/characters/knox/side.svg",
  26167. extra: 244 / 218,
  26168. bottom: 14 / 260
  26169. }
  26170. },
  26171. },
  26172. [
  26173. {
  26174. name: "Compact",
  26175. height: math.unit(10.5, "feet"),
  26176. default: true
  26177. },
  26178. {
  26179. name: "Dynamax",
  26180. height: math.unit(210, "feet")
  26181. },
  26182. {
  26183. name: "Full Macro",
  26184. height: math.unit(850, "feet")
  26185. },
  26186. ]
  26187. ))
  26188. characterMakers.push(() => makeCharacter(
  26189. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26190. {
  26191. front: {
  26192. height: math.unit(28, "feet"),
  26193. weight: math.unit(10500, "lb"),
  26194. name: "Front",
  26195. image: {
  26196. source: "./media/characters/kayda/front.svg",
  26197. extra: 1536 / 1428,
  26198. bottom: 68.7 / 1603
  26199. }
  26200. },
  26201. back: {
  26202. height: math.unit(28, "feet"),
  26203. weight: math.unit(10500, "lb"),
  26204. name: "Back",
  26205. image: {
  26206. source: "./media/characters/kayda/back.svg",
  26207. extra: 1557 / 1464,
  26208. bottom: 39.5 / 1597.49
  26209. }
  26210. },
  26211. dick: {
  26212. height: math.unit(3.858, "feet"),
  26213. name: "Dick",
  26214. image: {
  26215. source: "./media/characters/kayda/dick.svg"
  26216. }
  26217. },
  26218. },
  26219. [
  26220. {
  26221. name: "Macro",
  26222. height: math.unit(28, "feet"),
  26223. default: true
  26224. },
  26225. ]
  26226. ))
  26227. characterMakers.push(() => makeCharacter(
  26228. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26229. {
  26230. front: {
  26231. height: math.unit(10 + 11 / 12, "feet"),
  26232. weight: math.unit(1400, "lb"),
  26233. name: "Front",
  26234. image: {
  26235. source: "./media/characters/brian/front.svg",
  26236. extra: 737 / 692,
  26237. bottom: 55.4 / 785
  26238. }
  26239. },
  26240. },
  26241. [
  26242. {
  26243. name: "Normal",
  26244. height: math.unit(10 + 11 / 12, "feet"),
  26245. default: true
  26246. },
  26247. ]
  26248. ))
  26249. characterMakers.push(() => makeCharacter(
  26250. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26251. {
  26252. front: {
  26253. height: math.unit(5 + 8 / 12, "feet"),
  26254. weight: math.unit(140, "lb"),
  26255. name: "Front",
  26256. image: {
  26257. source: "./media/characters/khemri/front.svg",
  26258. extra: 4780 / 4059,
  26259. bottom: 80.1 / 4859.25
  26260. }
  26261. },
  26262. },
  26263. [
  26264. {
  26265. name: "Micro",
  26266. height: math.unit(6, "inches")
  26267. },
  26268. {
  26269. name: "Normal",
  26270. height: math.unit(5 + 8 / 12, "feet"),
  26271. default: true
  26272. },
  26273. ]
  26274. ))
  26275. characterMakers.push(() => makeCharacter(
  26276. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26277. {
  26278. front: {
  26279. height: math.unit(13, "feet"),
  26280. weight: math.unit(1700, "lb"),
  26281. name: "Front",
  26282. image: {
  26283. source: "./media/characters/felix-braveheart/front.svg",
  26284. extra: 1222 / 1157,
  26285. bottom: 53.2 / 1280
  26286. }
  26287. },
  26288. back: {
  26289. height: math.unit(13, "feet"),
  26290. weight: math.unit(1700, "lb"),
  26291. name: "Back",
  26292. image: {
  26293. source: "./media/characters/felix-braveheart/back.svg",
  26294. extra: 1277 / 1203,
  26295. bottom: 50.2 / 1327
  26296. }
  26297. },
  26298. feral: {
  26299. height: math.unit(6, "feet"),
  26300. weight: math.unit(400, "lb"),
  26301. name: "Feral",
  26302. image: {
  26303. source: "./media/characters/felix-braveheart/feral.svg",
  26304. extra: 682 / 625,
  26305. bottom: 6.9 / 688
  26306. }
  26307. },
  26308. },
  26309. [
  26310. {
  26311. name: "Normal",
  26312. height: math.unit(13, "feet"),
  26313. default: true
  26314. },
  26315. ]
  26316. ))
  26317. characterMakers.push(() => makeCharacter(
  26318. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26319. {
  26320. side: {
  26321. height: math.unit(5 + 11 / 12, "feet"),
  26322. weight: math.unit(1400, "lb"),
  26323. name: "Side",
  26324. image: {
  26325. source: "./media/characters/shadow-blade/side.svg",
  26326. extra: 1726 / 1267,
  26327. bottom: 58.4 / 1785
  26328. }
  26329. },
  26330. },
  26331. [
  26332. {
  26333. name: "Normal",
  26334. height: math.unit(5 + 11 / 12, "feet"),
  26335. default: true
  26336. },
  26337. ]
  26338. ))
  26339. characterMakers.push(() => makeCharacter(
  26340. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26341. {
  26342. front: {
  26343. height: math.unit(1 + 6 / 12, "feet"),
  26344. weight: math.unit(25, "lb"),
  26345. name: "Front",
  26346. image: {
  26347. source: "./media/characters/karla-halldor/front.svg",
  26348. extra: 1459 / 1383,
  26349. bottom: 12 / 1472
  26350. }
  26351. },
  26352. },
  26353. [
  26354. {
  26355. name: "Normal",
  26356. height: math.unit(1 + 6 / 12, "feet"),
  26357. default: true
  26358. },
  26359. ]
  26360. ))
  26361. characterMakers.push(() => makeCharacter(
  26362. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26363. {
  26364. front: {
  26365. height: math.unit(6 + 2 / 12, "feet"),
  26366. weight: math.unit(160, "lb"),
  26367. name: "Front",
  26368. image: {
  26369. source: "./media/characters/ariam/front.svg",
  26370. extra: 1073/976,
  26371. bottom: 52/1125
  26372. }
  26373. },
  26374. back: {
  26375. height: math.unit(6 + 2/12, "feet"),
  26376. weight: math.unit(160, "lb"),
  26377. name: "Back",
  26378. image: {
  26379. source: "./media/characters/ariam/back.svg",
  26380. extra: 1103/1023,
  26381. bottom: 9/1112
  26382. }
  26383. },
  26384. dressed: {
  26385. height: math.unit(6 + 2/12, "feet"),
  26386. weight: math.unit(160, "lb"),
  26387. name: "Dressed",
  26388. image: {
  26389. source: "./media/characters/ariam/dressed.svg",
  26390. extra: 1099/1009,
  26391. bottom: 25/1124
  26392. }
  26393. },
  26394. squatting: {
  26395. height: math.unit(4.1, "feet"),
  26396. weight: math.unit(160, "lb"),
  26397. name: "Squatting",
  26398. image: {
  26399. source: "./media/characters/ariam/squatting.svg",
  26400. extra: 2617 / 2112,
  26401. bottom: 61.2 / 2681,
  26402. }
  26403. },
  26404. },
  26405. [
  26406. {
  26407. name: "Normal",
  26408. height: math.unit(6 + 2 / 12, "feet"),
  26409. default: true
  26410. },
  26411. {
  26412. name: "Normal+",
  26413. height: math.unit(4, "meters")
  26414. },
  26415. {
  26416. name: "Macro",
  26417. height: math.unit(50, "meters")
  26418. },
  26419. {
  26420. name: "Macro+",
  26421. height: math.unit(100, "meters")
  26422. },
  26423. {
  26424. name: "Megamacro",
  26425. height: math.unit(20, "km")
  26426. },
  26427. {
  26428. name: "Caretaker",
  26429. height: math.unit(444, "megameters")
  26430. },
  26431. ]
  26432. ))
  26433. characterMakers.push(() => makeCharacter(
  26434. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26435. {
  26436. front: {
  26437. height: math.unit(1.67, "meters"),
  26438. weight: math.unit(140, "lb"),
  26439. name: "Front",
  26440. image: {
  26441. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26442. extra: 438 / 410,
  26443. bottom: 0.75 / 439
  26444. }
  26445. },
  26446. },
  26447. [
  26448. {
  26449. name: "Shrunken",
  26450. height: math.unit(7.6, "cm")
  26451. },
  26452. {
  26453. name: "Human Scale",
  26454. height: math.unit(1.67, "meters")
  26455. },
  26456. {
  26457. name: "Wolxi Scale",
  26458. height: math.unit(36.7, "meters"),
  26459. default: true
  26460. },
  26461. ]
  26462. ))
  26463. characterMakers.push(() => makeCharacter(
  26464. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26465. {
  26466. front: {
  26467. height: math.unit(1.73, "meters"),
  26468. weight: math.unit(240, "lb"),
  26469. name: "Front",
  26470. image: {
  26471. source: "./media/characters/izue-two-mothers/front.svg",
  26472. extra: 469 / 437,
  26473. bottom: 1.24 / 470.6
  26474. }
  26475. },
  26476. },
  26477. [
  26478. {
  26479. name: "Shrunken",
  26480. height: math.unit(7.86, "cm")
  26481. },
  26482. {
  26483. name: "Human Scale",
  26484. height: math.unit(1.73, "meters")
  26485. },
  26486. {
  26487. name: "Wolxi Scale",
  26488. height: math.unit(38, "meters"),
  26489. default: true
  26490. },
  26491. ]
  26492. ))
  26493. characterMakers.push(() => makeCharacter(
  26494. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26495. {
  26496. front: {
  26497. height: math.unit(1.55, "meters"),
  26498. weight: math.unit(120, "lb"),
  26499. name: "Front",
  26500. image: {
  26501. source: "./media/characters/teeku-love-shack/front.svg",
  26502. extra: 387 / 362,
  26503. bottom: 1.51 / 388
  26504. }
  26505. },
  26506. },
  26507. [
  26508. {
  26509. name: "Shrunken",
  26510. height: math.unit(7, "cm")
  26511. },
  26512. {
  26513. name: "Human Scale",
  26514. height: math.unit(1.55, "meters")
  26515. },
  26516. {
  26517. name: "Wolxi Scale",
  26518. height: math.unit(34.1, "meters"),
  26519. default: true
  26520. },
  26521. ]
  26522. ))
  26523. characterMakers.push(() => makeCharacter(
  26524. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26525. {
  26526. front: {
  26527. height: math.unit(1.83, "meters"),
  26528. weight: math.unit(135, "lb"),
  26529. name: "Front",
  26530. image: {
  26531. source: "./media/characters/dejma-the-red/front.svg",
  26532. extra: 480 / 458,
  26533. bottom: 1.8 / 482
  26534. }
  26535. },
  26536. },
  26537. [
  26538. {
  26539. name: "Shrunken",
  26540. height: math.unit(8.3, "cm")
  26541. },
  26542. {
  26543. name: "Human Scale",
  26544. height: math.unit(1.83, "meters")
  26545. },
  26546. {
  26547. name: "Wolxi Scale",
  26548. height: math.unit(40, "meters"),
  26549. default: true
  26550. },
  26551. ]
  26552. ))
  26553. characterMakers.push(() => makeCharacter(
  26554. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26555. {
  26556. front: {
  26557. height: math.unit(1.78, "meters"),
  26558. weight: math.unit(65, "kg"),
  26559. name: "Front",
  26560. image: {
  26561. source: "./media/characters/aki/front.svg",
  26562. extra: 452 / 415
  26563. }
  26564. },
  26565. frontNsfw: {
  26566. height: math.unit(1.78, "meters"),
  26567. weight: math.unit(65, "kg"),
  26568. name: "Front (NSFW)",
  26569. image: {
  26570. source: "./media/characters/aki/front-nsfw.svg",
  26571. extra: 452 / 415
  26572. }
  26573. },
  26574. back: {
  26575. height: math.unit(1.78, "meters"),
  26576. weight: math.unit(65, "kg"),
  26577. name: "Back",
  26578. image: {
  26579. source: "./media/characters/aki/back.svg",
  26580. extra: 452 / 415
  26581. }
  26582. },
  26583. rump: {
  26584. height: math.unit(2.05, "feet"),
  26585. name: "Rump",
  26586. image: {
  26587. source: "./media/characters/aki/rump.svg"
  26588. }
  26589. },
  26590. dick: {
  26591. height: math.unit(0.95, "feet"),
  26592. name: "Dick",
  26593. image: {
  26594. source: "./media/characters/aki/dick.svg"
  26595. }
  26596. },
  26597. },
  26598. [
  26599. {
  26600. name: "Micro",
  26601. height: math.unit(15, "cm")
  26602. },
  26603. {
  26604. name: "Normal",
  26605. height: math.unit(178, "cm"),
  26606. default: true
  26607. },
  26608. {
  26609. name: "Macro",
  26610. height: math.unit(214, "m")
  26611. },
  26612. {
  26613. name: "Macro+",
  26614. height: math.unit(534, "m")
  26615. },
  26616. ]
  26617. ))
  26618. characterMakers.push(() => makeCharacter(
  26619. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26620. {
  26621. front: {
  26622. height: math.unit(5 + 5 / 12, "feet"),
  26623. weight: math.unit(120, "lb"),
  26624. name: "Front",
  26625. image: {
  26626. source: "./media/characters/ari/front.svg",
  26627. extra: 1550/1471,
  26628. bottom: 39/1589
  26629. }
  26630. },
  26631. },
  26632. [
  26633. {
  26634. name: "Normal",
  26635. height: math.unit(5 + 5 / 12, "feet")
  26636. },
  26637. {
  26638. name: "Macro",
  26639. height: math.unit(100, "feet"),
  26640. default: true
  26641. },
  26642. {
  26643. name: "Megamacro",
  26644. height: math.unit(100, "miles")
  26645. },
  26646. {
  26647. name: "Gigamacro",
  26648. height: math.unit(80000, "miles")
  26649. },
  26650. ]
  26651. ))
  26652. characterMakers.push(() => makeCharacter(
  26653. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26654. {
  26655. side: {
  26656. height: math.unit(9, "feet"),
  26657. weight: math.unit(400, "kg"),
  26658. name: "Side",
  26659. image: {
  26660. source: "./media/characters/bolt/side.svg",
  26661. extra: 1126 / 896,
  26662. bottom: 60 / 1187.3,
  26663. }
  26664. },
  26665. },
  26666. [
  26667. {
  26668. name: "Micro",
  26669. height: math.unit(5, "inches")
  26670. },
  26671. {
  26672. name: "Normal",
  26673. height: math.unit(9, "feet"),
  26674. default: true
  26675. },
  26676. {
  26677. name: "Macro",
  26678. height: math.unit(700, "feet")
  26679. },
  26680. {
  26681. name: "Max Size",
  26682. height: math.unit(1.52e22, "yottameters")
  26683. },
  26684. ]
  26685. ))
  26686. characterMakers.push(() => makeCharacter(
  26687. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26688. {
  26689. front: {
  26690. height: math.unit(4.3, "meters"),
  26691. weight: math.unit(3, "tons"),
  26692. name: "Front",
  26693. image: {
  26694. source: "./media/characters/draekon-sylviar/front.svg",
  26695. extra: 2072/1512,
  26696. bottom: 74/2146
  26697. }
  26698. },
  26699. back: {
  26700. height: math.unit(4.3, "meters"),
  26701. weight: math.unit(3, "tons"),
  26702. name: "Back",
  26703. image: {
  26704. source: "./media/characters/draekon-sylviar/back.svg",
  26705. extra: 1639/1483,
  26706. bottom: 41/1680
  26707. }
  26708. },
  26709. feral: {
  26710. height: math.unit(1.15, "meters"),
  26711. weight: math.unit(3, "tons"),
  26712. name: "Feral",
  26713. image: {
  26714. source: "./media/characters/draekon-sylviar/feral.svg",
  26715. extra: 1033/395,
  26716. bottom: 130/1163
  26717. }
  26718. },
  26719. maw: {
  26720. height: math.unit(1.3, "meters"),
  26721. name: "Maw",
  26722. image: {
  26723. source: "./media/characters/draekon-sylviar/maw.svg"
  26724. }
  26725. },
  26726. mawSeparated: {
  26727. height: math.unit(1.53, "meters"),
  26728. name: "Separated Maw",
  26729. image: {
  26730. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26731. }
  26732. },
  26733. tail: {
  26734. height: math.unit(1.15, "meters"),
  26735. name: "Tail",
  26736. image: {
  26737. source: "./media/characters/draekon-sylviar/tail.svg"
  26738. }
  26739. },
  26740. tailDick: {
  26741. height: math.unit(1.15, "meters"),
  26742. name: "Tail (Dick)",
  26743. image: {
  26744. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26745. }
  26746. },
  26747. tailDickSeparated: {
  26748. height: math.unit(1.19, "meters"),
  26749. name: "Tail (Separated Dick)",
  26750. image: {
  26751. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26752. }
  26753. },
  26754. slit: {
  26755. height: math.unit(1, "meters"),
  26756. name: "Slit",
  26757. image: {
  26758. source: "./media/characters/draekon-sylviar/slit.svg"
  26759. }
  26760. },
  26761. dick: {
  26762. height: math.unit(1.15, "meters"),
  26763. name: "Dick",
  26764. image: {
  26765. source: "./media/characters/draekon-sylviar/dick.svg"
  26766. }
  26767. },
  26768. dickSeparated: {
  26769. height: math.unit(1.1, "meters"),
  26770. name: "Separated Dick",
  26771. image: {
  26772. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26773. }
  26774. },
  26775. sheath: {
  26776. height: math.unit(1.15, "meters"),
  26777. name: "Sheath",
  26778. image: {
  26779. source: "./media/characters/draekon-sylviar/sheath.svg"
  26780. }
  26781. },
  26782. },
  26783. [
  26784. {
  26785. name: "Small",
  26786. height: math.unit(4.53 / 2, "meters"),
  26787. default: true
  26788. },
  26789. {
  26790. name: "Normal",
  26791. height: math.unit(4.53, "meters"),
  26792. default: true
  26793. },
  26794. {
  26795. name: "Large",
  26796. height: math.unit(4.53 * 2, "meters"),
  26797. },
  26798. ]
  26799. ))
  26800. characterMakers.push(() => makeCharacter(
  26801. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26802. {
  26803. front: {
  26804. height: math.unit(6 + 2 / 12, "feet"),
  26805. weight: math.unit(180, "lb"),
  26806. name: "Front",
  26807. image: {
  26808. source: "./media/characters/brawler/front.svg",
  26809. extra: 3301 / 3027,
  26810. bottom: 138 / 3439
  26811. }
  26812. },
  26813. },
  26814. [
  26815. {
  26816. name: "Normal",
  26817. height: math.unit(6 + 2 / 12, "feet"),
  26818. default: true
  26819. },
  26820. ]
  26821. ))
  26822. characterMakers.push(() => makeCharacter(
  26823. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26824. {
  26825. front: {
  26826. height: math.unit(11, "feet"),
  26827. weight: math.unit(1000, "lb"),
  26828. name: "Front",
  26829. image: {
  26830. source: "./media/characters/alex/front.svg",
  26831. bottom: 44.5 / 620
  26832. }
  26833. },
  26834. },
  26835. [
  26836. {
  26837. name: "Micro",
  26838. height: math.unit(5, "inches")
  26839. },
  26840. {
  26841. name: "Normal",
  26842. height: math.unit(11, "feet"),
  26843. default: true
  26844. },
  26845. {
  26846. name: "Macro",
  26847. height: math.unit(9.5e9, "feet")
  26848. },
  26849. {
  26850. name: "Max Size",
  26851. height: math.unit(1.4e283, "yottameters")
  26852. },
  26853. ]
  26854. ))
  26855. characterMakers.push(() => makeCharacter(
  26856. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26857. {
  26858. female: {
  26859. height: math.unit(29.9, "m"),
  26860. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26861. name: "Female",
  26862. image: {
  26863. source: "./media/characters/zenari/female.svg",
  26864. extra: 3281.6 / 3217,
  26865. bottom: 72.2 / 3353
  26866. }
  26867. },
  26868. male: {
  26869. height: math.unit(27.7, "m"),
  26870. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26871. name: "Male",
  26872. image: {
  26873. source: "./media/characters/zenari/male.svg",
  26874. extra: 3008 / 2991,
  26875. bottom: 54.6 / 3069
  26876. }
  26877. },
  26878. },
  26879. [
  26880. {
  26881. name: "Macro",
  26882. height: math.unit(29.7, "meters"),
  26883. default: true
  26884. },
  26885. ]
  26886. ))
  26887. characterMakers.push(() => makeCharacter(
  26888. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26889. {
  26890. female: {
  26891. height: math.unit(23.8, "m"),
  26892. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26893. name: "Female",
  26894. image: {
  26895. source: "./media/characters/mactarian/female.svg",
  26896. extra: 2662 / 2569,
  26897. bottom: 73 / 2736
  26898. }
  26899. },
  26900. male: {
  26901. height: math.unit(23.8, "m"),
  26902. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26903. name: "Male",
  26904. image: {
  26905. source: "./media/characters/mactarian/male.svg",
  26906. extra: 2673 / 2600,
  26907. bottom: 76 / 2750
  26908. }
  26909. },
  26910. },
  26911. [
  26912. {
  26913. name: "Macro",
  26914. height: math.unit(23.8, "meters"),
  26915. default: true
  26916. },
  26917. ]
  26918. ))
  26919. characterMakers.push(() => makeCharacter(
  26920. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26921. {
  26922. female: {
  26923. height: math.unit(19.3, "m"),
  26924. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26925. name: "Female",
  26926. image: {
  26927. source: "./media/characters/umok/female.svg",
  26928. extra: 2186 / 2078,
  26929. bottom: 87 / 2277
  26930. }
  26931. },
  26932. male: {
  26933. height: math.unit(19.5, "m"),
  26934. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26935. name: "Male",
  26936. image: {
  26937. source: "./media/characters/umok/male.svg",
  26938. extra: 2233 / 2140,
  26939. bottom: 24.4 / 2258
  26940. }
  26941. },
  26942. },
  26943. [
  26944. {
  26945. name: "Macro",
  26946. height: math.unit(19.3, "meters"),
  26947. default: true
  26948. },
  26949. ]
  26950. ))
  26951. characterMakers.push(() => makeCharacter(
  26952. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26953. {
  26954. female: {
  26955. height: math.unit(26.15, "m"),
  26956. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26957. name: "Female",
  26958. image: {
  26959. source: "./media/characters/joraxian/female.svg",
  26960. extra: 2912 / 2824,
  26961. bottom: 36 / 2956
  26962. }
  26963. },
  26964. male: {
  26965. height: math.unit(25.4, "m"),
  26966. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26967. name: "Male",
  26968. image: {
  26969. source: "./media/characters/joraxian/male.svg",
  26970. extra: 2877 / 2721,
  26971. bottom: 82 / 2967
  26972. }
  26973. },
  26974. },
  26975. [
  26976. {
  26977. name: "Macro",
  26978. height: math.unit(26.15, "meters"),
  26979. default: true
  26980. },
  26981. ]
  26982. ))
  26983. characterMakers.push(() => makeCharacter(
  26984. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26985. {
  26986. female: {
  26987. height: math.unit(21.6, "m"),
  26988. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26989. name: "Female",
  26990. image: {
  26991. source: "./media/characters/sthara/female.svg",
  26992. extra: 2516 / 2347,
  26993. bottom: 21.5 / 2537
  26994. }
  26995. },
  26996. male: {
  26997. height: math.unit(24, "m"),
  26998. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26999. name: "Male",
  27000. image: {
  27001. source: "./media/characters/sthara/male.svg",
  27002. extra: 2732 / 2607,
  27003. bottom: 23 / 2732
  27004. }
  27005. },
  27006. },
  27007. [
  27008. {
  27009. name: "Macro",
  27010. height: math.unit(21.6, "meters"),
  27011. default: true
  27012. },
  27013. ]
  27014. ))
  27015. characterMakers.push(() => makeCharacter(
  27016. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27017. {
  27018. front: {
  27019. height: math.unit(6 + 4 / 12, "feet"),
  27020. weight: math.unit(175, "lb"),
  27021. name: "Front",
  27022. image: {
  27023. source: "./media/characters/luka-bryzant/front.svg",
  27024. extra: 311 / 289,
  27025. bottom: 4 / 315
  27026. }
  27027. },
  27028. back: {
  27029. height: math.unit(6 + 4 / 12, "feet"),
  27030. weight: math.unit(175, "lb"),
  27031. name: "Back",
  27032. image: {
  27033. source: "./media/characters/luka-bryzant/back.svg",
  27034. extra: 311 / 289,
  27035. bottom: 3.8 / 313.7
  27036. }
  27037. },
  27038. },
  27039. [
  27040. {
  27041. name: "Micro",
  27042. height: math.unit(10, "inches")
  27043. },
  27044. {
  27045. name: "Normal",
  27046. height: math.unit(6 + 4 / 12, "feet"),
  27047. default: true
  27048. },
  27049. {
  27050. name: "Large",
  27051. height: math.unit(12, "feet")
  27052. },
  27053. ]
  27054. ))
  27055. characterMakers.push(() => makeCharacter(
  27056. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27057. {
  27058. front: {
  27059. height: math.unit(5 + 7 / 12, "feet"),
  27060. weight: math.unit(185, "lb"),
  27061. name: "Front",
  27062. image: {
  27063. source: "./media/characters/aman-aquila/front.svg",
  27064. extra: 1013 / 976,
  27065. bottom: 45.6 / 1057
  27066. }
  27067. },
  27068. side: {
  27069. height: math.unit(5 + 7 / 12, "feet"),
  27070. weight: math.unit(185, "lb"),
  27071. name: "Side",
  27072. image: {
  27073. source: "./media/characters/aman-aquila/side.svg",
  27074. extra: 1054 / 1011,
  27075. bottom: 15 / 1070
  27076. }
  27077. },
  27078. back: {
  27079. height: math.unit(5 + 7 / 12, "feet"),
  27080. weight: math.unit(185, "lb"),
  27081. name: "Back",
  27082. image: {
  27083. source: "./media/characters/aman-aquila/back.svg",
  27084. extra: 1026 / 970,
  27085. bottom: 12 / 1039
  27086. }
  27087. },
  27088. head: {
  27089. height: math.unit(1.211, "feet"),
  27090. name: "Head",
  27091. image: {
  27092. source: "./media/characters/aman-aquila/head.svg",
  27093. }
  27094. },
  27095. },
  27096. [
  27097. {
  27098. name: "Minimicro",
  27099. height: math.unit(0.057, "inches")
  27100. },
  27101. {
  27102. name: "Micro",
  27103. height: math.unit(7, "inches")
  27104. },
  27105. {
  27106. name: "Mini",
  27107. height: math.unit(3 + 7 / 12, "feet")
  27108. },
  27109. {
  27110. name: "Normal",
  27111. height: math.unit(5 + 7 / 12, "feet"),
  27112. default: true
  27113. },
  27114. {
  27115. name: "Macro",
  27116. height: math.unit(157 + 7 / 12, "feet")
  27117. },
  27118. {
  27119. name: "Megamacro",
  27120. height: math.unit(1557 + 7 / 12, "feet")
  27121. },
  27122. {
  27123. name: "Gigamacro",
  27124. height: math.unit(15557 + 7 / 12, "feet")
  27125. },
  27126. ]
  27127. ))
  27128. characterMakers.push(() => makeCharacter(
  27129. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27130. {
  27131. front: {
  27132. height: math.unit(3 + 2 / 12, "inches"),
  27133. weight: math.unit(0.3, "ounces"),
  27134. name: "Front",
  27135. image: {
  27136. source: "./media/characters/hiphae/front.svg",
  27137. extra: 1931 / 1683,
  27138. bottom: 24 / 1955
  27139. }
  27140. },
  27141. },
  27142. [
  27143. {
  27144. name: "Normal",
  27145. height: math.unit(3 + 1 / 2, "inches"),
  27146. default: true
  27147. },
  27148. ]
  27149. ))
  27150. characterMakers.push(() => makeCharacter(
  27151. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27152. {
  27153. front: {
  27154. height: math.unit(5 + 10 / 12, "feet"),
  27155. weight: math.unit(165, "lb"),
  27156. name: "Front",
  27157. image: {
  27158. source: "./media/characters/nicky/front.svg",
  27159. extra: 3144 / 2886,
  27160. bottom: 45.6 / 3192
  27161. }
  27162. },
  27163. back: {
  27164. height: math.unit(5 + 10 / 12, "feet"),
  27165. weight: math.unit(165, "lb"),
  27166. name: "Back",
  27167. image: {
  27168. source: "./media/characters/nicky/back.svg",
  27169. extra: 3055 / 2804,
  27170. bottom: 28.4 / 3087
  27171. }
  27172. },
  27173. frontclothed: {
  27174. height: math.unit(5 + 10 / 12, "feet"),
  27175. weight: math.unit(165, "lb"),
  27176. name: "Front-clothed",
  27177. image: {
  27178. source: "./media/characters/nicky/front-clothed.svg",
  27179. extra: 3184.9 / 2926.9,
  27180. bottom: 86.5 / 3239.9
  27181. }
  27182. },
  27183. foot: {
  27184. height: math.unit(1.16, "feet"),
  27185. name: "Foot",
  27186. image: {
  27187. source: "./media/characters/nicky/foot.svg"
  27188. }
  27189. },
  27190. feet: {
  27191. height: math.unit(1.34, "feet"),
  27192. name: "Feet",
  27193. image: {
  27194. source: "./media/characters/nicky/feet.svg"
  27195. }
  27196. },
  27197. maw: {
  27198. height: math.unit(0.9, "feet"),
  27199. name: "Maw",
  27200. image: {
  27201. source: "./media/characters/nicky/maw.svg"
  27202. }
  27203. },
  27204. },
  27205. [
  27206. {
  27207. name: "Normal",
  27208. height: math.unit(5 + 10 / 12, "feet"),
  27209. default: true
  27210. },
  27211. {
  27212. name: "Macro",
  27213. height: math.unit(60, "feet")
  27214. },
  27215. {
  27216. name: "Megamacro",
  27217. height: math.unit(1, "mile")
  27218. },
  27219. ]
  27220. ))
  27221. characterMakers.push(() => makeCharacter(
  27222. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27223. {
  27224. side: {
  27225. height: math.unit(10, "feet"),
  27226. weight: math.unit(600, "lb"),
  27227. name: "Side",
  27228. image: {
  27229. source: "./media/characters/blair/side.svg",
  27230. bottom: 16.6 / 475,
  27231. extra: 458 / 431
  27232. }
  27233. },
  27234. },
  27235. [
  27236. {
  27237. name: "Micro",
  27238. height: math.unit(8, "inches")
  27239. },
  27240. {
  27241. name: "Normal",
  27242. height: math.unit(10, "feet"),
  27243. default: true
  27244. },
  27245. {
  27246. name: "Macro",
  27247. height: math.unit(180, "feet")
  27248. },
  27249. ]
  27250. ))
  27251. characterMakers.push(() => makeCharacter(
  27252. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27253. {
  27254. front: {
  27255. height: math.unit(5 + 4 / 12, "feet"),
  27256. weight: math.unit(125, "lb"),
  27257. name: "Front",
  27258. image: {
  27259. source: "./media/characters/fisher/front.svg",
  27260. extra: 444 / 390,
  27261. bottom: 2 / 444.8
  27262. }
  27263. },
  27264. },
  27265. [
  27266. {
  27267. name: "Micro",
  27268. height: math.unit(4, "inches")
  27269. },
  27270. {
  27271. name: "Normal",
  27272. height: math.unit(5 + 4 / 12, "feet"),
  27273. default: true
  27274. },
  27275. {
  27276. name: "Macro",
  27277. height: math.unit(100, "feet")
  27278. },
  27279. ]
  27280. ))
  27281. characterMakers.push(() => makeCharacter(
  27282. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27283. {
  27284. front: {
  27285. height: math.unit(6.71, "feet"),
  27286. weight: math.unit(200, "lb"),
  27287. preyCapacity: math.unit(1000000, "people"),
  27288. name: "Front",
  27289. image: {
  27290. source: "./media/characters/gliss/front.svg",
  27291. extra: 2347 / 2231,
  27292. bottom: 113 / 2462
  27293. }
  27294. },
  27295. hammerspaceSize: {
  27296. height: math.unit(6.71 * 717, "feet"),
  27297. weight: math.unit(200, "lb"),
  27298. preyCapacity: math.unit(1000000, "people"),
  27299. name: "Hammerspace Size",
  27300. image: {
  27301. source: "./media/characters/gliss/front.svg",
  27302. extra: 2347 / 2231,
  27303. bottom: 113 / 2462
  27304. }
  27305. },
  27306. },
  27307. [
  27308. {
  27309. name: "Normal",
  27310. height: math.unit(6.71, "feet"),
  27311. default: true
  27312. },
  27313. ]
  27314. ))
  27315. characterMakers.push(() => makeCharacter(
  27316. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27317. {
  27318. side: {
  27319. height: math.unit(1.44, "m"),
  27320. weight: math.unit(80, "kg"),
  27321. name: "Side",
  27322. image: {
  27323. source: "./media/characters/dune-anderson/side.svg",
  27324. bottom: 49 / 1426
  27325. }
  27326. },
  27327. },
  27328. [
  27329. {
  27330. name: "Wolf-sized",
  27331. height: math.unit(1.44, "meters")
  27332. },
  27333. {
  27334. name: "Normal",
  27335. height: math.unit(5.05, "meters"),
  27336. default: true
  27337. },
  27338. {
  27339. name: "Big",
  27340. height: math.unit(14.4, "meters")
  27341. },
  27342. {
  27343. name: "Huge",
  27344. height: math.unit(144, "meters")
  27345. },
  27346. ]
  27347. ))
  27348. characterMakers.push(() => makeCharacter(
  27349. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27350. {
  27351. front: {
  27352. height: math.unit(7, "feet"),
  27353. weight: math.unit(425, "lb"),
  27354. name: "Front",
  27355. image: {
  27356. source: "./media/characters/hind/front.svg",
  27357. extra: 2091 / 1860,
  27358. bottom: 129 / 2220
  27359. }
  27360. },
  27361. back: {
  27362. height: math.unit(7, "feet"),
  27363. weight: math.unit(425, "lb"),
  27364. name: "Back",
  27365. image: {
  27366. source: "./media/characters/hind/back.svg",
  27367. extra: 2091 / 1860,
  27368. bottom: 24.6 / 2309
  27369. }
  27370. },
  27371. tail: {
  27372. height: math.unit(2.8, "feet"),
  27373. name: "Tail",
  27374. image: {
  27375. source: "./media/characters/hind/tail.svg"
  27376. }
  27377. },
  27378. head: {
  27379. height: math.unit(2.55, "feet"),
  27380. name: "Head",
  27381. image: {
  27382. source: "./media/characters/hind/head.svg"
  27383. }
  27384. },
  27385. },
  27386. [
  27387. {
  27388. name: "XS",
  27389. height: math.unit(0.7, "feet")
  27390. },
  27391. {
  27392. name: "Normal",
  27393. height: math.unit(7, "feet"),
  27394. default: true
  27395. },
  27396. {
  27397. name: "XL",
  27398. height: math.unit(70, "feet")
  27399. },
  27400. ]
  27401. ))
  27402. characterMakers.push(() => makeCharacter(
  27403. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27404. {
  27405. front: {
  27406. height: math.unit(2.1, "meters"),
  27407. weight: math.unit(150, "lb"),
  27408. name: "Front",
  27409. image: {
  27410. source: "./media/characters/tharquench-sizestealer/front.svg",
  27411. extra: 1605/1470,
  27412. bottom: 36/1641
  27413. }
  27414. },
  27415. frontAlt: {
  27416. height: math.unit(2.1, "meters"),
  27417. weight: math.unit(150, "lb"),
  27418. name: "Front (Alt)",
  27419. image: {
  27420. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27421. extra: 2318 / 2063,
  27422. bottom: 93.4 / 2410
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Nano",
  27429. height: math.unit(1, "mm")
  27430. },
  27431. {
  27432. name: "Micro",
  27433. height: math.unit(1, "cm")
  27434. },
  27435. {
  27436. name: "Normal",
  27437. height: math.unit(2.1, "meters"),
  27438. default: true
  27439. },
  27440. ]
  27441. ))
  27442. characterMakers.push(() => makeCharacter(
  27443. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27444. {
  27445. front: {
  27446. height: math.unit(7 + 5 / 12, "feet"),
  27447. weight: math.unit(357, "lb"),
  27448. name: "Front",
  27449. image: {
  27450. source: "./media/characters/solex-draconov/front.svg",
  27451. extra: 1993 / 1865,
  27452. bottom: 117 / 2111
  27453. }
  27454. },
  27455. },
  27456. [
  27457. {
  27458. name: "Natural Height",
  27459. height: math.unit(7 + 5 / 12, "feet"),
  27460. default: true
  27461. },
  27462. {
  27463. name: "Macro",
  27464. height: math.unit(350, "feet")
  27465. },
  27466. {
  27467. name: "Macro+",
  27468. height: math.unit(1000, "feet")
  27469. },
  27470. {
  27471. name: "Megamacro",
  27472. height: math.unit(20, "km")
  27473. },
  27474. {
  27475. name: "Megamacro+",
  27476. height: math.unit(1000, "km")
  27477. },
  27478. {
  27479. name: "Gigamacro",
  27480. height: math.unit(2.5, "Gm")
  27481. },
  27482. {
  27483. name: "Teramacro",
  27484. height: math.unit(15, "Tm")
  27485. },
  27486. {
  27487. name: "Galactic",
  27488. height: math.unit(30, "Zm")
  27489. },
  27490. {
  27491. name: "Universal",
  27492. height: math.unit(21000, "Ym")
  27493. },
  27494. {
  27495. name: "Omniversal",
  27496. height: math.unit(9.861e50, "Ym")
  27497. },
  27498. {
  27499. name: "Existential",
  27500. height: math.unit(1e300, "meters")
  27501. },
  27502. ]
  27503. ))
  27504. characterMakers.push(() => makeCharacter(
  27505. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27506. {
  27507. side: {
  27508. height: math.unit(25, "feet"),
  27509. weight: math.unit(90000, "lb"),
  27510. name: "Side",
  27511. image: {
  27512. source: "./media/characters/mandarax/side.svg",
  27513. extra: 614 / 332,
  27514. bottom: 55 / 630
  27515. }
  27516. },
  27517. lounging: {
  27518. height: math.unit(15.4, "feet"),
  27519. weight: math.unit(90000, "lb"),
  27520. name: "Lounging",
  27521. image: {
  27522. source: "./media/characters/mandarax/lounging.svg",
  27523. extra: 817/609,
  27524. bottom: 685/1502
  27525. }
  27526. },
  27527. head: {
  27528. height: math.unit(11.4, "feet"),
  27529. name: "Head",
  27530. image: {
  27531. source: "./media/characters/mandarax/head.svg"
  27532. }
  27533. },
  27534. belly: {
  27535. height: math.unit(33, "feet"),
  27536. name: "Belly",
  27537. preyCapacity: math.unit(500, "people"),
  27538. image: {
  27539. source: "./media/characters/mandarax/belly.svg"
  27540. }
  27541. },
  27542. dick: {
  27543. height: math.unit(8.46, "feet"),
  27544. name: "Dick",
  27545. image: {
  27546. source: "./media/characters/mandarax/dick.svg"
  27547. }
  27548. },
  27549. top: {
  27550. height: math.unit(28, "meters"),
  27551. name: "Top",
  27552. image: {
  27553. source: "./media/characters/mandarax/top.svg"
  27554. }
  27555. },
  27556. },
  27557. [
  27558. {
  27559. name: "Normal",
  27560. height: math.unit(25, "feet"),
  27561. default: true
  27562. },
  27563. ]
  27564. ))
  27565. characterMakers.push(() => makeCharacter(
  27566. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27567. {
  27568. front: {
  27569. height: math.unit(5, "feet"),
  27570. weight: math.unit(90, "lb"),
  27571. name: "Front",
  27572. image: {
  27573. source: "./media/characters/pixil/front.svg",
  27574. extra: 2000 / 1618,
  27575. bottom: 12.3 / 2011
  27576. }
  27577. },
  27578. },
  27579. [
  27580. {
  27581. name: "Normal",
  27582. height: math.unit(5, "feet"),
  27583. default: true
  27584. },
  27585. {
  27586. name: "Megamacro",
  27587. height: math.unit(10, "miles"),
  27588. },
  27589. ]
  27590. ))
  27591. characterMakers.push(() => makeCharacter(
  27592. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27593. {
  27594. front: {
  27595. height: math.unit(7 + 2 / 12, "feet"),
  27596. weight: math.unit(200, "lb"),
  27597. name: "Front",
  27598. image: {
  27599. source: "./media/characters/angel/front.svg",
  27600. extra: 1830 / 1737,
  27601. bottom: 22.6 / 1854,
  27602. }
  27603. },
  27604. },
  27605. [
  27606. {
  27607. name: "Normal",
  27608. height: math.unit(7 + 2 / 12, "feet"),
  27609. default: true
  27610. },
  27611. {
  27612. name: "Macro",
  27613. height: math.unit(1000, "feet")
  27614. },
  27615. {
  27616. name: "Megamacro",
  27617. height: math.unit(2, "miles")
  27618. },
  27619. {
  27620. name: "Gigamacro",
  27621. height: math.unit(20, "earths")
  27622. },
  27623. ]
  27624. ))
  27625. characterMakers.push(() => makeCharacter(
  27626. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27627. {
  27628. front: {
  27629. height: math.unit(5, "feet"),
  27630. weight: math.unit(180, "lb"),
  27631. name: "Front",
  27632. image: {
  27633. source: "./media/characters/mekana/front.svg",
  27634. extra: 1671 / 1605,
  27635. bottom: 3.5 / 1691
  27636. }
  27637. },
  27638. side: {
  27639. height: math.unit(5, "feet"),
  27640. weight: math.unit(180, "lb"),
  27641. name: "Side",
  27642. image: {
  27643. source: "./media/characters/mekana/side.svg",
  27644. extra: 1671 / 1605,
  27645. bottom: 3.5 / 1691
  27646. }
  27647. },
  27648. back: {
  27649. height: math.unit(5, "feet"),
  27650. weight: math.unit(180, "lb"),
  27651. name: "Back",
  27652. image: {
  27653. source: "./media/characters/mekana/back.svg",
  27654. extra: 1671 / 1605,
  27655. bottom: 3.5 / 1691
  27656. }
  27657. },
  27658. },
  27659. [
  27660. {
  27661. name: "Normal",
  27662. height: math.unit(5, "feet"),
  27663. default: true
  27664. },
  27665. ]
  27666. ))
  27667. characterMakers.push(() => makeCharacter(
  27668. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27669. {
  27670. front: {
  27671. height: math.unit(4 + 6 / 12, "feet"),
  27672. weight: math.unit(80, "lb"),
  27673. name: "Front",
  27674. image: {
  27675. source: "./media/characters/pixie/front.svg",
  27676. extra: 1924 / 1825,
  27677. bottom: 22.4 / 1946
  27678. }
  27679. },
  27680. },
  27681. [
  27682. {
  27683. name: "Normal",
  27684. height: math.unit(4 + 6 / 12, "feet"),
  27685. default: true
  27686. },
  27687. {
  27688. name: "Macro",
  27689. height: math.unit(40, "feet")
  27690. },
  27691. ]
  27692. ))
  27693. characterMakers.push(() => makeCharacter(
  27694. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27695. {
  27696. front: {
  27697. height: math.unit(2.1, "meters"),
  27698. weight: math.unit(200, "lb"),
  27699. name: "Front",
  27700. image: {
  27701. source: "./media/characters/the-lascivious/front.svg",
  27702. extra: 1 / 0.893,
  27703. bottom: 3.5 / 573.7
  27704. }
  27705. },
  27706. },
  27707. [
  27708. {
  27709. name: "Human Scale",
  27710. height: math.unit(2.1, "meters")
  27711. },
  27712. {
  27713. name: "Wolxi Scale",
  27714. height: math.unit(46.2, "m"),
  27715. default: true
  27716. },
  27717. {
  27718. name: "Boinker of Buildings",
  27719. height: math.unit(10, "km")
  27720. },
  27721. {
  27722. name: "Shagger of Skyscrapers",
  27723. height: math.unit(40, "km")
  27724. },
  27725. {
  27726. name: "Banger of Boroughs",
  27727. height: math.unit(4000, "km")
  27728. },
  27729. {
  27730. name: "Screwer of States",
  27731. height: math.unit(100000, "km")
  27732. },
  27733. {
  27734. name: "Pounder of Planets",
  27735. height: math.unit(2000000, "km")
  27736. },
  27737. ]
  27738. ))
  27739. characterMakers.push(() => makeCharacter(
  27740. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27741. {
  27742. front: {
  27743. height: math.unit(6, "feet"),
  27744. weight: math.unit(150, "lb"),
  27745. name: "Front",
  27746. image: {
  27747. source: "./media/characters/aj/front.svg",
  27748. extra: 2039 / 1562,
  27749. bottom: 40 / 2079
  27750. }
  27751. },
  27752. },
  27753. [
  27754. {
  27755. name: "Normal",
  27756. height: math.unit(11 + 6 / 12, "feet"),
  27757. default: true
  27758. },
  27759. {
  27760. name: "Megamacro",
  27761. height: math.unit(60, "megameters")
  27762. },
  27763. ]
  27764. ))
  27765. characterMakers.push(() => makeCharacter(
  27766. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27767. {
  27768. side: {
  27769. height: math.unit(31 + 8 / 12, "feet"),
  27770. weight: math.unit(75000, "kg"),
  27771. name: "Side",
  27772. image: {
  27773. source: "./media/characters/koros/side.svg",
  27774. extra: 1442 / 1297,
  27775. bottom: 122.7 / 1562
  27776. }
  27777. },
  27778. dicksKingsCrown: {
  27779. height: math.unit(6, "feet"),
  27780. name: "Dicks (King's Crown)",
  27781. image: {
  27782. source: "./media/characters/koros/dicks-kings-crown.svg"
  27783. }
  27784. },
  27785. dicksTailSet: {
  27786. height: math.unit(3, "feet"),
  27787. name: "Dicks (Tail Set)",
  27788. image: {
  27789. source: "./media/characters/koros/dicks-tail-set.svg"
  27790. }
  27791. },
  27792. dickCumming: {
  27793. height: math.unit(7.98, "feet"),
  27794. name: "Dick (Cumming)",
  27795. image: {
  27796. source: "./media/characters/koros/dick-cumming.svg"
  27797. }
  27798. },
  27799. dicksBack: {
  27800. height: math.unit(5.9, "feet"),
  27801. name: "Dicks (Back)",
  27802. image: {
  27803. source: "./media/characters/koros/dicks-back.svg"
  27804. }
  27805. },
  27806. dicksFront: {
  27807. height: math.unit(3.72, "feet"),
  27808. name: "Dicks (Front)",
  27809. image: {
  27810. source: "./media/characters/koros/dicks-front.svg"
  27811. }
  27812. },
  27813. dicksPeeking: {
  27814. height: math.unit(3.0, "feet"),
  27815. name: "Dicks (Peeking)",
  27816. image: {
  27817. source: "./media/characters/koros/dicks-peeking.svg"
  27818. }
  27819. },
  27820. eye: {
  27821. height: math.unit(1.7, "feet"),
  27822. name: "Eye",
  27823. image: {
  27824. source: "./media/characters/koros/eye.svg"
  27825. }
  27826. },
  27827. headFront: {
  27828. height: math.unit(11.69, "feet"),
  27829. name: "Head (Front)",
  27830. image: {
  27831. source: "./media/characters/koros/head-front.svg"
  27832. }
  27833. },
  27834. headSide: {
  27835. height: math.unit(14, "feet"),
  27836. name: "Head (Side)",
  27837. image: {
  27838. source: "./media/characters/koros/head-side.svg"
  27839. }
  27840. },
  27841. leg: {
  27842. height: math.unit(17, "feet"),
  27843. name: "Leg",
  27844. image: {
  27845. source: "./media/characters/koros/leg.svg"
  27846. }
  27847. },
  27848. mawSide: {
  27849. height: math.unit(12.8, "feet"),
  27850. name: "Maw (Side)",
  27851. image: {
  27852. source: "./media/characters/koros/maw-side.svg"
  27853. }
  27854. },
  27855. mawSpitting: {
  27856. height: math.unit(17, "feet"),
  27857. name: "Maw (Spitting)",
  27858. image: {
  27859. source: "./media/characters/koros/maw-spitting.svg"
  27860. }
  27861. },
  27862. slit: {
  27863. height: math.unit(2.8, "feet"),
  27864. name: "Slit",
  27865. image: {
  27866. source: "./media/characters/koros/slit.svg"
  27867. }
  27868. },
  27869. stomach: {
  27870. height: math.unit(6.8, "feet"),
  27871. preyCapacity: math.unit(20, "people"),
  27872. name: "Stomach",
  27873. image: {
  27874. source: "./media/characters/koros/stomach.svg"
  27875. }
  27876. },
  27877. wingspanBottom: {
  27878. height: math.unit(114, "feet"),
  27879. name: "Wingspan (Bottom)",
  27880. image: {
  27881. source: "./media/characters/koros/wingspan-bottom.svg"
  27882. }
  27883. },
  27884. wingspanTop: {
  27885. height: math.unit(104, "feet"),
  27886. name: "Wingspan (Top)",
  27887. image: {
  27888. source: "./media/characters/koros/wingspan-top.svg"
  27889. }
  27890. },
  27891. },
  27892. [
  27893. {
  27894. name: "Normal",
  27895. height: math.unit(31 + 8 / 12, "feet"),
  27896. default: true
  27897. },
  27898. ]
  27899. ))
  27900. characterMakers.push(() => makeCharacter(
  27901. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27902. {
  27903. front: {
  27904. height: math.unit(18 + 5 / 12, "feet"),
  27905. weight: math.unit(3750, "kg"),
  27906. name: "Front",
  27907. image: {
  27908. source: "./media/characters/vexx/front.svg",
  27909. extra: 426 / 396,
  27910. bottom: 31.5 / 458
  27911. }
  27912. },
  27913. maw: {
  27914. height: math.unit(6, "feet"),
  27915. name: "Maw",
  27916. image: {
  27917. source: "./media/characters/vexx/maw.svg"
  27918. }
  27919. },
  27920. },
  27921. [
  27922. {
  27923. name: "Normal",
  27924. height: math.unit(18 + 5 / 12, "feet"),
  27925. default: true
  27926. },
  27927. ]
  27928. ))
  27929. characterMakers.push(() => makeCharacter(
  27930. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27931. {
  27932. front: {
  27933. height: math.unit(17 + 6 / 12, "feet"),
  27934. weight: math.unit(150, "lb"),
  27935. name: "Front",
  27936. image: {
  27937. source: "./media/characters/baadra/front.svg",
  27938. extra: 1694/1553,
  27939. bottom: 179/1873
  27940. }
  27941. },
  27942. frontAlt: {
  27943. height: math.unit(17 + 6 / 12, "feet"),
  27944. weight: math.unit(150, "lb"),
  27945. name: "Front (Alt)",
  27946. image: {
  27947. source: "./media/characters/baadra/front-alt.svg",
  27948. extra: 3137 / 2890,
  27949. bottom: 168.4 / 3305
  27950. }
  27951. },
  27952. back: {
  27953. height: math.unit(17 + 6 / 12, "feet"),
  27954. weight: math.unit(150, "lb"),
  27955. name: "Back",
  27956. image: {
  27957. source: "./media/characters/baadra/back.svg",
  27958. extra: 3142 / 2890,
  27959. bottom: 220 / 3371
  27960. }
  27961. },
  27962. head: {
  27963. height: math.unit(5.45, "feet"),
  27964. name: "Head",
  27965. image: {
  27966. source: "./media/characters/baadra/head.svg"
  27967. }
  27968. },
  27969. headAngry: {
  27970. height: math.unit(4.95, "feet"),
  27971. name: "Head (Angry)",
  27972. image: {
  27973. source: "./media/characters/baadra/head-angry.svg"
  27974. }
  27975. },
  27976. headOpen: {
  27977. height: math.unit(6, "feet"),
  27978. name: "Head (Open)",
  27979. image: {
  27980. source: "./media/characters/baadra/head-open.svg"
  27981. }
  27982. },
  27983. },
  27984. [
  27985. {
  27986. name: "Normal",
  27987. height: math.unit(17 + 6 / 12, "feet"),
  27988. default: true
  27989. },
  27990. ]
  27991. ))
  27992. characterMakers.push(() => makeCharacter(
  27993. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27994. {
  27995. front: {
  27996. height: math.unit(7 + 3 / 12, "feet"),
  27997. weight: math.unit(180, "lb"),
  27998. name: "Front",
  27999. image: {
  28000. source: "./media/characters/juri/front.svg",
  28001. extra: 1401 / 1237,
  28002. bottom: 18.5 / 1418
  28003. }
  28004. },
  28005. side: {
  28006. height: math.unit(7 + 3 / 12, "feet"),
  28007. weight: math.unit(180, "lb"),
  28008. name: "Side",
  28009. image: {
  28010. source: "./media/characters/juri/side.svg",
  28011. extra: 1424 / 1242,
  28012. bottom: 18.5 / 1447
  28013. }
  28014. },
  28015. sitting: {
  28016. height: math.unit(6, "feet"),
  28017. weight: math.unit(180, "lb"),
  28018. name: "Sitting",
  28019. image: {
  28020. source: "./media/characters/juri/sitting.svg",
  28021. extra: 1270 / 1143,
  28022. bottom: 100 / 1343
  28023. }
  28024. },
  28025. back: {
  28026. height: math.unit(7 + 3 / 12, "feet"),
  28027. weight: math.unit(180, "lb"),
  28028. name: "Back",
  28029. image: {
  28030. source: "./media/characters/juri/back.svg",
  28031. extra: 1377 / 1240,
  28032. bottom: 23.7 / 1405
  28033. }
  28034. },
  28035. maw: {
  28036. height: math.unit(2.8, "feet"),
  28037. name: "Maw",
  28038. image: {
  28039. source: "./media/characters/juri/maw.svg"
  28040. }
  28041. },
  28042. stomach: {
  28043. height: math.unit(0.89, "feet"),
  28044. preyCapacity: math.unit(4, "liters"),
  28045. name: "Stomach",
  28046. image: {
  28047. source: "./media/characters/juri/stomach.svg"
  28048. }
  28049. },
  28050. },
  28051. [
  28052. {
  28053. name: "Normal",
  28054. height: math.unit(7 + 3 / 12, "feet"),
  28055. default: true
  28056. },
  28057. ]
  28058. ))
  28059. characterMakers.push(() => makeCharacter(
  28060. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28061. {
  28062. fox: {
  28063. height: math.unit(5 + 6 / 12, "feet"),
  28064. weight: math.unit(140, "lb"),
  28065. name: "Fox",
  28066. image: {
  28067. source: "./media/characters/maxene-sita/fox.svg",
  28068. extra: 146 / 138,
  28069. bottom: 2.1 / 148.19
  28070. }
  28071. },
  28072. foxLaying: {
  28073. height: math.unit(1.70, "feet"),
  28074. weight: math.unit(140, "lb"),
  28075. name: "Fox (Laying)",
  28076. image: {
  28077. source: "./media/characters/maxene-sita/fox-laying.svg",
  28078. extra: 910 / 572,
  28079. bottom: 71 / 981
  28080. }
  28081. },
  28082. kitsune: {
  28083. height: math.unit(10, "feet"),
  28084. weight: math.unit(800, "lb"),
  28085. name: "Kitsune",
  28086. image: {
  28087. source: "./media/characters/maxene-sita/kitsune.svg",
  28088. extra: 185 / 176,
  28089. bottom: 4.7 / 189.9
  28090. }
  28091. },
  28092. hellhound: {
  28093. height: math.unit(10, "feet"),
  28094. weight: math.unit(700, "lb"),
  28095. name: "Hellhound",
  28096. image: {
  28097. source: "./media/characters/maxene-sita/hellhound.svg",
  28098. extra: 1600 / 1545,
  28099. bottom: 81 / 1681
  28100. }
  28101. },
  28102. },
  28103. [
  28104. {
  28105. name: "Normal",
  28106. height: math.unit(5 + 6 / 12, "feet"),
  28107. default: true
  28108. },
  28109. ]
  28110. ))
  28111. characterMakers.push(() => makeCharacter(
  28112. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28113. {
  28114. front: {
  28115. height: math.unit(3 + 4 / 12, "feet"),
  28116. weight: math.unit(70, "lb"),
  28117. name: "Front",
  28118. image: {
  28119. source: "./media/characters/maia/front.svg",
  28120. extra: 227 / 219.5,
  28121. bottom: 40 / 267
  28122. }
  28123. },
  28124. back: {
  28125. height: math.unit(3 + 4 / 12, "feet"),
  28126. weight: math.unit(70, "lb"),
  28127. name: "Back",
  28128. image: {
  28129. source: "./media/characters/maia/back.svg",
  28130. extra: 237 / 225
  28131. }
  28132. },
  28133. },
  28134. [
  28135. {
  28136. name: "Normal",
  28137. height: math.unit(3 + 4 / 12, "feet"),
  28138. default: true
  28139. },
  28140. ]
  28141. ))
  28142. characterMakers.push(() => makeCharacter(
  28143. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28144. {
  28145. front: {
  28146. height: math.unit(5 + 10 / 12, "feet"),
  28147. weight: math.unit(197, "lb"),
  28148. name: "Front",
  28149. image: {
  28150. source: "./media/characters/jabaro/front.svg",
  28151. extra: 225 / 216,
  28152. bottom: 5.06 / 230
  28153. }
  28154. },
  28155. back: {
  28156. height: math.unit(5 + 10 / 12, "feet"),
  28157. weight: math.unit(197, "lb"),
  28158. name: "Back",
  28159. image: {
  28160. source: "./media/characters/jabaro/back.svg",
  28161. extra: 225 / 219,
  28162. bottom: 1.9 / 227
  28163. }
  28164. },
  28165. },
  28166. [
  28167. {
  28168. name: "Normal",
  28169. height: math.unit(5 + 10 / 12, "feet"),
  28170. default: true
  28171. },
  28172. ]
  28173. ))
  28174. characterMakers.push(() => makeCharacter(
  28175. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28176. {
  28177. front: {
  28178. height: math.unit(5 + 8 / 12, "feet"),
  28179. weight: math.unit(139, "lb"),
  28180. name: "Front",
  28181. image: {
  28182. source: "./media/characters/risa/front.svg",
  28183. extra: 270 / 260,
  28184. bottom: 11.2 / 282
  28185. }
  28186. },
  28187. back: {
  28188. height: math.unit(5 + 8 / 12, "feet"),
  28189. weight: math.unit(139, "lb"),
  28190. name: "Back",
  28191. image: {
  28192. source: "./media/characters/risa/back.svg",
  28193. extra: 264 / 255,
  28194. bottom: 4 / 268
  28195. }
  28196. },
  28197. },
  28198. [
  28199. {
  28200. name: "Normal",
  28201. height: math.unit(5 + 8 / 12, "feet"),
  28202. default: true
  28203. },
  28204. ]
  28205. ))
  28206. characterMakers.push(() => makeCharacter(
  28207. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28208. {
  28209. front: {
  28210. height: math.unit(2 + 11 / 12, "feet"),
  28211. weight: math.unit(30, "lb"),
  28212. name: "Front",
  28213. image: {
  28214. source: "./media/characters/weatley/front.svg",
  28215. bottom: 10.7 / 414,
  28216. extra: 403.5 / 362
  28217. }
  28218. },
  28219. back: {
  28220. height: math.unit(2 + 11 / 12, "feet"),
  28221. weight: math.unit(30, "lb"),
  28222. name: "Back",
  28223. image: {
  28224. source: "./media/characters/weatley/back.svg",
  28225. bottom: 10.7 / 414,
  28226. extra: 403.5 / 362
  28227. }
  28228. },
  28229. },
  28230. [
  28231. {
  28232. name: "Normal",
  28233. height: math.unit(2 + 11 / 12, "feet"),
  28234. default: true
  28235. },
  28236. ]
  28237. ))
  28238. characterMakers.push(() => makeCharacter(
  28239. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28240. {
  28241. front: {
  28242. height: math.unit(5 + 2 / 12, "feet"),
  28243. weight: math.unit(50, "kg"),
  28244. name: "Front",
  28245. image: {
  28246. source: "./media/characters/mercury-crescent/front.svg",
  28247. extra: 1088 / 1033,
  28248. bottom: 18.9 / 1109
  28249. }
  28250. },
  28251. },
  28252. [
  28253. {
  28254. name: "Normal",
  28255. height: math.unit(5 + 2 / 12, "feet"),
  28256. default: true
  28257. },
  28258. ]
  28259. ))
  28260. characterMakers.push(() => makeCharacter(
  28261. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28262. {
  28263. front: {
  28264. height: math.unit(2, "feet"),
  28265. weight: math.unit(15, "kg"),
  28266. name: "Front",
  28267. image: {
  28268. source: "./media/characters/diamond-jones/front.svg",
  28269. extra: 727/723,
  28270. bottom: 46/773
  28271. }
  28272. },
  28273. },
  28274. [
  28275. {
  28276. name: "Normal",
  28277. height: math.unit(2, "feet"),
  28278. default: true
  28279. },
  28280. ]
  28281. ))
  28282. characterMakers.push(() => makeCharacter(
  28283. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28284. {
  28285. front: {
  28286. height: math.unit(3, "feet"),
  28287. weight: math.unit(30, "kg"),
  28288. name: "Front",
  28289. image: {
  28290. source: "./media/characters/sweet-bit/front.svg",
  28291. extra: 675 / 567,
  28292. bottom: 27.7 / 703
  28293. }
  28294. },
  28295. },
  28296. [
  28297. {
  28298. name: "Normal",
  28299. height: math.unit(3, "feet"),
  28300. default: true
  28301. },
  28302. ]
  28303. ))
  28304. characterMakers.push(() => makeCharacter(
  28305. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28306. {
  28307. side: {
  28308. height: math.unit(9.178, "feet"),
  28309. weight: math.unit(500, "lb"),
  28310. name: "Side",
  28311. image: {
  28312. source: "./media/characters/umbrazen/side.svg",
  28313. extra: 1730 / 1473,
  28314. bottom: 34.6 / 1765
  28315. }
  28316. },
  28317. },
  28318. [
  28319. {
  28320. name: "Normal",
  28321. height: math.unit(9.178, "feet"),
  28322. default: true
  28323. },
  28324. ]
  28325. ))
  28326. characterMakers.push(() => makeCharacter(
  28327. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28328. {
  28329. front: {
  28330. height: math.unit(10, "feet"),
  28331. weight: math.unit(750, "lb"),
  28332. name: "Front",
  28333. image: {
  28334. source: "./media/characters/arlist/front.svg",
  28335. extra: 961 / 778,
  28336. bottom: 6.2 / 986
  28337. }
  28338. },
  28339. },
  28340. [
  28341. {
  28342. name: "Normal",
  28343. height: math.unit(10, "feet"),
  28344. default: true
  28345. },
  28346. ]
  28347. ))
  28348. characterMakers.push(() => makeCharacter(
  28349. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28350. {
  28351. front: {
  28352. height: math.unit(5 + 1 / 12, "feet"),
  28353. weight: math.unit(110, "lb"),
  28354. name: "Front",
  28355. image: {
  28356. source: "./media/characters/aradel/front.svg",
  28357. extra: 324 / 303,
  28358. bottom: 3.6 / 329.4
  28359. }
  28360. },
  28361. },
  28362. [
  28363. {
  28364. name: "Normal",
  28365. height: math.unit(5 + 1 / 12, "feet"),
  28366. default: true
  28367. },
  28368. ]
  28369. ))
  28370. characterMakers.push(() => makeCharacter(
  28371. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28372. {
  28373. dressed: {
  28374. height: math.unit(3 + 8 / 12, "feet"),
  28375. weight: math.unit(50, "lb"),
  28376. name: "Dressed",
  28377. image: {
  28378. source: "./media/characters/serryn/dressed.svg",
  28379. extra: 1792 / 1656,
  28380. bottom: 43.5 / 1840
  28381. }
  28382. },
  28383. nude: {
  28384. height: math.unit(3 + 8 / 12, "feet"),
  28385. weight: math.unit(50, "lb"),
  28386. name: "Nude",
  28387. image: {
  28388. source: "./media/characters/serryn/nude.svg",
  28389. extra: 1792 / 1656,
  28390. bottom: 43.5 / 1840
  28391. }
  28392. },
  28393. },
  28394. [
  28395. {
  28396. name: "Normal",
  28397. height: math.unit(3 + 8 / 12, "feet"),
  28398. default: true
  28399. },
  28400. ]
  28401. ))
  28402. characterMakers.push(() => makeCharacter(
  28403. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28404. {
  28405. front: {
  28406. height: math.unit(7 + 10 / 12, "feet"),
  28407. weight: math.unit(255, "lb"),
  28408. name: "Front",
  28409. image: {
  28410. source: "./media/characters/xavier-thyme/front.svg",
  28411. extra: 3733 / 3642,
  28412. bottom: 131 / 3869
  28413. }
  28414. },
  28415. frontRaven: {
  28416. height: math.unit(7 + 10 / 12, "feet"),
  28417. weight: math.unit(255, "lb"),
  28418. name: "Front (Raven)",
  28419. image: {
  28420. source: "./media/characters/xavier-thyme/front-raven.svg",
  28421. extra: 4385 / 3642,
  28422. bottom: 131 / 4517
  28423. }
  28424. },
  28425. },
  28426. [
  28427. {
  28428. name: "Normal",
  28429. height: math.unit(7 + 10 / 12, "feet"),
  28430. default: true
  28431. },
  28432. ]
  28433. ))
  28434. characterMakers.push(() => makeCharacter(
  28435. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28436. {
  28437. front: {
  28438. height: math.unit(1.6, "m"),
  28439. weight: math.unit(50, "kg"),
  28440. name: "Front",
  28441. image: {
  28442. source: "./media/characters/kiki/front.svg",
  28443. extra: 4682 / 3610,
  28444. bottom: 115 / 4777
  28445. }
  28446. },
  28447. },
  28448. [
  28449. {
  28450. name: "Normal",
  28451. height: math.unit(1.6, "meters"),
  28452. default: true
  28453. },
  28454. ]
  28455. ))
  28456. characterMakers.push(() => makeCharacter(
  28457. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28458. {
  28459. front: {
  28460. height: math.unit(50, "m"),
  28461. weight: math.unit(500, "tonnes"),
  28462. name: "Front",
  28463. image: {
  28464. source: "./media/characters/ryoko/front.svg",
  28465. extra: 4632 / 3926,
  28466. bottom: 193 / 4823
  28467. }
  28468. },
  28469. },
  28470. [
  28471. {
  28472. name: "Normal",
  28473. height: math.unit(50, "meters"),
  28474. default: true
  28475. },
  28476. ]
  28477. ))
  28478. characterMakers.push(() => makeCharacter(
  28479. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28480. {
  28481. front: {
  28482. height: math.unit(30, "m"),
  28483. weight: math.unit(22, "tonnes"),
  28484. name: "Front",
  28485. image: {
  28486. source: "./media/characters/elio/front.svg",
  28487. extra: 4582 / 3720,
  28488. bottom: 236 / 4828
  28489. }
  28490. },
  28491. },
  28492. [
  28493. {
  28494. name: "Normal",
  28495. height: math.unit(30, "meters"),
  28496. default: true
  28497. },
  28498. ]
  28499. ))
  28500. characterMakers.push(() => makeCharacter(
  28501. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28502. {
  28503. front: {
  28504. height: math.unit(6 + 3 / 12, "feet"),
  28505. weight: math.unit(120, "lb"),
  28506. name: "Front",
  28507. image: {
  28508. source: "./media/characters/azura/front.svg",
  28509. extra: 1149 / 1135,
  28510. bottom: 45 / 1194
  28511. }
  28512. },
  28513. frontClothed: {
  28514. height: math.unit(6 + 3 / 12, "feet"),
  28515. weight: math.unit(120, "lb"),
  28516. name: "Front (Clothed)",
  28517. image: {
  28518. source: "./media/characters/azura/front-clothed.svg",
  28519. extra: 1149 / 1135,
  28520. bottom: 45 / 1194
  28521. }
  28522. },
  28523. },
  28524. [
  28525. {
  28526. name: "Normal",
  28527. height: math.unit(6 + 3 / 12, "feet"),
  28528. default: true
  28529. },
  28530. {
  28531. name: "Macro",
  28532. height: math.unit(20 + 6 / 12, "feet")
  28533. },
  28534. {
  28535. name: "Megamacro",
  28536. height: math.unit(12, "miles")
  28537. },
  28538. {
  28539. name: "Gigamacro",
  28540. height: math.unit(10000, "miles")
  28541. },
  28542. {
  28543. name: "Teramacro",
  28544. height: math.unit(900000, "miles")
  28545. },
  28546. ]
  28547. ))
  28548. characterMakers.push(() => makeCharacter(
  28549. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28550. {
  28551. front: {
  28552. height: math.unit(12, "feet"),
  28553. weight: math.unit(1, "ton"),
  28554. capacity: math.unit(660000, "gallons"),
  28555. name: "Front",
  28556. image: {
  28557. source: "./media/characters/zeus/front.svg",
  28558. extra: 5005 / 4717,
  28559. bottom: 363 / 5388
  28560. }
  28561. },
  28562. },
  28563. [
  28564. {
  28565. name: "Normal",
  28566. height: math.unit(12, "feet")
  28567. },
  28568. {
  28569. name: "Preferred Size",
  28570. height: math.unit(0.5, "miles"),
  28571. default: true
  28572. },
  28573. {
  28574. name: "Giga Horse",
  28575. height: math.unit(300, "miles")
  28576. },
  28577. {
  28578. name: "Riding Planets",
  28579. height: math.unit(30, "megameters")
  28580. },
  28581. {
  28582. name: "Cosmic Giant",
  28583. height: math.unit(3, "zettameters")
  28584. },
  28585. {
  28586. name: "Breeding God",
  28587. height: math.unit(9.92e22, "yottameters")
  28588. },
  28589. ]
  28590. ))
  28591. characterMakers.push(() => makeCharacter(
  28592. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28593. {
  28594. side: {
  28595. height: math.unit(9, "feet"),
  28596. weight: math.unit(1500, "kg"),
  28597. name: "Side",
  28598. image: {
  28599. source: "./media/characters/fang/side.svg",
  28600. extra: 924 / 866,
  28601. bottom: 47.5 / 972.3
  28602. }
  28603. },
  28604. },
  28605. [
  28606. {
  28607. name: "Normal",
  28608. height: math.unit(9, "feet"),
  28609. default: true
  28610. },
  28611. {
  28612. name: "Macro",
  28613. height: math.unit(75 + 6 / 12, "feet")
  28614. },
  28615. {
  28616. name: "Teramacro",
  28617. height: math.unit(50000, "miles")
  28618. },
  28619. ]
  28620. ))
  28621. characterMakers.push(() => makeCharacter(
  28622. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28623. {
  28624. front: {
  28625. height: math.unit(10, "feet"),
  28626. weight: math.unit(2, "tons"),
  28627. name: "Front",
  28628. image: {
  28629. source: "./media/characters/rekhit/front.svg",
  28630. extra: 2796 / 2590,
  28631. bottom: 225 / 3022
  28632. }
  28633. },
  28634. },
  28635. [
  28636. {
  28637. name: "Normal",
  28638. height: math.unit(10, "feet"),
  28639. default: true
  28640. },
  28641. {
  28642. name: "Macro",
  28643. height: math.unit(500, "feet")
  28644. },
  28645. ]
  28646. ))
  28647. characterMakers.push(() => makeCharacter(
  28648. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28649. {
  28650. front: {
  28651. height: math.unit(7 + 6.451 / 12, "feet"),
  28652. weight: math.unit(310, "lb"),
  28653. name: "Front",
  28654. image: {
  28655. source: "./media/characters/dahlia-verrick/front.svg",
  28656. extra: 1488 / 1365,
  28657. bottom: 6.2 / 1495
  28658. }
  28659. },
  28660. back: {
  28661. height: math.unit(7 + 6.451 / 12, "feet"),
  28662. weight: math.unit(310, "lb"),
  28663. name: "Back",
  28664. image: {
  28665. source: "./media/characters/dahlia-verrick/back.svg",
  28666. extra: 1472 / 1351,
  28667. bottom: 5.28 / 1477
  28668. }
  28669. },
  28670. frontBusiness: {
  28671. height: math.unit(7 + 6.451 / 12, "feet"),
  28672. weight: math.unit(200, "lb"),
  28673. name: "Front (Business)",
  28674. image: {
  28675. source: "./media/characters/dahlia-verrick/front-business.svg",
  28676. extra: 1478 / 1381,
  28677. bottom: 5.5 / 1484
  28678. }
  28679. },
  28680. frontCasual: {
  28681. height: math.unit(7 + 6.451 / 12, "feet"),
  28682. weight: math.unit(200, "lb"),
  28683. name: "Front (Casual)",
  28684. image: {
  28685. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28686. extra: 1478 / 1381,
  28687. bottom: 5.5 / 1484
  28688. }
  28689. },
  28690. },
  28691. [
  28692. {
  28693. name: "Travel-Sized",
  28694. height: math.unit(7.45, "inches")
  28695. },
  28696. {
  28697. name: "Normal",
  28698. height: math.unit(7 + 6.451 / 12, "feet"),
  28699. default: true
  28700. },
  28701. {
  28702. name: "Hitting the Town",
  28703. height: math.unit(37 + 8 / 12, "feet")
  28704. },
  28705. {
  28706. name: "Stomp in the Suburbs",
  28707. height: math.unit(964 + 9.728 / 12, "feet")
  28708. },
  28709. {
  28710. name: "Sit on the City",
  28711. height: math.unit(61747 + 10.592 / 12, "feet")
  28712. },
  28713. {
  28714. name: "Glomp the Globe",
  28715. height: math.unit(252919327 + 4.832 / 12, "feet")
  28716. },
  28717. ]
  28718. ))
  28719. characterMakers.push(() => makeCharacter(
  28720. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28721. {
  28722. front: {
  28723. height: math.unit(6 + 4 / 12, "feet"),
  28724. weight: math.unit(320, "lb"),
  28725. name: "Front",
  28726. image: {
  28727. source: "./media/characters/balina-mahigan/front.svg",
  28728. extra: 447 / 428,
  28729. bottom: 18 / 466
  28730. }
  28731. },
  28732. back: {
  28733. height: math.unit(6 + 4 / 12, "feet"),
  28734. weight: math.unit(320, "lb"),
  28735. name: "Back",
  28736. image: {
  28737. source: "./media/characters/balina-mahigan/back.svg",
  28738. extra: 445 / 428,
  28739. bottom: 4.07 / 448
  28740. }
  28741. },
  28742. arm: {
  28743. height: math.unit(1.88, "feet"),
  28744. name: "Arm",
  28745. image: {
  28746. source: "./media/characters/balina-mahigan/arm.svg"
  28747. }
  28748. },
  28749. backPort: {
  28750. height: math.unit(0.685, "feet"),
  28751. name: "Back Port",
  28752. image: {
  28753. source: "./media/characters/balina-mahigan/back-port.svg"
  28754. }
  28755. },
  28756. hoofpaw: {
  28757. height: math.unit(1.41, "feet"),
  28758. name: "Hoofpaw",
  28759. image: {
  28760. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28761. }
  28762. },
  28763. leftHandBack: {
  28764. height: math.unit(0.938, "feet"),
  28765. name: "Left Hand (Back)",
  28766. image: {
  28767. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28768. }
  28769. },
  28770. leftHandFront: {
  28771. height: math.unit(0.938, "feet"),
  28772. name: "Left Hand (Front)",
  28773. image: {
  28774. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28775. }
  28776. },
  28777. rightHandBack: {
  28778. height: math.unit(0.95, "feet"),
  28779. name: "Right Hand (Back)",
  28780. image: {
  28781. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28782. }
  28783. },
  28784. rightHandFront: {
  28785. height: math.unit(0.95, "feet"),
  28786. name: "Right Hand (Front)",
  28787. image: {
  28788. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28789. }
  28790. },
  28791. },
  28792. [
  28793. {
  28794. name: "Normal",
  28795. height: math.unit(6 + 4 / 12, "feet"),
  28796. default: true
  28797. },
  28798. ]
  28799. ))
  28800. characterMakers.push(() => makeCharacter(
  28801. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28802. {
  28803. front: {
  28804. height: math.unit(6, "feet"),
  28805. weight: math.unit(320, "lb"),
  28806. name: "Front",
  28807. image: {
  28808. source: "./media/characters/balina-mejeri/front.svg",
  28809. extra: 517 / 488,
  28810. bottom: 44.2 / 561
  28811. }
  28812. },
  28813. },
  28814. [
  28815. {
  28816. name: "Normal",
  28817. height: math.unit(6 + 4 / 12, "feet")
  28818. },
  28819. {
  28820. name: "Business",
  28821. height: math.unit(155, "feet"),
  28822. default: true
  28823. },
  28824. ]
  28825. ))
  28826. characterMakers.push(() => makeCharacter(
  28827. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28828. {
  28829. kneeling: {
  28830. height: math.unit(6 + 4 / 12, "feet"),
  28831. weight: math.unit(300 * 20, "lb"),
  28832. name: "Kneeling",
  28833. image: {
  28834. source: "./media/characters/balbarian/kneeling.svg",
  28835. extra: 922 / 862,
  28836. bottom: 42.4 / 965
  28837. }
  28838. },
  28839. },
  28840. [
  28841. {
  28842. name: "Normal",
  28843. height: math.unit(6 + 4 / 12, "feet")
  28844. },
  28845. {
  28846. name: "Treasured",
  28847. height: math.unit(18 + 9 / 12, "feet"),
  28848. default: true
  28849. },
  28850. {
  28851. name: "Macro",
  28852. height: math.unit(900, "feet")
  28853. },
  28854. ]
  28855. ))
  28856. characterMakers.push(() => makeCharacter(
  28857. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28858. {
  28859. front: {
  28860. height: math.unit(6 + 4 / 12, "feet"),
  28861. weight: math.unit(325, "lb"),
  28862. name: "Front",
  28863. image: {
  28864. source: "./media/characters/balina-amarini/front.svg",
  28865. extra: 415 / 403,
  28866. bottom: 19 / 433.4
  28867. }
  28868. },
  28869. back: {
  28870. height: math.unit(6 + 4 / 12, "feet"),
  28871. weight: math.unit(325, "lb"),
  28872. name: "Back",
  28873. image: {
  28874. source: "./media/characters/balina-amarini/back.svg",
  28875. extra: 415 / 403,
  28876. bottom: 13.5 / 432
  28877. }
  28878. },
  28879. overdrive: {
  28880. height: math.unit(6 + 4 / 12, "feet"),
  28881. weight: math.unit(400, "lb"),
  28882. name: "Overdrive",
  28883. image: {
  28884. source: "./media/characters/balina-amarini/overdrive.svg",
  28885. extra: 269 / 259,
  28886. bottom: 12 / 282
  28887. }
  28888. },
  28889. },
  28890. [
  28891. {
  28892. name: "Boom",
  28893. height: math.unit(9 + 10 / 12, "feet"),
  28894. default: true
  28895. },
  28896. {
  28897. name: "Macro",
  28898. height: math.unit(280, "feet")
  28899. },
  28900. ]
  28901. ))
  28902. characterMakers.push(() => makeCharacter(
  28903. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28904. {
  28905. goddess: {
  28906. height: math.unit(600, "feet"),
  28907. weight: math.unit(2000000, "tons"),
  28908. name: "Goddess",
  28909. image: {
  28910. source: "./media/characters/lady-kubwa/goddess.svg",
  28911. extra: 1240.5 / 1223,
  28912. bottom: 22 / 1263
  28913. }
  28914. },
  28915. goddesser: {
  28916. height: math.unit(900, "feet"),
  28917. weight: math.unit(20000000, "lb"),
  28918. name: "Goddess-er",
  28919. image: {
  28920. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28921. extra: 899 / 888,
  28922. bottom: 12.6 / 912
  28923. }
  28924. },
  28925. },
  28926. [
  28927. {
  28928. name: "Macro",
  28929. height: math.unit(600, "feet"),
  28930. default: true
  28931. },
  28932. {
  28933. name: "Megamacro",
  28934. height: math.unit(250, "miles")
  28935. },
  28936. ]
  28937. ))
  28938. characterMakers.push(() => makeCharacter(
  28939. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28940. {
  28941. front: {
  28942. height: math.unit(7 + 7 / 12, "feet"),
  28943. weight: math.unit(250, "lb"),
  28944. name: "Front",
  28945. image: {
  28946. source: "./media/characters/tala-grovehorn/front.svg",
  28947. extra: 2636 / 2525,
  28948. bottom: 147 / 2781
  28949. }
  28950. },
  28951. back: {
  28952. height: math.unit(7 + 7 / 12, "feet"),
  28953. weight: math.unit(250, "lb"),
  28954. name: "Back",
  28955. image: {
  28956. source: "./media/characters/tala-grovehorn/back.svg",
  28957. extra: 2635 / 2539,
  28958. bottom: 100 / 2732.8
  28959. }
  28960. },
  28961. mouth: {
  28962. height: math.unit(1.15, "feet"),
  28963. name: "Mouth",
  28964. image: {
  28965. source: "./media/characters/tala-grovehorn/mouth.svg"
  28966. }
  28967. },
  28968. dick: {
  28969. height: math.unit(2.36, "feet"),
  28970. name: "Dick",
  28971. image: {
  28972. source: "./media/characters/tala-grovehorn/dick.svg"
  28973. }
  28974. },
  28975. slit: {
  28976. height: math.unit(0.61, "feet"),
  28977. name: "Slit",
  28978. image: {
  28979. source: "./media/characters/tala-grovehorn/slit.svg"
  28980. }
  28981. },
  28982. },
  28983. [
  28984. ]
  28985. ))
  28986. characterMakers.push(() => makeCharacter(
  28987. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28988. {
  28989. front: {
  28990. height: math.unit(7 + 7 / 12, "feet"),
  28991. weight: math.unit(225, "lb"),
  28992. name: "Front",
  28993. image: {
  28994. source: "./media/characters/epona/front.svg",
  28995. extra: 2445 / 2290,
  28996. bottom: 251 / 2696
  28997. }
  28998. },
  28999. back: {
  29000. height: math.unit(7 + 7 / 12, "feet"),
  29001. weight: math.unit(225, "lb"),
  29002. name: "Back",
  29003. image: {
  29004. source: "./media/characters/epona/back.svg",
  29005. extra: 2546 / 2408,
  29006. bottom: 44 / 2589
  29007. }
  29008. },
  29009. genitals: {
  29010. height: math.unit(1.5, "feet"),
  29011. name: "Genitals",
  29012. image: {
  29013. source: "./media/characters/epona/genitals.svg"
  29014. }
  29015. },
  29016. },
  29017. [
  29018. {
  29019. name: "Normal",
  29020. height: math.unit(7 + 7 / 12, "feet"),
  29021. default: true
  29022. },
  29023. ]
  29024. ))
  29025. characterMakers.push(() => makeCharacter(
  29026. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29027. {
  29028. front: {
  29029. height: math.unit(7, "feet"),
  29030. weight: math.unit(518, "lb"),
  29031. name: "Front",
  29032. image: {
  29033. source: "./media/characters/avia-bloodbourn/front.svg",
  29034. extra: 1466 / 1350,
  29035. bottom: 65 / 1527
  29036. }
  29037. },
  29038. },
  29039. [
  29040. ]
  29041. ))
  29042. characterMakers.push(() => makeCharacter(
  29043. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29044. {
  29045. front: {
  29046. height: math.unit(9.35, "feet"),
  29047. weight: math.unit(600, "lb"),
  29048. name: "Front",
  29049. image: {
  29050. source: "./media/characters/amera/front.svg",
  29051. extra: 891 / 818,
  29052. bottom: 30 / 922.7
  29053. }
  29054. },
  29055. back: {
  29056. height: math.unit(9.35, "feet"),
  29057. weight: math.unit(600, "lb"),
  29058. name: "Back",
  29059. image: {
  29060. source: "./media/characters/amera/back.svg",
  29061. extra: 876 / 824,
  29062. bottom: 6.8 / 884
  29063. }
  29064. },
  29065. dick: {
  29066. height: math.unit(2.14, "feet"),
  29067. name: "Dick",
  29068. image: {
  29069. source: "./media/characters/amera/dick.svg"
  29070. }
  29071. },
  29072. },
  29073. [
  29074. {
  29075. name: "Normal",
  29076. height: math.unit(9.35, "feet"),
  29077. default: true
  29078. },
  29079. ]
  29080. ))
  29081. characterMakers.push(() => makeCharacter(
  29082. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29083. {
  29084. kneeling: {
  29085. height: math.unit(3 + 4 / 12, "feet"),
  29086. weight: math.unit(90, "lb"),
  29087. name: "Kneeling",
  29088. image: {
  29089. source: "./media/characters/rosewen/kneeling.svg",
  29090. extra: 1835 / 1571,
  29091. bottom: 27.7 / 1862
  29092. }
  29093. },
  29094. },
  29095. [
  29096. {
  29097. name: "Normal",
  29098. height: math.unit(3 + 4 / 12, "feet"),
  29099. default: true
  29100. },
  29101. ]
  29102. ))
  29103. characterMakers.push(() => makeCharacter(
  29104. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29105. {
  29106. front: {
  29107. height: math.unit(5 + 10 / 12, "feet"),
  29108. weight: math.unit(200, "lb"),
  29109. name: "Front",
  29110. image: {
  29111. source: "./media/characters/sabah/front.svg",
  29112. extra: 849 / 763,
  29113. bottom: 33.9 / 881
  29114. }
  29115. },
  29116. },
  29117. [
  29118. {
  29119. name: "Normal",
  29120. height: math.unit(5 + 10 / 12, "feet"),
  29121. default: true
  29122. },
  29123. ]
  29124. ))
  29125. characterMakers.push(() => makeCharacter(
  29126. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29127. {
  29128. front: {
  29129. height: math.unit(3 + 5 / 12, "feet"),
  29130. weight: math.unit(40, "kg"),
  29131. name: "Front",
  29132. image: {
  29133. source: "./media/characters/purple-flame/front.svg",
  29134. extra: 1577 / 1412,
  29135. bottom: 97 / 1694
  29136. }
  29137. },
  29138. frontDressed: {
  29139. height: math.unit(3 + 5 / 12, "feet"),
  29140. weight: math.unit(40, "kg"),
  29141. name: "Front (Dressed)",
  29142. image: {
  29143. source: "./media/characters/purple-flame/front-dressed.svg",
  29144. extra: 1577 / 1412,
  29145. bottom: 97 / 1694
  29146. }
  29147. },
  29148. headphones: {
  29149. height: math.unit(0.85, "feet"),
  29150. name: "Headphones",
  29151. image: {
  29152. source: "./media/characters/purple-flame/headphones.svg"
  29153. }
  29154. },
  29155. },
  29156. [
  29157. {
  29158. name: "Really Small",
  29159. height: math.unit(5, "cm")
  29160. },
  29161. {
  29162. name: "Micro",
  29163. height: math.unit(1 + 5 / 12, "feet")
  29164. },
  29165. {
  29166. name: "Normal",
  29167. height: math.unit(3 + 5 / 12, "feet"),
  29168. default: true
  29169. },
  29170. {
  29171. name: "Minimacro",
  29172. height: math.unit(125, "feet")
  29173. },
  29174. {
  29175. name: "Macro",
  29176. height: math.unit(0.5, "miles")
  29177. },
  29178. {
  29179. name: "Megamacro",
  29180. height: math.unit(50, "miles")
  29181. },
  29182. {
  29183. name: "Gigantic",
  29184. height: math.unit(750, "miles")
  29185. },
  29186. {
  29187. name: "Planetary",
  29188. height: math.unit(15000, "miles")
  29189. },
  29190. ]
  29191. ))
  29192. characterMakers.push(() => makeCharacter(
  29193. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29194. {
  29195. front: {
  29196. height: math.unit(14, "feet"),
  29197. weight: math.unit(959, "lb"),
  29198. name: "Front",
  29199. image: {
  29200. source: "./media/characters/arsenal/front.svg",
  29201. extra: 2357 / 2157,
  29202. bottom: 93 / 2458
  29203. }
  29204. },
  29205. },
  29206. [
  29207. {
  29208. name: "Normal",
  29209. height: math.unit(14, "feet"),
  29210. default: true
  29211. },
  29212. ]
  29213. ))
  29214. characterMakers.push(() => makeCharacter(
  29215. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29216. {
  29217. front: {
  29218. height: math.unit(6, "feet"),
  29219. weight: math.unit(150, "lb"),
  29220. name: "Front",
  29221. image: {
  29222. source: "./media/characters/adira/front.svg",
  29223. extra: 1078 / 1029,
  29224. bottom: 87 / 1166
  29225. }
  29226. },
  29227. },
  29228. [
  29229. {
  29230. name: "Micro",
  29231. height: math.unit(4, "inches"),
  29232. default: true
  29233. },
  29234. {
  29235. name: "Macro",
  29236. height: math.unit(50, "feet")
  29237. },
  29238. ]
  29239. ))
  29240. characterMakers.push(() => makeCharacter(
  29241. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29242. {
  29243. front: {
  29244. height: math.unit(16, "feet"),
  29245. weight: math.unit(1000, "lb"),
  29246. name: "Front",
  29247. image: {
  29248. source: "./media/characters/grim/front.svg",
  29249. extra: 622 / 614,
  29250. bottom: 18.1 / 642
  29251. }
  29252. },
  29253. back: {
  29254. height: math.unit(16, "feet"),
  29255. weight: math.unit(1000, "lb"),
  29256. name: "Back",
  29257. image: {
  29258. source: "./media/characters/grim/back.svg",
  29259. extra: 610.6 / 602,
  29260. bottom: 40.8 / 652
  29261. }
  29262. },
  29263. hunched: {
  29264. height: math.unit(9.75, "feet"),
  29265. weight: math.unit(1000, "lb"),
  29266. name: "Hunched",
  29267. image: {
  29268. source: "./media/characters/grim/hunched.svg",
  29269. extra: 304 / 297,
  29270. bottom: 35.4 / 394
  29271. }
  29272. },
  29273. },
  29274. [
  29275. {
  29276. name: "Normal",
  29277. height: math.unit(16, "feet"),
  29278. default: true
  29279. },
  29280. ]
  29281. ))
  29282. characterMakers.push(() => makeCharacter(
  29283. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29284. {
  29285. front: {
  29286. height: math.unit(2.3, "meters"),
  29287. weight: math.unit(300, "lb"),
  29288. name: "Front",
  29289. image: {
  29290. source: "./media/characters/sinja/front-sfw.svg",
  29291. extra: 1393 / 1294,
  29292. bottom: 70 / 1463
  29293. }
  29294. },
  29295. frontNsfw: {
  29296. height: math.unit(2.3, "meters"),
  29297. weight: math.unit(300, "lb"),
  29298. name: "Front (NSFW)",
  29299. image: {
  29300. source: "./media/characters/sinja/front-nsfw.svg",
  29301. extra: 1393 / 1294,
  29302. bottom: 70 / 1463
  29303. }
  29304. },
  29305. back: {
  29306. height: math.unit(2.3, "meters"),
  29307. weight: math.unit(300, "lb"),
  29308. name: "Back",
  29309. image: {
  29310. source: "./media/characters/sinja/back.svg",
  29311. extra: 1393 / 1294,
  29312. bottom: 70 / 1463
  29313. }
  29314. },
  29315. head: {
  29316. height: math.unit(1.771, "feet"),
  29317. name: "Head",
  29318. image: {
  29319. source: "./media/characters/sinja/head.svg"
  29320. }
  29321. },
  29322. slit: {
  29323. height: math.unit(0.8, "feet"),
  29324. name: "Slit",
  29325. image: {
  29326. source: "./media/characters/sinja/slit.svg"
  29327. }
  29328. },
  29329. },
  29330. [
  29331. {
  29332. name: "Normal",
  29333. height: math.unit(2.3, "meters")
  29334. },
  29335. {
  29336. name: "Macro",
  29337. height: math.unit(91, "meters"),
  29338. default: true
  29339. },
  29340. {
  29341. name: "Megamacro",
  29342. height: math.unit(91440, "meters")
  29343. },
  29344. {
  29345. name: "Gigamacro",
  29346. height: math.unit(60960000, "meters")
  29347. },
  29348. {
  29349. name: "Teramacro",
  29350. height: math.unit(9144000000, "meters")
  29351. },
  29352. ]
  29353. ))
  29354. characterMakers.push(() => makeCharacter(
  29355. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29356. {
  29357. front: {
  29358. height: math.unit(1.7, "meters"),
  29359. weight: math.unit(130, "lb"),
  29360. name: "Front",
  29361. image: {
  29362. source: "./media/characters/kyu/front.svg",
  29363. extra: 415 / 395,
  29364. bottom: 5 / 420
  29365. }
  29366. },
  29367. head: {
  29368. height: math.unit(1.75, "feet"),
  29369. name: "Head",
  29370. image: {
  29371. source: "./media/characters/kyu/head.svg"
  29372. }
  29373. },
  29374. foot: {
  29375. height: math.unit(0.81, "feet"),
  29376. name: "Foot",
  29377. image: {
  29378. source: "./media/characters/kyu/foot.svg"
  29379. }
  29380. },
  29381. },
  29382. [
  29383. {
  29384. name: "Normal",
  29385. height: math.unit(1.7, "meters")
  29386. },
  29387. {
  29388. name: "Macro",
  29389. height: math.unit(131, "feet"),
  29390. default: true
  29391. },
  29392. {
  29393. name: "Megamacro",
  29394. height: math.unit(91440, "meters")
  29395. },
  29396. {
  29397. name: "Gigamacro",
  29398. height: math.unit(60960000, "meters")
  29399. },
  29400. {
  29401. name: "Teramacro",
  29402. height: math.unit(9144000000, "meters")
  29403. },
  29404. ]
  29405. ))
  29406. characterMakers.push(() => makeCharacter(
  29407. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29408. {
  29409. front: {
  29410. height: math.unit(7 + 1 / 12, "feet"),
  29411. weight: math.unit(250, "lb"),
  29412. name: "Front",
  29413. image: {
  29414. source: "./media/characters/joey/front.svg",
  29415. extra: 1791 / 1537,
  29416. bottom: 28 / 1816
  29417. }
  29418. },
  29419. },
  29420. [
  29421. {
  29422. name: "Micro",
  29423. height: math.unit(3, "inches")
  29424. },
  29425. {
  29426. name: "Normal",
  29427. height: math.unit(7 + 1 / 12, "feet"),
  29428. default: true
  29429. },
  29430. ]
  29431. ))
  29432. characterMakers.push(() => makeCharacter(
  29433. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29434. {
  29435. front: {
  29436. height: math.unit(165, "cm"),
  29437. weight: math.unit(140, "lb"),
  29438. name: "Front",
  29439. image: {
  29440. source: "./media/characters/sam-evans/front.svg",
  29441. extra: 3417 / 3230,
  29442. bottom: 41.3 / 3417
  29443. }
  29444. },
  29445. frontSixTails: {
  29446. height: math.unit(165, "cm"),
  29447. weight: math.unit(140, "lb"),
  29448. name: "Front-six-tails",
  29449. image: {
  29450. source: "./media/characters/sam-evans/front-six-tails.svg",
  29451. extra: 3417 / 3230,
  29452. bottom: 41.3 / 3417
  29453. }
  29454. },
  29455. back: {
  29456. height: math.unit(165, "cm"),
  29457. weight: math.unit(140, "lb"),
  29458. name: "Back",
  29459. image: {
  29460. source: "./media/characters/sam-evans/back.svg",
  29461. extra: 3227 / 3032,
  29462. bottom: 6.8 / 3234
  29463. }
  29464. },
  29465. face: {
  29466. height: math.unit(0.68, "feet"),
  29467. name: "Face",
  29468. image: {
  29469. source: "./media/characters/sam-evans/face.svg"
  29470. }
  29471. },
  29472. },
  29473. [
  29474. {
  29475. name: "Normal",
  29476. height: math.unit(165, "cm"),
  29477. default: true
  29478. },
  29479. {
  29480. name: "Macro",
  29481. height: math.unit(100, "meters")
  29482. },
  29483. {
  29484. name: "Macro+",
  29485. height: math.unit(800, "meters")
  29486. },
  29487. {
  29488. name: "Macro++",
  29489. height: math.unit(3, "km")
  29490. },
  29491. {
  29492. name: "Macro+++",
  29493. height: math.unit(30, "km")
  29494. },
  29495. ]
  29496. ))
  29497. characterMakers.push(() => makeCharacter(
  29498. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29499. {
  29500. front: {
  29501. height: math.unit(10, "feet"),
  29502. weight: math.unit(750, "lb"),
  29503. name: "Front",
  29504. image: {
  29505. source: "./media/characters/juliet-a/front.svg",
  29506. extra: 1766 / 1720,
  29507. bottom: 43 / 1809
  29508. }
  29509. },
  29510. back: {
  29511. height: math.unit(10, "feet"),
  29512. weight: math.unit(750, "lb"),
  29513. name: "Back",
  29514. image: {
  29515. source: "./media/characters/juliet-a/back.svg",
  29516. extra: 1781 / 1734,
  29517. bottom: 35 / 1810,
  29518. }
  29519. },
  29520. },
  29521. [
  29522. {
  29523. name: "Normal",
  29524. height: math.unit(10, "feet"),
  29525. default: true
  29526. },
  29527. {
  29528. name: "Dragon Form",
  29529. height: math.unit(250, "feet")
  29530. },
  29531. {
  29532. name: "Macro",
  29533. height: math.unit(1000, "feet")
  29534. },
  29535. {
  29536. name: "Megamacro",
  29537. height: math.unit(10000, "feet")
  29538. }
  29539. ]
  29540. ))
  29541. characterMakers.push(() => makeCharacter(
  29542. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29543. {
  29544. regular: {
  29545. height: math.unit(7 + 3 / 12, "feet"),
  29546. weight: math.unit(260, "lb"),
  29547. name: "Regular",
  29548. image: {
  29549. source: "./media/characters/wild/regular.svg",
  29550. extra: 97.45 / 92,
  29551. bottom: 6.8 / 104.3
  29552. }
  29553. },
  29554. biggums: {
  29555. height: math.unit(8 + 6 / 12, "feet"),
  29556. weight: math.unit(425, "lb"),
  29557. name: "Biggums",
  29558. image: {
  29559. source: "./media/characters/wild/biggums.svg",
  29560. extra: 97.45 / 92,
  29561. bottom: 7.5 / 132.34
  29562. }
  29563. },
  29564. mawRegular: {
  29565. height: math.unit(1.24, "feet"),
  29566. name: "Maw (Regular)",
  29567. image: {
  29568. source: "./media/characters/wild/maw.svg"
  29569. }
  29570. },
  29571. mawBiggums: {
  29572. height: math.unit(1.47, "feet"),
  29573. name: "Maw (Biggums)",
  29574. image: {
  29575. source: "./media/characters/wild/maw.svg"
  29576. }
  29577. },
  29578. },
  29579. [
  29580. {
  29581. name: "Normal",
  29582. height: math.unit(7 + 3 / 12, "feet"),
  29583. default: true
  29584. },
  29585. ]
  29586. ))
  29587. characterMakers.push(() => makeCharacter(
  29588. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29589. {
  29590. front: {
  29591. height: math.unit(2.5, "meters"),
  29592. weight: math.unit(200, "kg"),
  29593. name: "Front",
  29594. image: {
  29595. source: "./media/characters/vidar/front.svg",
  29596. extra: 2994 / 2795,
  29597. bottom: 56 / 3061
  29598. }
  29599. },
  29600. back: {
  29601. height: math.unit(2.5, "meters"),
  29602. weight: math.unit(200, "kg"),
  29603. name: "Back",
  29604. image: {
  29605. source: "./media/characters/vidar/back.svg",
  29606. extra: 3131 / 2928,
  29607. bottom: 13.5 / 3141.5
  29608. }
  29609. },
  29610. feral: {
  29611. height: math.unit(2.5, "meters"),
  29612. weight: math.unit(2000, "kg"),
  29613. name: "Feral",
  29614. image: {
  29615. source: "./media/characters/vidar/feral.svg",
  29616. extra: 2790 / 1765,
  29617. bottom: 6 / 2796
  29618. }
  29619. },
  29620. },
  29621. [
  29622. {
  29623. name: "Normal",
  29624. height: math.unit(2.5, "meters"),
  29625. default: true
  29626. },
  29627. {
  29628. name: "Macro",
  29629. height: math.unit(100, "meters")
  29630. },
  29631. ]
  29632. ))
  29633. characterMakers.push(() => makeCharacter(
  29634. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29635. {
  29636. front: {
  29637. height: math.unit(5 + 9 / 12, "feet"),
  29638. weight: math.unit(120, "lb"),
  29639. name: "Front",
  29640. image: {
  29641. source: "./media/characters/ash/front.svg",
  29642. extra: 2189 / 1961,
  29643. bottom: 5.2 / 2194
  29644. }
  29645. },
  29646. },
  29647. [
  29648. {
  29649. name: "Normal",
  29650. height: math.unit(5 + 9 / 12, "feet"),
  29651. default: true
  29652. },
  29653. ]
  29654. ))
  29655. characterMakers.push(() => makeCharacter(
  29656. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29657. {
  29658. front: {
  29659. height: math.unit(9, "feet"),
  29660. weight: math.unit(10000, "lb"),
  29661. name: "Front",
  29662. image: {
  29663. source: "./media/characters/gygabite/front.svg",
  29664. bottom: 31.7 / 537.8,
  29665. extra: 505 / 370
  29666. }
  29667. },
  29668. },
  29669. [
  29670. {
  29671. name: "Normal",
  29672. height: math.unit(9, "feet"),
  29673. default: true
  29674. },
  29675. ]
  29676. ))
  29677. characterMakers.push(() => makeCharacter(
  29678. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29679. {
  29680. front: {
  29681. height: math.unit(12, "feet"),
  29682. weight: math.unit(4000, "lb"),
  29683. name: "Front",
  29684. image: {
  29685. source: "./media/characters/p0tat0/front.svg",
  29686. extra: 1065 / 921,
  29687. bottom: 55.7 / 1121.25
  29688. }
  29689. },
  29690. },
  29691. [
  29692. {
  29693. name: "Normal",
  29694. height: math.unit(12, "feet"),
  29695. default: true
  29696. },
  29697. ]
  29698. ))
  29699. characterMakers.push(() => makeCharacter(
  29700. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29701. {
  29702. side: {
  29703. height: math.unit(6.5, "feet"),
  29704. weight: math.unit(800, "lb"),
  29705. name: "Side",
  29706. image: {
  29707. source: "./media/characters/dusk/side.svg",
  29708. extra: 615 / 373,
  29709. bottom: 53 / 664
  29710. }
  29711. },
  29712. sitting: {
  29713. height: math.unit(7, "feet"),
  29714. weight: math.unit(800, "lb"),
  29715. name: "Sitting",
  29716. image: {
  29717. source: "./media/characters/dusk/sitting.svg",
  29718. extra: 753 / 425,
  29719. bottom: 33 / 774
  29720. }
  29721. },
  29722. head: {
  29723. height: math.unit(6.1, "feet"),
  29724. name: "Head",
  29725. image: {
  29726. source: "./media/characters/dusk/head.svg"
  29727. }
  29728. },
  29729. },
  29730. [
  29731. {
  29732. name: "Normal",
  29733. height: math.unit(7, "feet"),
  29734. default: true
  29735. },
  29736. ]
  29737. ))
  29738. characterMakers.push(() => makeCharacter(
  29739. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29740. {
  29741. front: {
  29742. height: math.unit(15, "feet"),
  29743. weight: math.unit(7000, "lb"),
  29744. name: "Front",
  29745. image: {
  29746. source: "./media/characters/jay-direwolf/front.svg",
  29747. extra: 1810 / 1732,
  29748. bottom: 66 / 1892
  29749. }
  29750. },
  29751. },
  29752. [
  29753. {
  29754. name: "Normal",
  29755. height: math.unit(15, "feet"),
  29756. default: true
  29757. },
  29758. ]
  29759. ))
  29760. characterMakers.push(() => makeCharacter(
  29761. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29762. {
  29763. front: {
  29764. height: math.unit(4 + 9 / 12, "feet"),
  29765. weight: math.unit(130, "lb"),
  29766. name: "Front",
  29767. image: {
  29768. source: "./media/characters/anchovie/front.svg",
  29769. extra: 382 / 350,
  29770. bottom: 25 / 409
  29771. }
  29772. },
  29773. back: {
  29774. height: math.unit(4 + 9 / 12, "feet"),
  29775. weight: math.unit(130, "lb"),
  29776. name: "Back",
  29777. image: {
  29778. source: "./media/characters/anchovie/back.svg",
  29779. extra: 385 / 352,
  29780. bottom: 16.6 / 402
  29781. }
  29782. },
  29783. frontDressed: {
  29784. height: math.unit(4 + 9 / 12, "feet"),
  29785. weight: math.unit(130, "lb"),
  29786. name: "Front (Dressed)",
  29787. image: {
  29788. source: "./media/characters/anchovie/front-dressed.svg",
  29789. extra: 382 / 350,
  29790. bottom: 25 / 409
  29791. }
  29792. },
  29793. backDressed: {
  29794. height: math.unit(4 + 9 / 12, "feet"),
  29795. weight: math.unit(130, "lb"),
  29796. name: "Back (Dressed)",
  29797. image: {
  29798. source: "./media/characters/anchovie/back-dressed.svg",
  29799. extra: 385 / 352,
  29800. bottom: 16.6 / 402
  29801. }
  29802. },
  29803. },
  29804. [
  29805. {
  29806. name: "Micro",
  29807. height: math.unit(6.4, "inches")
  29808. },
  29809. {
  29810. name: "Normal",
  29811. height: math.unit(4 + 9 / 12, "feet"),
  29812. default: true
  29813. },
  29814. ]
  29815. ))
  29816. characterMakers.push(() => makeCharacter(
  29817. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29818. {
  29819. front: {
  29820. height: math.unit(2, "meters"),
  29821. weight: math.unit(180, "lb"),
  29822. name: "Front",
  29823. image: {
  29824. source: "./media/characters/acidrenamon/front.svg",
  29825. extra: 987 / 890,
  29826. bottom: 22.8 / 1009
  29827. }
  29828. },
  29829. back: {
  29830. height: math.unit(2, "meters"),
  29831. weight: math.unit(180, "lb"),
  29832. name: "Back",
  29833. image: {
  29834. source: "./media/characters/acidrenamon/back.svg",
  29835. extra: 983 / 891,
  29836. bottom: 8.4 / 992
  29837. }
  29838. },
  29839. head: {
  29840. height: math.unit(1.92, "feet"),
  29841. name: "Head",
  29842. image: {
  29843. source: "./media/characters/acidrenamon/head.svg"
  29844. }
  29845. },
  29846. rump: {
  29847. height: math.unit(1.72, "feet"),
  29848. name: "Rump",
  29849. image: {
  29850. source: "./media/characters/acidrenamon/rump.svg"
  29851. }
  29852. },
  29853. tail: {
  29854. height: math.unit(4.2, "feet"),
  29855. name: "Tail",
  29856. image: {
  29857. source: "./media/characters/acidrenamon/tail.svg"
  29858. }
  29859. },
  29860. },
  29861. [
  29862. {
  29863. name: "Normal",
  29864. height: math.unit(2, "meters"),
  29865. default: true
  29866. },
  29867. {
  29868. name: "Minimacro",
  29869. height: math.unit(7, "meters")
  29870. },
  29871. {
  29872. name: "Macro",
  29873. height: math.unit(200, "meters")
  29874. },
  29875. {
  29876. name: "Gigamacro",
  29877. height: math.unit(0.2, "earths")
  29878. },
  29879. ]
  29880. ))
  29881. characterMakers.push(() => makeCharacter(
  29882. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29883. {
  29884. front: {
  29885. height: math.unit(152, "feet"),
  29886. name: "Front",
  29887. image: {
  29888. source: "./media/characters/kenzie-lee/front.svg",
  29889. extra: 1869/1774,
  29890. bottom: 128/1997
  29891. }
  29892. },
  29893. side: {
  29894. height: math.unit(86, "feet"),
  29895. name: "Side",
  29896. image: {
  29897. source: "./media/characters/kenzie-lee/side.svg",
  29898. extra: 930/815,
  29899. bottom: 177/1107
  29900. }
  29901. },
  29902. paw: {
  29903. height: math.unit(15, "feet"),
  29904. name: "Paw",
  29905. image: {
  29906. source: "./media/characters/kenzie-lee/paw.svg"
  29907. }
  29908. },
  29909. },
  29910. [
  29911. {
  29912. name: "Kenzie Flea",
  29913. height: math.unit(2, "mm"),
  29914. default: true
  29915. },
  29916. {
  29917. name: "Micro",
  29918. height: math.unit(2, "inches")
  29919. },
  29920. {
  29921. name: "Normal",
  29922. height: math.unit(152, "feet")
  29923. },
  29924. {
  29925. name: "Megamacro",
  29926. height: math.unit(7, "miles")
  29927. },
  29928. {
  29929. name: "Gigamacro",
  29930. height: math.unit(8000, "miles")
  29931. },
  29932. ]
  29933. ))
  29934. characterMakers.push(() => makeCharacter(
  29935. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29936. {
  29937. front: {
  29938. height: math.unit(6, "feet"),
  29939. name: "Front",
  29940. image: {
  29941. source: "./media/characters/withers/front.svg",
  29942. extra: 1935/1760,
  29943. bottom: 72/2007
  29944. }
  29945. },
  29946. back: {
  29947. height: math.unit(6, "feet"),
  29948. name: "Back",
  29949. image: {
  29950. source: "./media/characters/withers/back.svg",
  29951. extra: 1944/1792,
  29952. bottom: 12/1956
  29953. }
  29954. },
  29955. dressed: {
  29956. height: math.unit(6, "feet"),
  29957. name: "Dressed",
  29958. image: {
  29959. source: "./media/characters/withers/dressed.svg",
  29960. extra: 1937/1765,
  29961. bottom: 73/2010
  29962. }
  29963. },
  29964. phase1: {
  29965. height: math.unit(1.1, "feet"),
  29966. name: "Phase 1",
  29967. image: {
  29968. source: "./media/characters/withers/phase-1.svg",
  29969. extra: 1885/1232,
  29970. bottom: 0/1885
  29971. }
  29972. },
  29973. phase2: {
  29974. height: math.unit(1.05, "feet"),
  29975. name: "Phase 2",
  29976. image: {
  29977. source: "./media/characters/withers/phase-2.svg",
  29978. extra: 1792/1090,
  29979. bottom: 0/1792
  29980. }
  29981. },
  29982. partyWipe: {
  29983. height: math.unit(1.1, "feet"),
  29984. name: "Party Wipe",
  29985. image: {
  29986. source: "./media/characters/withers/party-wipe.svg",
  29987. extra: 1864/1207,
  29988. bottom: 0/1864
  29989. }
  29990. },
  29991. },
  29992. [
  29993. {
  29994. name: "Macro",
  29995. height: math.unit(167, "feet"),
  29996. default: true
  29997. },
  29998. {
  29999. name: "Megamacro",
  30000. height: math.unit(15, "miles")
  30001. }
  30002. ]
  30003. ))
  30004. characterMakers.push(() => makeCharacter(
  30005. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30006. {
  30007. front: {
  30008. height: math.unit(6 + 7 / 12, "feet"),
  30009. weight: math.unit(250, "lb"),
  30010. name: "Front",
  30011. image: {
  30012. source: "./media/characters/nemoskii/front.svg",
  30013. extra: 2270 / 1734,
  30014. bottom: 86 / 2354
  30015. }
  30016. },
  30017. back: {
  30018. height: math.unit(6 + 7 / 12, "feet"),
  30019. weight: math.unit(250, "lb"),
  30020. name: "Back",
  30021. image: {
  30022. source: "./media/characters/nemoskii/back.svg",
  30023. extra: 1845 / 1788,
  30024. bottom: 10.5 / 1852
  30025. }
  30026. },
  30027. head: {
  30028. height: math.unit(1.31, "feet"),
  30029. name: "Head",
  30030. image: {
  30031. source: "./media/characters/nemoskii/head.svg"
  30032. }
  30033. },
  30034. },
  30035. [
  30036. {
  30037. name: "Micro",
  30038. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30039. },
  30040. {
  30041. name: "Normal",
  30042. height: math.unit(6 + 7 / 12, "feet"),
  30043. default: true
  30044. },
  30045. {
  30046. name: "Macro",
  30047. height: math.unit((6 + 7 / 12) * 150, "feet")
  30048. },
  30049. {
  30050. name: "Macro+",
  30051. height: math.unit((6 + 7 / 12) * 500, "feet")
  30052. },
  30053. {
  30054. name: "Megamacro",
  30055. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30056. },
  30057. ]
  30058. ))
  30059. characterMakers.push(() => makeCharacter(
  30060. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30061. {
  30062. front: {
  30063. height: math.unit(1, "mile"),
  30064. weight: math.unit(265261.9, "lb"),
  30065. name: "Front",
  30066. image: {
  30067. source: "./media/characters/shui/front.svg",
  30068. extra: 1633 / 1564,
  30069. bottom: 91.5 / 1726
  30070. }
  30071. },
  30072. },
  30073. [
  30074. {
  30075. name: "Macro",
  30076. height: math.unit(1, "mile"),
  30077. default: true
  30078. },
  30079. ]
  30080. ))
  30081. characterMakers.push(() => makeCharacter(
  30082. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30083. {
  30084. front: {
  30085. height: math.unit(12 + 6 / 12, "feet"),
  30086. weight: math.unit(1342, "lb"),
  30087. name: "Front",
  30088. image: {
  30089. source: "./media/characters/arokh-takakura/front.svg",
  30090. extra: 1089 / 1043,
  30091. bottom: 77.4 / 1176.7
  30092. }
  30093. },
  30094. back: {
  30095. height: math.unit(12 + 6 / 12, "feet"),
  30096. weight: math.unit(1342, "lb"),
  30097. name: "Back",
  30098. image: {
  30099. source: "./media/characters/arokh-takakura/back.svg",
  30100. extra: 1046 / 1019,
  30101. bottom: 102 / 1150
  30102. }
  30103. },
  30104. },
  30105. [
  30106. {
  30107. name: "Big",
  30108. height: math.unit(12 + 6 / 12, "feet"),
  30109. default: true
  30110. },
  30111. ]
  30112. ))
  30113. characterMakers.push(() => makeCharacter(
  30114. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30115. {
  30116. front: {
  30117. height: math.unit(5 + 6 / 12, "feet"),
  30118. weight: math.unit(150, "lb"),
  30119. name: "Front",
  30120. image: {
  30121. source: "./media/characters/theo/front.svg",
  30122. extra: 1184 / 1131,
  30123. bottom: 7.4 / 1191
  30124. }
  30125. },
  30126. },
  30127. [
  30128. {
  30129. name: "Micro",
  30130. height: math.unit(5, "inches")
  30131. },
  30132. {
  30133. name: "Normal",
  30134. height: math.unit(5 + 6 / 12, "feet"),
  30135. default: true
  30136. },
  30137. ]
  30138. ))
  30139. characterMakers.push(() => makeCharacter(
  30140. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30141. {
  30142. front: {
  30143. height: math.unit(5 + 9 / 12, "feet"),
  30144. weight: math.unit(130, "lb"),
  30145. name: "Front",
  30146. image: {
  30147. source: "./media/characters/cecelia-swift/front.svg",
  30148. extra: 502 / 484,
  30149. bottom: 23 / 523
  30150. }
  30151. },
  30152. back: {
  30153. height: math.unit(5 + 9 / 12, "feet"),
  30154. weight: math.unit(130, "lb"),
  30155. name: "Back",
  30156. image: {
  30157. source: "./media/characters/cecelia-swift/back.svg",
  30158. extra: 499 / 485,
  30159. bottom: 12 / 511
  30160. }
  30161. },
  30162. head: {
  30163. height: math.unit(0.90, "feet"),
  30164. name: "Head",
  30165. image: {
  30166. source: "./media/characters/cecelia-swift/head.svg"
  30167. }
  30168. },
  30169. rump: {
  30170. height: math.unit(1.75, "feet"),
  30171. name: "Rump",
  30172. image: {
  30173. source: "./media/characters/cecelia-swift/rump.svg"
  30174. }
  30175. },
  30176. },
  30177. [
  30178. {
  30179. name: "Normal",
  30180. height: math.unit(5 + 9 / 12, "feet"),
  30181. default: true
  30182. },
  30183. {
  30184. name: "Big",
  30185. height: math.unit(50, "feet")
  30186. },
  30187. {
  30188. name: "Macro",
  30189. height: math.unit(100, "feet")
  30190. },
  30191. {
  30192. name: "Macro+",
  30193. height: math.unit(500, "feet")
  30194. },
  30195. {
  30196. name: "Macro++",
  30197. height: math.unit(1000, "feet")
  30198. },
  30199. ]
  30200. ))
  30201. characterMakers.push(() => makeCharacter(
  30202. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30203. {
  30204. front: {
  30205. height: math.unit(6, "feet"),
  30206. weight: math.unit(150, "lb"),
  30207. name: "Front",
  30208. image: {
  30209. source: "./media/characters/kaunan/front.svg",
  30210. extra: 2890 / 2523,
  30211. bottom: 49 / 2939
  30212. }
  30213. },
  30214. },
  30215. [
  30216. {
  30217. name: "Macro",
  30218. height: math.unit(150, "feet"),
  30219. default: true
  30220. },
  30221. ]
  30222. ))
  30223. characterMakers.push(() => makeCharacter(
  30224. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30225. {
  30226. dressed: {
  30227. height: math.unit(175, "cm"),
  30228. weight: math.unit(60, "kg"),
  30229. name: "Dressed",
  30230. image: {
  30231. source: "./media/characters/fei/dressed.svg",
  30232. extra: 1402/1278,
  30233. bottom: 27/1429
  30234. }
  30235. },
  30236. nude: {
  30237. height: math.unit(175, "cm"),
  30238. weight: math.unit(60, "kg"),
  30239. name: "Nude",
  30240. image: {
  30241. source: "./media/characters/fei/nude.svg",
  30242. extra: 1402/1278,
  30243. bottom: 27/1429
  30244. }
  30245. },
  30246. heels: {
  30247. height: math.unit(0.466, "feet"),
  30248. name: "Heels",
  30249. image: {
  30250. source: "./media/characters/fei/heels.svg",
  30251. extra: 156/152,
  30252. bottom: 28/184
  30253. }
  30254. },
  30255. },
  30256. [
  30257. {
  30258. name: "Mortal",
  30259. height: math.unit(175, "cm")
  30260. },
  30261. {
  30262. name: "Normal",
  30263. height: math.unit(3500, "m")
  30264. },
  30265. {
  30266. name: "Stroll",
  30267. height: math.unit(18.4, "km"),
  30268. default: true
  30269. },
  30270. {
  30271. name: "Showoff",
  30272. height: math.unit(175, "km")
  30273. },
  30274. ]
  30275. ))
  30276. characterMakers.push(() => makeCharacter(
  30277. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30278. {
  30279. front: {
  30280. height: math.unit(7, "feet"),
  30281. weight: math.unit(1000, "kg"),
  30282. name: "Front",
  30283. image: {
  30284. source: "./media/characters/edrax/front.svg",
  30285. extra: 2838 / 2550,
  30286. bottom: 130 / 2968
  30287. }
  30288. },
  30289. },
  30290. [
  30291. {
  30292. name: "Small",
  30293. height: math.unit(7, "feet")
  30294. },
  30295. {
  30296. name: "Normal",
  30297. height: math.unit(1500, "meters")
  30298. },
  30299. {
  30300. name: "Mega",
  30301. height: math.unit(12000000, "km"),
  30302. default: true
  30303. },
  30304. {
  30305. name: "Megamacro",
  30306. height: math.unit(10600000, "lightyears")
  30307. },
  30308. {
  30309. name: "Hypermacro",
  30310. height: math.unit(256, "yottameters")
  30311. },
  30312. ]
  30313. ))
  30314. characterMakers.push(() => makeCharacter(
  30315. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30316. {
  30317. front: {
  30318. height: math.unit(10, "feet"),
  30319. weight: math.unit(750, "lb"),
  30320. name: "Front",
  30321. image: {
  30322. source: "./media/characters/clove/front.svg",
  30323. extra: 1918/1751,
  30324. bottom: 52/1970
  30325. }
  30326. },
  30327. back: {
  30328. height: math.unit(10, "feet"),
  30329. weight: math.unit(750, "lb"),
  30330. name: "Back",
  30331. image: {
  30332. source: "./media/characters/clove/back.svg",
  30333. extra: 1912/1747,
  30334. bottom: 50/1962
  30335. }
  30336. },
  30337. },
  30338. [
  30339. {
  30340. name: "Normal",
  30341. height: math.unit(10, "feet"),
  30342. default: true
  30343. },
  30344. ]
  30345. ))
  30346. characterMakers.push(() => makeCharacter(
  30347. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30348. {
  30349. front: {
  30350. height: math.unit(4, "feet"),
  30351. weight: math.unit(50, "lb"),
  30352. name: "Front",
  30353. image: {
  30354. source: "./media/characters/alex-rabbit/front.svg",
  30355. extra: 507 / 458,
  30356. bottom: 18.5 / 527
  30357. }
  30358. },
  30359. back: {
  30360. height: math.unit(4, "feet"),
  30361. weight: math.unit(50, "lb"),
  30362. name: "Back",
  30363. image: {
  30364. source: "./media/characters/alex-rabbit/back.svg",
  30365. extra: 502 / 460,
  30366. bottom: 18.9 / 521
  30367. }
  30368. },
  30369. },
  30370. [
  30371. {
  30372. name: "Normal",
  30373. height: math.unit(4, "feet"),
  30374. default: true
  30375. },
  30376. ]
  30377. ))
  30378. characterMakers.push(() => makeCharacter(
  30379. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30380. {
  30381. front: {
  30382. height: math.unit(1 + 3 / 12, "feet"),
  30383. weight: math.unit(80, "lb"),
  30384. name: "Front",
  30385. image: {
  30386. source: "./media/characters/zander-rose/front.svg",
  30387. extra: 916 / 797,
  30388. bottom: 17 / 933
  30389. }
  30390. },
  30391. back: {
  30392. height: math.unit(1 + 3 / 12, "feet"),
  30393. weight: math.unit(80, "lb"),
  30394. name: "Back",
  30395. image: {
  30396. source: "./media/characters/zander-rose/back.svg",
  30397. extra: 903 / 779,
  30398. bottom: 31 / 934
  30399. }
  30400. },
  30401. },
  30402. [
  30403. {
  30404. name: "Normal",
  30405. height: math.unit(1 + 3 / 12, "feet"),
  30406. default: true
  30407. },
  30408. ]
  30409. ))
  30410. characterMakers.push(() => makeCharacter(
  30411. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30412. {
  30413. anthro: {
  30414. height: math.unit(6, "feet"),
  30415. weight: math.unit(150, "lb"),
  30416. name: "Anthro",
  30417. image: {
  30418. source: "./media/characters/razz/anthro.svg",
  30419. extra: 1437 / 1343,
  30420. bottom: 48 / 1485
  30421. }
  30422. },
  30423. feral: {
  30424. height: math.unit(6, "feet"),
  30425. weight: math.unit(150, "lb"),
  30426. name: "Feral",
  30427. image: {
  30428. source: "./media/characters/razz/feral.svg",
  30429. extra: 2569 / 1385,
  30430. bottom: 95 / 2664
  30431. }
  30432. },
  30433. },
  30434. [
  30435. {
  30436. name: "Normal",
  30437. height: math.unit(6, "feet"),
  30438. default: true
  30439. },
  30440. ]
  30441. ))
  30442. characterMakers.push(() => makeCharacter(
  30443. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30444. {
  30445. front: {
  30446. height: math.unit(9 + 4 / 12, "feet"),
  30447. weight: math.unit(500, "lb"),
  30448. name: "Front",
  30449. image: {
  30450. source: "./media/characters/morrigan/front.svg",
  30451. extra: 2707 / 2579,
  30452. bottom: 156 / 2863
  30453. }
  30454. },
  30455. },
  30456. [
  30457. {
  30458. name: "Normal",
  30459. height: math.unit(9 + 4 / 12, "feet"),
  30460. default: true
  30461. },
  30462. ]
  30463. ))
  30464. characterMakers.push(() => makeCharacter(
  30465. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30466. {
  30467. front: {
  30468. height: math.unit(5, "stories"),
  30469. weight: math.unit(4000, "lb"),
  30470. name: "Front",
  30471. image: {
  30472. source: "./media/characters/jenene/front.svg",
  30473. extra: 1780 / 1710,
  30474. bottom: 57 / 1837
  30475. }
  30476. },
  30477. },
  30478. [
  30479. {
  30480. name: "Normal",
  30481. height: math.unit(5, "stories"),
  30482. default: true
  30483. },
  30484. ]
  30485. ))
  30486. characterMakers.push(() => makeCharacter(
  30487. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30488. {
  30489. taurSfw: {
  30490. height: math.unit(10, "meters"),
  30491. weight: math.unit(17500, "kg"),
  30492. name: "Taur",
  30493. image: {
  30494. source: "./media/characters/faey/taur-sfw.svg",
  30495. extra: 1200 / 968,
  30496. bottom: 41 / 1241
  30497. }
  30498. },
  30499. chestmaw: {
  30500. height: math.unit(2.01, "meters"),
  30501. name: "Chestmaw",
  30502. image: {
  30503. source: "./media/characters/faey/chestmaw.svg"
  30504. }
  30505. },
  30506. foot: {
  30507. height: math.unit(2.43, "meters"),
  30508. name: "Foot",
  30509. image: {
  30510. source: "./media/characters/faey/foot.svg"
  30511. }
  30512. },
  30513. jaws: {
  30514. height: math.unit(1.66, "meters"),
  30515. name: "Jaws",
  30516. image: {
  30517. source: "./media/characters/faey/jaws.svg"
  30518. }
  30519. },
  30520. tongues: {
  30521. height: math.unit(2.01, "meters"),
  30522. name: "Tongues",
  30523. image: {
  30524. source: "./media/characters/faey/tongues.svg"
  30525. }
  30526. },
  30527. },
  30528. [
  30529. {
  30530. name: "Small",
  30531. height: math.unit(10, "meters"),
  30532. default: true
  30533. },
  30534. {
  30535. name: "Big",
  30536. height: math.unit(500000, "km")
  30537. },
  30538. ]
  30539. ))
  30540. characterMakers.push(() => makeCharacter(
  30541. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30542. {
  30543. front: {
  30544. height: math.unit(7, "feet"),
  30545. weight: math.unit(275, "lb"),
  30546. name: "Front",
  30547. image: {
  30548. source: "./media/characters/roku/front.svg",
  30549. extra: 903 / 878,
  30550. bottom: 37 / 940
  30551. }
  30552. },
  30553. },
  30554. [
  30555. {
  30556. name: "Normal",
  30557. height: math.unit(7, "feet"),
  30558. default: true
  30559. },
  30560. {
  30561. name: "Macro",
  30562. height: math.unit(500, "feet")
  30563. },
  30564. {
  30565. name: "Megamacro",
  30566. height: math.unit(200, "miles")
  30567. },
  30568. ]
  30569. ))
  30570. characterMakers.push(() => makeCharacter(
  30571. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30572. {
  30573. front: {
  30574. height: math.unit(6 + 2 / 12, "feet"),
  30575. weight: math.unit(150, "lb"),
  30576. name: "Front",
  30577. image: {
  30578. source: "./media/characters/lira/front.svg",
  30579. extra: 1727 / 1605,
  30580. bottom: 26 / 1753
  30581. }
  30582. },
  30583. back: {
  30584. height: math.unit(6 + 2 / 12, "feet"),
  30585. weight: math.unit(150, "lb"),
  30586. name: "Back",
  30587. image: {
  30588. source: "./media/characters/lira/back.svg",
  30589. extra: 1713/1621,
  30590. bottom: 20/1733
  30591. }
  30592. },
  30593. hand: {
  30594. height: math.unit(0.75, "feet"),
  30595. name: "Hand",
  30596. image: {
  30597. source: "./media/characters/lira/hand.svg"
  30598. }
  30599. },
  30600. maw: {
  30601. height: math.unit(0.65, "feet"),
  30602. name: "Maw",
  30603. image: {
  30604. source: "./media/characters/lira/maw.svg"
  30605. }
  30606. },
  30607. pawDigi: {
  30608. height: math.unit(1.6, "feet"),
  30609. name: "Paw Digi",
  30610. image: {
  30611. source: "./media/characters/lira/paw-digi.svg"
  30612. }
  30613. },
  30614. pawPlanti: {
  30615. height: math.unit(1.4, "feet"),
  30616. name: "Paw Planti",
  30617. image: {
  30618. source: "./media/characters/lira/paw-planti.svg"
  30619. }
  30620. },
  30621. },
  30622. [
  30623. {
  30624. name: "Normal",
  30625. height: math.unit(6 + 2 / 12, "feet"),
  30626. default: true
  30627. },
  30628. {
  30629. name: "Macro",
  30630. height: math.unit(100, "feet")
  30631. },
  30632. {
  30633. name: "Macro²",
  30634. height: math.unit(1600, "feet")
  30635. },
  30636. {
  30637. name: "Planetary",
  30638. height: math.unit(20, "earths")
  30639. },
  30640. ]
  30641. ))
  30642. characterMakers.push(() => makeCharacter(
  30643. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30644. {
  30645. front: {
  30646. height: math.unit(6, "feet"),
  30647. weight: math.unit(150, "lb"),
  30648. name: "Front",
  30649. image: {
  30650. source: "./media/characters/hadjet/front.svg",
  30651. extra: 1480 / 1346,
  30652. bottom: 26 / 1506
  30653. }
  30654. },
  30655. frontNsfw: {
  30656. height: math.unit(6, "feet"),
  30657. weight: math.unit(150, "lb"),
  30658. name: "Front (NSFW)",
  30659. image: {
  30660. source: "./media/characters/hadjet/front-nsfw.svg",
  30661. extra: 1440 / 1358,
  30662. bottom: 52 / 1492
  30663. }
  30664. },
  30665. },
  30666. [
  30667. {
  30668. name: "Macro",
  30669. height: math.unit(10, "stories"),
  30670. default: true
  30671. },
  30672. {
  30673. name: "Megamacro",
  30674. height: math.unit(1.5, "miles")
  30675. },
  30676. {
  30677. name: "Megamacro+",
  30678. height: math.unit(5, "miles")
  30679. },
  30680. ]
  30681. ))
  30682. characterMakers.push(() => makeCharacter(
  30683. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30684. {
  30685. side: {
  30686. height: math.unit(106, "feet"),
  30687. weight: math.unit(500, "tonnes"),
  30688. name: "Side",
  30689. image: {
  30690. source: "./media/characters/kodran/side.svg",
  30691. extra: 553 / 480,
  30692. bottom: 33 / 586
  30693. }
  30694. },
  30695. front: {
  30696. height: math.unit(132, "feet"),
  30697. weight: math.unit(500, "tonnes"),
  30698. name: "Front",
  30699. image: {
  30700. source: "./media/characters/kodran/front.svg",
  30701. extra: 667 / 643,
  30702. bottom: 42 / 709
  30703. }
  30704. },
  30705. flying: {
  30706. height: math.unit(350, "feet"),
  30707. weight: math.unit(500, "tonnes"),
  30708. name: "Flying",
  30709. image: {
  30710. source: "./media/characters/kodran/flying.svg"
  30711. }
  30712. },
  30713. foot: {
  30714. height: math.unit(33, "feet"),
  30715. name: "Foot",
  30716. image: {
  30717. source: "./media/characters/kodran/foot.svg"
  30718. }
  30719. },
  30720. footFront: {
  30721. height: math.unit(19, "feet"),
  30722. name: "Foot (Front)",
  30723. image: {
  30724. source: "./media/characters/kodran/foot-front.svg",
  30725. extra: 261 / 261,
  30726. bottom: 91 / 352
  30727. }
  30728. },
  30729. headFront: {
  30730. height: math.unit(53, "feet"),
  30731. name: "Head (Front)",
  30732. image: {
  30733. source: "./media/characters/kodran/head-front.svg"
  30734. }
  30735. },
  30736. headSide: {
  30737. height: math.unit(65, "feet"),
  30738. name: "Head (Side)",
  30739. image: {
  30740. source: "./media/characters/kodran/head-side.svg"
  30741. }
  30742. },
  30743. throat: {
  30744. height: math.unit(79, "feet"),
  30745. name: "Throat",
  30746. image: {
  30747. source: "./media/characters/kodran/throat.svg"
  30748. }
  30749. },
  30750. },
  30751. [
  30752. {
  30753. name: "Large",
  30754. height: math.unit(106, "feet"),
  30755. default: true
  30756. },
  30757. ]
  30758. ))
  30759. characterMakers.push(() => makeCharacter(
  30760. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30761. {
  30762. side: {
  30763. height: math.unit(11, "feet"),
  30764. weight: math.unit(150, "lb"),
  30765. name: "Side",
  30766. image: {
  30767. source: "./media/characters/pyxaron/side.svg",
  30768. extra: 305 / 195,
  30769. bottom: 17 / 322
  30770. }
  30771. },
  30772. },
  30773. [
  30774. {
  30775. name: "Normal",
  30776. height: math.unit(11, "feet"),
  30777. default: true
  30778. },
  30779. ]
  30780. ))
  30781. characterMakers.push(() => makeCharacter(
  30782. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30783. {
  30784. front: {
  30785. height: math.unit(6, "feet"),
  30786. weight: math.unit(150, "lb"),
  30787. name: "Front",
  30788. image: {
  30789. source: "./media/characters/meep/front.svg",
  30790. extra: 88 / 80,
  30791. bottom: 6 / 94
  30792. }
  30793. },
  30794. },
  30795. [
  30796. {
  30797. name: "Fun Sized",
  30798. height: math.unit(2, "inches"),
  30799. default: true
  30800. },
  30801. {
  30802. name: "Friend Sized",
  30803. height: math.unit(8, "inches")
  30804. },
  30805. ]
  30806. ))
  30807. characterMakers.push(() => makeCharacter(
  30808. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30809. {
  30810. front: {
  30811. height: math.unit(15, "feet"),
  30812. weight: math.unit(2500, "lb"),
  30813. name: "Front",
  30814. image: {
  30815. source: "./media/characters/holly-rabbit/front.svg",
  30816. extra: 1433 / 1233,
  30817. bottom: 125 / 1558
  30818. }
  30819. },
  30820. dick: {
  30821. height: math.unit(4.6, "feet"),
  30822. name: "Dick",
  30823. image: {
  30824. source: "./media/characters/holly-rabbit/dick.svg"
  30825. }
  30826. },
  30827. },
  30828. [
  30829. {
  30830. name: "Normal",
  30831. height: math.unit(15, "feet"),
  30832. default: true
  30833. },
  30834. {
  30835. name: "Macro",
  30836. height: math.unit(250, "feet")
  30837. },
  30838. {
  30839. name: "Macro+",
  30840. height: math.unit(2500, "feet")
  30841. },
  30842. ]
  30843. ))
  30844. characterMakers.push(() => makeCharacter(
  30845. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30846. {
  30847. front: {
  30848. height: math.unit(3.02, "meters"),
  30849. weight: math.unit(500, "kg"),
  30850. name: "Front",
  30851. image: {
  30852. source: "./media/characters/drena/front.svg",
  30853. extra: 282 / 243,
  30854. bottom: 8 / 290
  30855. }
  30856. },
  30857. side: {
  30858. height: math.unit(3.02, "meters"),
  30859. weight: math.unit(500, "kg"),
  30860. name: "Side",
  30861. image: {
  30862. source: "./media/characters/drena/side.svg",
  30863. extra: 280 / 245,
  30864. bottom: 10 / 290
  30865. }
  30866. },
  30867. back: {
  30868. height: math.unit(3.02, "meters"),
  30869. weight: math.unit(500, "kg"),
  30870. name: "Back",
  30871. image: {
  30872. source: "./media/characters/drena/back.svg",
  30873. extra: 278 / 243,
  30874. bottom: 2 / 280
  30875. }
  30876. },
  30877. foot: {
  30878. height: math.unit(0.75, "meters"),
  30879. name: "Foot",
  30880. image: {
  30881. source: "./media/characters/drena/foot.svg"
  30882. }
  30883. },
  30884. maw: {
  30885. height: math.unit(0.82, "meters"),
  30886. name: "Maw",
  30887. image: {
  30888. source: "./media/characters/drena/maw.svg"
  30889. }
  30890. },
  30891. eating: {
  30892. height: math.unit(0.75, "meters"),
  30893. name: "Eating",
  30894. image: {
  30895. source: "./media/characters/drena/eating.svg"
  30896. }
  30897. },
  30898. rump: {
  30899. height: math.unit(0.93, "meters"),
  30900. name: "Rump",
  30901. image: {
  30902. source: "./media/characters/drena/rump.svg"
  30903. }
  30904. },
  30905. },
  30906. [
  30907. {
  30908. name: "Normal",
  30909. height: math.unit(3.02, "meters"),
  30910. default: true
  30911. },
  30912. ]
  30913. ))
  30914. characterMakers.push(() => makeCharacter(
  30915. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30916. {
  30917. front: {
  30918. height: math.unit(6 + 4 / 12, "feet"),
  30919. weight: math.unit(250, "lb"),
  30920. name: "Front",
  30921. image: {
  30922. source: "./media/characters/remmyzilla/front.svg",
  30923. extra: 4033 / 3588,
  30924. bottom: 123 / 4156
  30925. }
  30926. },
  30927. back: {
  30928. height: math.unit(6 + 4 / 12, "feet"),
  30929. weight: math.unit(250, "lb"),
  30930. name: "Back",
  30931. image: {
  30932. source: "./media/characters/remmyzilla/back.svg",
  30933. extra: 2687 / 2555,
  30934. bottom: 48 / 2735
  30935. }
  30936. },
  30937. paw: {
  30938. height: math.unit(1.73, "feet"),
  30939. name: "Paw",
  30940. image: {
  30941. source: "./media/characters/remmyzilla/paw.svg"
  30942. },
  30943. extraAttributes: {
  30944. "toeSize": {
  30945. name: "Toe Size",
  30946. power: 2,
  30947. type: "area",
  30948. base: math.unit(0.0035, "m^2")
  30949. },
  30950. "padSize": {
  30951. name: "Pad Size",
  30952. power: 2,
  30953. type: "area",
  30954. base: math.unit(0.015, "m^2")
  30955. },
  30956. "pawsize": {
  30957. name: "Paw Size",
  30958. power: 2,
  30959. type: "area",
  30960. base: math.unit(0.072, "m^2")
  30961. },
  30962. }
  30963. },
  30964. maw: {
  30965. height: math.unit(1.73, "feet"),
  30966. name: "Maw",
  30967. image: {
  30968. source: "./media/characters/remmyzilla/maw.svg"
  30969. }
  30970. },
  30971. },
  30972. [
  30973. {
  30974. name: "Normal",
  30975. height: math.unit(6 + 4 / 12, "feet")
  30976. },
  30977. {
  30978. name: "Minimacro",
  30979. height: math.unit(12 + 8 / 12, "feet")
  30980. },
  30981. {
  30982. name: "Normal",
  30983. height: math.unit(640, "feet"),
  30984. default: true
  30985. },
  30986. {
  30987. name: "Megamacro",
  30988. height: math.unit(6400, "feet")
  30989. },
  30990. {
  30991. name: "Gigamacro",
  30992. height: math.unit(64000, "miles")
  30993. },
  30994. ]
  30995. ))
  30996. characterMakers.push(() => makeCharacter(
  30997. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30998. {
  30999. front: {
  31000. height: math.unit(2.5, "meters"),
  31001. weight: math.unit(300, "lb"),
  31002. name: "Front",
  31003. image: {
  31004. source: "./media/characters/lawrence/front.svg",
  31005. extra: 357 / 335,
  31006. bottom: 30 / 387
  31007. }
  31008. },
  31009. back: {
  31010. height: math.unit(2.5, "meters"),
  31011. weight: math.unit(300, "lb"),
  31012. name: "Back",
  31013. image: {
  31014. source: "./media/characters/lawrence/back.svg",
  31015. extra: 357 / 338,
  31016. bottom: 16 / 373
  31017. }
  31018. },
  31019. head: {
  31020. height: math.unit(0.9, "meter"),
  31021. name: "Head",
  31022. image: {
  31023. source: "./media/characters/lawrence/head.svg"
  31024. }
  31025. },
  31026. maw: {
  31027. height: math.unit(0.7, "meter"),
  31028. name: "Maw",
  31029. image: {
  31030. source: "./media/characters/lawrence/maw.svg"
  31031. }
  31032. },
  31033. footBottom: {
  31034. height: math.unit(0.5, "meter"),
  31035. name: "Foot (Bottom)",
  31036. image: {
  31037. source: "./media/characters/lawrence/foot-bottom.svg"
  31038. }
  31039. },
  31040. footTop: {
  31041. height: math.unit(0.5, "meter"),
  31042. name: "Foot (Top)",
  31043. image: {
  31044. source: "./media/characters/lawrence/foot-top.svg"
  31045. }
  31046. },
  31047. },
  31048. [
  31049. {
  31050. name: "Normal",
  31051. height: math.unit(2.5, "meters"),
  31052. default: true
  31053. },
  31054. {
  31055. name: "Macro",
  31056. height: math.unit(95, "meters")
  31057. },
  31058. {
  31059. name: "Megamacro",
  31060. height: math.unit(150, "km")
  31061. },
  31062. ]
  31063. ))
  31064. characterMakers.push(() => makeCharacter(
  31065. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31066. {
  31067. front: {
  31068. height: math.unit(4.2, "meters"),
  31069. preyCapacity: math.unit(50, "m^3"),
  31070. weight: math.unit(30, "tonnes"),
  31071. name: "Front",
  31072. image: {
  31073. source: "./media/characters/sydney/front.svg",
  31074. extra: 1177/1129,
  31075. bottom: 197/1374
  31076. },
  31077. extraAttributes: {
  31078. "length": {
  31079. name: "Length",
  31080. power: 1,
  31081. type: "length",
  31082. base: math.unit(21, "meters")
  31083. },
  31084. }
  31085. },
  31086. },
  31087. [
  31088. {
  31089. name: "Normal",
  31090. height: math.unit(4.2, "meters"),
  31091. default: true
  31092. },
  31093. ]
  31094. ))
  31095. characterMakers.push(() => makeCharacter(
  31096. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31097. {
  31098. back: {
  31099. height: math.unit(201, "feet"),
  31100. name: "Back",
  31101. image: {
  31102. source: "./media/characters/jessica/back.svg",
  31103. extra: 273 / 259,
  31104. bottom: 7 / 280
  31105. }
  31106. },
  31107. },
  31108. [
  31109. {
  31110. name: "Normal",
  31111. height: math.unit(201, "feet"),
  31112. default: true
  31113. },
  31114. {
  31115. name: "Megamacro",
  31116. height: math.unit(8, "miles")
  31117. },
  31118. ]
  31119. ))
  31120. characterMakers.push(() => makeCharacter(
  31121. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31122. {
  31123. side: {
  31124. height: math.unit(5.6, "m"),
  31125. weight: math.unit(8000, "kg"),
  31126. name: "Side",
  31127. image: {
  31128. source: "./media/characters/victoria/side.svg",
  31129. extra: 1542/1229,
  31130. bottom: 124/1666
  31131. }
  31132. },
  31133. maw: {
  31134. height: math.unit(7.14, "feet"),
  31135. name: "Maw",
  31136. image: {
  31137. source: "./media/characters/victoria/maw.svg"
  31138. }
  31139. },
  31140. },
  31141. [
  31142. {
  31143. name: "Normal",
  31144. height: math.unit(5.6, "m"),
  31145. default: true
  31146. },
  31147. ]
  31148. ))
  31149. characterMakers.push(() => makeCharacter(
  31150. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31151. {
  31152. front: {
  31153. height: math.unit(5 + 6 / 12, "feet"),
  31154. name: "Front",
  31155. image: {
  31156. source: "./media/characters/cat/front.svg",
  31157. extra: 1449/1295,
  31158. bottom: 34/1483
  31159. },
  31160. form: "cat",
  31161. default: true
  31162. },
  31163. back: {
  31164. height: math.unit(5 + 6 / 12, "feet"),
  31165. name: "Back",
  31166. image: {
  31167. source: "./media/characters/cat/back.svg",
  31168. extra: 1466/1301,
  31169. bottom: 19/1485
  31170. },
  31171. form: "cat"
  31172. },
  31173. taur: {
  31174. height: math.unit(7, "feet"),
  31175. name: "Taur",
  31176. image: {
  31177. source: "./media/characters/cat/taur.svg",
  31178. extra: 1389/1233,
  31179. bottom: 83/1472
  31180. },
  31181. form: "taur",
  31182. default: true
  31183. },
  31184. lucarioFront: {
  31185. height: math.unit(4, "feet"),
  31186. name: "Lucario (Front)",
  31187. image: {
  31188. source: "./media/characters/cat/lucario-front.svg",
  31189. extra: 1149/1019,
  31190. bottom: 84/1233
  31191. },
  31192. form: "lucario",
  31193. default: true
  31194. },
  31195. lucarioBack: {
  31196. height: math.unit(4, "feet"),
  31197. name: "Lucario (Back)",
  31198. image: {
  31199. source: "./media/characters/cat/lucario-back.svg",
  31200. extra: 1190/1059,
  31201. bottom: 33/1223
  31202. },
  31203. form: "lucario"
  31204. },
  31205. megaLucario: {
  31206. height: math.unit(4, "feet"),
  31207. name: "Mega Lucario",
  31208. image: {
  31209. source: "./media/characters/cat/mega-lucario.svg",
  31210. extra: 1515 / 1319,
  31211. bottom: 63 / 1578
  31212. },
  31213. form: "lucario"
  31214. },
  31215. nickit: {
  31216. height: math.unit(2, "feet"),
  31217. name: "Nickit",
  31218. image: {
  31219. source: "./media/characters/cat/nickit.svg",
  31220. extra: 1980 / 1585,
  31221. bottom: 102 / 2082
  31222. },
  31223. form: "nickit",
  31224. default: true
  31225. },
  31226. lopunnyFront: {
  31227. height: math.unit(5, "feet"),
  31228. name: "Lopunny (Front)",
  31229. image: {
  31230. source: "./media/characters/cat/lopunny-front.svg",
  31231. extra: 1782 / 1469,
  31232. bottom: 38 / 1820
  31233. },
  31234. form: "lopunny",
  31235. default: true
  31236. },
  31237. lopunnyBack: {
  31238. height: math.unit(5, "feet"),
  31239. name: "Lopunny (Back)",
  31240. image: {
  31241. source: "./media/characters/cat/lopunny-back.svg",
  31242. extra: 1660 / 1490,
  31243. bottom: 25 / 1685
  31244. },
  31245. form: "lopunny"
  31246. },
  31247. },
  31248. [
  31249. {
  31250. name: "Really small",
  31251. height: math.unit(1, "nm")
  31252. },
  31253. {
  31254. name: "Micro",
  31255. height: math.unit(5, "inches")
  31256. },
  31257. {
  31258. name: "Normal",
  31259. height: math.unit(5 + 6 / 12, "feet"),
  31260. default: true
  31261. },
  31262. {
  31263. name: "Macro",
  31264. height: math.unit(50, "feet")
  31265. },
  31266. {
  31267. name: "Macro+",
  31268. height: math.unit(150, "feet")
  31269. },
  31270. {
  31271. name: "Megamacro",
  31272. height: math.unit(100, "miles")
  31273. },
  31274. ]
  31275. ))
  31276. characterMakers.push(() => makeCharacter(
  31277. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31278. {
  31279. front: {
  31280. height: math.unit(63.4, "meters"),
  31281. weight: math.unit(3.28349e+6, "kilograms"),
  31282. name: "Front",
  31283. image: {
  31284. source: "./media/characters/kirina-violet/front.svg",
  31285. extra: 2812 / 2725,
  31286. bottom: 0 / 2812
  31287. }
  31288. },
  31289. back: {
  31290. height: math.unit(63.4, "meters"),
  31291. weight: math.unit(3.28349e+6, "kilograms"),
  31292. name: "Back",
  31293. image: {
  31294. source: "./media/characters/kirina-violet/back.svg",
  31295. extra: 2812 / 2725,
  31296. bottom: 0 / 2812
  31297. }
  31298. },
  31299. mouth: {
  31300. height: math.unit(4.35, "meters"),
  31301. name: "Mouth",
  31302. image: {
  31303. source: "./media/characters/kirina-violet/mouth.svg"
  31304. }
  31305. },
  31306. paw: {
  31307. height: math.unit(5.6, "meters"),
  31308. name: "Paw",
  31309. image: {
  31310. source: "./media/characters/kirina-violet/paw.svg"
  31311. }
  31312. },
  31313. tail: {
  31314. height: math.unit(18, "meters"),
  31315. name: "Tail",
  31316. image: {
  31317. source: "./media/characters/kirina-violet/tail.svg"
  31318. }
  31319. },
  31320. },
  31321. [
  31322. {
  31323. name: "Macro",
  31324. height: math.unit(63.4, "meters"),
  31325. default: true
  31326. },
  31327. ]
  31328. ))
  31329. characterMakers.push(() => makeCharacter(
  31330. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31331. {
  31332. front: {
  31333. height: math.unit(75, "feet"),
  31334. name: "Front",
  31335. image: {
  31336. source: "./media/characters/cat-gigachu/front.svg",
  31337. extra: 1239/1027,
  31338. bottom: 32/1271
  31339. }
  31340. },
  31341. back: {
  31342. height: math.unit(75, "feet"),
  31343. name: "Back",
  31344. image: {
  31345. source: "./media/characters/cat-gigachu/back.svg",
  31346. extra: 1229/1030,
  31347. bottom: 9/1238
  31348. }
  31349. },
  31350. },
  31351. [
  31352. {
  31353. name: "Dynamax",
  31354. height: math.unit(75, "feet"),
  31355. default: true
  31356. },
  31357. ]
  31358. ))
  31359. characterMakers.push(() => makeCharacter(
  31360. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31361. {
  31362. front: {
  31363. height: math.unit(6, "feet"),
  31364. weight: math.unit(150, "lb"),
  31365. name: "Front",
  31366. image: {
  31367. source: "./media/characters/sfaiyan/front.svg",
  31368. extra: 999 / 978,
  31369. bottom: 5 / 1004
  31370. }
  31371. },
  31372. },
  31373. [
  31374. {
  31375. name: "Normal",
  31376. height: math.unit(1.82, "meters")
  31377. },
  31378. {
  31379. name: "Giant",
  31380. height: math.unit(2.27, "km"),
  31381. default: true
  31382. },
  31383. ]
  31384. ))
  31385. characterMakers.push(() => makeCharacter(
  31386. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31387. {
  31388. front: {
  31389. height: math.unit(179, "cm"),
  31390. weight: math.unit(100, "kg"),
  31391. name: "Front",
  31392. image: {
  31393. source: "./media/characters/raunehkeli/front.svg",
  31394. extra: 1934 / 1926,
  31395. bottom: 0 / 1934
  31396. }
  31397. },
  31398. },
  31399. [
  31400. {
  31401. name: "Normal",
  31402. height: math.unit(179, "cm")
  31403. },
  31404. {
  31405. name: "Maximum",
  31406. height: math.unit(575, "meters"),
  31407. default: true
  31408. },
  31409. ]
  31410. ))
  31411. characterMakers.push(() => makeCharacter(
  31412. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31413. {
  31414. front: {
  31415. height: math.unit(6, "feet"),
  31416. weight: math.unit(150, "lb"),
  31417. name: "Front",
  31418. image: {
  31419. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31420. extra: 2625 / 2518,
  31421. bottom: 60 / 2685
  31422. }
  31423. },
  31424. },
  31425. [
  31426. {
  31427. name: "Normal",
  31428. height: math.unit(6 + 2 / 12, "feet")
  31429. },
  31430. {
  31431. name: "Macro",
  31432. height: math.unit(1180, "feet"),
  31433. default: true
  31434. },
  31435. ]
  31436. ))
  31437. characterMakers.push(() => makeCharacter(
  31438. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31439. {
  31440. front: {
  31441. height: math.unit(5 + 6 / 12, "feet"),
  31442. weight: math.unit(108, "lb"),
  31443. name: "Front",
  31444. image: {
  31445. source: "./media/characters/lilith-zott/front.svg",
  31446. extra: 2510 / 2238,
  31447. bottom: 100 / 2610
  31448. }
  31449. },
  31450. frontDressed: {
  31451. height: math.unit(5 + 6 / 12, "feet"),
  31452. weight: math.unit(108, "lb"),
  31453. name: "Front (Dressed)",
  31454. image: {
  31455. source: "./media/characters/lilith-zott/front-dressed.svg",
  31456. extra: 2510 / 2238,
  31457. bottom: 100 / 2610
  31458. }
  31459. },
  31460. },
  31461. [
  31462. {
  31463. name: "Normal",
  31464. height: math.unit(5 + 6 / 12, "feet")
  31465. },
  31466. {
  31467. name: "Macro",
  31468. height: math.unit(1030, "feet"),
  31469. default: true
  31470. },
  31471. ]
  31472. ))
  31473. characterMakers.push(() => makeCharacter(
  31474. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31475. {
  31476. front: {
  31477. height: math.unit(6, "feet"),
  31478. weight: math.unit(150, "lb"),
  31479. name: "Front",
  31480. image: {
  31481. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31482. extra: 2567 / 2435,
  31483. bottom: 39 / 2606
  31484. }
  31485. },
  31486. frontSuper: {
  31487. height: math.unit(6, "feet"),
  31488. name: "Front (Super)",
  31489. image: {
  31490. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31491. extra: 2567 / 2435,
  31492. bottom: 39 / 2606
  31493. }
  31494. },
  31495. },
  31496. [
  31497. {
  31498. name: "Normal",
  31499. height: math.unit(5 + 10 / 12, "feet")
  31500. },
  31501. {
  31502. name: "Macro",
  31503. height: math.unit(1100, "feet"),
  31504. default: true
  31505. },
  31506. ]
  31507. ))
  31508. characterMakers.push(() => makeCharacter(
  31509. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31510. {
  31511. front: {
  31512. height: math.unit(100, "miles"),
  31513. name: "Front",
  31514. image: {
  31515. source: "./media/characters/sona/front.svg",
  31516. extra: 2433 / 2201,
  31517. bottom: 53 / 2486
  31518. }
  31519. },
  31520. foot: {
  31521. height: math.unit(16.1, "miles"),
  31522. name: "Foot",
  31523. image: {
  31524. source: "./media/characters/sona/foot.svg"
  31525. }
  31526. },
  31527. },
  31528. [
  31529. {
  31530. name: "Macro",
  31531. height: math.unit(100, "miles"),
  31532. default: true
  31533. },
  31534. ]
  31535. ))
  31536. characterMakers.push(() => makeCharacter(
  31537. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31538. {
  31539. front: {
  31540. height: math.unit(6, "feet"),
  31541. weight: math.unit(150, "lb"),
  31542. name: "Front",
  31543. image: {
  31544. source: "./media/characters/bailey/front.svg",
  31545. extra: 1778 / 1724,
  31546. bottom: 30 / 1808
  31547. }
  31548. },
  31549. },
  31550. [
  31551. {
  31552. name: "Micro",
  31553. height: math.unit(4, "inches")
  31554. },
  31555. {
  31556. name: "Normal",
  31557. height: math.unit(5 + 5 / 12, "feet"),
  31558. default: true
  31559. },
  31560. {
  31561. name: "Macro",
  31562. height: math.unit(250, "feet")
  31563. },
  31564. {
  31565. name: "Megamacro",
  31566. height: math.unit(100, "miles")
  31567. },
  31568. ]
  31569. ))
  31570. characterMakers.push(() => makeCharacter(
  31571. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31572. {
  31573. front: {
  31574. height: math.unit(5 + 2 / 12, "feet"),
  31575. weight: math.unit(120, "lb"),
  31576. name: "Front",
  31577. image: {
  31578. source: "./media/characters/snaps/front.svg",
  31579. extra: 2370 / 2177,
  31580. bottom: 48 / 2418
  31581. }
  31582. },
  31583. back: {
  31584. height: math.unit(5 + 2 / 12, "feet"),
  31585. weight: math.unit(120, "lb"),
  31586. name: "Back",
  31587. image: {
  31588. source: "./media/characters/snaps/back.svg",
  31589. extra: 2408 / 2258,
  31590. bottom: 15 / 2423
  31591. }
  31592. },
  31593. },
  31594. [
  31595. {
  31596. name: "Micro",
  31597. height: math.unit(9, "inches")
  31598. },
  31599. {
  31600. name: "Normal",
  31601. height: math.unit(5 + 2 / 12, "feet"),
  31602. default: true
  31603. },
  31604. {
  31605. name: "Mini Macro",
  31606. height: math.unit(10, "feet")
  31607. },
  31608. ]
  31609. ))
  31610. characterMakers.push(() => makeCharacter(
  31611. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31612. {
  31613. front: {
  31614. height: math.unit(1.8, "meters"),
  31615. weight: math.unit(85, "kg"),
  31616. name: "Front",
  31617. image: {
  31618. source: "./media/characters/azteck/front.svg",
  31619. extra: 2815 / 2625,
  31620. bottom: 89 / 2904
  31621. }
  31622. },
  31623. back: {
  31624. height: math.unit(1.8, "meters"),
  31625. weight: math.unit(85, "kg"),
  31626. name: "Back",
  31627. image: {
  31628. source: "./media/characters/azteck/back.svg",
  31629. extra: 2856 / 2648,
  31630. bottom: 85 / 2941
  31631. }
  31632. },
  31633. frontDressed: {
  31634. height: math.unit(1.8, "meters"),
  31635. weight: math.unit(85, "kg"),
  31636. name: "Front (Dressed)",
  31637. image: {
  31638. source: "./media/characters/azteck/front-dressed.svg",
  31639. extra: 2147 / 2003,
  31640. bottom: 68 / 2215
  31641. }
  31642. },
  31643. head: {
  31644. height: math.unit(0.47, "meters"),
  31645. weight: math.unit(85, "kg"),
  31646. name: "Head",
  31647. image: {
  31648. source: "./media/characters/azteck/head.svg"
  31649. }
  31650. },
  31651. },
  31652. [
  31653. {
  31654. name: "Bite sized",
  31655. height: math.unit(16, "cm")
  31656. },
  31657. {
  31658. name: "Normal",
  31659. height: math.unit(1.8, "meters"),
  31660. default: true
  31661. },
  31662. ]
  31663. ))
  31664. characterMakers.push(() => makeCharacter(
  31665. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31666. {
  31667. front: {
  31668. height: math.unit(6, "feet"),
  31669. weight: math.unit(150, "lb"),
  31670. name: "Front",
  31671. image: {
  31672. source: "./media/characters/pidge/front.svg",
  31673. extra: 1936/1820,
  31674. bottom: 0/1936
  31675. }
  31676. },
  31677. back: {
  31678. height: math.unit(6, "feet"),
  31679. weight: math.unit(150, "lb"),
  31680. name: "Back",
  31681. image: {
  31682. source: "./media/characters/pidge/back.svg",
  31683. extra: 1938/1843,
  31684. bottom: 0/1938
  31685. }
  31686. },
  31687. casual: {
  31688. height: math.unit(6, "feet"),
  31689. weight: math.unit(150, "lb"),
  31690. name: "Casual",
  31691. image: {
  31692. source: "./media/characters/pidge/casual.svg",
  31693. extra: 1936/1820,
  31694. bottom: 0/1936
  31695. }
  31696. },
  31697. tech: {
  31698. height: math.unit(6, "feet"),
  31699. weight: math.unit(150, "lb"),
  31700. name: "Tech",
  31701. image: {
  31702. source: "./media/characters/pidge/tech.svg",
  31703. extra: 1802/1682,
  31704. bottom: 0/1802
  31705. }
  31706. },
  31707. head: {
  31708. height: math.unit(1.61, "feet"),
  31709. name: "Head",
  31710. image: {
  31711. source: "./media/characters/pidge/head.svg"
  31712. }
  31713. },
  31714. collar: {
  31715. height: math.unit(0.82, "feet"),
  31716. name: "Collar",
  31717. image: {
  31718. source: "./media/characters/pidge/collar.svg"
  31719. }
  31720. },
  31721. },
  31722. [
  31723. {
  31724. name: "Macro",
  31725. height: math.unit(2, "mile"),
  31726. default: true
  31727. },
  31728. {
  31729. name: "PUPPY",
  31730. height: math.unit(20, "miles")
  31731. },
  31732. ]
  31733. ))
  31734. characterMakers.push(() => makeCharacter(
  31735. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31736. {
  31737. front: {
  31738. height: math.unit(6, "feet"),
  31739. weight: math.unit(150, "lb"),
  31740. name: "Front",
  31741. image: {
  31742. source: "./media/characters/en/front.svg",
  31743. extra: 1697 / 1563,
  31744. bottom: 103 / 1800
  31745. }
  31746. },
  31747. back: {
  31748. height: math.unit(6, "feet"),
  31749. weight: math.unit(150, "lb"),
  31750. name: "Back",
  31751. image: {
  31752. source: "./media/characters/en/back.svg",
  31753. extra: 1700 / 1570,
  31754. bottom: 51 / 1751
  31755. }
  31756. },
  31757. frontDressed: {
  31758. height: math.unit(6, "feet"),
  31759. weight: math.unit(150, "lb"),
  31760. name: "Front (Dressed)",
  31761. image: {
  31762. source: "./media/characters/en/front-dressed.svg",
  31763. extra: 1697 / 1563,
  31764. bottom: 103 / 1800
  31765. }
  31766. },
  31767. backDressed: {
  31768. height: math.unit(6, "feet"),
  31769. weight: math.unit(150, "lb"),
  31770. name: "Back (Dressed)",
  31771. image: {
  31772. source: "./media/characters/en/back-dressed.svg",
  31773. extra: 1700 / 1570,
  31774. bottom: 51 / 1751
  31775. }
  31776. },
  31777. },
  31778. [
  31779. {
  31780. name: "Macro",
  31781. height: math.unit(210, "feet"),
  31782. default: true
  31783. },
  31784. ]
  31785. ))
  31786. characterMakers.push(() => makeCharacter(
  31787. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31788. {
  31789. front: {
  31790. height: math.unit(6, "feet"),
  31791. weight: math.unit(150, "lb"),
  31792. name: "Front",
  31793. image: {
  31794. source: "./media/characters/haze-orris/front.svg",
  31795. extra: 3975 / 3525,
  31796. bottom: 137 / 4112
  31797. }
  31798. },
  31799. },
  31800. [
  31801. {
  31802. name: "Micro",
  31803. height: math.unit(150, "mm"),
  31804. default: true
  31805. },
  31806. ]
  31807. ))
  31808. characterMakers.push(() => makeCharacter(
  31809. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31810. {
  31811. front: {
  31812. height: math.unit(6, "feet"),
  31813. weight: math.unit(150, "lb"),
  31814. name: "Front",
  31815. image: {
  31816. source: "./media/characters/casselene-yaro/front.svg",
  31817. extra: 4721 / 4541,
  31818. bottom: 82 / 4803
  31819. }
  31820. },
  31821. back: {
  31822. height: math.unit(6, "feet"),
  31823. weight: math.unit(150, "lb"),
  31824. name: "Back",
  31825. image: {
  31826. source: "./media/characters/casselene-yaro/back.svg",
  31827. extra: 4569 / 4377,
  31828. bottom: 69 / 4638
  31829. }
  31830. },
  31831. dressed: {
  31832. height: math.unit(6, "feet"),
  31833. weight: math.unit(150, "lb"),
  31834. name: "Dressed",
  31835. image: {
  31836. source: "./media/characters/casselene-yaro/dressed.svg",
  31837. extra: 4721 / 4541,
  31838. bottom: 82 / 4803
  31839. }
  31840. },
  31841. maw: {
  31842. height: math.unit(1, "feet"),
  31843. name: "Maw",
  31844. image: {
  31845. source: "./media/characters/casselene-yaro/maw.svg"
  31846. }
  31847. },
  31848. },
  31849. [
  31850. {
  31851. name: "Macro",
  31852. height: math.unit(190, "feet"),
  31853. default: true
  31854. },
  31855. ]
  31856. ))
  31857. characterMakers.push(() => makeCharacter(
  31858. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31859. {
  31860. front: {
  31861. height: math.unit(10, "feet"),
  31862. weight: math.unit(15015, "lb"),
  31863. name: "Front",
  31864. image: {
  31865. source: "./media/characters/platine/front.svg",
  31866. extra: 1741/1650,
  31867. bottom: 84/1825
  31868. }
  31869. },
  31870. side: {
  31871. height: math.unit(10, "feet"),
  31872. weight: math.unit(15015, "lb"),
  31873. name: "Side",
  31874. image: {
  31875. source: "./media/characters/platine/side.svg",
  31876. extra: 1790/1705,
  31877. bottom: 29/1819
  31878. }
  31879. },
  31880. },
  31881. [
  31882. {
  31883. name: "Normal",
  31884. height: math.unit(10, "feet"),
  31885. default: true
  31886. },
  31887. {
  31888. name: "Macro",
  31889. height: math.unit(100, "feet")
  31890. },
  31891. {
  31892. name: "Megamacro",
  31893. height: math.unit(1000, "feet")
  31894. },
  31895. ]
  31896. ))
  31897. characterMakers.push(() => makeCharacter(
  31898. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31899. {
  31900. front: {
  31901. height: math.unit(15 + 5 / 12, "feet"),
  31902. weight: math.unit(4600, "lb"),
  31903. name: "Front",
  31904. image: {
  31905. source: "./media/characters/neapolitan-ananassa/front.svg",
  31906. extra: 2903 / 2736,
  31907. bottom: 0 / 2903
  31908. }
  31909. },
  31910. side: {
  31911. height: math.unit(15 + 5 / 12, "feet"),
  31912. weight: math.unit(4600, "lb"),
  31913. name: "Side",
  31914. image: {
  31915. source: "./media/characters/neapolitan-ananassa/side.svg",
  31916. extra: 2925 / 2719,
  31917. bottom: 0 / 2925
  31918. }
  31919. },
  31920. back: {
  31921. height: math.unit(15 + 5 / 12, "feet"),
  31922. weight: math.unit(4600, "lb"),
  31923. name: "Back",
  31924. image: {
  31925. source: "./media/characters/neapolitan-ananassa/back.svg",
  31926. extra: 2903 / 2736,
  31927. bottom: 0 / 2903
  31928. }
  31929. },
  31930. },
  31931. [
  31932. {
  31933. name: "Normal",
  31934. height: math.unit(15 + 5 / 12, "feet"),
  31935. default: true
  31936. },
  31937. {
  31938. name: "Post-Millenium",
  31939. height: math.unit(35 + 5 / 12, "feet")
  31940. },
  31941. {
  31942. name: "Post-Era",
  31943. height: math.unit(450 + 5 / 12, "feet")
  31944. },
  31945. ]
  31946. ))
  31947. characterMakers.push(() => makeCharacter(
  31948. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31949. {
  31950. front: {
  31951. height: math.unit(300, "meters"),
  31952. weight: math.unit(125000, "tonnes"),
  31953. name: "Front",
  31954. image: {
  31955. source: "./media/characters/pazuzu/front.svg",
  31956. extra: 877 / 794,
  31957. bottom: 47 / 924
  31958. }
  31959. },
  31960. },
  31961. [
  31962. {
  31963. name: "Macro",
  31964. height: math.unit(300, "meters"),
  31965. default: true
  31966. },
  31967. ]
  31968. ))
  31969. characterMakers.push(() => makeCharacter(
  31970. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31971. {
  31972. side: {
  31973. height: math.unit(10 + 7 / 12, "feet"),
  31974. weight: math.unit(2.5, "tons"),
  31975. name: "Side",
  31976. image: {
  31977. source: "./media/characters/aasha/side.svg",
  31978. extra: 1345 / 1245,
  31979. bottom: 111 / 1456
  31980. }
  31981. },
  31982. back: {
  31983. height: math.unit(10 + 7 / 12, "feet"),
  31984. weight: math.unit(2.5, "tons"),
  31985. name: "Back",
  31986. image: {
  31987. source: "./media/characters/aasha/back.svg",
  31988. extra: 1133 / 1057,
  31989. bottom: 257 / 1390
  31990. }
  31991. },
  31992. },
  31993. [
  31994. {
  31995. name: "Normal",
  31996. height: math.unit(10 + 7 / 12, "feet"),
  31997. default: true
  31998. },
  31999. ]
  32000. ))
  32001. characterMakers.push(() => makeCharacter(
  32002. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32003. {
  32004. front: {
  32005. height: math.unit(6 + 3 / 12, "feet"),
  32006. name: "Front",
  32007. image: {
  32008. source: "./media/characters/nevan/front.svg",
  32009. extra: 704 / 704,
  32010. bottom: 28 / 732
  32011. }
  32012. },
  32013. back: {
  32014. height: math.unit(6 + 3 / 12, "feet"),
  32015. name: "Back",
  32016. image: {
  32017. source: "./media/characters/nevan/back.svg",
  32018. extra: 714 / 714,
  32019. bottom: 21 / 735
  32020. }
  32021. },
  32022. frontFlaccid: {
  32023. height: math.unit(6 + 3 / 12, "feet"),
  32024. name: "Front (Flaccid)",
  32025. image: {
  32026. source: "./media/characters/nevan/front-flaccid.svg",
  32027. extra: 704 / 704,
  32028. bottom: 28 / 732
  32029. }
  32030. },
  32031. frontErect: {
  32032. height: math.unit(6 + 3 / 12, "feet"),
  32033. name: "Front (Erect)",
  32034. image: {
  32035. source: "./media/characters/nevan/front-erect.svg",
  32036. extra: 704 / 704,
  32037. bottom: 28 / 732
  32038. }
  32039. },
  32040. backFlaccid: {
  32041. height: math.unit(6 + 3 / 12, "feet"),
  32042. name: "Back (Flaccid)",
  32043. image: {
  32044. source: "./media/characters/nevan/back-flaccid.svg",
  32045. extra: 714 / 714,
  32046. bottom: 21 / 735
  32047. }
  32048. },
  32049. },
  32050. [
  32051. {
  32052. name: "Normal",
  32053. height: math.unit(6 + 3 / 12, "feet"),
  32054. default: true
  32055. },
  32056. ]
  32057. ))
  32058. characterMakers.push(() => makeCharacter(
  32059. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32060. {
  32061. front: {
  32062. height: math.unit(4, "feet"),
  32063. name: "Front",
  32064. image: {
  32065. source: "./media/characters/arhan/front.svg",
  32066. extra: 3368 / 3133,
  32067. bottom: 0 / 3368
  32068. }
  32069. },
  32070. side: {
  32071. height: math.unit(4, "feet"),
  32072. name: "Side",
  32073. image: {
  32074. source: "./media/characters/arhan/side.svg",
  32075. extra: 3347 / 3105,
  32076. bottom: 0 / 3347
  32077. }
  32078. },
  32079. tongue: {
  32080. height: math.unit(1.42, "feet"),
  32081. name: "Tongue",
  32082. image: {
  32083. source: "./media/characters/arhan/tongue.svg"
  32084. }
  32085. },
  32086. head: {
  32087. height: math.unit(0.85, "feet"),
  32088. name: "Head",
  32089. image: {
  32090. source: "./media/characters/arhan/head.svg"
  32091. }
  32092. },
  32093. },
  32094. [
  32095. {
  32096. name: "Normal",
  32097. height: math.unit(4, "feet"),
  32098. default: true
  32099. },
  32100. ]
  32101. ))
  32102. characterMakers.push(() => makeCharacter(
  32103. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32104. {
  32105. front: {
  32106. height: math.unit(5 + 7.5 / 12, "feet"),
  32107. weight: math.unit(120, "lb"),
  32108. name: "Front",
  32109. image: {
  32110. source: "./media/characters/digi-duncan/front.svg",
  32111. extra: 330 / 326,
  32112. bottom: 16 / 346
  32113. }
  32114. },
  32115. side: {
  32116. height: math.unit(5 + 7.5 / 12, "feet"),
  32117. weight: math.unit(120, "lb"),
  32118. name: "Side",
  32119. image: {
  32120. source: "./media/characters/digi-duncan/side.svg",
  32121. extra: 341 / 337,
  32122. bottom: 1 / 342
  32123. }
  32124. },
  32125. back: {
  32126. height: math.unit(5 + 7.5 / 12, "feet"),
  32127. weight: math.unit(120, "lb"),
  32128. name: "Back",
  32129. image: {
  32130. source: "./media/characters/digi-duncan/back.svg",
  32131. extra: 330 / 326,
  32132. bottom: 12 / 342
  32133. }
  32134. },
  32135. },
  32136. [
  32137. {
  32138. name: "Speck",
  32139. height: math.unit(0.25, "mm")
  32140. },
  32141. {
  32142. name: "Micro",
  32143. height: math.unit(5, "mm")
  32144. },
  32145. {
  32146. name: "Tiny",
  32147. height: math.unit(0.5, "inches"),
  32148. default: true
  32149. },
  32150. {
  32151. name: "Human",
  32152. height: math.unit(5 + 7.5 / 12, "feet")
  32153. },
  32154. {
  32155. name: "Minigiant",
  32156. height: math.unit(8 + 5.25, "feet")
  32157. },
  32158. {
  32159. name: "Giant",
  32160. height: math.unit(2000, "feet")
  32161. },
  32162. {
  32163. name: "Mega",
  32164. height: math.unit(371.1, "miles")
  32165. },
  32166. ]
  32167. ))
  32168. characterMakers.push(() => makeCharacter(
  32169. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32170. {
  32171. front: {
  32172. height: math.unit(2, "meters"),
  32173. weight: math.unit(350, "kg"),
  32174. name: "Front",
  32175. image: {
  32176. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32177. extra: 898 / 838,
  32178. bottom: 9 / 907
  32179. }
  32180. },
  32181. },
  32182. [
  32183. {
  32184. name: "Micro",
  32185. height: math.unit(8, "meters")
  32186. },
  32187. {
  32188. name: "Normal",
  32189. height: math.unit(50, "meters"),
  32190. default: true
  32191. },
  32192. {
  32193. name: "Macro",
  32194. height: math.unit(500, "meters")
  32195. },
  32196. ]
  32197. ))
  32198. characterMakers.push(() => makeCharacter(
  32199. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32200. {
  32201. front: {
  32202. height: math.unit(6 + 6 / 12, "feet"),
  32203. name: "Front",
  32204. image: {
  32205. source: "./media/characters/khardesh/front.svg",
  32206. extra: 1788/1596,
  32207. bottom: 66/1854
  32208. }
  32209. },
  32210. back: {
  32211. height: math.unit(6 + 6 / 12, "feet"),
  32212. name: "Back",
  32213. image: {
  32214. source: "./media/characters/khardesh/back.svg",
  32215. extra: 1781/1584,
  32216. bottom: 68/1849
  32217. }
  32218. },
  32219. },
  32220. [
  32221. {
  32222. name: "Normal",
  32223. height: math.unit(6 + 6 / 12, "feet"),
  32224. default: true
  32225. },
  32226. {
  32227. name: "Normal+",
  32228. height: math.unit(4, "meters")
  32229. },
  32230. {
  32231. name: "Macro",
  32232. height: math.unit(50, "meters")
  32233. },
  32234. {
  32235. name: "Macro+",
  32236. height: math.unit(100, "meters")
  32237. },
  32238. {
  32239. name: "Megamacro",
  32240. height: math.unit(20, "km")
  32241. },
  32242. ]
  32243. ))
  32244. characterMakers.push(() => makeCharacter(
  32245. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32246. {
  32247. front: {
  32248. height: math.unit(6, "feet"),
  32249. weight: math.unit(150, "lb"),
  32250. name: "Front",
  32251. image: {
  32252. source: "./media/characters/kosho/front.svg",
  32253. extra: 1847 / 1847,
  32254. bottom: 86 / 1933
  32255. }
  32256. },
  32257. },
  32258. [
  32259. {
  32260. name: "Second-stage micro",
  32261. height: math.unit(0.5, "inches")
  32262. },
  32263. {
  32264. name: "First-stage micro",
  32265. height: math.unit(6, "inches")
  32266. },
  32267. {
  32268. name: "Normal",
  32269. height: math.unit(6, "feet"),
  32270. default: true
  32271. },
  32272. {
  32273. name: "First-stage macro",
  32274. height: math.unit(72, "feet")
  32275. },
  32276. {
  32277. name: "Second-stage macro",
  32278. height: math.unit(864, "feet")
  32279. },
  32280. ]
  32281. ))
  32282. characterMakers.push(() => makeCharacter(
  32283. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32284. {
  32285. normal: {
  32286. height: math.unit(4 + 6 / 12, "feet"),
  32287. name: "Normal",
  32288. image: {
  32289. source: "./media/characters/hydra/normal.svg",
  32290. extra: 2833 / 2634,
  32291. bottom: 68 / 2901
  32292. }
  32293. },
  32294. smol: {
  32295. height: math.unit(0.705, "inches"),
  32296. name: "Smol",
  32297. image: {
  32298. source: "./media/characters/hydra/smol.svg",
  32299. extra: 2715 / 2540,
  32300. bottom: 0 / 2715
  32301. }
  32302. },
  32303. },
  32304. [
  32305. {
  32306. name: "Normal",
  32307. height: math.unit(4 + 6 / 12, "feet"),
  32308. default: true
  32309. }
  32310. ]
  32311. ))
  32312. characterMakers.push(() => makeCharacter(
  32313. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32314. {
  32315. front: {
  32316. height: math.unit(0.6, "cm"),
  32317. name: "Front",
  32318. image: {
  32319. source: "./media/characters/daz/front.svg",
  32320. extra: 1682 / 1164,
  32321. bottom: 42 / 1724
  32322. }
  32323. },
  32324. },
  32325. [
  32326. {
  32327. name: "Normal",
  32328. height: math.unit(0.6, "cm"),
  32329. default: true
  32330. },
  32331. ]
  32332. ))
  32333. characterMakers.push(() => makeCharacter(
  32334. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32335. {
  32336. front: {
  32337. height: math.unit(6, "feet"),
  32338. weight: math.unit(235, "lb"),
  32339. name: "Front",
  32340. image: {
  32341. source: "./media/characters/theo-pangolin/front.svg",
  32342. extra: 1996 / 1969,
  32343. bottom: 115 / 2111
  32344. }
  32345. },
  32346. back: {
  32347. height: math.unit(6, "feet"),
  32348. weight: math.unit(235, "lb"),
  32349. name: "Back",
  32350. image: {
  32351. source: "./media/characters/theo-pangolin/back.svg",
  32352. extra: 1979 / 1979,
  32353. bottom: 40 / 2019
  32354. }
  32355. },
  32356. feral: {
  32357. height: math.unit(2, "feet"),
  32358. weight: math.unit(30, "lb"),
  32359. name: "Feral",
  32360. image: {
  32361. source: "./media/characters/theo-pangolin/feral.svg",
  32362. extra: 803 / 791,
  32363. bottom: 181 / 984
  32364. }
  32365. },
  32366. footFive: {
  32367. height: math.unit(1.43, "feet"),
  32368. name: "Foot (Five Toes)",
  32369. image: {
  32370. source: "./media/characters/theo-pangolin/foot-five.svg"
  32371. }
  32372. },
  32373. footFour: {
  32374. height: math.unit(1.43, "feet"),
  32375. name: "Foot (Four Toes)",
  32376. image: {
  32377. source: "./media/characters/theo-pangolin/foot-four.svg"
  32378. }
  32379. },
  32380. handFour: {
  32381. height: math.unit(0.81, "feet"),
  32382. name: "Hand (Four Fingers)",
  32383. image: {
  32384. source: "./media/characters/theo-pangolin/hand-four.svg"
  32385. }
  32386. },
  32387. handThree: {
  32388. height: math.unit(0.81, "feet"),
  32389. name: "Hand (Three Fingers)",
  32390. image: {
  32391. source: "./media/characters/theo-pangolin/hand-three.svg"
  32392. }
  32393. },
  32394. headFront: {
  32395. height: math.unit(1.37, "feet"),
  32396. name: "Head (Front)",
  32397. image: {
  32398. source: "./media/characters/theo-pangolin/head-front.svg"
  32399. }
  32400. },
  32401. headSide: {
  32402. height: math.unit(1.43, "feet"),
  32403. name: "Head (Side)",
  32404. image: {
  32405. source: "./media/characters/theo-pangolin/head-side.svg"
  32406. }
  32407. },
  32408. tongue: {
  32409. height: math.unit(2.29, "feet"),
  32410. name: "Tongue",
  32411. image: {
  32412. source: "./media/characters/theo-pangolin/tongue.svg"
  32413. }
  32414. },
  32415. },
  32416. [
  32417. {
  32418. name: "Normal",
  32419. height: math.unit(6, "feet")
  32420. },
  32421. {
  32422. name: "Macro",
  32423. height: math.unit(400, "feet"),
  32424. default: true
  32425. },
  32426. ]
  32427. ))
  32428. characterMakers.push(() => makeCharacter(
  32429. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32430. {
  32431. front: {
  32432. height: math.unit(6, "inches"),
  32433. weight: math.unit(0.036, "kg"),
  32434. name: "Front",
  32435. image: {
  32436. source: "./media/characters/renée/front.svg",
  32437. extra: 900 / 886,
  32438. bottom: 8 / 908
  32439. }
  32440. },
  32441. },
  32442. [
  32443. {
  32444. name: "Nano",
  32445. height: math.unit(1, "nm")
  32446. },
  32447. {
  32448. name: "Micro",
  32449. height: math.unit(1, "mm")
  32450. },
  32451. {
  32452. name: "Normal",
  32453. height: math.unit(6, "inches")
  32454. },
  32455. {
  32456. name: "Macro",
  32457. height: math.unit(2000, "feet"),
  32458. default: true
  32459. },
  32460. {
  32461. name: "Megamacro",
  32462. height: math.unit(2, "km")
  32463. },
  32464. {
  32465. name: "Gigamacro",
  32466. height: math.unit(2000, "km")
  32467. },
  32468. {
  32469. name: "Teramacro",
  32470. height: math.unit(250000, "km")
  32471. },
  32472. ]
  32473. ))
  32474. characterMakers.push(() => makeCharacter(
  32475. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32476. {
  32477. front: {
  32478. height: math.unit(4, "meters"),
  32479. weight: math.unit(150, "kg"),
  32480. name: "Front",
  32481. image: {
  32482. source: "./media/characters/caledvwlch/front.svg",
  32483. extra: 1757/1537,
  32484. bottom: 31/1788
  32485. }
  32486. },
  32487. side: {
  32488. height: math.unit(4, "meters"),
  32489. weight: math.unit(150, "kg"),
  32490. name: "Side",
  32491. image: {
  32492. source: "./media/characters/caledvwlch/side.svg",
  32493. extra: 1605 / 1536,
  32494. bottom: 31 / 1636
  32495. }
  32496. },
  32497. back: {
  32498. height: math.unit(4, "meters"),
  32499. weight: math.unit(150, "kg"),
  32500. name: "Back",
  32501. image: {
  32502. source: "./media/characters/caledvwlch/back.svg",
  32503. extra: 1635 / 1565,
  32504. bottom: 27 / 1662
  32505. }
  32506. },
  32507. },
  32508. [
  32509. {
  32510. name: "\"Incognito\"",
  32511. height: math.unit(4, "meters")
  32512. },
  32513. {
  32514. name: "Small rampage",
  32515. height: math.unit(600, "meters")
  32516. },
  32517. {
  32518. name: "Mega",
  32519. height: math.unit(30, "km")
  32520. },
  32521. {
  32522. name: "Home-size",
  32523. height: math.unit(50, "km"),
  32524. default: true
  32525. },
  32526. {
  32527. name: "Giga",
  32528. height: math.unit(300, "km")
  32529. },
  32530. {
  32531. name: "Lounging",
  32532. height: math.unit(11000, "km")
  32533. },
  32534. {
  32535. name: "Planet snacking",
  32536. height: math.unit(2000000, "km")
  32537. },
  32538. ]
  32539. ))
  32540. characterMakers.push(() => makeCharacter(
  32541. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32542. {
  32543. front: {
  32544. height: math.unit(6, "feet"),
  32545. weight: math.unit(215, "lb"),
  32546. name: "Front",
  32547. image: {
  32548. source: "./media/characters/sapphire-svell/front.svg",
  32549. extra: 495 / 455,
  32550. bottom: 20 / 515
  32551. }
  32552. },
  32553. back: {
  32554. height: math.unit(6, "feet"),
  32555. weight: math.unit(216, "lb"),
  32556. name: "Back",
  32557. image: {
  32558. source: "./media/characters/sapphire-svell/back.svg",
  32559. extra: 497 / 477,
  32560. bottom: 7 / 504
  32561. }
  32562. },
  32563. maw: {
  32564. height: math.unit(1.57, "feet"),
  32565. name: "Maw",
  32566. image: {
  32567. source: "./media/characters/sapphire-svell/maw.svg"
  32568. }
  32569. },
  32570. foot: {
  32571. height: math.unit(1.07, "feet"),
  32572. name: "Foot",
  32573. image: {
  32574. source: "./media/characters/sapphire-svell/foot.svg"
  32575. }
  32576. },
  32577. toering: {
  32578. height: math.unit(1.7, "inch"),
  32579. name: "Toering",
  32580. image: {
  32581. source: "./media/characters/sapphire-svell/toering.svg"
  32582. }
  32583. },
  32584. },
  32585. [
  32586. {
  32587. name: "Normal",
  32588. height: math.unit(300, "feet"),
  32589. default: true
  32590. },
  32591. {
  32592. name: "Augmented",
  32593. height: math.unit(1250, "feet")
  32594. },
  32595. {
  32596. name: "Unleashed",
  32597. height: math.unit(3000, "feet")
  32598. },
  32599. ]
  32600. ))
  32601. characterMakers.push(() => makeCharacter(
  32602. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32603. {
  32604. side: {
  32605. height: math.unit(2 + 3 / 12, "feet"),
  32606. weight: math.unit(110, "lb"),
  32607. name: "Side",
  32608. image: {
  32609. source: "./media/characters/glitch-flux/side.svg",
  32610. extra: 997 / 805,
  32611. bottom: 20 / 1017
  32612. }
  32613. },
  32614. },
  32615. [
  32616. {
  32617. name: "Normal",
  32618. height: math.unit(2 + 3 / 12, "feet"),
  32619. default: true
  32620. },
  32621. ]
  32622. ))
  32623. characterMakers.push(() => makeCharacter(
  32624. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32625. {
  32626. front: {
  32627. height: math.unit(4, "meters"),
  32628. name: "Front",
  32629. image: {
  32630. source: "./media/characters/mid/front.svg",
  32631. extra: 507 / 476,
  32632. bottom: 17 / 524
  32633. }
  32634. },
  32635. back: {
  32636. height: math.unit(4, "meters"),
  32637. name: "Back",
  32638. image: {
  32639. source: "./media/characters/mid/back.svg",
  32640. extra: 519 / 487,
  32641. bottom: 7 / 526
  32642. }
  32643. },
  32644. stuck: {
  32645. height: math.unit(2.2, "meters"),
  32646. name: "Stuck",
  32647. image: {
  32648. source: "./media/characters/mid/stuck.svg",
  32649. extra: 1951 / 1869,
  32650. bottom: 88 / 2039
  32651. }
  32652. }
  32653. },
  32654. [
  32655. {
  32656. name: "Normal",
  32657. height: math.unit(4, "meters"),
  32658. default: true
  32659. },
  32660. {
  32661. name: "Big",
  32662. height: math.unit(10, "meters")
  32663. },
  32664. {
  32665. name: "Macro",
  32666. height: math.unit(800, "meters")
  32667. },
  32668. {
  32669. name: "Megamacro",
  32670. height: math.unit(100, "km")
  32671. },
  32672. {
  32673. name: "Overgrown",
  32674. height: math.unit(1, "parsec")
  32675. },
  32676. ]
  32677. ))
  32678. characterMakers.push(() => makeCharacter(
  32679. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32680. {
  32681. front: {
  32682. height: math.unit(2.5, "meters"),
  32683. weight: math.unit(225, "kg"),
  32684. name: "Front",
  32685. image: {
  32686. source: "./media/characters/iris/front.svg",
  32687. extra: 3348 / 3251,
  32688. bottom: 205 / 3553
  32689. }
  32690. },
  32691. maw: {
  32692. height: math.unit(0.56, "meter"),
  32693. name: "Maw",
  32694. image: {
  32695. source: "./media/characters/iris/maw.svg"
  32696. }
  32697. },
  32698. },
  32699. [
  32700. {
  32701. name: "Mewter cat",
  32702. height: math.unit(1.2, "meters")
  32703. },
  32704. {
  32705. name: "Normal",
  32706. height: math.unit(2.5, "meters"),
  32707. default: true
  32708. },
  32709. {
  32710. name: "Minimacro",
  32711. height: math.unit(18, "feet")
  32712. },
  32713. {
  32714. name: "Macro",
  32715. height: math.unit(140, "feet")
  32716. },
  32717. {
  32718. name: "Macro+",
  32719. height: math.unit(180, "meters")
  32720. },
  32721. {
  32722. name: "Megamacro",
  32723. height: math.unit(2746, "meters")
  32724. },
  32725. ]
  32726. ))
  32727. characterMakers.push(() => makeCharacter(
  32728. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32729. {
  32730. front: {
  32731. height: math.unit(6, "feet"),
  32732. weight: math.unit(135, "lb"),
  32733. name: "Front",
  32734. image: {
  32735. source: "./media/characters/axel/front.svg",
  32736. extra: 908 / 908,
  32737. bottom: 58 / 966
  32738. }
  32739. },
  32740. side: {
  32741. height: math.unit(6, "feet"),
  32742. weight: math.unit(135, "lb"),
  32743. name: "Side",
  32744. image: {
  32745. source: "./media/characters/axel/side.svg",
  32746. extra: 958 / 958,
  32747. bottom: 11 / 969
  32748. }
  32749. },
  32750. back: {
  32751. height: math.unit(6, "feet"),
  32752. weight: math.unit(135, "lb"),
  32753. name: "Back",
  32754. image: {
  32755. source: "./media/characters/axel/back.svg",
  32756. extra: 887 / 887,
  32757. bottom: 34 / 921
  32758. }
  32759. },
  32760. head: {
  32761. height: math.unit(1.07, "feet"),
  32762. name: "Head",
  32763. image: {
  32764. source: "./media/characters/axel/head.svg"
  32765. }
  32766. },
  32767. beak: {
  32768. height: math.unit(1.4, "feet"),
  32769. name: "Beak",
  32770. image: {
  32771. source: "./media/characters/axel/beak.svg"
  32772. }
  32773. },
  32774. beakSide: {
  32775. height: math.unit(1.4, "feet"),
  32776. name: "Beak Side",
  32777. image: {
  32778. source: "./media/characters/axel/beak-side.svg"
  32779. }
  32780. },
  32781. sheath: {
  32782. height: math.unit(0.5, "feet"),
  32783. name: "Sheath",
  32784. image: {
  32785. source: "./media/characters/axel/sheath.svg"
  32786. }
  32787. },
  32788. dick: {
  32789. height: math.unit(0.98, "feet"),
  32790. name: "Dick",
  32791. image: {
  32792. source: "./media/characters/axel/dick.svg"
  32793. }
  32794. },
  32795. },
  32796. [
  32797. {
  32798. name: "Macro",
  32799. height: math.unit(68, "meters"),
  32800. default: true
  32801. },
  32802. ]
  32803. ))
  32804. characterMakers.push(() => makeCharacter(
  32805. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32806. {
  32807. front: {
  32808. height: math.unit(3.5, "meters"),
  32809. weight: math.unit(1200, "kg"),
  32810. name: "Front",
  32811. image: {
  32812. source: "./media/characters/joanna/front.svg",
  32813. extra: 1596 / 1488,
  32814. bottom: 29 / 1625
  32815. }
  32816. },
  32817. back: {
  32818. height: math.unit(3.5, "meters"),
  32819. weight: math.unit(1200, "kg"),
  32820. name: "Back",
  32821. image: {
  32822. source: "./media/characters/joanna/back.svg",
  32823. extra: 1594 / 1495,
  32824. bottom: 26 / 1620
  32825. }
  32826. },
  32827. frontShorts: {
  32828. height: math.unit(3.5, "meters"),
  32829. weight: math.unit(1200, "kg"),
  32830. name: "Front (Shorts)",
  32831. image: {
  32832. source: "./media/characters/joanna/front-shorts.svg",
  32833. extra: 1596 / 1488,
  32834. bottom: 29 / 1625
  32835. }
  32836. },
  32837. frontBiker: {
  32838. height: math.unit(3.5, "meters"),
  32839. weight: math.unit(1200, "kg"),
  32840. name: "Front (Biker)",
  32841. image: {
  32842. source: "./media/characters/joanna/front-biker.svg",
  32843. extra: 1596 / 1488,
  32844. bottom: 29 / 1625
  32845. }
  32846. },
  32847. backBiker: {
  32848. height: math.unit(3.5, "meters"),
  32849. weight: math.unit(1200, "kg"),
  32850. name: "Back (Biker)",
  32851. image: {
  32852. source: "./media/characters/joanna/back-biker.svg",
  32853. extra: 1594 / 1495,
  32854. bottom: 88 / 1682
  32855. }
  32856. },
  32857. bikeLeft: {
  32858. height: math.unit(2.4, "meters"),
  32859. weight: math.unit(1600, "kg"),
  32860. name: "Bike (Left)",
  32861. image: {
  32862. source: "./media/characters/joanna/bike-left.svg",
  32863. extra: 720 / 720,
  32864. bottom: 8 / 728
  32865. }
  32866. },
  32867. bikeRight: {
  32868. height: math.unit(2.4, "meters"),
  32869. weight: math.unit(1600, "kg"),
  32870. name: "Bike (Right)",
  32871. image: {
  32872. source: "./media/characters/joanna/bike-right.svg",
  32873. extra: 720 / 720,
  32874. bottom: 8 / 728
  32875. }
  32876. },
  32877. },
  32878. [
  32879. {
  32880. name: "Incognito",
  32881. height: math.unit(3.5, "meters")
  32882. },
  32883. {
  32884. name: "Casual Big",
  32885. height: math.unit(200, "meters")
  32886. },
  32887. {
  32888. name: "Macro",
  32889. height: math.unit(600, "meters")
  32890. },
  32891. {
  32892. name: "Original",
  32893. height: math.unit(20, "km"),
  32894. default: true
  32895. },
  32896. {
  32897. name: "Giga",
  32898. height: math.unit(400, "km")
  32899. },
  32900. {
  32901. name: "Lounging",
  32902. height: math.unit(1500, "km")
  32903. },
  32904. {
  32905. name: "Planetary",
  32906. height: math.unit(200000, "km")
  32907. },
  32908. ]
  32909. ))
  32910. characterMakers.push(() => makeCharacter(
  32911. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32912. {
  32913. front: {
  32914. height: math.unit(6, "feet"),
  32915. weight: math.unit(150, "lb"),
  32916. name: "Front",
  32917. image: {
  32918. source: "./media/characters/hugo-sigil/front.svg",
  32919. extra: 522 / 500,
  32920. bottom: 2 / 524
  32921. }
  32922. },
  32923. back: {
  32924. height: math.unit(6, "feet"),
  32925. weight: math.unit(150, "lb"),
  32926. name: "Back",
  32927. image: {
  32928. source: "./media/characters/hugo-sigil/back.svg",
  32929. extra: 519 / 495,
  32930. bottom: 5 / 524
  32931. }
  32932. },
  32933. maw: {
  32934. height: math.unit(1.4, "feet"),
  32935. weight: math.unit(150, "lb"),
  32936. name: "Maw",
  32937. image: {
  32938. source: "./media/characters/hugo-sigil/maw.svg"
  32939. }
  32940. },
  32941. feet: {
  32942. height: math.unit(1.56, "feet"),
  32943. weight: math.unit(150, "lb"),
  32944. name: "Feet",
  32945. image: {
  32946. source: "./media/characters/hugo-sigil/feet.svg",
  32947. extra: 177 / 177,
  32948. bottom: 12 / 189
  32949. }
  32950. },
  32951. },
  32952. [
  32953. {
  32954. name: "Normal",
  32955. height: math.unit(6, "feet")
  32956. },
  32957. {
  32958. name: "Macro",
  32959. height: math.unit(200, "feet"),
  32960. default: true
  32961. },
  32962. ]
  32963. ))
  32964. characterMakers.push(() => makeCharacter(
  32965. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32966. {
  32967. front: {
  32968. height: math.unit(6, "feet"),
  32969. weight: math.unit(150, "lb"),
  32970. name: "Front",
  32971. image: {
  32972. source: "./media/characters/peri/front.svg",
  32973. extra: 2354 / 2233,
  32974. bottom: 49 / 2403
  32975. }
  32976. },
  32977. },
  32978. [
  32979. {
  32980. name: "Really Small",
  32981. height: math.unit(1, "nm")
  32982. },
  32983. {
  32984. name: "Micro",
  32985. height: math.unit(4, "inches")
  32986. },
  32987. {
  32988. name: "Normal",
  32989. height: math.unit(7, "inches"),
  32990. default: true
  32991. },
  32992. {
  32993. name: "Macro",
  32994. height: math.unit(400, "feet")
  32995. },
  32996. {
  32997. name: "Megamacro",
  32998. height: math.unit(100, "miles")
  32999. },
  33000. ]
  33001. ))
  33002. characterMakers.push(() => makeCharacter(
  33003. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33004. {
  33005. frontSlim: {
  33006. height: math.unit(7, "feet"),
  33007. name: "Front (Slim)",
  33008. image: {
  33009. source: "./media/characters/issilora/front-slim.svg",
  33010. extra: 529 / 449,
  33011. bottom: 53 / 582
  33012. }
  33013. },
  33014. sideSlim: {
  33015. height: math.unit(7, "feet"),
  33016. name: "Side (Slim)",
  33017. image: {
  33018. source: "./media/characters/issilora/side-slim.svg",
  33019. extra: 570 / 480,
  33020. bottom: 30 / 600
  33021. }
  33022. },
  33023. backSlim: {
  33024. height: math.unit(7, "feet"),
  33025. name: "Back (Slim)",
  33026. image: {
  33027. source: "./media/characters/issilora/back-slim.svg",
  33028. extra: 537 / 455,
  33029. bottom: 46 / 583
  33030. }
  33031. },
  33032. frontBuff: {
  33033. height: math.unit(7, "feet"),
  33034. name: "Front (Buff)",
  33035. image: {
  33036. source: "./media/characters/issilora/front-buff.svg",
  33037. extra: 2310 / 2035,
  33038. bottom: 335 / 2645
  33039. }
  33040. },
  33041. head: {
  33042. height: math.unit(1.94, "feet"),
  33043. name: "Head",
  33044. image: {
  33045. source: "./media/characters/issilora/head.svg"
  33046. }
  33047. },
  33048. },
  33049. [
  33050. {
  33051. name: "Minimum",
  33052. height: math.unit(7, "feet")
  33053. },
  33054. {
  33055. name: "Comfortable",
  33056. height: math.unit(17, "feet")
  33057. },
  33058. {
  33059. name: "Fun Size",
  33060. height: math.unit(47, "feet")
  33061. },
  33062. {
  33063. name: "Natural Macro",
  33064. height: math.unit(137, "feet"),
  33065. default: true
  33066. },
  33067. {
  33068. name: "Maximum Kaiju",
  33069. height: math.unit(397, "feet")
  33070. },
  33071. ]
  33072. ))
  33073. characterMakers.push(() => makeCharacter(
  33074. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33075. {
  33076. front: {
  33077. height: math.unit(50 + 9/12, "feet"),
  33078. weight: math.unit(32.8, "tons"),
  33079. name: "Front",
  33080. image: {
  33081. source: "./media/characters/irb'iiritaahn/front.svg",
  33082. extra: 1878/1826,
  33083. bottom: 326/2204
  33084. }
  33085. },
  33086. back: {
  33087. height: math.unit(50 + 9/12, "feet"),
  33088. weight: math.unit(32.8, "tons"),
  33089. name: "Back",
  33090. image: {
  33091. source: "./media/characters/irb'iiritaahn/back.svg",
  33092. extra: 2052/2018,
  33093. bottom: 152/2204
  33094. }
  33095. },
  33096. head: {
  33097. height: math.unit(12.86, "feet"),
  33098. name: "Head",
  33099. image: {
  33100. source: "./media/characters/irb'iiritaahn/head.svg"
  33101. }
  33102. },
  33103. maw: {
  33104. height: math.unit(9.66, "feet"),
  33105. name: "Maw",
  33106. image: {
  33107. source: "./media/characters/irb'iiritaahn/maw.svg"
  33108. }
  33109. },
  33110. frontDick: {
  33111. height: math.unit(8.78461, "feet"),
  33112. name: "Front Dick",
  33113. image: {
  33114. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33115. }
  33116. },
  33117. rearDick: {
  33118. height: math.unit(8.78461, "feet"),
  33119. name: "Rear Dick",
  33120. image: {
  33121. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33122. }
  33123. },
  33124. rearDickUnfolded: {
  33125. height: math.unit(8.78, "feet"),
  33126. name: "Rear Dick (Unfolded)",
  33127. image: {
  33128. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33129. }
  33130. },
  33131. wings: {
  33132. height: math.unit(43, "feet"),
  33133. name: "Wings",
  33134. image: {
  33135. source: "./media/characters/irb'iiritaahn/wings.svg"
  33136. }
  33137. },
  33138. },
  33139. [
  33140. {
  33141. name: "Macro",
  33142. height: math.unit(50 + 9/12, "feet"),
  33143. default: true
  33144. },
  33145. ]
  33146. ))
  33147. characterMakers.push(() => makeCharacter(
  33148. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33149. {
  33150. front: {
  33151. height: math.unit(205, "cm"),
  33152. weight: math.unit(102, "kg"),
  33153. name: "Front",
  33154. image: {
  33155. source: "./media/characters/irbisgreif/front.svg",
  33156. extra: 785/706,
  33157. bottom: 13/798
  33158. }
  33159. },
  33160. back: {
  33161. height: math.unit(205, "cm"),
  33162. weight: math.unit(102, "kg"),
  33163. name: "Back",
  33164. image: {
  33165. source: "./media/characters/irbisgreif/back.svg",
  33166. extra: 713/701,
  33167. bottom: 26/739
  33168. }
  33169. },
  33170. frontDressed: {
  33171. height: math.unit(216, "cm"),
  33172. weight: math.unit(102, "kg"),
  33173. name: "Front-dressed",
  33174. image: {
  33175. source: "./media/characters/irbisgreif/front-dressed.svg",
  33176. extra: 902/776,
  33177. bottom: 14/916
  33178. }
  33179. },
  33180. sideDressed: {
  33181. height: math.unit(195, "cm"),
  33182. weight: math.unit(102, "kg"),
  33183. name: "Side-dressed",
  33184. image: {
  33185. source: "./media/characters/irbisgreif/side-dressed.svg",
  33186. extra: 788/688,
  33187. bottom: 21/809
  33188. }
  33189. },
  33190. backDressed: {
  33191. height: math.unit(216, "cm"),
  33192. weight: math.unit(102, "kg"),
  33193. name: "Back-dressed",
  33194. image: {
  33195. source: "./media/characters/irbisgreif/back-dressed.svg",
  33196. extra: 901/783,
  33197. bottom: 10/911
  33198. }
  33199. },
  33200. dick: {
  33201. height: math.unit(0.49, "feet"),
  33202. name: "Dick",
  33203. image: {
  33204. source: "./media/characters/irbisgreif/dick.svg"
  33205. }
  33206. },
  33207. wingTop: {
  33208. height: math.unit(1.93 , "feet"),
  33209. name: "Wing-top",
  33210. image: {
  33211. source: "./media/characters/irbisgreif/wing-top.svg"
  33212. }
  33213. },
  33214. wingBottom: {
  33215. height: math.unit(1.93 , "feet"),
  33216. name: "Wing-bottom",
  33217. image: {
  33218. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33219. }
  33220. },
  33221. },
  33222. [
  33223. {
  33224. name: "Normal",
  33225. height: math.unit(216, "cm"),
  33226. default: true
  33227. },
  33228. ]
  33229. ))
  33230. characterMakers.push(() => makeCharacter(
  33231. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33232. {
  33233. front: {
  33234. height: math.unit(6, "feet"),
  33235. weight: math.unit(150, "lb"),
  33236. name: "Front",
  33237. image: {
  33238. source: "./media/characters/pride/front.svg",
  33239. extra: 1299/1230,
  33240. bottom: 18/1317
  33241. }
  33242. },
  33243. },
  33244. [
  33245. {
  33246. name: "Normal",
  33247. height: math.unit(7, "feet")
  33248. },
  33249. {
  33250. name: "Mini-macro",
  33251. height: math.unit(11, "feet")
  33252. },
  33253. {
  33254. name: "Macro",
  33255. height: math.unit(15, "meters"),
  33256. default: true
  33257. },
  33258. {
  33259. name: "Macro+",
  33260. height: math.unit(40, "meters")
  33261. },
  33262. ]
  33263. ))
  33264. characterMakers.push(() => makeCharacter(
  33265. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33266. {
  33267. front: {
  33268. height: math.unit(4 + 2 / 12, "feet"),
  33269. weight: math.unit(95, "lb"),
  33270. name: "Front",
  33271. image: {
  33272. source: "./media/characters/vaelophis-nyx/front.svg",
  33273. extra: 2532/2330,
  33274. bottom: 0/2532
  33275. }
  33276. },
  33277. back: {
  33278. height: math.unit(4 + 2 / 12, "feet"),
  33279. weight: math.unit(95, "lb"),
  33280. name: "Back",
  33281. image: {
  33282. source: "./media/characters/vaelophis-nyx/back.svg",
  33283. extra: 2484/2361,
  33284. bottom: 0/2484
  33285. }
  33286. },
  33287. feralSide: {
  33288. height: math.unit(2 + 1/12, "feet"),
  33289. weight: math.unit(20, "lb"),
  33290. name: "Feral (Side)",
  33291. image: {
  33292. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33293. extra: 1721/1581,
  33294. bottom: 70/1791
  33295. }
  33296. },
  33297. feralLazing: {
  33298. height: math.unit(1.08, "feet"),
  33299. weight: math.unit(20, "lb"),
  33300. name: "Feral (Lazing)",
  33301. image: {
  33302. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33303. extra: 822/822,
  33304. bottom: 248/1070
  33305. }
  33306. },
  33307. ear: {
  33308. height: math.unit(0.416, "feet"),
  33309. name: "Ear",
  33310. image: {
  33311. source: "./media/characters/vaelophis-nyx/ear.svg"
  33312. }
  33313. },
  33314. eye: {
  33315. height: math.unit(0.0748, "feet"),
  33316. name: "Eye",
  33317. image: {
  33318. source: "./media/characters/vaelophis-nyx/eye.svg"
  33319. }
  33320. },
  33321. mouth: {
  33322. height: math.unit(0.378, "feet"),
  33323. name: "Mouth",
  33324. image: {
  33325. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33326. }
  33327. },
  33328. spade: {
  33329. height: math.unit(0.55, "feet"),
  33330. name: "Spade",
  33331. image: {
  33332. source: "./media/characters/vaelophis-nyx/spade.svg"
  33333. }
  33334. },
  33335. },
  33336. [
  33337. {
  33338. name: "Normal",
  33339. height: math.unit(4 + 2/12, "feet"),
  33340. default: true
  33341. },
  33342. ]
  33343. ))
  33344. characterMakers.push(() => makeCharacter(
  33345. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33346. {
  33347. front: {
  33348. height: math.unit(7, "feet"),
  33349. weight: math.unit(231, "lb"),
  33350. name: "Front",
  33351. image: {
  33352. source: "./media/characters/flux/front.svg",
  33353. extra: 919/871,
  33354. bottom: 0/919
  33355. }
  33356. },
  33357. back: {
  33358. height: math.unit(7, "feet"),
  33359. weight: math.unit(231, "lb"),
  33360. name: "Back",
  33361. image: {
  33362. source: "./media/characters/flux/back.svg",
  33363. extra: 1040/992,
  33364. bottom: 0/1040
  33365. }
  33366. },
  33367. frontDressed: {
  33368. height: math.unit(7, "feet"),
  33369. weight: math.unit(231, "lb"),
  33370. name: "Front (Dressed)",
  33371. image: {
  33372. source: "./media/characters/flux/front-dressed.svg",
  33373. extra: 919/871,
  33374. bottom: 0/919
  33375. }
  33376. },
  33377. feralSide: {
  33378. height: math.unit(5, "feet"),
  33379. weight: math.unit(150, "lb"),
  33380. name: "Feral (Side)",
  33381. image: {
  33382. source: "./media/characters/flux/feral-side.svg",
  33383. extra: 598/528,
  33384. bottom: 28/626
  33385. }
  33386. },
  33387. head: {
  33388. height: math.unit(1.585, "feet"),
  33389. name: "Head",
  33390. image: {
  33391. source: "./media/characters/flux/head.svg"
  33392. }
  33393. },
  33394. headSide: {
  33395. height: math.unit(1.74, "feet"),
  33396. name: "Head (Side)",
  33397. image: {
  33398. source: "./media/characters/flux/head-side.svg"
  33399. }
  33400. },
  33401. headSideFire: {
  33402. height: math.unit(1.76, "feet"),
  33403. name: "Head (Side, Fire)",
  33404. image: {
  33405. source: "./media/characters/flux/head-side-fire.svg"
  33406. }
  33407. },
  33408. },
  33409. [
  33410. {
  33411. name: "Normal",
  33412. height: math.unit(7, "feet"),
  33413. default: true
  33414. },
  33415. ]
  33416. ))
  33417. characterMakers.push(() => makeCharacter(
  33418. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33419. {
  33420. front: {
  33421. height: math.unit(9, "feet"),
  33422. weight: math.unit(1012, "lb"),
  33423. name: "Front",
  33424. image: {
  33425. source: "./media/characters/ulfra-lupae/front.svg",
  33426. extra: 1083/1011,
  33427. bottom: 67/1150
  33428. }
  33429. },
  33430. },
  33431. [
  33432. {
  33433. name: "Micro",
  33434. height: math.unit(6, "inches")
  33435. },
  33436. {
  33437. name: "Socializing",
  33438. height: math.unit(6 + 5/12, "feet")
  33439. },
  33440. {
  33441. name: "Normal",
  33442. height: math.unit(9, "feet"),
  33443. default: true
  33444. },
  33445. {
  33446. name: "Macro",
  33447. height: math.unit(150, "feet")
  33448. },
  33449. ]
  33450. ))
  33451. characterMakers.push(() => makeCharacter(
  33452. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33453. {
  33454. front: {
  33455. height: math.unit(5 + 2/12, "feet"),
  33456. weight: math.unit(120, "lb"),
  33457. name: "Front",
  33458. image: {
  33459. source: "./media/characters/timber/front.svg",
  33460. extra: 2814/2705,
  33461. bottom: 181/2995
  33462. }
  33463. },
  33464. },
  33465. [
  33466. {
  33467. name: "Normal",
  33468. height: math.unit(5 + 2/12, "feet"),
  33469. default: true
  33470. },
  33471. ]
  33472. ))
  33473. characterMakers.push(() => makeCharacter(
  33474. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33475. {
  33476. front: {
  33477. height: math.unit(9, "feet"),
  33478. name: "Front",
  33479. image: {
  33480. source: "./media/characters/nicki/front.svg",
  33481. extra: 1240/990,
  33482. bottom: 45/1285
  33483. },
  33484. form: "anthro",
  33485. default: true
  33486. },
  33487. side: {
  33488. height: math.unit(9, "feet"),
  33489. name: "Side",
  33490. image: {
  33491. source: "./media/characters/nicki/side.svg",
  33492. extra: 1047/973,
  33493. bottom: 61/1108
  33494. },
  33495. form: "anthro"
  33496. },
  33497. back: {
  33498. height: math.unit(9, "feet"),
  33499. name: "Back",
  33500. image: {
  33501. source: "./media/characters/nicki/back.svg",
  33502. extra: 1006/965,
  33503. bottom: 39/1045
  33504. },
  33505. form: "anthro"
  33506. },
  33507. taur: {
  33508. height: math.unit(15, "feet"),
  33509. name: "Taur",
  33510. image: {
  33511. source: "./media/characters/nicki/taur.svg",
  33512. extra: 1592/1347,
  33513. bottom: 0/1592
  33514. },
  33515. form: "taur",
  33516. default: true
  33517. },
  33518. },
  33519. [
  33520. {
  33521. name: "Normal",
  33522. height: math.unit(9, "feet"),
  33523. form: "anthro",
  33524. default: true
  33525. },
  33526. {
  33527. name: "Normal",
  33528. height: math.unit(15, "feet"),
  33529. form: "taur",
  33530. default: true
  33531. }
  33532. ],
  33533. {
  33534. "anthro": {
  33535. name: "Anthro",
  33536. default: true
  33537. },
  33538. "taur": {
  33539. name: "Taur"
  33540. }
  33541. }
  33542. ))
  33543. characterMakers.push(() => makeCharacter(
  33544. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33545. {
  33546. front: {
  33547. height: math.unit(7 + 10/12, "feet"),
  33548. weight: math.unit(3.5, "tons"),
  33549. name: "Front",
  33550. image: {
  33551. source: "./media/characters/lee/front.svg",
  33552. extra: 1773/1615,
  33553. bottom: 86/1859
  33554. }
  33555. },
  33556. hand: {
  33557. height: math.unit(1.78, "feet"),
  33558. name: "Hand",
  33559. image: {
  33560. source: "./media/characters/lee/hand.svg"
  33561. }
  33562. },
  33563. maw: {
  33564. height: math.unit(1.18, "feet"),
  33565. name: "Maw",
  33566. image: {
  33567. source: "./media/characters/lee/maw.svg"
  33568. }
  33569. },
  33570. },
  33571. [
  33572. {
  33573. name: "Normal",
  33574. height: math.unit(7 + 10/12, "feet"),
  33575. default: true
  33576. },
  33577. ]
  33578. ))
  33579. characterMakers.push(() => makeCharacter(
  33580. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33581. {
  33582. front: {
  33583. height: math.unit(9, "feet"),
  33584. name: "Front",
  33585. image: {
  33586. source: "./media/characters/guti/front.svg",
  33587. extra: 4551/4355,
  33588. bottom: 123/4674
  33589. }
  33590. },
  33591. tongue: {
  33592. height: math.unit(1, "feet"),
  33593. name: "Tongue",
  33594. image: {
  33595. source: "./media/characters/guti/tongue.svg"
  33596. }
  33597. },
  33598. paw: {
  33599. height: math.unit(1.18, "feet"),
  33600. name: "Paw",
  33601. image: {
  33602. source: "./media/characters/guti/paw.svg"
  33603. }
  33604. },
  33605. },
  33606. [
  33607. {
  33608. name: "Normal",
  33609. height: math.unit(9, "feet"),
  33610. default: true
  33611. },
  33612. ]
  33613. ))
  33614. characterMakers.push(() => makeCharacter(
  33615. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33616. {
  33617. side: {
  33618. height: math.unit(5, "meters"),
  33619. name: "Side",
  33620. image: {
  33621. source: "./media/characters/vesper/side.svg",
  33622. extra: 1605/1518,
  33623. bottom: 0/1605
  33624. }
  33625. },
  33626. },
  33627. [
  33628. {
  33629. name: "Small",
  33630. height: math.unit(5, "meters")
  33631. },
  33632. {
  33633. name: "Sage",
  33634. height: math.unit(100, "meters"),
  33635. default: true
  33636. },
  33637. {
  33638. name: "Fun Size",
  33639. height: math.unit(600, "meters")
  33640. },
  33641. {
  33642. name: "Goddess",
  33643. height: math.unit(20000, "km")
  33644. },
  33645. {
  33646. name: "Maximum",
  33647. height: math.unit(5, "galaxies")
  33648. },
  33649. ]
  33650. ))
  33651. characterMakers.push(() => makeCharacter(
  33652. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33653. {
  33654. front: {
  33655. height: math.unit(6 + 3/12, "feet"),
  33656. weight: math.unit(190, "lb"),
  33657. name: "Front",
  33658. image: {
  33659. source: "./media/characters/gawain/front.svg",
  33660. extra: 2222/2139,
  33661. bottom: 90/2312
  33662. }
  33663. },
  33664. back: {
  33665. height: math.unit(6 + 3/12, "feet"),
  33666. weight: math.unit(190, "lb"),
  33667. name: "Back",
  33668. image: {
  33669. source: "./media/characters/gawain/back.svg",
  33670. extra: 2199/2111,
  33671. bottom: 73/2272
  33672. }
  33673. },
  33674. },
  33675. [
  33676. {
  33677. name: "Normal",
  33678. height: math.unit(6 + 3/12, "feet"),
  33679. default: true
  33680. },
  33681. ]
  33682. ))
  33683. characterMakers.push(() => makeCharacter(
  33684. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33685. {
  33686. side: {
  33687. height: math.unit(3.5, "meters"),
  33688. weight: math.unit(16000, "lb"),
  33689. name: "Side",
  33690. image: {
  33691. source: "./media/characters/dascalti/side.svg",
  33692. extra: 392/273,
  33693. bottom: 47/439
  33694. }
  33695. },
  33696. breath: {
  33697. height: math.unit(7.4, "feet"),
  33698. name: "Breath",
  33699. image: {
  33700. source: "./media/characters/dascalti/breath.svg"
  33701. }
  33702. },
  33703. fed: {
  33704. height: math.unit(3.6, "meters"),
  33705. weight: math.unit(16000, "lb"),
  33706. name: "Fed",
  33707. image: {
  33708. source: "./media/characters/dascalti/fed.svg",
  33709. extra: 1419/820,
  33710. bottom: 95/1514
  33711. }
  33712. },
  33713. },
  33714. [
  33715. {
  33716. name: "Normal",
  33717. height: math.unit(3.5, "meters"),
  33718. default: true
  33719. },
  33720. ]
  33721. ))
  33722. characterMakers.push(() => makeCharacter(
  33723. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33724. {
  33725. front: {
  33726. height: math.unit(3 + 5/12, "feet"),
  33727. name: "Front",
  33728. image: {
  33729. source: "./media/characters/mauve/front.svg",
  33730. extra: 1126/1033,
  33731. bottom: 65/1191
  33732. }
  33733. },
  33734. side: {
  33735. height: math.unit(3 + 5/12, "feet"),
  33736. name: "Side",
  33737. image: {
  33738. source: "./media/characters/mauve/side.svg",
  33739. extra: 1089/1001,
  33740. bottom: 29/1118
  33741. }
  33742. },
  33743. back: {
  33744. height: math.unit(3 + 5/12, "feet"),
  33745. name: "Back",
  33746. image: {
  33747. source: "./media/characters/mauve/back.svg",
  33748. extra: 1173/1053,
  33749. bottom: 109/1282
  33750. }
  33751. },
  33752. },
  33753. [
  33754. {
  33755. name: "Normal",
  33756. height: math.unit(3 + 5/12, "feet"),
  33757. default: true
  33758. },
  33759. ]
  33760. ))
  33761. characterMakers.push(() => makeCharacter(
  33762. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33763. {
  33764. front: {
  33765. height: math.unit(6 + 3/12, "feet"),
  33766. weight: math.unit(430, "lb"),
  33767. name: "Front",
  33768. image: {
  33769. source: "./media/characters/carlos/front.svg",
  33770. extra: 1964/1913,
  33771. bottom: 70/2034
  33772. }
  33773. },
  33774. },
  33775. [
  33776. {
  33777. name: "Normal",
  33778. height: math.unit(6 + 3/12, "feet"),
  33779. default: true
  33780. },
  33781. ]
  33782. ))
  33783. characterMakers.push(() => makeCharacter(
  33784. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33785. {
  33786. back: {
  33787. height: math.unit(5 + 10/12, "feet"),
  33788. weight: math.unit(200, "lb"),
  33789. name: "Back",
  33790. image: {
  33791. source: "./media/characters/jax/back.svg",
  33792. extra: 764/739,
  33793. bottom: 25/789
  33794. }
  33795. },
  33796. },
  33797. [
  33798. {
  33799. name: "Normal",
  33800. height: math.unit(5 + 10/12, "feet"),
  33801. default: true
  33802. },
  33803. ]
  33804. ))
  33805. characterMakers.push(() => makeCharacter(
  33806. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33807. {
  33808. front: {
  33809. height: math.unit(8, "feet"),
  33810. weight: math.unit(250, "lb"),
  33811. name: "Front",
  33812. image: {
  33813. source: "./media/characters/eikthynir/front.svg",
  33814. extra: 1332/1166,
  33815. bottom: 82/1414
  33816. }
  33817. },
  33818. back: {
  33819. height: math.unit(8, "feet"),
  33820. weight: math.unit(250, "lb"),
  33821. name: "Back",
  33822. image: {
  33823. source: "./media/characters/eikthynir/back.svg",
  33824. extra: 1342/1190,
  33825. bottom: 19/1361
  33826. }
  33827. },
  33828. dick: {
  33829. height: math.unit(2.35, "feet"),
  33830. name: "Dick",
  33831. image: {
  33832. source: "./media/characters/eikthynir/dick.svg"
  33833. }
  33834. },
  33835. },
  33836. [
  33837. {
  33838. name: "Normal",
  33839. height: math.unit(8, "feet"),
  33840. default: true
  33841. },
  33842. ]
  33843. ))
  33844. characterMakers.push(() => makeCharacter(
  33845. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33846. {
  33847. front: {
  33848. height: math.unit(99, "meters"),
  33849. weight: math.unit(13000, "tons"),
  33850. name: "Front",
  33851. image: {
  33852. source: "./media/characters/zlmos/front.svg",
  33853. extra: 2202/1992,
  33854. bottom: 315/2517
  33855. }
  33856. },
  33857. },
  33858. [
  33859. {
  33860. name: "Macro",
  33861. height: math.unit(99, "meters"),
  33862. default: true
  33863. },
  33864. ]
  33865. ))
  33866. characterMakers.push(() => makeCharacter(
  33867. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33868. {
  33869. front: {
  33870. height: math.unit(6 + 5/12, "feet"),
  33871. name: "Front",
  33872. image: {
  33873. source: "./media/characters/purri/front.svg",
  33874. extra: 1698/1610,
  33875. bottom: 32/1730
  33876. }
  33877. },
  33878. frontAlt: {
  33879. height: math.unit(6 + 5/12, "feet"),
  33880. name: "Front (Alt)",
  33881. image: {
  33882. source: "./media/characters/purri/front-alt.svg",
  33883. extra: 450/420,
  33884. bottom: 26/476
  33885. }
  33886. },
  33887. boots: {
  33888. height: math.unit(5.5, "feet"),
  33889. name: "Boots",
  33890. image: {
  33891. source: "./media/characters/purri/boots.svg",
  33892. extra: 905/853,
  33893. bottom: 18/923
  33894. }
  33895. },
  33896. lying: {
  33897. height: math.unit(2, "feet"),
  33898. name: "Lying",
  33899. image: {
  33900. source: "./media/characters/purri/lying.svg",
  33901. extra: 940/843,
  33902. bottom: 146/1086
  33903. }
  33904. },
  33905. devious: {
  33906. height: math.unit(1.77, "feet"),
  33907. name: "Devious",
  33908. image: {
  33909. source: "./media/characters/purri/devious.svg",
  33910. extra: 1440/1155,
  33911. bottom: 147/1587
  33912. }
  33913. },
  33914. bean: {
  33915. height: math.unit(1.94, "feet"),
  33916. name: "Bean",
  33917. image: {
  33918. source: "./media/characters/purri/bean.svg"
  33919. }
  33920. },
  33921. },
  33922. [
  33923. {
  33924. name: "Micro",
  33925. height: math.unit(1, "mm")
  33926. },
  33927. {
  33928. name: "Normal",
  33929. height: math.unit(6 + 5/12, "feet"),
  33930. default: true
  33931. },
  33932. {
  33933. name: "Macro :3c",
  33934. height: math.unit(2, "miles")
  33935. },
  33936. ]
  33937. ))
  33938. characterMakers.push(() => makeCharacter(
  33939. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33940. {
  33941. front: {
  33942. height: math.unit(6 + 2/12, "feet"),
  33943. weight: math.unit(250, "lb"),
  33944. name: "Front",
  33945. image: {
  33946. source: "./media/characters/moonlight/front.svg",
  33947. extra: 1044/908,
  33948. bottom: 56/1100
  33949. }
  33950. },
  33951. feral: {
  33952. height: math.unit(3 + 1/12, "feet"),
  33953. weight: math.unit(50, "kg"),
  33954. name: "Feral",
  33955. image: {
  33956. source: "./media/characters/moonlight/feral.svg",
  33957. extra: 3705/2791,
  33958. bottom: 145/3850
  33959. }
  33960. },
  33961. paw: {
  33962. height: math.unit(1, "feet"),
  33963. name: "Paw",
  33964. image: {
  33965. source: "./media/characters/moonlight/paw.svg"
  33966. }
  33967. },
  33968. paws: {
  33969. height: math.unit(0.98, "feet"),
  33970. name: "Paws",
  33971. image: {
  33972. source: "./media/characters/moonlight/paws.svg",
  33973. extra: 939/939,
  33974. bottom: 50/989
  33975. }
  33976. },
  33977. mouth: {
  33978. height: math.unit(0.48, "feet"),
  33979. name: "Mouth",
  33980. image: {
  33981. source: "./media/characters/moonlight/mouth.svg"
  33982. }
  33983. },
  33984. dick: {
  33985. height: math.unit(1.46, "feet"),
  33986. name: "Dick",
  33987. image: {
  33988. source: "./media/characters/moonlight/dick.svg"
  33989. }
  33990. },
  33991. },
  33992. [
  33993. {
  33994. name: "Normal",
  33995. height: math.unit(6 + 2/12, "feet"),
  33996. default: true
  33997. },
  33998. {
  33999. name: "Macro",
  34000. height: math.unit(300, "feet")
  34001. },
  34002. {
  34003. name: "Macro+",
  34004. height: math.unit(1, "mile")
  34005. },
  34006. {
  34007. name: "Mt. Moon",
  34008. height: math.unit(5, "miles")
  34009. },
  34010. {
  34011. name: "Megamacro",
  34012. height: math.unit(15, "miles")
  34013. },
  34014. ]
  34015. ))
  34016. characterMakers.push(() => makeCharacter(
  34017. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34018. {
  34019. back: {
  34020. height: math.unit(6, "feet"),
  34021. weight: math.unit(150, "lb"),
  34022. name: "Back",
  34023. image: {
  34024. source: "./media/characters/sylen/back.svg",
  34025. extra: 1335/1273,
  34026. bottom: 107/1442
  34027. }
  34028. },
  34029. },
  34030. [
  34031. {
  34032. name: "Normal",
  34033. height: math.unit(5 + 5/12, "feet")
  34034. },
  34035. {
  34036. name: "Megamacro",
  34037. height: math.unit(3, "miles"),
  34038. default: true
  34039. },
  34040. ]
  34041. ))
  34042. characterMakers.push(() => makeCharacter(
  34043. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34044. {
  34045. front: {
  34046. height: math.unit(6, "feet"),
  34047. weight: math.unit(190, "lb"),
  34048. name: "Front",
  34049. image: {
  34050. source: "./media/characters/huttser/front.svg",
  34051. extra: 1152/1058,
  34052. bottom: 23/1175
  34053. }
  34054. },
  34055. side: {
  34056. height: math.unit(6, "feet"),
  34057. weight: math.unit(190, "lb"),
  34058. name: "Side",
  34059. image: {
  34060. source: "./media/characters/huttser/side.svg",
  34061. extra: 1174/1065,
  34062. bottom: 18/1192
  34063. }
  34064. },
  34065. back: {
  34066. height: math.unit(6, "feet"),
  34067. weight: math.unit(190, "lb"),
  34068. name: "Back",
  34069. image: {
  34070. source: "./media/characters/huttser/back.svg",
  34071. extra: 1158/1056,
  34072. bottom: 12/1170
  34073. }
  34074. },
  34075. },
  34076. [
  34077. ]
  34078. ))
  34079. characterMakers.push(() => makeCharacter(
  34080. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34081. {
  34082. side: {
  34083. height: math.unit(12 + 9/12, "feet"),
  34084. weight: math.unit(15000, "lb"),
  34085. name: "Side",
  34086. image: {
  34087. source: "./media/characters/faan/side.svg",
  34088. extra: 2747/2697,
  34089. bottom: 0/2747
  34090. }
  34091. },
  34092. front: {
  34093. height: math.unit(12 + 9/12, "feet"),
  34094. weight: math.unit(15000, "lb"),
  34095. name: "Front",
  34096. image: {
  34097. source: "./media/characters/faan/front.svg",
  34098. extra: 607/571,
  34099. bottom: 24/631
  34100. }
  34101. },
  34102. head: {
  34103. height: math.unit(2.85, "feet"),
  34104. name: "Head",
  34105. image: {
  34106. source: "./media/characters/faan/head.svg"
  34107. }
  34108. },
  34109. headAlt: {
  34110. height: math.unit(3.13, "feet"),
  34111. name: "Head-alt",
  34112. image: {
  34113. source: "./media/characters/faan/head-alt.svg"
  34114. }
  34115. },
  34116. },
  34117. [
  34118. {
  34119. name: "Normal",
  34120. height: math.unit(12 + 9/12, "feet"),
  34121. default: true
  34122. },
  34123. ]
  34124. ))
  34125. characterMakers.push(() => makeCharacter(
  34126. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34127. {
  34128. front: {
  34129. height: math.unit(6, "feet"),
  34130. weight: math.unit(300, "lb"),
  34131. name: "Front",
  34132. image: {
  34133. source: "./media/characters/tanio/front.svg",
  34134. extra: 711/673,
  34135. bottom: 25/736
  34136. }
  34137. },
  34138. },
  34139. [
  34140. {
  34141. name: "Normal",
  34142. height: math.unit(6, "feet"),
  34143. default: true
  34144. },
  34145. ]
  34146. ))
  34147. characterMakers.push(() => makeCharacter(
  34148. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34149. {
  34150. front: {
  34151. height: math.unit(3, "inches"),
  34152. name: "Front",
  34153. image: {
  34154. source: "./media/characters/noboru/front.svg",
  34155. extra: 1039/932,
  34156. bottom: 18/1057
  34157. }
  34158. },
  34159. },
  34160. [
  34161. {
  34162. name: "Micro",
  34163. height: math.unit(3, "inches"),
  34164. default: true
  34165. },
  34166. ]
  34167. ))
  34168. characterMakers.push(() => makeCharacter(
  34169. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34170. {
  34171. front: {
  34172. height: math.unit(1.85, "meters"),
  34173. weight: math.unit(80, "kg"),
  34174. name: "Front",
  34175. image: {
  34176. source: "./media/characters/daniel-barrett/front.svg",
  34177. extra: 355/337,
  34178. bottom: 9/364
  34179. }
  34180. },
  34181. },
  34182. [
  34183. {
  34184. name: "Pico",
  34185. height: math.unit(0.0433, "mm")
  34186. },
  34187. {
  34188. name: "Nano",
  34189. height: math.unit(1.5, "mm")
  34190. },
  34191. {
  34192. name: "Micro",
  34193. height: math.unit(5.3, "cm"),
  34194. default: true
  34195. },
  34196. {
  34197. name: "Normal",
  34198. height: math.unit(1.85, "meters")
  34199. },
  34200. {
  34201. name: "Macro",
  34202. height: math.unit(64.7, "meters")
  34203. },
  34204. {
  34205. name: "Megamacro",
  34206. height: math.unit(2.26, "km")
  34207. },
  34208. {
  34209. name: "Gigamacro",
  34210. height: math.unit(79, "km")
  34211. },
  34212. {
  34213. name: "Teramacro",
  34214. height: math.unit(2765, "km")
  34215. },
  34216. {
  34217. name: "Petamacro",
  34218. height: math.unit(96678, "km")
  34219. },
  34220. ]
  34221. ))
  34222. characterMakers.push(() => makeCharacter(
  34223. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34224. {
  34225. front: {
  34226. height: math.unit(30, "meters"),
  34227. weight: math.unit(400, "tons"),
  34228. name: "Front",
  34229. image: {
  34230. source: "./media/characters/zeel/front.svg",
  34231. extra: 2599/2599,
  34232. bottom: 226/2825
  34233. }
  34234. },
  34235. },
  34236. [
  34237. {
  34238. name: "Macro",
  34239. height: math.unit(30, "meters"),
  34240. default: true
  34241. },
  34242. ]
  34243. ))
  34244. characterMakers.push(() => makeCharacter(
  34245. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34246. {
  34247. front: {
  34248. height: math.unit(6 + 7/12, "feet"),
  34249. weight: math.unit(210, "lb"),
  34250. name: "Front",
  34251. image: {
  34252. source: "./media/characters/tarn/front.svg",
  34253. extra: 3517/3220,
  34254. bottom: 91/3608
  34255. }
  34256. },
  34257. back: {
  34258. height: math.unit(6 + 7/12, "feet"),
  34259. weight: math.unit(210, "lb"),
  34260. name: "Back",
  34261. image: {
  34262. source: "./media/characters/tarn/back.svg",
  34263. extra: 3566/3241,
  34264. bottom: 34/3600
  34265. }
  34266. },
  34267. dick: {
  34268. height: math.unit(1.65, "feet"),
  34269. name: "Dick",
  34270. image: {
  34271. source: "./media/characters/tarn/dick.svg"
  34272. }
  34273. },
  34274. paw: {
  34275. height: math.unit(1.80, "feet"),
  34276. name: "Paw",
  34277. image: {
  34278. source: "./media/characters/tarn/paw.svg"
  34279. }
  34280. },
  34281. tongue: {
  34282. height: math.unit(0.97, "feet"),
  34283. name: "Tongue",
  34284. image: {
  34285. source: "./media/characters/tarn/tongue.svg"
  34286. }
  34287. },
  34288. },
  34289. [
  34290. {
  34291. name: "Micro",
  34292. height: math.unit(4, "inches")
  34293. },
  34294. {
  34295. name: "Normal",
  34296. height: math.unit(6 + 7/12, "feet"),
  34297. default: true
  34298. },
  34299. {
  34300. name: "Macro",
  34301. height: math.unit(300, "feet")
  34302. },
  34303. ]
  34304. ))
  34305. characterMakers.push(() => makeCharacter(
  34306. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34307. {
  34308. front: {
  34309. height: math.unit(5 + 7/12, "feet"),
  34310. weight: math.unit(80, "kg"),
  34311. name: "Front",
  34312. image: {
  34313. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34314. extra: 3023/2865,
  34315. bottom: 33/3056
  34316. }
  34317. },
  34318. back: {
  34319. height: math.unit(5 + 7/12, "feet"),
  34320. weight: math.unit(80, "kg"),
  34321. name: "Back",
  34322. image: {
  34323. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34324. extra: 3020/2886,
  34325. bottom: 30/3050
  34326. }
  34327. },
  34328. dick: {
  34329. height: math.unit(0.98, "feet"),
  34330. name: "Dick",
  34331. image: {
  34332. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34333. }
  34334. },
  34335. anatomy: {
  34336. height: math.unit(2.86, "feet"),
  34337. name: "Anatomy",
  34338. image: {
  34339. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34340. }
  34341. },
  34342. },
  34343. [
  34344. {
  34345. name: "Really Small",
  34346. height: math.unit(2, "inches")
  34347. },
  34348. {
  34349. name: "Micro",
  34350. height: math.unit(5.583, "inches")
  34351. },
  34352. {
  34353. name: "Normal",
  34354. height: math.unit(5 + 7/12, "feet"),
  34355. default: true
  34356. },
  34357. {
  34358. name: "Macro",
  34359. height: math.unit(67, "feet")
  34360. },
  34361. {
  34362. name: "Megamacro",
  34363. height: math.unit(134, "feet")
  34364. },
  34365. ]
  34366. ))
  34367. characterMakers.push(() => makeCharacter(
  34368. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34369. {
  34370. front: {
  34371. height: math.unit(9, "feet"),
  34372. weight: math.unit(120, "lb"),
  34373. name: "Front",
  34374. image: {
  34375. source: "./media/characters/sally/front.svg",
  34376. extra: 1506/1349,
  34377. bottom: 66/1572
  34378. }
  34379. },
  34380. },
  34381. [
  34382. {
  34383. name: "Normal",
  34384. height: math.unit(9, "feet"),
  34385. default: true
  34386. },
  34387. ]
  34388. ))
  34389. characterMakers.push(() => makeCharacter(
  34390. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34391. {
  34392. front: {
  34393. height: math.unit(8, "feet"),
  34394. weight: math.unit(900, "lb"),
  34395. name: "Front",
  34396. image: {
  34397. source: "./media/characters/owen/front.svg",
  34398. extra: 1761/1657,
  34399. bottom: 74/1835
  34400. }
  34401. },
  34402. side: {
  34403. height: math.unit(8, "feet"),
  34404. weight: math.unit(900, "lb"),
  34405. name: "Side",
  34406. image: {
  34407. source: "./media/characters/owen/side.svg",
  34408. extra: 1797/1734,
  34409. bottom: 30/1827
  34410. }
  34411. },
  34412. back: {
  34413. height: math.unit(8, "feet"),
  34414. weight: math.unit(900, "lb"),
  34415. name: "Back",
  34416. image: {
  34417. source: "./media/characters/owen/back.svg",
  34418. extra: 1796/1706,
  34419. bottom: 59/1855
  34420. }
  34421. },
  34422. maw: {
  34423. height: math.unit(1.76, "feet"),
  34424. name: "Maw",
  34425. image: {
  34426. source: "./media/characters/owen/maw.svg"
  34427. }
  34428. },
  34429. },
  34430. [
  34431. {
  34432. name: "Normal",
  34433. height: math.unit(8, "feet"),
  34434. default: true
  34435. },
  34436. ]
  34437. ))
  34438. characterMakers.push(() => makeCharacter(
  34439. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34440. {
  34441. front: {
  34442. height: math.unit(4, "feet"),
  34443. weight: math.unit(400, "lb"),
  34444. name: "Front",
  34445. image: {
  34446. source: "./media/characters/ryth/front.svg",
  34447. extra: 1920/1748,
  34448. bottom: 42/1962
  34449. }
  34450. },
  34451. back: {
  34452. height: math.unit(4, "feet"),
  34453. weight: math.unit(400, "lb"),
  34454. name: "Back",
  34455. image: {
  34456. source: "./media/characters/ryth/back.svg",
  34457. extra: 1897/1690,
  34458. bottom: 89/1986
  34459. }
  34460. },
  34461. mouth: {
  34462. height: math.unit(1.39, "feet"),
  34463. name: "Mouth",
  34464. image: {
  34465. source: "./media/characters/ryth/mouth.svg"
  34466. }
  34467. },
  34468. tailmaw: {
  34469. height: math.unit(1.23, "feet"),
  34470. name: "Tailmaw",
  34471. image: {
  34472. source: "./media/characters/ryth/tailmaw.svg"
  34473. }
  34474. },
  34475. goia: {
  34476. height: math.unit(4, "meters"),
  34477. weight: math.unit(10800, "lb"),
  34478. name: "Goia",
  34479. image: {
  34480. source: "./media/characters/ryth/goia.svg",
  34481. extra: 745/640,
  34482. bottom: 107/852
  34483. }
  34484. },
  34485. goiaFront: {
  34486. height: math.unit(4, "meters"),
  34487. weight: math.unit(10800, "lb"),
  34488. name: "Goia (Front)",
  34489. image: {
  34490. source: "./media/characters/ryth/goia-front.svg",
  34491. extra: 750/586,
  34492. bottom: 114/864
  34493. }
  34494. },
  34495. goiaMaw: {
  34496. height: math.unit(5.55, "feet"),
  34497. name: "Goia Maw",
  34498. image: {
  34499. source: "./media/characters/ryth/goia-maw.svg"
  34500. }
  34501. },
  34502. goiaForepaw: {
  34503. height: math.unit(3.5, "feet"),
  34504. name: "Goia Forepaw",
  34505. image: {
  34506. source: "./media/characters/ryth/goia-forepaw.svg"
  34507. }
  34508. },
  34509. goiaHindpaw: {
  34510. height: math.unit(5.55, "feet"),
  34511. name: "Goia Hindpaw",
  34512. image: {
  34513. source: "./media/characters/ryth/goia-hindpaw.svg"
  34514. }
  34515. },
  34516. },
  34517. [
  34518. {
  34519. name: "Normal",
  34520. height: math.unit(4, "feet"),
  34521. default: true
  34522. },
  34523. ]
  34524. ))
  34525. characterMakers.push(() => makeCharacter(
  34526. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34527. {
  34528. front: {
  34529. height: math.unit(7, "feet"),
  34530. weight: math.unit(180, "lb"),
  34531. name: "Front",
  34532. image: {
  34533. source: "./media/characters/necrolance/front.svg",
  34534. extra: 1062/947,
  34535. bottom: 41/1103
  34536. }
  34537. },
  34538. back: {
  34539. height: math.unit(7, "feet"),
  34540. weight: math.unit(180, "lb"),
  34541. name: "Back",
  34542. image: {
  34543. source: "./media/characters/necrolance/back.svg",
  34544. extra: 1045/984,
  34545. bottom: 14/1059
  34546. }
  34547. },
  34548. wing: {
  34549. height: math.unit(2.67, "feet"),
  34550. name: "Wing",
  34551. image: {
  34552. source: "./media/characters/necrolance/wing.svg"
  34553. }
  34554. },
  34555. },
  34556. [
  34557. {
  34558. name: "Normal",
  34559. height: math.unit(7, "feet"),
  34560. default: true
  34561. },
  34562. ]
  34563. ))
  34564. characterMakers.push(() => makeCharacter(
  34565. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34566. {
  34567. front: {
  34568. height: math.unit(76, "meters"),
  34569. weight: math.unit(30000, "tons"),
  34570. name: "Front",
  34571. image: {
  34572. source: "./media/characters/tyler/front.svg",
  34573. extra: 1640/1640,
  34574. bottom: 114/1754
  34575. }
  34576. },
  34577. },
  34578. [
  34579. {
  34580. name: "Macro",
  34581. height: math.unit(76, "meters"),
  34582. default: true
  34583. },
  34584. ]
  34585. ))
  34586. characterMakers.push(() => makeCharacter(
  34587. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34588. {
  34589. front: {
  34590. height: math.unit(4 + 11/12, "feet"),
  34591. weight: math.unit(132, "lb"),
  34592. name: "Front",
  34593. image: {
  34594. source: "./media/characters/icey/front.svg",
  34595. extra: 2750/2550,
  34596. bottom: 33/2783
  34597. }
  34598. },
  34599. back: {
  34600. height: math.unit(4 + 11/12, "feet"),
  34601. weight: math.unit(132, "lb"),
  34602. name: "Back",
  34603. image: {
  34604. source: "./media/characters/icey/back.svg",
  34605. extra: 2624/2481,
  34606. bottom: 35/2659
  34607. }
  34608. },
  34609. },
  34610. [
  34611. {
  34612. name: "Normal",
  34613. height: math.unit(4 + 11/12, "feet"),
  34614. default: true
  34615. },
  34616. ]
  34617. ))
  34618. characterMakers.push(() => makeCharacter(
  34619. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34620. {
  34621. front: {
  34622. height: math.unit(100, "feet"),
  34623. weight: math.unit(0, "lb"),
  34624. name: "Front",
  34625. image: {
  34626. source: "./media/characters/smile/front.svg",
  34627. extra: 2983/2912,
  34628. bottom: 162/3145
  34629. }
  34630. },
  34631. back: {
  34632. height: math.unit(100, "feet"),
  34633. weight: math.unit(0, "lb"),
  34634. name: "Back",
  34635. image: {
  34636. source: "./media/characters/smile/back.svg",
  34637. extra: 3143/3031,
  34638. bottom: 91/3234
  34639. }
  34640. },
  34641. head: {
  34642. height: math.unit(26.3, "feet"),
  34643. weight: math.unit(0, "lb"),
  34644. name: "Head",
  34645. image: {
  34646. source: "./media/characters/smile/head.svg"
  34647. }
  34648. },
  34649. collar: {
  34650. height: math.unit(5.3, "feet"),
  34651. weight: math.unit(0, "lb"),
  34652. name: "Collar",
  34653. image: {
  34654. source: "./media/characters/smile/collar.svg"
  34655. }
  34656. },
  34657. },
  34658. [
  34659. {
  34660. name: "Macro",
  34661. height: math.unit(100, "feet"),
  34662. default: true
  34663. },
  34664. ]
  34665. ))
  34666. characterMakers.push(() => makeCharacter(
  34667. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34668. {
  34669. dragon: {
  34670. height: math.unit(26, "feet"),
  34671. weight: math.unit(36, "tons"),
  34672. name: "Dragon",
  34673. image: {
  34674. source: "./media/characters/arimphae/dragon.svg",
  34675. extra: 1574/983,
  34676. bottom: 357/1931
  34677. }
  34678. },
  34679. drake: {
  34680. height: math.unit(9, "feet"),
  34681. weight: math.unit(1.5, "tons"),
  34682. name: "Drake",
  34683. image: {
  34684. source: "./media/characters/arimphae/drake.svg",
  34685. extra: 1120/925,
  34686. bottom: 435/1555
  34687. }
  34688. },
  34689. },
  34690. [
  34691. {
  34692. name: "Small",
  34693. height: math.unit(26*5/9, "feet")
  34694. },
  34695. {
  34696. name: "Normal",
  34697. height: math.unit(26, "feet"),
  34698. default: true
  34699. },
  34700. ]
  34701. ))
  34702. characterMakers.push(() => makeCharacter(
  34703. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34704. {
  34705. front: {
  34706. height: math.unit(8 + 9/12, "feet"),
  34707. name: "Front",
  34708. image: {
  34709. source: "./media/characters/xander/front.svg",
  34710. extra: 1237/974,
  34711. bottom: 94/1331
  34712. }
  34713. },
  34714. },
  34715. [
  34716. {
  34717. name: "Normal",
  34718. height: math.unit(8 + 9/12, "feet"),
  34719. default: true
  34720. },
  34721. {
  34722. name: "Gaze Grabber",
  34723. height: math.unit(13 + 8/12, "feet")
  34724. },
  34725. {
  34726. name: "Jaw Dropper",
  34727. height: math.unit(27, "feet")
  34728. },
  34729. {
  34730. name: "Show Stopper",
  34731. height: math.unit(136, "feet")
  34732. },
  34733. {
  34734. name: "Superstar",
  34735. height: math.unit(1.9e6, "miles")
  34736. },
  34737. ]
  34738. ))
  34739. characterMakers.push(() => makeCharacter(
  34740. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34741. {
  34742. side: {
  34743. height: math.unit(2100, "feet"),
  34744. name: "Side",
  34745. image: {
  34746. source: "./media/characters/osiris/side.svg",
  34747. extra: 1105/939,
  34748. bottom: 167/1272
  34749. }
  34750. },
  34751. },
  34752. [
  34753. {
  34754. name: "Macro",
  34755. height: math.unit(2100, "feet"),
  34756. default: true
  34757. },
  34758. ]
  34759. ))
  34760. characterMakers.push(() => makeCharacter(
  34761. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34762. {
  34763. front: {
  34764. height: math.unit(6 + 8/12, "feet"),
  34765. weight: math.unit(225, "lb"),
  34766. name: "Front",
  34767. image: {
  34768. source: "./media/characters/rhys-londe/front.svg",
  34769. extra: 2258/2141,
  34770. bottom: 188/2446
  34771. }
  34772. },
  34773. back: {
  34774. height: math.unit(6 + 8/12, "feet"),
  34775. weight: math.unit(225, "lb"),
  34776. name: "Back",
  34777. image: {
  34778. source: "./media/characters/rhys-londe/back.svg",
  34779. extra: 2237/2137,
  34780. bottom: 63/2300
  34781. }
  34782. },
  34783. frontNsfw: {
  34784. height: math.unit(6 + 8/12, "feet"),
  34785. weight: math.unit(225, "lb"),
  34786. name: "Front (NSFW)",
  34787. image: {
  34788. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34789. extra: 2258/2141,
  34790. bottom: 188/2446
  34791. }
  34792. },
  34793. backNsfw: {
  34794. height: math.unit(6 + 8/12, "feet"),
  34795. weight: math.unit(225, "lb"),
  34796. name: "Back (NSFW)",
  34797. image: {
  34798. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34799. extra: 2237/2137,
  34800. bottom: 63/2300
  34801. }
  34802. },
  34803. dick: {
  34804. height: math.unit(30, "inches"),
  34805. name: "Dick",
  34806. image: {
  34807. source: "./media/characters/rhys-londe/dick.svg"
  34808. }
  34809. },
  34810. maw: {
  34811. height: math.unit(1.6, "feet"),
  34812. name: "Maw",
  34813. image: {
  34814. source: "./media/characters/rhys-londe/maw.svg"
  34815. }
  34816. },
  34817. },
  34818. [
  34819. {
  34820. name: "Normal",
  34821. height: math.unit(6 + 8/12, "feet"),
  34822. default: true
  34823. },
  34824. ]
  34825. ))
  34826. characterMakers.push(() => makeCharacter(
  34827. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34828. {
  34829. front: {
  34830. height: math.unit(3 + 10/12, "feet"),
  34831. weight: math.unit(90, "lb"),
  34832. name: "Front",
  34833. image: {
  34834. source: "./media/characters/taivas-ensim/front.svg",
  34835. extra: 1327/1216,
  34836. bottom: 96/1423
  34837. }
  34838. },
  34839. back: {
  34840. height: math.unit(3 + 10/12, "feet"),
  34841. weight: math.unit(90, "lb"),
  34842. name: "Back",
  34843. image: {
  34844. source: "./media/characters/taivas-ensim/back.svg",
  34845. extra: 1355/1247,
  34846. bottom: 11/1366
  34847. }
  34848. },
  34849. frontNsfw: {
  34850. height: math.unit(3 + 10/12, "feet"),
  34851. weight: math.unit(90, "lb"),
  34852. name: "Front (NSFW)",
  34853. image: {
  34854. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34855. extra: 1327/1216,
  34856. bottom: 96/1423
  34857. }
  34858. },
  34859. backNsfw: {
  34860. height: math.unit(3 + 10/12, "feet"),
  34861. weight: math.unit(90, "lb"),
  34862. name: "Back (NSFW)",
  34863. image: {
  34864. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34865. extra: 1355/1247,
  34866. bottom: 11/1366
  34867. }
  34868. },
  34869. },
  34870. [
  34871. {
  34872. name: "Normal",
  34873. height: math.unit(3 + 10/12, "feet"),
  34874. default: true
  34875. },
  34876. ]
  34877. ))
  34878. characterMakers.push(() => makeCharacter(
  34879. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34880. {
  34881. front: {
  34882. height: math.unit(9 + 6/12, "feet"),
  34883. weight: math.unit(940, "lb"),
  34884. name: "Front",
  34885. image: {
  34886. source: "./media/characters/byliss/front.svg",
  34887. extra: 1327/1290,
  34888. bottom: 82/1409
  34889. }
  34890. },
  34891. back: {
  34892. height: math.unit(9 + 6/12, "feet"),
  34893. weight: math.unit(940, "lb"),
  34894. name: "Back",
  34895. image: {
  34896. source: "./media/characters/byliss/back.svg",
  34897. extra: 1376/1349,
  34898. bottom: 9/1385
  34899. }
  34900. },
  34901. frontNsfw: {
  34902. height: math.unit(9 + 6/12, "feet"),
  34903. weight: math.unit(940, "lb"),
  34904. name: "Front (NSFW)",
  34905. image: {
  34906. source: "./media/characters/byliss/front-nsfw.svg",
  34907. extra: 1327/1290,
  34908. bottom: 82/1409
  34909. }
  34910. },
  34911. backNsfw: {
  34912. height: math.unit(9 + 6/12, "feet"),
  34913. weight: math.unit(940, "lb"),
  34914. name: "Back (NSFW)",
  34915. image: {
  34916. source: "./media/characters/byliss/back-nsfw.svg",
  34917. extra: 1376/1349,
  34918. bottom: 9/1385
  34919. }
  34920. },
  34921. },
  34922. [
  34923. {
  34924. name: "Normal",
  34925. height: math.unit(9 + 6/12, "feet"),
  34926. default: true
  34927. },
  34928. ]
  34929. ))
  34930. characterMakers.push(() => makeCharacter(
  34931. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34932. {
  34933. front: {
  34934. height: math.unit(5 + 2/12, "feet"),
  34935. weight: math.unit(200, "lb"),
  34936. name: "Front",
  34937. image: {
  34938. source: "./media/characters/noraly/front.svg",
  34939. extra: 4985/4773,
  34940. bottom: 150/5135
  34941. }
  34942. },
  34943. full: {
  34944. height: math.unit(5 + 2/12, "feet"),
  34945. weight: math.unit(164, "lb"),
  34946. name: "Full",
  34947. image: {
  34948. source: "./media/characters/noraly/full.svg",
  34949. extra: 1114/1059,
  34950. bottom: 35/1149
  34951. }
  34952. },
  34953. fuller: {
  34954. height: math.unit(5 + 2/12, "feet"),
  34955. weight: math.unit(230, "lb"),
  34956. name: "Fuller",
  34957. image: {
  34958. source: "./media/characters/noraly/fuller.svg",
  34959. extra: 1114/1059,
  34960. bottom: 35/1149
  34961. }
  34962. },
  34963. fullest: {
  34964. height: math.unit(5 + 2/12, "feet"),
  34965. weight: math.unit(300, "lb"),
  34966. name: "Fullest",
  34967. image: {
  34968. source: "./media/characters/noraly/fullest.svg",
  34969. extra: 1114/1059,
  34970. bottom: 35/1149
  34971. }
  34972. },
  34973. },
  34974. [
  34975. {
  34976. name: "Normal",
  34977. height: math.unit(5 + 2/12, "feet"),
  34978. default: true
  34979. },
  34980. ]
  34981. ))
  34982. characterMakers.push(() => makeCharacter(
  34983. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34984. {
  34985. front: {
  34986. height: math.unit(5 + 2/12, "feet"),
  34987. weight: math.unit(210, "lb"),
  34988. name: "Front",
  34989. image: {
  34990. source: "./media/characters/pera/front.svg",
  34991. extra: 1560/1531,
  34992. bottom: 165/1725
  34993. }
  34994. },
  34995. back: {
  34996. height: math.unit(5 + 2/12, "feet"),
  34997. weight: math.unit(210, "lb"),
  34998. name: "Back",
  34999. image: {
  35000. source: "./media/characters/pera/back.svg",
  35001. extra: 1523/1493,
  35002. bottom: 152/1675
  35003. }
  35004. },
  35005. dick: {
  35006. height: math.unit(2.4, "feet"),
  35007. name: "Dick",
  35008. image: {
  35009. source: "./media/characters/pera/dick.svg"
  35010. }
  35011. },
  35012. },
  35013. [
  35014. {
  35015. name: "Normal",
  35016. height: math.unit(5 + 2/12, "feet"),
  35017. default: true
  35018. },
  35019. ]
  35020. ))
  35021. characterMakers.push(() => makeCharacter(
  35022. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35023. {
  35024. front: {
  35025. height: math.unit(12, "feet"),
  35026. weight: math.unit(3200, "lb"),
  35027. name: "Front",
  35028. image: {
  35029. source: "./media/characters/julian/front.svg",
  35030. extra: 2962/2701,
  35031. bottom: 184/3146
  35032. }
  35033. },
  35034. maw: {
  35035. height: math.unit(5.35, "feet"),
  35036. name: "Maw",
  35037. image: {
  35038. source: "./media/characters/julian/maw.svg"
  35039. }
  35040. },
  35041. paw: {
  35042. height: math.unit(3.07, "feet"),
  35043. name: "Paw",
  35044. image: {
  35045. source: "./media/characters/julian/paw.svg"
  35046. }
  35047. },
  35048. },
  35049. [
  35050. {
  35051. name: "Default",
  35052. height: math.unit(12, "feet"),
  35053. default: true
  35054. },
  35055. {
  35056. name: "Big",
  35057. height: math.unit(50, "feet")
  35058. },
  35059. {
  35060. name: "Really Big",
  35061. height: math.unit(1, "mile")
  35062. },
  35063. {
  35064. name: "Extremely Big",
  35065. height: math.unit(100, "miles")
  35066. },
  35067. {
  35068. name: "Planet Hugger",
  35069. height: math.unit(200, "megameters")
  35070. },
  35071. {
  35072. name: "Unreasonably Big",
  35073. height: math.unit(1e300, "meters")
  35074. },
  35075. ]
  35076. ))
  35077. characterMakers.push(() => makeCharacter(
  35078. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35079. {
  35080. solgooleo: {
  35081. height: math.unit(4, "meters"),
  35082. weight: math.unit(6000*1.5, "kg"),
  35083. volume: math.unit(6000, "liters"),
  35084. name: "Solgooleo",
  35085. image: {
  35086. source: "./media/characters/pi/solgooleo.svg",
  35087. extra: 388/331,
  35088. bottom: 29/417
  35089. }
  35090. },
  35091. },
  35092. [
  35093. {
  35094. name: "Normal",
  35095. height: math.unit(4, "meters"),
  35096. default: true
  35097. },
  35098. ]
  35099. ))
  35100. characterMakers.push(() => makeCharacter(
  35101. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35102. {
  35103. front: {
  35104. height: math.unit(8, "feet"),
  35105. weight: math.unit(4, "tons"),
  35106. name: "Front",
  35107. image: {
  35108. source: "./media/characters/shaun/front.svg",
  35109. extra: 503/495,
  35110. bottom: 20/523
  35111. }
  35112. },
  35113. back: {
  35114. height: math.unit(8, "feet"),
  35115. weight: math.unit(4, "tons"),
  35116. name: "Back",
  35117. image: {
  35118. source: "./media/characters/shaun/back.svg",
  35119. extra: 487/480,
  35120. bottom: 20/507
  35121. }
  35122. },
  35123. },
  35124. [
  35125. {
  35126. name: "Lorg",
  35127. height: math.unit(8, "feet"),
  35128. default: true
  35129. },
  35130. ]
  35131. ))
  35132. characterMakers.push(() => makeCharacter(
  35133. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35134. {
  35135. frontAnthro: {
  35136. height: math.unit(7, "feet"),
  35137. name: "Front",
  35138. image: {
  35139. source: "./media/characters/sini/front-anthro.svg",
  35140. extra: 726/678,
  35141. bottom: 35/761
  35142. },
  35143. form: "anthro",
  35144. default: true
  35145. },
  35146. backAnthro: {
  35147. height: math.unit(7, "feet"),
  35148. name: "Back",
  35149. image: {
  35150. source: "./media/characters/sini/back-anthro.svg",
  35151. extra: 743/701,
  35152. bottom: 12/755
  35153. },
  35154. form: "anthro",
  35155. },
  35156. frontAnthroNsfw: {
  35157. height: math.unit(7, "feet"),
  35158. name: "Front (NSFW)",
  35159. image: {
  35160. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35161. extra: 726/678,
  35162. bottom: 35/761
  35163. },
  35164. form: "anthro"
  35165. },
  35166. backAnthroNsfw: {
  35167. height: math.unit(7, "feet"),
  35168. name: "Back (NSFW)",
  35169. image: {
  35170. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35171. extra: 743/701,
  35172. bottom: 12/755
  35173. },
  35174. form: "anthro",
  35175. },
  35176. mawAnthro: {
  35177. height: math.unit(2.14, "feet"),
  35178. name: "Maw",
  35179. image: {
  35180. source: "./media/characters/sini/maw-anthro.svg"
  35181. },
  35182. form: "anthro"
  35183. },
  35184. dick: {
  35185. height: math.unit(1.45, "feet"),
  35186. name: "Dick",
  35187. image: {
  35188. source: "./media/characters/sini/dick-anthro.svg"
  35189. },
  35190. form: "anthro"
  35191. },
  35192. feral: {
  35193. height: math.unit(16, "feet"),
  35194. name: "Feral",
  35195. image: {
  35196. source: "./media/characters/sini/feral.svg",
  35197. extra: 814/605,
  35198. bottom: 11/825
  35199. },
  35200. form: "feral",
  35201. default: true
  35202. },
  35203. feralNsfw: {
  35204. height: math.unit(16, "feet"),
  35205. name: "Feral (NSFW)",
  35206. image: {
  35207. source: "./media/characters/sini/feral-nsfw.svg",
  35208. extra: 814/605,
  35209. bottom: 11/825
  35210. },
  35211. form: "feral"
  35212. },
  35213. mawFeral: {
  35214. height: math.unit(5.66, "feet"),
  35215. name: "Maw",
  35216. image: {
  35217. source: "./media/characters/sini/maw-feral.svg"
  35218. },
  35219. form: "feral",
  35220. },
  35221. pawFeral: {
  35222. height: math.unit(5.17, "feet"),
  35223. name: "Paw",
  35224. image: {
  35225. source: "./media/characters/sini/paw-feral.svg"
  35226. },
  35227. form: "feral",
  35228. },
  35229. rumpFeral: {
  35230. height: math.unit(13.11, "feet"),
  35231. name: "Rump",
  35232. image: {
  35233. source: "./media/characters/sini/rump-feral.svg"
  35234. },
  35235. form: "feral",
  35236. },
  35237. dickFeral: {
  35238. height: math.unit(1, "feet"),
  35239. name: "Dick",
  35240. image: {
  35241. source: "./media/characters/sini/dick-feral.svg"
  35242. },
  35243. form: "feral",
  35244. },
  35245. eyeFeral: {
  35246. height: math.unit(1.23, "feet"),
  35247. name: "Eye",
  35248. image: {
  35249. source: "./media/characters/sini/eye-feral.svg"
  35250. },
  35251. form: "feral",
  35252. },
  35253. },
  35254. [
  35255. {
  35256. name: "Normal",
  35257. height: math.unit(7, "feet"),
  35258. default: true,
  35259. form: "anthro"
  35260. },
  35261. {
  35262. name: "Normal",
  35263. height: math.unit(16, "feet"),
  35264. default: true,
  35265. form: "feral"
  35266. },
  35267. ],
  35268. {
  35269. "anthro": {
  35270. name: "Anthro",
  35271. default: true
  35272. },
  35273. "feral": {
  35274. name: "Feral",
  35275. }
  35276. }
  35277. ))
  35278. characterMakers.push(() => makeCharacter(
  35279. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35280. {
  35281. side: {
  35282. height: math.unit(47.2, "meters"),
  35283. weight: math.unit(10000, "tons"),
  35284. name: "Side",
  35285. image: {
  35286. source: "./media/characters/raylldo/side.svg",
  35287. extra: 2363/642,
  35288. bottom: 221/2584
  35289. }
  35290. },
  35291. top: {
  35292. height: math.unit(240, "meters"),
  35293. weight: math.unit(10000, "tons"),
  35294. name: "Top",
  35295. image: {
  35296. source: "./media/characters/raylldo/top.svg"
  35297. }
  35298. },
  35299. bottom: {
  35300. height: math.unit(240, "meters"),
  35301. weight: math.unit(10000, "tons"),
  35302. name: "Bottom",
  35303. image: {
  35304. source: "./media/characters/raylldo/bottom.svg"
  35305. }
  35306. },
  35307. head: {
  35308. height: math.unit(38.6, "meters"),
  35309. name: "Head",
  35310. image: {
  35311. source: "./media/characters/raylldo/head.svg",
  35312. extra: 1335/1112,
  35313. bottom: 0/1335
  35314. }
  35315. },
  35316. maw: {
  35317. height: math.unit(16.37, "meters"),
  35318. name: "Maw",
  35319. image: {
  35320. source: "./media/characters/raylldo/maw.svg",
  35321. extra: 883/660,
  35322. bottom: 0/883
  35323. },
  35324. extraAttributes: {
  35325. preyCapacity: {
  35326. name: "Capacity",
  35327. power: 3,
  35328. type: "volume",
  35329. base: math.unit(1000, "people")
  35330. },
  35331. tongueSize: {
  35332. name: "Tongue Size",
  35333. power: 2,
  35334. type: "area",
  35335. base: math.unit(21, "m^2")
  35336. }
  35337. }
  35338. },
  35339. forepaw: {
  35340. height: math.unit(18, "meters"),
  35341. name: "Forepaw",
  35342. image: {
  35343. source: "./media/characters/raylldo/forepaw.svg"
  35344. }
  35345. },
  35346. hindpaw: {
  35347. height: math.unit(23, "meters"),
  35348. name: "Hindpaw",
  35349. image: {
  35350. source: "./media/characters/raylldo/hindpaw.svg"
  35351. }
  35352. },
  35353. genitals: {
  35354. height: math.unit(42, "meters"),
  35355. name: "Genitals",
  35356. image: {
  35357. source: "./media/characters/raylldo/genitals.svg"
  35358. }
  35359. },
  35360. },
  35361. [
  35362. {
  35363. name: "Normal",
  35364. height: math.unit(47.2, "meters"),
  35365. default: true
  35366. },
  35367. ]
  35368. ))
  35369. characterMakers.push(() => makeCharacter(
  35370. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35371. {
  35372. anthroFront: {
  35373. height: math.unit(9, "feet"),
  35374. weight: math.unit(600, "lb"),
  35375. name: "Anthro (Front)",
  35376. image: {
  35377. source: "./media/characters/glint/anthro-front.svg",
  35378. extra: 1097/1018,
  35379. bottom: 28/1125
  35380. }
  35381. },
  35382. anthroBack: {
  35383. height: math.unit(9, "feet"),
  35384. weight: math.unit(600, "lb"),
  35385. name: "Anthro (Back)",
  35386. image: {
  35387. source: "./media/characters/glint/anthro-back.svg",
  35388. extra: 1154/997,
  35389. bottom: 36/1190
  35390. }
  35391. },
  35392. feral: {
  35393. height: math.unit(11, "feet"),
  35394. weight: math.unit(50000, "lb"),
  35395. name: "Feral",
  35396. image: {
  35397. source: "./media/characters/glint/feral.svg",
  35398. extra: 3035/1585,
  35399. bottom: 1169/4204
  35400. }
  35401. },
  35402. dickAnthro: {
  35403. height: math.unit(0.7, "meters"),
  35404. name: "Dick (Anthro)",
  35405. image: {
  35406. source: "./media/characters/glint/dick-anthro.svg"
  35407. }
  35408. },
  35409. dickFeral: {
  35410. height: math.unit(2.65, "meters"),
  35411. name: "Dick (Feral)",
  35412. image: {
  35413. source: "./media/characters/glint/dick-feral.svg"
  35414. }
  35415. },
  35416. slitHidden: {
  35417. height: math.unit(5.85, "meters"),
  35418. name: "Slit (Hidden)",
  35419. image: {
  35420. source: "./media/characters/glint/slit-hidden.svg"
  35421. }
  35422. },
  35423. slitErect: {
  35424. height: math.unit(5.85, "meters"),
  35425. name: "Slit (Erect)",
  35426. image: {
  35427. source: "./media/characters/glint/slit-erect.svg"
  35428. }
  35429. },
  35430. mawAnthro: {
  35431. height: math.unit(0.63, "meters"),
  35432. name: "Maw (Anthro)",
  35433. image: {
  35434. source: "./media/characters/glint/maw.svg"
  35435. }
  35436. },
  35437. mawFeral: {
  35438. height: math.unit(2.89, "meters"),
  35439. name: "Maw (Feral)",
  35440. image: {
  35441. source: "./media/characters/glint/maw.svg"
  35442. }
  35443. },
  35444. },
  35445. [
  35446. {
  35447. name: "Normal",
  35448. height: math.unit(9, "feet"),
  35449. default: true
  35450. },
  35451. ]
  35452. ))
  35453. characterMakers.push(() => makeCharacter(
  35454. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35455. {
  35456. side: {
  35457. height: math.unit(15, "feet"),
  35458. weight: math.unit(5000, "kg"),
  35459. name: "Side",
  35460. image: {
  35461. source: "./media/characters/kairne/side.svg",
  35462. extra: 979/811,
  35463. bottom: 13/992
  35464. }
  35465. },
  35466. front: {
  35467. height: math.unit(15, "feet"),
  35468. weight: math.unit(5000, "kg"),
  35469. name: "Front",
  35470. image: {
  35471. source: "./media/characters/kairne/front.svg",
  35472. extra: 908/814,
  35473. bottom: 26/934
  35474. }
  35475. },
  35476. sideNsfw: {
  35477. height: math.unit(15, "feet"),
  35478. weight: math.unit(5000, "kg"),
  35479. name: "Side (NSFW)",
  35480. image: {
  35481. source: "./media/characters/kairne/side-nsfw.svg",
  35482. extra: 979/811,
  35483. bottom: 13/992
  35484. }
  35485. },
  35486. frontNsfw: {
  35487. height: math.unit(15, "feet"),
  35488. weight: math.unit(5000, "kg"),
  35489. name: "Front (NSFW)",
  35490. image: {
  35491. source: "./media/characters/kairne/front-nsfw.svg",
  35492. extra: 908/814,
  35493. bottom: 26/934
  35494. }
  35495. },
  35496. dickCaged: {
  35497. height: math.unit(0.65, "meters"),
  35498. name: "Dick-caged",
  35499. image: {
  35500. source: "./media/characters/kairne/dick-caged.svg"
  35501. }
  35502. },
  35503. dick: {
  35504. height: math.unit(0.79, "meters"),
  35505. name: "Dick",
  35506. image: {
  35507. source: "./media/characters/kairne/dick.svg"
  35508. }
  35509. },
  35510. genitals: {
  35511. height: math.unit(1.29, "meters"),
  35512. name: "Genitals",
  35513. image: {
  35514. source: "./media/characters/kairne/genitals.svg"
  35515. }
  35516. },
  35517. maw: {
  35518. height: math.unit(1.73, "meters"),
  35519. name: "Maw",
  35520. image: {
  35521. source: "./media/characters/kairne/maw.svg"
  35522. }
  35523. },
  35524. },
  35525. [
  35526. {
  35527. name: "Normal",
  35528. height: math.unit(15, "feet"),
  35529. default: true
  35530. },
  35531. ]
  35532. ))
  35533. characterMakers.push(() => makeCharacter(
  35534. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35535. {
  35536. front: {
  35537. height: math.unit(5 + 8/12, "feet"),
  35538. weight: math.unit(139, "lb"),
  35539. name: "Front",
  35540. image: {
  35541. source: "./media/characters/biscuit-jackal/front.svg",
  35542. extra: 2106/1961,
  35543. bottom: 58/2164
  35544. }
  35545. },
  35546. back: {
  35547. height: math.unit(5 + 8/12, "feet"),
  35548. weight: math.unit(139, "lb"),
  35549. name: "Back",
  35550. image: {
  35551. source: "./media/characters/biscuit-jackal/back.svg",
  35552. extra: 2132/1976,
  35553. bottom: 57/2189
  35554. }
  35555. },
  35556. werejackal: {
  35557. height: math.unit(6 + 3/12, "feet"),
  35558. weight: math.unit(188, "lb"),
  35559. name: "Werejackal",
  35560. image: {
  35561. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35562. extra: 2373/2178,
  35563. bottom: 53/2426
  35564. }
  35565. },
  35566. },
  35567. [
  35568. {
  35569. name: "Normal",
  35570. height: math.unit(5 + 8/12, "feet"),
  35571. default: true
  35572. },
  35573. ]
  35574. ))
  35575. characterMakers.push(() => makeCharacter(
  35576. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35577. {
  35578. front: {
  35579. height: math.unit(140, "cm"),
  35580. weight: math.unit(45, "kg"),
  35581. name: "Front",
  35582. image: {
  35583. source: "./media/characters/tayra-white/front.svg",
  35584. extra: 2229/2192,
  35585. bottom: 75/2304
  35586. }
  35587. },
  35588. },
  35589. [
  35590. {
  35591. name: "Normal",
  35592. height: math.unit(140, "cm"),
  35593. default: true
  35594. },
  35595. ]
  35596. ))
  35597. characterMakers.push(() => makeCharacter(
  35598. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35599. {
  35600. front: {
  35601. height: math.unit(4 + 5/12, "feet"),
  35602. name: "Front",
  35603. image: {
  35604. source: "./media/characters/scoop/front.svg",
  35605. extra: 1257/1136,
  35606. bottom: 69/1326
  35607. }
  35608. },
  35609. back: {
  35610. height: math.unit(4 + 5/12, "feet"),
  35611. name: "Back",
  35612. image: {
  35613. source: "./media/characters/scoop/back.svg",
  35614. extra: 1321/1152,
  35615. bottom: 32/1353
  35616. }
  35617. },
  35618. maw: {
  35619. height: math.unit(0.68, "feet"),
  35620. name: "Maw",
  35621. image: {
  35622. source: "./media/characters/scoop/maw.svg"
  35623. }
  35624. },
  35625. },
  35626. [
  35627. {
  35628. name: "Really Small",
  35629. height: math.unit(1, "mm")
  35630. },
  35631. {
  35632. name: "Micro",
  35633. height: math.unit(1, "inch")
  35634. },
  35635. {
  35636. name: "Normal",
  35637. height: math.unit(4 + 5/12, "feet"),
  35638. default: true
  35639. },
  35640. {
  35641. name: "Macro",
  35642. height: math.unit(200, "feet")
  35643. },
  35644. {
  35645. name: "Megamacro",
  35646. height: math.unit(3240, "feet")
  35647. },
  35648. {
  35649. name: "Teramacro",
  35650. height: math.unit(2500, "miles")
  35651. },
  35652. ]
  35653. ))
  35654. characterMakers.push(() => makeCharacter(
  35655. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35656. {
  35657. front: {
  35658. height: math.unit(15 + 7/12, "feet"),
  35659. weight: math.unit(1150, "tons"),
  35660. name: "Front",
  35661. image: {
  35662. source: "./media/characters/saphinara/front.svg",
  35663. extra: 1837/1643,
  35664. bottom: 84/1921
  35665. },
  35666. form: "normal",
  35667. default: true
  35668. },
  35669. side: {
  35670. height: math.unit(15 + 7/12, "feet"),
  35671. weight: math.unit(1150, "tons"),
  35672. name: "Side",
  35673. image: {
  35674. source: "./media/characters/saphinara/side.svg",
  35675. extra: 605/547,
  35676. bottom: 6/611
  35677. },
  35678. form: "normal"
  35679. },
  35680. back: {
  35681. height: math.unit(15 + 7/12, "feet"),
  35682. weight: math.unit(1150, "tons"),
  35683. name: "Back",
  35684. image: {
  35685. source: "./media/characters/saphinara/back.svg",
  35686. extra: 591/531,
  35687. bottom: 13/604
  35688. },
  35689. form: "normal"
  35690. },
  35691. frontTail: {
  35692. height: math.unit(15 + 7/12, "feet"),
  35693. weight: math.unit(1150, "tons"),
  35694. name: "Front (Full Tail)",
  35695. image: {
  35696. source: "./media/characters/saphinara/front-tail.svg",
  35697. extra: 2256/1630,
  35698. bottom: 261/2517
  35699. },
  35700. form: "normal"
  35701. },
  35702. insides: {
  35703. height: math.unit(11.92, "feet"),
  35704. name: "Insides",
  35705. image: {
  35706. source: "./media/characters/saphinara/insides.svg"
  35707. },
  35708. form: "normal"
  35709. },
  35710. head: {
  35711. height: math.unit(4.17, "feet"),
  35712. name: "Head",
  35713. image: {
  35714. source: "./media/characters/saphinara/head.svg"
  35715. },
  35716. form: "normal"
  35717. },
  35718. tongue: {
  35719. height: math.unit(4.60, "feet"),
  35720. name: "Tongue",
  35721. image: {
  35722. source: "./media/characters/saphinara/tongue.svg"
  35723. },
  35724. form: "normal"
  35725. },
  35726. headEnraged: {
  35727. height: math.unit(5.55, "feet"),
  35728. name: "Head (Enraged)",
  35729. image: {
  35730. source: "./media/characters/saphinara/head-enraged.svg"
  35731. },
  35732. form: "normal"
  35733. },
  35734. wings: {
  35735. height: math.unit(11.95, "feet"),
  35736. name: "Wings",
  35737. image: {
  35738. source: "./media/characters/saphinara/wings.svg"
  35739. },
  35740. form: "normal"
  35741. },
  35742. feathers: {
  35743. height: math.unit(8.92, "feet"),
  35744. name: "Feathers",
  35745. image: {
  35746. source: "./media/characters/saphinara/feathers.svg"
  35747. },
  35748. form: "normal"
  35749. },
  35750. shackles: {
  35751. height: math.unit(2, "feet"),
  35752. name: "Shackles",
  35753. image: {
  35754. source: "./media/characters/saphinara/shackles.svg"
  35755. },
  35756. form: "normal"
  35757. },
  35758. eyes: {
  35759. height: math.unit(1.331, "feet"),
  35760. name: "Eyes",
  35761. image: {
  35762. source: "./media/characters/saphinara/eyes.svg"
  35763. },
  35764. form: "normal"
  35765. },
  35766. eyesEnraged: {
  35767. height: math.unit(1.331, "feet"),
  35768. name: "Eyes (Enraged)",
  35769. image: {
  35770. source: "./media/characters/saphinara/eyes-enraged.svg"
  35771. },
  35772. form: "normal"
  35773. },
  35774. trueFormSide: {
  35775. height: math.unit(200, "feet"),
  35776. weight: math.unit(1e7, "tons"),
  35777. name: "Side",
  35778. image: {
  35779. source: "./media/characters/saphinara/true-form-side.svg",
  35780. extra: 1399/770,
  35781. bottom: 97/1496
  35782. },
  35783. form: "true-form",
  35784. default: true
  35785. },
  35786. trueFormMaw: {
  35787. height: math.unit(71.5, "feet"),
  35788. name: "Maw",
  35789. image: {
  35790. source: "./media/characters/saphinara/true-form-maw.svg",
  35791. extra: 2302/1453,
  35792. bottom: 0/2302
  35793. },
  35794. form: "true-form"
  35795. },
  35796. meowberusSide: {
  35797. height: math.unit(75, "feet"),
  35798. weight: math.unit(180000, "kg"),
  35799. preyCapacity: math.unit(50000, "people"),
  35800. name: "Side",
  35801. image: {
  35802. source: "./media/characters/saphinara/meowberus-side.svg",
  35803. extra: 1400/711,
  35804. bottom: 126/1526
  35805. },
  35806. form: "meowberus",
  35807. extraAttributes: {
  35808. "pawArea": {
  35809. name: "Paw Size",
  35810. power: 2,
  35811. type: "area",
  35812. base: math.unit(35, "m^2")
  35813. }
  35814. }
  35815. },
  35816. },
  35817. [
  35818. {
  35819. name: "Normal",
  35820. height: math.unit(15 + 7/12, "feet"),
  35821. default: true,
  35822. form: "normal"
  35823. },
  35824. {
  35825. name: "Angry",
  35826. height: math.unit(30 + 6/12, "feet"),
  35827. form: "normal"
  35828. },
  35829. {
  35830. name: "Enraged",
  35831. height: math.unit(102 + 1/12, "feet"),
  35832. form: "normal"
  35833. },
  35834. {
  35835. name: "True",
  35836. height: math.unit(200, "feet"),
  35837. default: true,
  35838. form: "true-form"
  35839. },
  35840. {
  35841. name: "Normal",
  35842. height: math.unit(75, "feet"),
  35843. default: true,
  35844. form: "meowberus"
  35845. },
  35846. ],
  35847. {
  35848. "normal": {
  35849. name: "Normal",
  35850. default: true
  35851. },
  35852. "true-form": {
  35853. name: "True Form"
  35854. },
  35855. "meowberus": {
  35856. name: "Meowberus",
  35857. },
  35858. }
  35859. ))
  35860. characterMakers.push(() => makeCharacter(
  35861. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35862. {
  35863. front: {
  35864. height: math.unit(6 + 8/12, "feet"),
  35865. weight: math.unit(300, "lb"),
  35866. name: "Front",
  35867. image: {
  35868. source: "./media/characters/jrain/front.svg",
  35869. extra: 3039/2865,
  35870. bottom: 399/3438
  35871. }
  35872. },
  35873. back: {
  35874. height: math.unit(6 + 8/12, "feet"),
  35875. weight: math.unit(300, "lb"),
  35876. name: "Back",
  35877. image: {
  35878. source: "./media/characters/jrain/back.svg",
  35879. extra: 3089/2938,
  35880. bottom: 172/3261
  35881. }
  35882. },
  35883. head: {
  35884. height: math.unit(2.14, "feet"),
  35885. name: "Head",
  35886. image: {
  35887. source: "./media/characters/jrain/head.svg"
  35888. }
  35889. },
  35890. maw: {
  35891. height: math.unit(1.77, "feet"),
  35892. name: "Maw",
  35893. image: {
  35894. source: "./media/characters/jrain/maw.svg"
  35895. }
  35896. },
  35897. leftHand: {
  35898. height: math.unit(1.1, "feet"),
  35899. name: "Left Hand",
  35900. image: {
  35901. source: "./media/characters/jrain/left-hand.svg"
  35902. }
  35903. },
  35904. rightHand: {
  35905. height: math.unit(1.1, "feet"),
  35906. name: "Right Hand",
  35907. image: {
  35908. source: "./media/characters/jrain/right-hand.svg"
  35909. }
  35910. },
  35911. eye: {
  35912. height: math.unit(0.35, "feet"),
  35913. name: "Eye",
  35914. image: {
  35915. source: "./media/characters/jrain/eye.svg"
  35916. }
  35917. },
  35918. },
  35919. [
  35920. {
  35921. name: "Normal",
  35922. height: math.unit(6 + 8/12, "feet"),
  35923. default: true
  35924. },
  35925. {
  35926. name: "Casually Large",
  35927. height: math.unit(25, "feet")
  35928. },
  35929. {
  35930. name: "Giant",
  35931. height: math.unit(100, "feet")
  35932. },
  35933. {
  35934. name: "Kaiju",
  35935. height: math.unit(300, "feet")
  35936. },
  35937. ]
  35938. ))
  35939. characterMakers.push(() => makeCharacter(
  35940. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35941. {
  35942. dragon: {
  35943. height: math.unit(5, "meters"),
  35944. name: "Dragon",
  35945. image: {
  35946. source: "./media/characters/sabrina/dragon.svg",
  35947. extra: 3670 / 2365,
  35948. bottom: 333 / 4003
  35949. }
  35950. },
  35951. gryphon: {
  35952. height: math.unit(3, "meters"),
  35953. name: "Gryphon",
  35954. image: {
  35955. source: "./media/characters/sabrina/gryphon.svg",
  35956. extra: 1576 / 945,
  35957. bottom: 71 / 1647
  35958. }
  35959. },
  35960. snake: {
  35961. height: math.unit(12, "meters"),
  35962. name: "Snake",
  35963. image: {
  35964. source: "./media/characters/sabrina/snake.svg",
  35965. extra: 1758 / 1320,
  35966. bottom: 186 / 1944
  35967. }
  35968. },
  35969. collar: {
  35970. height: math.unit(1.86, "meters"),
  35971. name: "Collar",
  35972. image: {
  35973. source: "./media/characters/sabrina/collar.svg"
  35974. }
  35975. },
  35976. eye: {
  35977. height: math.unit(0.53, "meters"),
  35978. name: "Eye",
  35979. image: {
  35980. source: "./media/characters/sabrina/eye.svg"
  35981. }
  35982. },
  35983. foot: {
  35984. height: math.unit(1.86, "meters"),
  35985. name: "Foot",
  35986. image: {
  35987. source: "./media/characters/sabrina/foot.svg"
  35988. }
  35989. },
  35990. hand: {
  35991. height: math.unit(1.32, "meters"),
  35992. name: "Hand",
  35993. image: {
  35994. source: "./media/characters/sabrina/hand.svg"
  35995. }
  35996. },
  35997. head: {
  35998. height: math.unit(2.44, "meters"),
  35999. name: "Head",
  36000. image: {
  36001. source: "./media/characters/sabrina/head.svg"
  36002. }
  36003. },
  36004. headAngry: {
  36005. height: math.unit(2.44, "meters"),
  36006. name: "Head (Angry))",
  36007. image: {
  36008. source: "./media/characters/sabrina/head-angry.svg"
  36009. }
  36010. },
  36011. maw: {
  36012. height: math.unit(1.65, "meters"),
  36013. name: "Maw",
  36014. image: {
  36015. source: "./media/characters/sabrina/maw.svg"
  36016. }
  36017. },
  36018. spikes: {
  36019. height: math.unit(1.69, "meters"),
  36020. name: "Spikes",
  36021. image: {
  36022. source: "./media/characters/sabrina/spikes.svg"
  36023. }
  36024. },
  36025. stomach: {
  36026. height: math.unit(1.15, "meters"),
  36027. name: "Stomach",
  36028. image: {
  36029. source: "./media/characters/sabrina/stomach.svg"
  36030. }
  36031. },
  36032. tongue: {
  36033. height: math.unit(1.27, "meters"),
  36034. name: "Tongue",
  36035. image: {
  36036. source: "./media/characters/sabrina/tongue.svg"
  36037. }
  36038. },
  36039. wingDorsal: {
  36040. height: math.unit(4.85, "meters"),
  36041. name: "Wing (Dorsal)",
  36042. image: {
  36043. source: "./media/characters/sabrina/wing-dorsal.svg"
  36044. }
  36045. },
  36046. wingVentral: {
  36047. height: math.unit(4.85, "meters"),
  36048. name: "Wing (Ventral)",
  36049. image: {
  36050. source: "./media/characters/sabrina/wing-ventral.svg"
  36051. }
  36052. },
  36053. },
  36054. [
  36055. {
  36056. name: "Normal",
  36057. height: math.unit(5, "meters"),
  36058. default: true
  36059. },
  36060. ]
  36061. ))
  36062. characterMakers.push(() => makeCharacter(
  36063. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36064. {
  36065. frontMaid: {
  36066. height: math.unit(5 + 5/12, "feet"),
  36067. weight: math.unit(130, "lb"),
  36068. name: "Front (Maid)",
  36069. image: {
  36070. source: "./media/characters/midnight-tales/front-maid.svg",
  36071. extra: 489/454,
  36072. bottom: 61/550
  36073. }
  36074. },
  36075. frontFormal: {
  36076. height: math.unit(5 + 5/12, "feet"),
  36077. weight: math.unit(130, "lb"),
  36078. name: "Front (Formal)",
  36079. image: {
  36080. source: "./media/characters/midnight-tales/front-formal.svg",
  36081. extra: 489/454,
  36082. bottom: 61/550
  36083. }
  36084. },
  36085. back: {
  36086. height: math.unit(5 + 5/12, "feet"),
  36087. weight: math.unit(130, "lb"),
  36088. name: "Back",
  36089. image: {
  36090. source: "./media/characters/midnight-tales/back.svg",
  36091. extra: 498/456,
  36092. bottom: 33/531
  36093. }
  36094. },
  36095. frontBeast: {
  36096. height: math.unit(40, "feet"),
  36097. weight: math.unit(64000, "lb"),
  36098. name: "Front (Beast)",
  36099. image: {
  36100. source: "./media/characters/midnight-tales/front-beast.svg",
  36101. extra: 927/860,
  36102. bottom: 53/980
  36103. }
  36104. },
  36105. backBeast: {
  36106. height: math.unit(40, "feet"),
  36107. weight: math.unit(64000, "lb"),
  36108. name: "Back (Beast)",
  36109. image: {
  36110. source: "./media/characters/midnight-tales/back-beast.svg",
  36111. extra: 929/855,
  36112. bottom: 16/945
  36113. }
  36114. },
  36115. footBeast: {
  36116. height: math.unit(6.7, "feet"),
  36117. name: "Foot (Beast)",
  36118. image: {
  36119. source: "./media/characters/midnight-tales/foot-beast.svg"
  36120. }
  36121. },
  36122. headBeast: {
  36123. height: math.unit(8, "feet"),
  36124. name: "Head (Beast)",
  36125. image: {
  36126. source: "./media/characters/midnight-tales/head-beast.svg"
  36127. }
  36128. },
  36129. },
  36130. [
  36131. {
  36132. name: "Normal",
  36133. height: math.unit(5 + 5 / 12, "feet"),
  36134. default: true
  36135. },
  36136. {
  36137. name: "Macro",
  36138. height: math.unit(25, "feet")
  36139. },
  36140. ]
  36141. ))
  36142. characterMakers.push(() => makeCharacter(
  36143. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36144. {
  36145. front: {
  36146. height: math.unit(5 + 10/12, "feet"),
  36147. name: "Front",
  36148. image: {
  36149. source: "./media/characters/argon/front.svg",
  36150. extra: 2009/1935,
  36151. bottom: 118/2127
  36152. }
  36153. },
  36154. back: {
  36155. height: math.unit(5 + 10/12, "feet"),
  36156. name: "Back",
  36157. image: {
  36158. source: "./media/characters/argon/back.svg",
  36159. extra: 2047/1992,
  36160. bottom: 20/2067
  36161. }
  36162. },
  36163. frontDressed: {
  36164. height: math.unit(5 + 10/12, "feet"),
  36165. name: "Front (Dressed)",
  36166. image: {
  36167. source: "./media/characters/argon/front-dressed.svg",
  36168. extra: 2009/1935,
  36169. bottom: 118/2127
  36170. }
  36171. },
  36172. },
  36173. [
  36174. {
  36175. name: "Normal",
  36176. height: math.unit(5 + 10/12, "feet"),
  36177. default: true
  36178. },
  36179. ]
  36180. ))
  36181. characterMakers.push(() => makeCharacter(
  36182. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36183. {
  36184. front: {
  36185. height: math.unit(8 + 6/12, "feet"),
  36186. weight: math.unit(1150, "lb"),
  36187. name: "Front",
  36188. image: {
  36189. source: "./media/characters/kichi/front.svg",
  36190. extra: 1267/1164,
  36191. bottom: 61/1328
  36192. }
  36193. },
  36194. back: {
  36195. height: math.unit(8 + 6/12, "feet"),
  36196. weight: math.unit(1150, "lb"),
  36197. name: "Back",
  36198. image: {
  36199. source: "./media/characters/kichi/back.svg",
  36200. extra: 1273/1166,
  36201. bottom: 33/1306
  36202. }
  36203. },
  36204. },
  36205. [
  36206. {
  36207. name: "Normal",
  36208. height: math.unit(8 + 6/12, "feet"),
  36209. default: true
  36210. },
  36211. ]
  36212. ))
  36213. characterMakers.push(() => makeCharacter(
  36214. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36215. {
  36216. front: {
  36217. height: math.unit(6, "feet"),
  36218. weight: math.unit(210, "lb"),
  36219. name: "Front",
  36220. image: {
  36221. source: "./media/characters/manetel-greyscale/front.svg",
  36222. extra: 350/312,
  36223. bottom: 8/358
  36224. }
  36225. },
  36226. },
  36227. [
  36228. {
  36229. name: "Micro",
  36230. height: math.unit(2, "inches")
  36231. },
  36232. {
  36233. name: "Normal",
  36234. height: math.unit(6, "feet"),
  36235. default: true
  36236. },
  36237. {
  36238. name: "Minimacro",
  36239. height: math.unit(17, "feet")
  36240. },
  36241. {
  36242. name: "Macro",
  36243. height: math.unit(117, "feet")
  36244. },
  36245. ]
  36246. ))
  36247. characterMakers.push(() => makeCharacter(
  36248. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36249. {
  36250. side: {
  36251. height: math.unit(5 + 1/12, "feet"),
  36252. weight: math.unit(418, "lb"),
  36253. name: "Side",
  36254. image: {
  36255. source: "./media/characters/softpurr/side.svg",
  36256. extra: 1993/1945,
  36257. bottom: 134/2127
  36258. }
  36259. },
  36260. front: {
  36261. height: math.unit(5 + 1/12, "feet"),
  36262. weight: math.unit(418, "lb"),
  36263. name: "Front",
  36264. image: {
  36265. source: "./media/characters/softpurr/front.svg",
  36266. extra: 1950/1856,
  36267. bottom: 174/2124
  36268. }
  36269. },
  36270. paw: {
  36271. height: math.unit(1, "feet"),
  36272. name: "Paw",
  36273. image: {
  36274. source: "./media/characters/softpurr/paw.svg"
  36275. }
  36276. },
  36277. },
  36278. [
  36279. {
  36280. name: "Normal",
  36281. height: math.unit(5 + 1/12, "feet"),
  36282. default: true
  36283. },
  36284. ]
  36285. ))
  36286. characterMakers.push(() => makeCharacter(
  36287. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36288. {
  36289. front: {
  36290. height: math.unit(260, "meters"),
  36291. name: "Front",
  36292. image: {
  36293. source: "./media/characters/anahita/front.svg",
  36294. extra: 665/635,
  36295. bottom: 89/754
  36296. }
  36297. },
  36298. },
  36299. [
  36300. {
  36301. name: "Macro",
  36302. height: math.unit(260, "meters"),
  36303. default: true
  36304. },
  36305. ]
  36306. ))
  36307. characterMakers.push(() => makeCharacter(
  36308. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36309. {
  36310. front: {
  36311. height: math.unit(4 + 10/12, "feet"),
  36312. weight: math.unit(160, "lb"),
  36313. name: "Front",
  36314. image: {
  36315. source: "./media/characters/chip-mouse/front.svg",
  36316. extra: 3528/3408,
  36317. bottom: 0/3528
  36318. }
  36319. },
  36320. frontNsfw: {
  36321. height: math.unit(4 + 10/12, "feet"),
  36322. weight: math.unit(160, "lb"),
  36323. name: "Front (NSFW)",
  36324. image: {
  36325. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36326. extra: 3528/3408,
  36327. bottom: 0/3528
  36328. }
  36329. },
  36330. },
  36331. [
  36332. {
  36333. name: "Normal",
  36334. height: math.unit(4 + 10/12, "feet"),
  36335. default: true
  36336. },
  36337. ]
  36338. ))
  36339. characterMakers.push(() => makeCharacter(
  36340. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36341. {
  36342. side: {
  36343. height: math.unit(10, "feet"),
  36344. weight: math.unit(14000, "lb"),
  36345. name: "Side",
  36346. image: {
  36347. source: "./media/characters/kremm/side.svg",
  36348. extra: 1390/1053,
  36349. bottom: 90/1480
  36350. }
  36351. },
  36352. gut: {
  36353. height: math.unit(5.8, "feet"),
  36354. name: "Gut",
  36355. image: {
  36356. source: "./media/characters/kremm/gut.svg"
  36357. }
  36358. },
  36359. ass: {
  36360. height: math.unit(6.1, "feet"),
  36361. name: "Ass",
  36362. image: {
  36363. source: "./media/characters/kremm/ass.svg"
  36364. }
  36365. },
  36366. jaws: {
  36367. height: math.unit(2.2, "feet"),
  36368. name: "Jaws",
  36369. image: {
  36370. source: "./media/characters/kremm/jaws.svg"
  36371. }
  36372. },
  36373. dick: {
  36374. height: math.unit(4.26, "feet"),
  36375. name: "Dick",
  36376. image: {
  36377. source: "./media/characters/kremm/dick.svg"
  36378. }
  36379. },
  36380. },
  36381. [
  36382. {
  36383. name: "Normal",
  36384. height: math.unit(10, "feet"),
  36385. default: true
  36386. },
  36387. ]
  36388. ))
  36389. characterMakers.push(() => makeCharacter(
  36390. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36391. {
  36392. front: {
  36393. height: math.unit(30, "stories"),
  36394. name: "Front",
  36395. image: {
  36396. source: "./media/characters/kai/front.svg",
  36397. extra: 1892/1718,
  36398. bottom: 162/2054
  36399. }
  36400. },
  36401. },
  36402. [
  36403. {
  36404. name: "Macro",
  36405. height: math.unit(30, "stories"),
  36406. default: true
  36407. },
  36408. ]
  36409. ))
  36410. characterMakers.push(() => makeCharacter(
  36411. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36412. {
  36413. front: {
  36414. height: math.unit(6 + 4/12, "feet"),
  36415. weight: math.unit(145, "lb"),
  36416. name: "Front",
  36417. image: {
  36418. source: "./media/characters/sykes/front.svg",
  36419. extra: 1321 / 1187,
  36420. bottom: 66 / 1387
  36421. }
  36422. },
  36423. back: {
  36424. height: math.unit(6 + 4/12, "feet"),
  36425. weight: math.unit(145, "lb"),
  36426. name: "Back",
  36427. image: {
  36428. source: "./media/characters/sykes/back.svg",
  36429. extra: 1326/1181,
  36430. bottom: 31/1357
  36431. }
  36432. },
  36433. traditionalOutfit: {
  36434. height: math.unit(6 + 4/12, "feet"),
  36435. weight: math.unit(145, "lb"),
  36436. name: "Traditional Outfit",
  36437. image: {
  36438. source: "./media/characters/sykes/traditional-outfit.svg",
  36439. extra: 1321 / 1187,
  36440. bottom: 66 / 1387
  36441. }
  36442. },
  36443. adventureOutfit: {
  36444. height: math.unit(6 + 4/12, "feet"),
  36445. weight: math.unit(145, "lb"),
  36446. name: "Adventure Outfit",
  36447. image: {
  36448. source: "./media/characters/sykes/adventure-outfit.svg",
  36449. extra: 1321 / 1187,
  36450. bottom: 66 / 1387
  36451. }
  36452. },
  36453. handLeft: {
  36454. height: math.unit(0.9, "feet"),
  36455. name: "Hand (Left)",
  36456. image: {
  36457. source: "./media/characters/sykes/hand-left.svg"
  36458. }
  36459. },
  36460. handRight: {
  36461. height: math.unit(0.839, "feet"),
  36462. name: "Hand (Right)",
  36463. image: {
  36464. source: "./media/characters/sykes/hand-right.svg"
  36465. }
  36466. },
  36467. leftFoot: {
  36468. height: math.unit(1.2, "feet"),
  36469. name: "Foot (Left)",
  36470. image: {
  36471. source: "./media/characters/sykes/foot-left.svg"
  36472. }
  36473. },
  36474. rightFoot: {
  36475. height: math.unit(1.2, "feet"),
  36476. name: "Foot (Right)",
  36477. image: {
  36478. source: "./media/characters/sykes/foot-right.svg"
  36479. }
  36480. },
  36481. maw: {
  36482. height: math.unit(1.93, "feet"),
  36483. name: "Maw",
  36484. image: {
  36485. source: "./media/characters/sykes/maw.svg"
  36486. }
  36487. },
  36488. teeth: {
  36489. height: math.unit(0.51, "feet"),
  36490. name: "Teeth",
  36491. image: {
  36492. source: "./media/characters/sykes/teeth.svg"
  36493. }
  36494. },
  36495. tongue: {
  36496. height: math.unit(2.13, "feet"),
  36497. name: "Tongue",
  36498. image: {
  36499. source: "./media/characters/sykes/tongue.svg"
  36500. }
  36501. },
  36502. uvula: {
  36503. height: math.unit(0.16, "feet"),
  36504. name: "Uvula",
  36505. image: {
  36506. source: "./media/characters/sykes/uvula.svg"
  36507. }
  36508. },
  36509. collar: {
  36510. height: math.unit(0.287, "feet"),
  36511. name: "Collar",
  36512. image: {
  36513. source: "./media/characters/sykes/collar.svg"
  36514. }
  36515. },
  36516. tail: {
  36517. height: math.unit(3.8, "feet"),
  36518. name: "Tail",
  36519. image: {
  36520. source: "./media/characters/sykes/tail.svg"
  36521. }
  36522. },
  36523. },
  36524. [
  36525. {
  36526. name: "Shrunken",
  36527. height: math.unit(5, "inches")
  36528. },
  36529. {
  36530. name: "Normal",
  36531. height: math.unit(6 + 4 / 12, "feet"),
  36532. default: true
  36533. },
  36534. {
  36535. name: "Big",
  36536. height: math.unit(15, "feet")
  36537. },
  36538. ]
  36539. ))
  36540. characterMakers.push(() => makeCharacter(
  36541. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36542. {
  36543. front: {
  36544. height: math.unit(5 + 8/12, "feet"),
  36545. weight: math.unit(190, "lb"),
  36546. name: "Front",
  36547. image: {
  36548. source: "./media/characters/oven-otter/front.svg",
  36549. extra: 1809/1740,
  36550. bottom: 181/1990
  36551. }
  36552. },
  36553. back: {
  36554. height: math.unit(5 + 8/12, "feet"),
  36555. weight: math.unit(190, "lb"),
  36556. name: "Back",
  36557. image: {
  36558. source: "./media/characters/oven-otter/back.svg",
  36559. extra: 1709/1635,
  36560. bottom: 118/1827
  36561. }
  36562. },
  36563. hand: {
  36564. height: math.unit(1.07, "feet"),
  36565. name: "Hand",
  36566. image: {
  36567. source: "./media/characters/oven-otter/hand.svg"
  36568. }
  36569. },
  36570. beans: {
  36571. height: math.unit(1.74, "feet"),
  36572. name: "Beans",
  36573. image: {
  36574. source: "./media/characters/oven-otter/beans.svg"
  36575. }
  36576. },
  36577. },
  36578. [
  36579. {
  36580. name: "Micro",
  36581. height: math.unit(0.5, "inches")
  36582. },
  36583. {
  36584. name: "Normal",
  36585. height: math.unit(5 + 8/12, "feet"),
  36586. default: true
  36587. },
  36588. {
  36589. name: "Macro",
  36590. height: math.unit(250, "feet")
  36591. },
  36592. {
  36593. name: "Really High",
  36594. height: math.unit(420, "feet")
  36595. },
  36596. ]
  36597. ))
  36598. characterMakers.push(() => makeCharacter(
  36599. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36600. {
  36601. front: {
  36602. height: math.unit(5, "meters"),
  36603. weight: math.unit(292000000000000, "kg"),
  36604. name: "Front",
  36605. image: {
  36606. source: "./media/characters/devourer/front.svg",
  36607. extra: 1800/1733,
  36608. bottom: 211/2011
  36609. }
  36610. },
  36611. maw: {
  36612. height: math.unit(1.1, "meter"),
  36613. name: "Maw",
  36614. image: {
  36615. source: "./media/characters/devourer/maw.svg"
  36616. }
  36617. },
  36618. },
  36619. [
  36620. {
  36621. name: "Small",
  36622. height: math.unit(3, "meters")
  36623. },
  36624. {
  36625. name: "Large",
  36626. height: math.unit(5, "meters"),
  36627. default: true
  36628. },
  36629. ]
  36630. ))
  36631. characterMakers.push(() => makeCharacter(
  36632. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36633. {
  36634. front: {
  36635. height: math.unit(6, "feet"),
  36636. weight: math.unit(400, "lb"),
  36637. name: "Front",
  36638. image: {
  36639. source: "./media/characters/ellarby/front.svg",
  36640. extra: 1909/1763,
  36641. bottom: 80/1989
  36642. }
  36643. },
  36644. back: {
  36645. height: math.unit(6, "feet"),
  36646. weight: math.unit(400, "lb"),
  36647. name: "Back",
  36648. image: {
  36649. source: "./media/characters/ellarby/back.svg",
  36650. extra: 1914/1784,
  36651. bottom: 172/2086
  36652. }
  36653. },
  36654. },
  36655. [
  36656. {
  36657. name: "Mischief",
  36658. height: math.unit(18, "inches")
  36659. },
  36660. {
  36661. name: "Trouble",
  36662. height: math.unit(12, "feet")
  36663. },
  36664. {
  36665. name: "Havoc",
  36666. height: math.unit(200, "feet"),
  36667. default: true
  36668. },
  36669. {
  36670. name: "Pandemonium",
  36671. height: math.unit(1, "mile")
  36672. },
  36673. {
  36674. name: "Catastrophe",
  36675. height: math.unit(100, "miles")
  36676. },
  36677. ]
  36678. ))
  36679. characterMakers.push(() => makeCharacter(
  36680. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36681. {
  36682. front: {
  36683. height: math.unit(4.7, "meters"),
  36684. weight: math.unit(6500, "kg"),
  36685. name: "Front",
  36686. image: {
  36687. source: "./media/characters/vex/front.svg",
  36688. extra: 1288/1140,
  36689. bottom: 100/1388
  36690. }
  36691. },
  36692. },
  36693. [
  36694. {
  36695. name: "Normal",
  36696. height: math.unit(4.7, "meters"),
  36697. default: true
  36698. },
  36699. ]
  36700. ))
  36701. characterMakers.push(() => makeCharacter(
  36702. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36703. {
  36704. normal: {
  36705. height: math.unit(6, "feet"),
  36706. weight: math.unit(350, "lb"),
  36707. name: "Normal",
  36708. image: {
  36709. source: "./media/characters/teshy/normal.svg",
  36710. extra: 1795/1735,
  36711. bottom: 16/1811
  36712. }
  36713. },
  36714. monsterFront: {
  36715. height: math.unit(12, "feet"),
  36716. weight: math.unit(4700, "lb"),
  36717. name: "Monster (Front)",
  36718. image: {
  36719. source: "./media/characters/teshy/monster-front.svg",
  36720. extra: 2042/2034,
  36721. bottom: 128/2170
  36722. }
  36723. },
  36724. monsterSide: {
  36725. height: math.unit(12, "feet"),
  36726. weight: math.unit(4700, "lb"),
  36727. name: "Monster (Side)",
  36728. image: {
  36729. source: "./media/characters/teshy/monster-side.svg",
  36730. extra: 2067/2056,
  36731. bottom: 70/2137
  36732. }
  36733. },
  36734. monsterBack: {
  36735. height: math.unit(12, "feet"),
  36736. weight: math.unit(4700, "lb"),
  36737. name: "Monster (Back)",
  36738. image: {
  36739. source: "./media/characters/teshy/monster-back.svg",
  36740. extra: 1921/1914,
  36741. bottom: 171/2092
  36742. }
  36743. },
  36744. },
  36745. [
  36746. {
  36747. name: "Normal",
  36748. height: math.unit(6, "feet"),
  36749. default: true
  36750. },
  36751. ]
  36752. ))
  36753. characterMakers.push(() => makeCharacter(
  36754. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36755. {
  36756. front: {
  36757. height: math.unit(6, "feet"),
  36758. name: "Front",
  36759. image: {
  36760. source: "./media/characters/ramey/front.svg",
  36761. extra: 790/787,
  36762. bottom: 27/817
  36763. }
  36764. },
  36765. },
  36766. [
  36767. {
  36768. name: "Normal",
  36769. height: math.unit(6, "feet"),
  36770. default: true
  36771. },
  36772. ]
  36773. ))
  36774. characterMakers.push(() => makeCharacter(
  36775. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36776. {
  36777. front: {
  36778. height: math.unit(5 + 5/12, "feet"),
  36779. weight: math.unit(120, "lb"),
  36780. name: "Front",
  36781. image: {
  36782. source: "./media/characters/phirae/front.svg",
  36783. extra: 2491/2436,
  36784. bottom: 38/2529
  36785. }
  36786. },
  36787. },
  36788. [
  36789. {
  36790. name: "Normal",
  36791. height: math.unit(5 + 5/12, "feet"),
  36792. default: true
  36793. },
  36794. ]
  36795. ))
  36796. characterMakers.push(() => makeCharacter(
  36797. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36798. {
  36799. front: {
  36800. height: math.unit(5 + 3/12, "feet"),
  36801. name: "Front",
  36802. image: {
  36803. source: "./media/characters/stagglas/front.svg",
  36804. extra: 962/882,
  36805. bottom: 53/1015
  36806. }
  36807. },
  36808. feral: {
  36809. height: math.unit(335, "cm"),
  36810. name: "Feral",
  36811. image: {
  36812. source: "./media/characters/stagglas/feral.svg",
  36813. extra: 1732/1090,
  36814. bottom: 48/1780
  36815. }
  36816. },
  36817. },
  36818. [
  36819. {
  36820. name: "Normal",
  36821. height: math.unit(5 + 3/12, "feet"),
  36822. default: true
  36823. },
  36824. ]
  36825. ))
  36826. characterMakers.push(() => makeCharacter(
  36827. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36828. {
  36829. front: {
  36830. height: math.unit(5 + 4/12, "feet"),
  36831. weight: math.unit(145, "lb"),
  36832. name: "Front",
  36833. image: {
  36834. source: "./media/characters/starra/front.svg",
  36835. extra: 1790/1691,
  36836. bottom: 91/1881
  36837. }
  36838. },
  36839. },
  36840. [
  36841. {
  36842. name: "Normal",
  36843. height: math.unit(5 + 4/12, "feet"),
  36844. default: true
  36845. },
  36846. ]
  36847. ))
  36848. characterMakers.push(() => makeCharacter(
  36849. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36850. {
  36851. front: {
  36852. height: math.unit(3.5, "meters"),
  36853. name: "Front",
  36854. image: {
  36855. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36856. extra: 1248/972,
  36857. bottom: 38/1286
  36858. }
  36859. },
  36860. },
  36861. [
  36862. {
  36863. name: "Normal",
  36864. height: math.unit(3.5, "meters"),
  36865. default: true
  36866. },
  36867. ]
  36868. ))
  36869. characterMakers.push(() => makeCharacter(
  36870. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36871. {
  36872. side: {
  36873. height: math.unit(8 + 2/12, "feet"),
  36874. weight: math.unit(1240, "lb"),
  36875. name: "Side",
  36876. image: {
  36877. source: "./media/characters/mika-valentine/side.svg",
  36878. extra: 2670/2501,
  36879. bottom: 250/2920
  36880. }
  36881. },
  36882. },
  36883. [
  36884. {
  36885. name: "Normal",
  36886. height: math.unit(8 + 2/12, "feet"),
  36887. default: true
  36888. },
  36889. ]
  36890. ))
  36891. characterMakers.push(() => makeCharacter(
  36892. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36893. {
  36894. front: {
  36895. height: math.unit(7 + 2/12, "feet"),
  36896. name: "Front",
  36897. image: {
  36898. source: "./media/characters/xoltol/front.svg",
  36899. extra: 2212/2124,
  36900. bottom: 84/2296
  36901. }
  36902. },
  36903. side: {
  36904. height: math.unit(7 + 2/12, "feet"),
  36905. name: "Side",
  36906. image: {
  36907. source: "./media/characters/xoltol/side.svg",
  36908. extra: 2273/2197,
  36909. bottom: 26/2299
  36910. }
  36911. },
  36912. hand: {
  36913. height: math.unit(2.5, "feet"),
  36914. name: "Hand",
  36915. image: {
  36916. source: "./media/characters/xoltol/hand.svg"
  36917. }
  36918. },
  36919. },
  36920. [
  36921. {
  36922. name: "Small-ish",
  36923. height: math.unit(5 + 11/12, "feet")
  36924. },
  36925. {
  36926. name: "Normal",
  36927. height: math.unit(7 + 2/12, "feet")
  36928. },
  36929. {
  36930. name: "\"Macro\"",
  36931. height: math.unit(14 + 9/12, "feet"),
  36932. default: true
  36933. },
  36934. {
  36935. name: "Alternate Height",
  36936. height: math.unit(20, "feet")
  36937. },
  36938. {
  36939. name: "Actually Macro",
  36940. height: math.unit(100, "feet")
  36941. },
  36942. ]
  36943. ))
  36944. characterMakers.push(() => makeCharacter(
  36945. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36946. {
  36947. front: {
  36948. height: math.unit(5 + 2/12, "feet"),
  36949. weight: math.unit(75, "kg"),
  36950. name: "Front",
  36951. image: {
  36952. source: "./media/characters/kotetsu-redwood/front.svg",
  36953. extra: 1053/942,
  36954. bottom: 60/1113
  36955. }
  36956. },
  36957. },
  36958. [
  36959. {
  36960. name: "Normal",
  36961. height: math.unit(5 + 2/12, "feet"),
  36962. default: true
  36963. },
  36964. ]
  36965. ))
  36966. characterMakers.push(() => makeCharacter(
  36967. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36968. {
  36969. front: {
  36970. height: math.unit(2.4, "meters"),
  36971. weight: math.unit(125, "kg"),
  36972. name: "Front",
  36973. image: {
  36974. source: "./media/characters/lilith/front.svg",
  36975. extra: 1590/1513,
  36976. bottom: 203/1793
  36977. }
  36978. },
  36979. },
  36980. [
  36981. {
  36982. name: "Humanoid",
  36983. height: math.unit(2.4, "meters")
  36984. },
  36985. {
  36986. name: "Normal",
  36987. height: math.unit(6, "meters"),
  36988. default: true
  36989. },
  36990. {
  36991. name: "Largest",
  36992. height: math.unit(55, "meters")
  36993. },
  36994. ]
  36995. ))
  36996. characterMakers.push(() => makeCharacter(
  36997. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36998. {
  36999. front: {
  37000. height: math.unit(8 + 4/12, "feet"),
  37001. weight: math.unit(535, "lb"),
  37002. name: "Front",
  37003. image: {
  37004. source: "./media/characters/beh'kah-bolger/front.svg",
  37005. extra: 1660/1603,
  37006. bottom: 37/1697
  37007. }
  37008. },
  37009. },
  37010. [
  37011. {
  37012. name: "Normal",
  37013. height: math.unit(8 + 4/12, "feet"),
  37014. default: true
  37015. },
  37016. {
  37017. name: "Kaiju",
  37018. height: math.unit(250, "feet")
  37019. },
  37020. {
  37021. name: "Still Growing",
  37022. height: math.unit(10, "miles")
  37023. },
  37024. {
  37025. name: "Continental",
  37026. height: math.unit(5000, "miles")
  37027. },
  37028. {
  37029. name: "Final Form",
  37030. height: math.unit(2500000, "miles")
  37031. },
  37032. ]
  37033. ))
  37034. characterMakers.push(() => makeCharacter(
  37035. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37036. {
  37037. front: {
  37038. height: math.unit(7 + 2/12, "feet"),
  37039. weight: math.unit(230, "kg"),
  37040. name: "Front",
  37041. image: {
  37042. source: "./media/characters/tatyana-milewska/front.svg",
  37043. extra: 1199/1150,
  37044. bottom: 86/1285
  37045. }
  37046. },
  37047. },
  37048. [
  37049. {
  37050. name: "Normal",
  37051. height: math.unit(7 + 2/12, "feet"),
  37052. default: true
  37053. },
  37054. {
  37055. name: "Big",
  37056. height: math.unit(12, "feet")
  37057. },
  37058. {
  37059. name: "Minimacro",
  37060. height: math.unit(20, "feet")
  37061. },
  37062. {
  37063. name: "Macro",
  37064. height: math.unit(120, "feet")
  37065. },
  37066. ]
  37067. ))
  37068. characterMakers.push(() => makeCharacter(
  37069. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37070. {
  37071. front: {
  37072. height: math.unit(7 + 8/12, "feet"),
  37073. weight: math.unit(152, "kg"),
  37074. name: "Front",
  37075. image: {
  37076. source: "./media/characters/helen-arri/front.svg",
  37077. extra: 440/423,
  37078. bottom: 14/454
  37079. }
  37080. },
  37081. back: {
  37082. height: math.unit(7 + 8/12, "feet"),
  37083. weight: math.unit(152, "kg"),
  37084. name: "Back",
  37085. image: {
  37086. source: "./media/characters/helen-arri/back.svg",
  37087. extra: 443/426,
  37088. bottom: 8/451
  37089. }
  37090. },
  37091. },
  37092. [
  37093. {
  37094. name: "Normal",
  37095. height: math.unit(7 + 8/12, "feet"),
  37096. default: true
  37097. },
  37098. {
  37099. name: "Big",
  37100. height: math.unit(14, "feet")
  37101. },
  37102. {
  37103. name: "Minimacro",
  37104. height: math.unit(24, "feet")
  37105. },
  37106. {
  37107. name: "Macro",
  37108. height: math.unit(140, "feet")
  37109. },
  37110. ]
  37111. ))
  37112. characterMakers.push(() => makeCharacter(
  37113. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37114. {
  37115. front: {
  37116. height: math.unit(6, "meters"),
  37117. name: "Front",
  37118. image: {
  37119. source: "./media/characters/ehanu-rehu/front.svg",
  37120. extra: 1800/1800,
  37121. bottom: 59/1859
  37122. }
  37123. },
  37124. },
  37125. [
  37126. {
  37127. name: "Normal",
  37128. height: math.unit(6, "meters"),
  37129. default: true
  37130. },
  37131. ]
  37132. ))
  37133. characterMakers.push(() => makeCharacter(
  37134. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37135. {
  37136. front: {
  37137. height: math.unit(7 + 3/12, "feet"),
  37138. name: "Front",
  37139. image: {
  37140. source: "./media/characters/renholder/front.svg",
  37141. extra: 3096/2960,
  37142. bottom: 250/3346
  37143. }
  37144. },
  37145. },
  37146. [
  37147. {
  37148. name: "Normal Bat",
  37149. height: math.unit(7 + 3/12, "feet"),
  37150. default: true
  37151. },
  37152. {
  37153. name: "Slightly Tall Bat",
  37154. height: math.unit(100, "feet")
  37155. },
  37156. {
  37157. name: "Big Bat",
  37158. height: math.unit(1000, "feet")
  37159. },
  37160. {
  37161. name: "City-Sized Bat",
  37162. height: math.unit(200000, "feet")
  37163. },
  37164. {
  37165. name: "Bigger Bat",
  37166. height: math.unit(10000, "miles")
  37167. },
  37168. {
  37169. name: "Solar Sized Bat",
  37170. height: math.unit(100, "AU")
  37171. },
  37172. {
  37173. name: "Galactic Bat",
  37174. height: math.unit(200000, "lightyears")
  37175. },
  37176. {
  37177. name: "Universally Known Bat",
  37178. height: math.unit(1, "universe")
  37179. },
  37180. ]
  37181. ))
  37182. characterMakers.push(() => makeCharacter(
  37183. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37184. {
  37185. front: {
  37186. height: math.unit(6 + 11/12, "feet"),
  37187. weight: math.unit(250, "lb"),
  37188. name: "Front",
  37189. image: {
  37190. source: "./media/characters/cookiecat/front.svg",
  37191. extra: 893/827,
  37192. bottom: 14/907
  37193. }
  37194. },
  37195. },
  37196. [
  37197. {
  37198. name: "Micro",
  37199. height: math.unit(3, "inches")
  37200. },
  37201. {
  37202. name: "Normal",
  37203. height: math.unit(6 + 11/12, "feet"),
  37204. default: true
  37205. },
  37206. {
  37207. name: "Macro",
  37208. height: math.unit(100, "feet")
  37209. },
  37210. {
  37211. name: "Macro+",
  37212. height: math.unit(404, "feet")
  37213. },
  37214. {
  37215. name: "Megamacro",
  37216. height: math.unit(165, "miles")
  37217. },
  37218. {
  37219. name: "Planetary",
  37220. height: math.unit(4600, "miles")
  37221. },
  37222. ]
  37223. ))
  37224. characterMakers.push(() => makeCharacter(
  37225. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37226. {
  37227. front: {
  37228. height: math.unit(10 + 3/12, "feet"),
  37229. weight: math.unit(1500, "lb"),
  37230. name: "Front",
  37231. image: {
  37232. source: "./media/characters/tux-kusanagi/front.svg",
  37233. extra: 944/840,
  37234. bottom: 39/983
  37235. }
  37236. },
  37237. back: {
  37238. height: math.unit(10 + 3/12, "feet"),
  37239. weight: math.unit(1500, "lb"),
  37240. name: "Back",
  37241. image: {
  37242. source: "./media/characters/tux-kusanagi/back.svg",
  37243. extra: 941/842,
  37244. bottom: 28/969
  37245. }
  37246. },
  37247. rump: {
  37248. height: math.unit(5.25, "feet"),
  37249. name: "Rump",
  37250. image: {
  37251. source: "./media/characters/tux-kusanagi/rump.svg"
  37252. }
  37253. },
  37254. beak: {
  37255. height: math.unit(1.54, "feet"),
  37256. name: "Beak",
  37257. image: {
  37258. source: "./media/characters/tux-kusanagi/beak.svg"
  37259. }
  37260. },
  37261. },
  37262. [
  37263. {
  37264. name: "Normal",
  37265. height: math.unit(10 + 3/12, "feet"),
  37266. default: true
  37267. },
  37268. ]
  37269. ))
  37270. characterMakers.push(() => makeCharacter(
  37271. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37272. {
  37273. front: {
  37274. height: math.unit(58, "feet"),
  37275. weight: math.unit(200, "tons"),
  37276. name: "Front",
  37277. image: {
  37278. source: "./media/characters/uzarmazari/front.svg",
  37279. extra: 1575/1455,
  37280. bottom: 152/1727
  37281. }
  37282. },
  37283. back: {
  37284. height: math.unit(58, "feet"),
  37285. weight: math.unit(200, "tons"),
  37286. name: "Back",
  37287. image: {
  37288. source: "./media/characters/uzarmazari/back.svg",
  37289. extra: 1585/1510,
  37290. bottom: 157/1742
  37291. }
  37292. },
  37293. head: {
  37294. height: math.unit(26, "feet"),
  37295. name: "Head",
  37296. image: {
  37297. source: "./media/characters/uzarmazari/head.svg"
  37298. }
  37299. },
  37300. },
  37301. [
  37302. {
  37303. name: "Normal",
  37304. height: math.unit(58, "feet"),
  37305. default: true
  37306. },
  37307. ]
  37308. ))
  37309. characterMakers.push(() => makeCharacter(
  37310. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37311. {
  37312. side: {
  37313. height: math.unit(15, "feet"),
  37314. name: "Side",
  37315. image: {
  37316. source: "./media/characters/akitu/side.svg",
  37317. extra: 1421/1321,
  37318. bottom: 157/1578
  37319. }
  37320. },
  37321. front: {
  37322. height: math.unit(15, "feet"),
  37323. name: "Front",
  37324. image: {
  37325. source: "./media/characters/akitu/front.svg",
  37326. extra: 1435/1326,
  37327. bottom: 232/1667
  37328. }
  37329. },
  37330. },
  37331. [
  37332. {
  37333. name: "Normal",
  37334. height: math.unit(15, "feet"),
  37335. default: true
  37336. },
  37337. ]
  37338. ))
  37339. characterMakers.push(() => makeCharacter(
  37340. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37341. {
  37342. front: {
  37343. height: math.unit(10 + 8/12, "feet"),
  37344. name: "Front",
  37345. image: {
  37346. source: "./media/characters/azalie-croixland/front.svg",
  37347. extra: 1972/1856,
  37348. bottom: 31/2003
  37349. }
  37350. },
  37351. },
  37352. [
  37353. {
  37354. name: "Original Height",
  37355. height: math.unit(5 + 4/12, "feet")
  37356. },
  37357. {
  37358. name: "Normal Height",
  37359. height: math.unit(10 + 8/12, "feet"),
  37360. default: true
  37361. },
  37362. ]
  37363. ))
  37364. characterMakers.push(() => makeCharacter(
  37365. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37366. {
  37367. side: {
  37368. height: math.unit(7 + 1/12, "feet"),
  37369. weight: math.unit(245, "lb"),
  37370. name: "Side",
  37371. image: {
  37372. source: "./media/characters/kavus-kazian/side.svg",
  37373. extra: 349/342,
  37374. bottom: 15/364
  37375. }
  37376. },
  37377. },
  37378. [
  37379. {
  37380. name: "Normal",
  37381. height: math.unit(7 + 1/12, "feet"),
  37382. default: true
  37383. },
  37384. ]
  37385. ))
  37386. characterMakers.push(() => makeCharacter(
  37387. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37388. {
  37389. normalFront: {
  37390. height: math.unit(5 + 11/12, "feet"),
  37391. name: "Front",
  37392. image: {
  37393. source: "./media/characters/moonlight-rose/normal-front.svg",
  37394. extra: 1980/1825,
  37395. bottom: 18/1998
  37396. },
  37397. form: "normal",
  37398. default: true
  37399. },
  37400. normalBack: {
  37401. height: math.unit(5 + 11/12, "feet"),
  37402. name: "Back",
  37403. image: {
  37404. source: "./media/characters/moonlight-rose/normal-back.svg",
  37405. extra: 2010/1839,
  37406. bottom: 10/2020
  37407. },
  37408. form: "normal"
  37409. },
  37410. demonFront: {
  37411. height: math.unit(1.5, "earths"),
  37412. name: "Front",
  37413. image: {
  37414. source: "./media/characters/moonlight-rose/demon.svg",
  37415. extra: 1400/1294,
  37416. bottom: 45/1445
  37417. },
  37418. form: "demon",
  37419. default: true
  37420. },
  37421. terraFront: {
  37422. height: math.unit(1.5, "earths"),
  37423. name: "Front",
  37424. image: {
  37425. source: "./media/characters/moonlight-rose/terra.svg"
  37426. },
  37427. form: "terra",
  37428. default: true
  37429. },
  37430. jupiterFront: {
  37431. height: math.unit(69911*2, "km"),
  37432. name: "Front",
  37433. image: {
  37434. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37435. extra: 1367/1286,
  37436. bottom: 55/1422
  37437. },
  37438. form: "jupiter",
  37439. default: true
  37440. },
  37441. neptuneFront: {
  37442. height: math.unit(24622*2, "feet"),
  37443. name: "Front",
  37444. image: {
  37445. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37446. extra: 1851/1712,
  37447. bottom: 0/1851
  37448. },
  37449. form: "neptune",
  37450. default: true
  37451. },
  37452. },
  37453. [
  37454. {
  37455. name: "\"Natural\" Height",
  37456. height: math.unit(5 + 11/12, "feet"),
  37457. form: "normal"
  37458. },
  37459. {
  37460. name: "Smallest comfortable size",
  37461. height: math.unit(40, "meters"),
  37462. form: "normal"
  37463. },
  37464. {
  37465. name: "Common size",
  37466. height: math.unit(50, "km"),
  37467. form: "normal",
  37468. default: true
  37469. },
  37470. {
  37471. name: "Normal",
  37472. height: math.unit(1.5, "earths"),
  37473. form: "demon",
  37474. default: true
  37475. },
  37476. {
  37477. name: "Universal",
  37478. height: math.unit(15, "universes"),
  37479. form: "demon"
  37480. },
  37481. {
  37482. name: "Earth",
  37483. height: math.unit(1.5, "earths"),
  37484. form: "terra",
  37485. default: true
  37486. },
  37487. {
  37488. name: "Super Earth",
  37489. height: math.unit(67.5, "earths"),
  37490. form: "terra"
  37491. },
  37492. {
  37493. name: "Doesn't fit in a solar system...",
  37494. height: math.unit(1, "galaxy"),
  37495. form: "terra"
  37496. },
  37497. {
  37498. name: "Saturn",
  37499. height: math.unit(58232*2, "km"),
  37500. form: "jupiter"
  37501. },
  37502. {
  37503. name: "Jupiter",
  37504. height: math.unit(69911*2, "km"),
  37505. form: "jupiter",
  37506. default: true
  37507. },
  37508. {
  37509. name: "HD 100546 b",
  37510. height: math.unit(482938, "km"),
  37511. form: "jupiter"
  37512. },
  37513. {
  37514. name: "Enceladus",
  37515. height: math.unit(513*2, "km"),
  37516. form: "neptune"
  37517. },
  37518. {
  37519. name: "Europe",
  37520. height: math.unit(1560*2, "km"),
  37521. form: "neptune"
  37522. },
  37523. {
  37524. name: "Neptune",
  37525. height: math.unit(24622*2, "km"),
  37526. form: "neptune",
  37527. default: true
  37528. },
  37529. {
  37530. name: "CoRoT-9b",
  37531. height: math.unit(75067*2, "km"),
  37532. form: "neptune"
  37533. },
  37534. ],
  37535. {
  37536. "normal": {
  37537. name: "Normal",
  37538. default: true
  37539. },
  37540. "demon": {
  37541. name: "Demon"
  37542. },
  37543. "terra": {
  37544. name: "Terra"
  37545. },
  37546. "jupiter": {
  37547. name: "Jupiter"
  37548. },
  37549. "neptune": {
  37550. name: "Neptune"
  37551. }
  37552. }
  37553. ))
  37554. characterMakers.push(() => makeCharacter(
  37555. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37556. {
  37557. front: {
  37558. height: math.unit(16, "feet"),
  37559. weight: math.unit(610, "kg"),
  37560. name: "Front",
  37561. image: {
  37562. source: "./media/characters/huckle/front.svg",
  37563. extra: 1731/1625,
  37564. bottom: 33/1764
  37565. }
  37566. },
  37567. back: {
  37568. height: math.unit(16, "feet"),
  37569. weight: math.unit(610, "kg"),
  37570. name: "Back",
  37571. image: {
  37572. source: "./media/characters/huckle/back.svg",
  37573. extra: 1738/1651,
  37574. bottom: 37/1775
  37575. }
  37576. },
  37577. laughing: {
  37578. height: math.unit(3.75, "feet"),
  37579. name: "Laughing",
  37580. image: {
  37581. source: "./media/characters/huckle/laughing.svg"
  37582. }
  37583. },
  37584. angry: {
  37585. height: math.unit(4.15, "feet"),
  37586. name: "Angry",
  37587. image: {
  37588. source: "./media/characters/huckle/angry.svg"
  37589. }
  37590. },
  37591. },
  37592. [
  37593. {
  37594. name: "Normal",
  37595. height: math.unit(16, "feet"),
  37596. default: true
  37597. },
  37598. {
  37599. name: "Mini Macro",
  37600. height: math.unit(463, "feet")
  37601. },
  37602. {
  37603. name: "Macro",
  37604. height: math.unit(1680, "meters")
  37605. },
  37606. {
  37607. name: "Mega Macro",
  37608. height: math.unit(175, "km")
  37609. },
  37610. {
  37611. name: "Terra Macro",
  37612. height: math.unit(32, "gigameters")
  37613. },
  37614. {
  37615. name: "Multiverse+",
  37616. height: math.unit(2.56e23, "yottameters")
  37617. },
  37618. ]
  37619. ))
  37620. characterMakers.push(() => makeCharacter(
  37621. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37622. {
  37623. front: {
  37624. height: math.unit(6 + 9/12, "feet"),
  37625. weight: math.unit(280, "lb"),
  37626. name: "Front",
  37627. image: {
  37628. source: "./media/characters/candy/front.svg",
  37629. extra: 234/217,
  37630. bottom: 11/245
  37631. }
  37632. },
  37633. },
  37634. [
  37635. {
  37636. name: "Really Small",
  37637. height: math.unit(0.1, "nm")
  37638. },
  37639. {
  37640. name: "Micro",
  37641. height: math.unit(2, "inches")
  37642. },
  37643. {
  37644. name: "Normal",
  37645. height: math.unit(6 + 9/12, "feet"),
  37646. default: true
  37647. },
  37648. {
  37649. name: "Small Macro",
  37650. height: math.unit(69, "feet")
  37651. },
  37652. {
  37653. name: "Macro",
  37654. height: math.unit(160, "feet")
  37655. },
  37656. {
  37657. name: "Megamacro",
  37658. height: math.unit(22000, "miles")
  37659. },
  37660. {
  37661. name: "Gigamacro",
  37662. height: math.unit(50000, "miles")
  37663. },
  37664. ]
  37665. ))
  37666. characterMakers.push(() => makeCharacter(
  37667. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37668. {
  37669. front: {
  37670. height: math.unit(4, "feet"),
  37671. weight: math.unit(90, "lb"),
  37672. name: "Front",
  37673. image: {
  37674. source: "./media/characters/joey-mcdonald/front.svg",
  37675. extra: 1059/852,
  37676. bottom: 33/1092
  37677. }
  37678. },
  37679. back: {
  37680. height: math.unit(4, "feet"),
  37681. weight: math.unit(90, "lb"),
  37682. name: "Back",
  37683. image: {
  37684. source: "./media/characters/joey-mcdonald/back.svg",
  37685. extra: 1077/879,
  37686. bottom: 5/1082
  37687. }
  37688. },
  37689. frontKobold: {
  37690. height: math.unit(4, "feet"),
  37691. weight: math.unit(100, "lb"),
  37692. name: "Front-kobold",
  37693. image: {
  37694. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37695. extra: 1480/1367,
  37696. bottom: 0/1480
  37697. }
  37698. },
  37699. backKobold: {
  37700. height: math.unit(4, "feet"),
  37701. weight: math.unit(100, "lb"),
  37702. name: "Back-kobold",
  37703. image: {
  37704. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37705. extra: 1449/1361,
  37706. bottom: 0/1449
  37707. }
  37708. },
  37709. },
  37710. [
  37711. {
  37712. name: "Normal",
  37713. height: math.unit(4, "feet"),
  37714. default: true
  37715. },
  37716. ]
  37717. ))
  37718. characterMakers.push(() => makeCharacter(
  37719. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37720. {
  37721. front: {
  37722. height: math.unit(12 + 6/12, "feet"),
  37723. name: "Front",
  37724. image: {
  37725. source: "./media/characters/kass-lockheed/front.svg",
  37726. extra: 354/343,
  37727. bottom: 9/363
  37728. }
  37729. },
  37730. back: {
  37731. height: math.unit(12 + 6/12, "feet"),
  37732. name: "Back",
  37733. image: {
  37734. source: "./media/characters/kass-lockheed/back.svg",
  37735. extra: 364/352,
  37736. bottom: 3/367
  37737. }
  37738. },
  37739. dick: {
  37740. height: math.unit(3.12, "feet"),
  37741. name: "Dick",
  37742. image: {
  37743. source: "./media/characters/kass-lockheed/dick.svg"
  37744. }
  37745. },
  37746. head: {
  37747. height: math.unit(2.6, "feet"),
  37748. name: "Head",
  37749. image: {
  37750. source: "./media/characters/kass-lockheed/head.svg"
  37751. }
  37752. },
  37753. bleh: {
  37754. height: math.unit(2.85, "feet"),
  37755. name: "Bleh",
  37756. image: {
  37757. source: "./media/characters/kass-lockheed/bleh.svg"
  37758. }
  37759. },
  37760. smug: {
  37761. height: math.unit(2.85, "feet"),
  37762. name: "Smug",
  37763. image: {
  37764. source: "./media/characters/kass-lockheed/smug.svg"
  37765. }
  37766. },
  37767. },
  37768. [
  37769. {
  37770. name: "Normal",
  37771. height: math.unit(12 + 6/12, "feet"),
  37772. default: true
  37773. },
  37774. ]
  37775. ))
  37776. characterMakers.push(() => makeCharacter(
  37777. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37778. {
  37779. front: {
  37780. height: math.unit(6 + 2/12, "feet"),
  37781. name: "Front",
  37782. image: {
  37783. source: "./media/characters/taylor/front.svg",
  37784. extra: 639/495,
  37785. bottom: 12/651
  37786. }
  37787. },
  37788. },
  37789. [
  37790. {
  37791. name: "Normal",
  37792. height: math.unit(6 + 2/12, "feet"),
  37793. default: true
  37794. },
  37795. {
  37796. name: "Big",
  37797. height: math.unit(15, "feet")
  37798. },
  37799. {
  37800. name: "Lorg",
  37801. height: math.unit(80, "feet")
  37802. },
  37803. {
  37804. name: "Too Lorg",
  37805. height: math.unit(120, "feet")
  37806. },
  37807. ]
  37808. ))
  37809. characterMakers.push(() => makeCharacter(
  37810. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37811. {
  37812. front: {
  37813. height: math.unit(15, "feet"),
  37814. name: "Front",
  37815. image: {
  37816. source: "./media/characters/kaizer/front.svg",
  37817. extra: 1612/1436,
  37818. bottom: 43/1655
  37819. }
  37820. },
  37821. },
  37822. [
  37823. {
  37824. name: "Normal",
  37825. height: math.unit(15, "feet"),
  37826. default: true
  37827. },
  37828. ]
  37829. ))
  37830. characterMakers.push(() => makeCharacter(
  37831. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37832. {
  37833. front: {
  37834. height: math.unit(2, "feet"),
  37835. weight: math.unit(30, "lb"),
  37836. name: "Front",
  37837. image: {
  37838. source: "./media/characters/sandy/front.svg",
  37839. extra: 1439/1307,
  37840. bottom: 194/1633
  37841. }
  37842. },
  37843. },
  37844. [
  37845. {
  37846. name: "Normal",
  37847. height: math.unit(2, "feet"),
  37848. default: true
  37849. },
  37850. ]
  37851. ))
  37852. characterMakers.push(() => makeCharacter(
  37853. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37854. {
  37855. front: {
  37856. height: math.unit(3, "feet"),
  37857. name: "Front",
  37858. image: {
  37859. source: "./media/characters/mellvi/front.svg",
  37860. extra: 1831/1630,
  37861. bottom: 58/1889
  37862. }
  37863. },
  37864. },
  37865. [
  37866. {
  37867. name: "Normal",
  37868. height: math.unit(3, "feet"),
  37869. default: true
  37870. },
  37871. ]
  37872. ))
  37873. characterMakers.push(() => makeCharacter(
  37874. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37875. {
  37876. front: {
  37877. height: math.unit(5 + 11/12, "feet"),
  37878. weight: math.unit(200, "lb"),
  37879. name: "Front",
  37880. image: {
  37881. source: "./media/characters/shirou/front.svg",
  37882. extra: 2491/2383,
  37883. bottom: 189/2680
  37884. }
  37885. },
  37886. back: {
  37887. height: math.unit(5 + 11/12, "feet"),
  37888. weight: math.unit(200, "lb"),
  37889. name: "Back",
  37890. image: {
  37891. source: "./media/characters/shirou/back.svg",
  37892. extra: 2554/2450,
  37893. bottom: 76/2630
  37894. }
  37895. },
  37896. },
  37897. [
  37898. {
  37899. name: "Normal",
  37900. height: math.unit(5 + 11/12, "feet"),
  37901. default: true
  37902. },
  37903. ]
  37904. ))
  37905. characterMakers.push(() => makeCharacter(
  37906. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37907. {
  37908. front: {
  37909. height: math.unit(6 + 3/12, "feet"),
  37910. weight: math.unit(177, "lb"),
  37911. name: "Front",
  37912. image: {
  37913. source: "./media/characters/noryu/front.svg",
  37914. extra: 973/885,
  37915. bottom: 10/983
  37916. }
  37917. },
  37918. },
  37919. [
  37920. {
  37921. name: "Normal",
  37922. height: math.unit(6 + 3/12, "feet"),
  37923. default: true
  37924. },
  37925. ]
  37926. ))
  37927. characterMakers.push(() => makeCharacter(
  37928. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37929. {
  37930. front: {
  37931. height: math.unit(5 + 6/12, "feet"),
  37932. weight: math.unit(170, "lb"),
  37933. name: "Front",
  37934. image: {
  37935. source: "./media/characters/mevolas-rubenido/front.svg",
  37936. extra: 2109/1901,
  37937. bottom: 96/2205
  37938. }
  37939. },
  37940. },
  37941. [
  37942. {
  37943. name: "Normal",
  37944. height: math.unit(5 + 6/12, "feet"),
  37945. default: true
  37946. },
  37947. ]
  37948. ))
  37949. characterMakers.push(() => makeCharacter(
  37950. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37951. {
  37952. front: {
  37953. height: math.unit(100, "feet"),
  37954. name: "Front",
  37955. image: {
  37956. source: "./media/characters/dee/front.svg",
  37957. extra: 2153/2036,
  37958. bottom: 59/2212
  37959. }
  37960. },
  37961. back: {
  37962. height: math.unit(100, "feet"),
  37963. name: "Back",
  37964. image: {
  37965. source: "./media/characters/dee/back.svg",
  37966. extra: 2183/2058,
  37967. bottom: 75/2258
  37968. }
  37969. },
  37970. foot: {
  37971. height: math.unit(19.43, "feet"),
  37972. name: "Foot",
  37973. image: {
  37974. source: "./media/characters/dee/foot.svg"
  37975. }
  37976. },
  37977. hoof: {
  37978. height: math.unit(20.6, "feet"),
  37979. name: "Hoof",
  37980. image: {
  37981. source: "./media/characters/dee/hoof.svg"
  37982. }
  37983. },
  37984. },
  37985. [
  37986. {
  37987. name: "Macro",
  37988. height: math.unit(100, "feet"),
  37989. default: true
  37990. },
  37991. ]
  37992. ))
  37993. characterMakers.push(() => makeCharacter(
  37994. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37995. {
  37996. front: {
  37997. height: math.unit(5 + 6/12, "feet"),
  37998. name: "Front",
  37999. image: {
  38000. source: "./media/characters/teh/front.svg",
  38001. extra: 1002/847,
  38002. bottom: 62/1064
  38003. }
  38004. },
  38005. },
  38006. [
  38007. {
  38008. name: "Normal",
  38009. height: math.unit(5 + 6/12, "feet"),
  38010. default: true
  38011. },
  38012. ]
  38013. ))
  38014. characterMakers.push(() => makeCharacter(
  38015. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38016. {
  38017. side: {
  38018. height: math.unit(6 + 1/12, "feet"),
  38019. weight: math.unit(204, "lb"),
  38020. name: "Side",
  38021. image: {
  38022. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38023. extra: 974/775,
  38024. bottom: 169/1143
  38025. }
  38026. },
  38027. sitting: {
  38028. height: math.unit(6 + 2/12, "feet"),
  38029. weight: math.unit(204, "lb"),
  38030. name: "Sitting",
  38031. image: {
  38032. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38033. extra: 1175/964,
  38034. bottom: 378/1553
  38035. }
  38036. },
  38037. },
  38038. [
  38039. {
  38040. name: "Normal",
  38041. height: math.unit(6 + 1/12, "feet"),
  38042. default: true
  38043. },
  38044. ]
  38045. ))
  38046. characterMakers.push(() => makeCharacter(
  38047. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38048. {
  38049. front: {
  38050. height: math.unit(6, "inches"),
  38051. name: "Front",
  38052. image: {
  38053. source: "./media/characters/tululi/front.svg",
  38054. extra: 1997/1876,
  38055. bottom: 20/2017
  38056. }
  38057. },
  38058. },
  38059. [
  38060. {
  38061. name: "Normal",
  38062. height: math.unit(6, "inches"),
  38063. default: true
  38064. },
  38065. ]
  38066. ))
  38067. characterMakers.push(() => makeCharacter(
  38068. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38069. {
  38070. front: {
  38071. height: math.unit(4 + 1/12, "feet"),
  38072. name: "Front",
  38073. image: {
  38074. source: "./media/characters/star/front.svg",
  38075. extra: 1493/1189,
  38076. bottom: 48/1541
  38077. }
  38078. },
  38079. },
  38080. [
  38081. {
  38082. name: "Normal",
  38083. height: math.unit(4 + 1/12, "feet"),
  38084. default: true
  38085. },
  38086. ]
  38087. ))
  38088. characterMakers.push(() => makeCharacter(
  38089. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38090. {
  38091. front: {
  38092. height: math.unit(6 + 3/12, "feet"),
  38093. name: "Front",
  38094. image: {
  38095. source: "./media/characters/comet/front.svg",
  38096. extra: 1681/1462,
  38097. bottom: 26/1707
  38098. }
  38099. },
  38100. },
  38101. [
  38102. {
  38103. name: "Normal",
  38104. height: math.unit(6 + 3/12, "feet"),
  38105. default: true
  38106. },
  38107. ]
  38108. ))
  38109. characterMakers.push(() => makeCharacter(
  38110. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38111. {
  38112. front: {
  38113. height: math.unit(950, "feet"),
  38114. name: "Front",
  38115. image: {
  38116. source: "./media/characters/vortex/front.svg",
  38117. extra: 1497/1434,
  38118. bottom: 56/1553
  38119. }
  38120. },
  38121. maw: {
  38122. height: math.unit(285, "feet"),
  38123. name: "Maw",
  38124. image: {
  38125. source: "./media/characters/vortex/maw.svg"
  38126. }
  38127. },
  38128. },
  38129. [
  38130. {
  38131. name: "Macro",
  38132. height: math.unit(950, "feet"),
  38133. default: true
  38134. },
  38135. ]
  38136. ))
  38137. characterMakers.push(() => makeCharacter(
  38138. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38139. {
  38140. front: {
  38141. height: math.unit(600, "feet"),
  38142. weight: math.unit(0.02, "grams"),
  38143. name: "Front",
  38144. image: {
  38145. source: "./media/characters/doodle/front.svg",
  38146. extra: 1578/1413,
  38147. bottom: 37/1615
  38148. }
  38149. },
  38150. },
  38151. [
  38152. {
  38153. name: "Macro",
  38154. height: math.unit(600, "feet"),
  38155. default: true
  38156. },
  38157. ]
  38158. ))
  38159. characterMakers.push(() => makeCharacter(
  38160. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38161. {
  38162. front: {
  38163. height: math.unit(6 + 6/12, "feet"),
  38164. name: "Front",
  38165. image: {
  38166. source: "./media/characters/jai/front.svg",
  38167. extra: 1645/1534,
  38168. bottom: 115/1760
  38169. }
  38170. },
  38171. },
  38172. [
  38173. {
  38174. name: "Normal",
  38175. height: math.unit(6 + 6/12, "feet"),
  38176. default: true
  38177. },
  38178. ]
  38179. ))
  38180. characterMakers.push(() => makeCharacter(
  38181. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38182. {
  38183. front: {
  38184. height: math.unit(6 + 8/12, "feet"),
  38185. name: "Front",
  38186. image: {
  38187. source: "./media/characters/pixel/front.svg",
  38188. extra: 1900/1735,
  38189. bottom: 63/1963
  38190. }
  38191. },
  38192. },
  38193. [
  38194. {
  38195. name: "Normal",
  38196. height: math.unit(6 + 8/12, "feet"),
  38197. default: true
  38198. },
  38199. ]
  38200. ))
  38201. characterMakers.push(() => makeCharacter(
  38202. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38203. {
  38204. back: {
  38205. height: math.unit(4 + 1/12, "feet"),
  38206. weight: math.unit(75, "lb"),
  38207. name: "Back",
  38208. image: {
  38209. source: "./media/characters/rhett/back.svg",
  38210. extra: 930/878,
  38211. bottom: 25/955
  38212. }
  38213. },
  38214. front: {
  38215. height: math.unit(4 + 1/12, "feet"),
  38216. weight: math.unit(75, "lb"),
  38217. name: "Front",
  38218. image: {
  38219. source: "./media/characters/rhett/front.svg",
  38220. extra: 1682/1586,
  38221. bottom: 92/1774
  38222. }
  38223. },
  38224. },
  38225. [
  38226. {
  38227. name: "Micro",
  38228. height: math.unit(8, "inches")
  38229. },
  38230. {
  38231. name: "Tiny",
  38232. height: math.unit(2, "feet")
  38233. },
  38234. {
  38235. name: "Normal",
  38236. height: math.unit(4 + 1/12, "feet"),
  38237. default: true
  38238. },
  38239. ]
  38240. ))
  38241. characterMakers.push(() => makeCharacter(
  38242. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38243. {
  38244. front: {
  38245. height: math.unit(3 + 3/12, "feet"),
  38246. name: "Front",
  38247. image: {
  38248. source: "./media/characters/penny/front.svg",
  38249. extra: 1406/1311,
  38250. bottom: 26/1432
  38251. }
  38252. },
  38253. },
  38254. [
  38255. {
  38256. name: "Normal",
  38257. height: math.unit(3 + 3/12, "feet"),
  38258. default: true
  38259. },
  38260. ]
  38261. ))
  38262. characterMakers.push(() => makeCharacter(
  38263. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38264. {
  38265. front: {
  38266. height: math.unit(4 + 11/12, "feet"),
  38267. name: "Front",
  38268. image: {
  38269. source: "./media/characters/monty/front.svg",
  38270. extra: 1479/1209,
  38271. bottom: 0/1479
  38272. }
  38273. },
  38274. },
  38275. [
  38276. {
  38277. name: "Normal",
  38278. height: math.unit(4 + 11/12, "feet"),
  38279. default: true
  38280. },
  38281. ]
  38282. ))
  38283. characterMakers.push(() => makeCharacter(
  38284. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38285. {
  38286. front: {
  38287. height: math.unit(8 + 4/12, "feet"),
  38288. name: "Front",
  38289. image: {
  38290. source: "./media/characters/sterling/front.svg",
  38291. extra: 1420/1236,
  38292. bottom: 27/1447
  38293. }
  38294. },
  38295. },
  38296. [
  38297. {
  38298. name: "Normal",
  38299. height: math.unit(8 + 4/12, "feet"),
  38300. default: true
  38301. },
  38302. ]
  38303. ))
  38304. characterMakers.push(() => makeCharacter(
  38305. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38306. {
  38307. front: {
  38308. height: math.unit(15, "feet"),
  38309. name: "Front",
  38310. image: {
  38311. source: "./media/characters/marble/front.svg",
  38312. extra: 973/937,
  38313. bottom: 32/1005
  38314. }
  38315. },
  38316. },
  38317. [
  38318. {
  38319. name: "Normal",
  38320. height: math.unit(15, "feet"),
  38321. default: true
  38322. },
  38323. ]
  38324. ))
  38325. characterMakers.push(() => makeCharacter(
  38326. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38327. {
  38328. front: {
  38329. height: math.unit(3, "inches"),
  38330. name: "Front",
  38331. image: {
  38332. source: "./media/characters/powder/front.svg",
  38333. extra: 1504/1334,
  38334. bottom: 518/2022
  38335. }
  38336. },
  38337. },
  38338. [
  38339. {
  38340. name: "Normal",
  38341. height: math.unit(3, "inches"),
  38342. default: true
  38343. },
  38344. ]
  38345. ))
  38346. characterMakers.push(() => makeCharacter(
  38347. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38348. {
  38349. front: {
  38350. height: math.unit(4 + 5/12, "feet"),
  38351. name: "Front",
  38352. image: {
  38353. source: "./media/characters/joey-raccoon/front.svg",
  38354. extra: 1273/1197,
  38355. bottom: 0/1273
  38356. }
  38357. },
  38358. },
  38359. [
  38360. {
  38361. name: "Normal",
  38362. height: math.unit(4 + 5/12, "feet"),
  38363. default: true
  38364. },
  38365. ]
  38366. ))
  38367. characterMakers.push(() => makeCharacter(
  38368. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38369. {
  38370. front: {
  38371. height: math.unit(8 + 4/12, "feet"),
  38372. name: "Front",
  38373. image: {
  38374. source: "./media/characters/vick/front.svg",
  38375. extra: 2187/2118,
  38376. bottom: 47/2234
  38377. }
  38378. },
  38379. },
  38380. [
  38381. {
  38382. name: "Normal",
  38383. height: math.unit(8 + 4/12, "feet"),
  38384. default: true
  38385. },
  38386. ]
  38387. ))
  38388. characterMakers.push(() => makeCharacter(
  38389. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38390. {
  38391. front: {
  38392. height: math.unit(5 + 5/12, "feet"),
  38393. name: "Front",
  38394. image: {
  38395. source: "./media/characters/mitsy/front.svg",
  38396. extra: 1842/1695,
  38397. bottom: 0/1842
  38398. }
  38399. },
  38400. },
  38401. [
  38402. {
  38403. name: "Normal",
  38404. height: math.unit(5 + 5/12, "feet"),
  38405. default: true
  38406. },
  38407. ]
  38408. ))
  38409. characterMakers.push(() => makeCharacter(
  38410. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38411. {
  38412. front: {
  38413. height: math.unit(6 + 3/12, "feet"),
  38414. name: "Front",
  38415. image: {
  38416. source: "./media/characters/silvy/front.svg",
  38417. extra: 1995/1836,
  38418. bottom: 225/2220
  38419. }
  38420. },
  38421. },
  38422. [
  38423. {
  38424. name: "Normal",
  38425. height: math.unit(6 + 3/12, "feet"),
  38426. default: true
  38427. },
  38428. ]
  38429. ))
  38430. characterMakers.push(() => makeCharacter(
  38431. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38432. {
  38433. front: {
  38434. height: math.unit(3 + 8/12, "feet"),
  38435. name: "Front",
  38436. image: {
  38437. source: "./media/characters/rodney/front.svg",
  38438. extra: 1956/1747,
  38439. bottom: 31/1987
  38440. }
  38441. },
  38442. frontDressed: {
  38443. height: math.unit(2.9, "feet"),
  38444. name: "Front (Dressed)",
  38445. image: {
  38446. source: "./media/characters/rodney/front-dressed.svg",
  38447. extra: 1382/1241,
  38448. bottom: 385/1767
  38449. }
  38450. },
  38451. },
  38452. [
  38453. {
  38454. name: "Normal",
  38455. height: math.unit(3 + 8/12, "feet"),
  38456. default: true
  38457. },
  38458. ]
  38459. ))
  38460. characterMakers.push(() => makeCharacter(
  38461. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38462. {
  38463. front: {
  38464. height: math.unit(5 + 9/12, "feet"),
  38465. weight: math.unit(194, "lbs"),
  38466. name: "Front",
  38467. image: {
  38468. source: "./media/characters/zakail-sudekai/front.svg",
  38469. extra: 2696/2533,
  38470. bottom: 248/2944
  38471. }
  38472. },
  38473. maw: {
  38474. height: math.unit(1.35, "feet"),
  38475. name: "Maw",
  38476. image: {
  38477. source: "./media/characters/zakail-sudekai/maw.svg"
  38478. }
  38479. },
  38480. },
  38481. [
  38482. {
  38483. name: "Normal",
  38484. height: math.unit(5 + 9/12, "feet"),
  38485. default: true
  38486. },
  38487. ]
  38488. ))
  38489. characterMakers.push(() => makeCharacter(
  38490. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38491. {
  38492. front: {
  38493. height: math.unit(8 + 4/12, "feet"),
  38494. weight: math.unit(1200, "lb"),
  38495. name: "Front",
  38496. image: {
  38497. source: "./media/characters/eleanor/front.svg",
  38498. extra: 1226/1192,
  38499. bottom: 52/1278
  38500. }
  38501. },
  38502. back: {
  38503. height: math.unit(8 + 4/12, "feet"),
  38504. weight: math.unit(1200, "lb"),
  38505. name: "Back",
  38506. image: {
  38507. source: "./media/characters/eleanor/back.svg",
  38508. extra: 1242/1184,
  38509. bottom: 60/1302
  38510. }
  38511. },
  38512. head: {
  38513. height: math.unit(2.62, "feet"),
  38514. name: "Head",
  38515. image: {
  38516. source: "./media/characters/eleanor/head.svg"
  38517. }
  38518. },
  38519. },
  38520. [
  38521. {
  38522. name: "Normal",
  38523. height: math.unit(8 + 4/12, "feet"),
  38524. default: true
  38525. },
  38526. ]
  38527. ))
  38528. characterMakers.push(() => makeCharacter(
  38529. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38530. {
  38531. front: {
  38532. height: math.unit(8 + 4/12, "feet"),
  38533. weight: math.unit(750, "lb"),
  38534. name: "Front",
  38535. image: {
  38536. source: "./media/characters/tanya/front.svg",
  38537. extra: 1749/1615,
  38538. bottom: 33/1782
  38539. }
  38540. },
  38541. },
  38542. [
  38543. {
  38544. name: "Normal",
  38545. height: math.unit(8 + 4/12, "feet"),
  38546. default: true
  38547. },
  38548. ]
  38549. ))
  38550. characterMakers.push(() => makeCharacter(
  38551. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38552. {
  38553. front: {
  38554. height: math.unit(5, "feet"),
  38555. weight: math.unit(225, "lb"),
  38556. name: "Front",
  38557. image: {
  38558. source: "./media/characters/cindy/front.svg",
  38559. extra: 1320/1250,
  38560. bottom: 42/1362
  38561. }
  38562. },
  38563. frontDressed: {
  38564. height: math.unit(5, "feet"),
  38565. weight: math.unit(225, "lb"),
  38566. name: "Front (Dressed)",
  38567. image: {
  38568. source: "./media/characters/cindy/front-dressed.svg",
  38569. extra: 1320/1250,
  38570. bottom: 42/1362
  38571. }
  38572. },
  38573. back: {
  38574. height: math.unit(5, "feet"),
  38575. weight: math.unit(225, "lb"),
  38576. name: "Back",
  38577. image: {
  38578. source: "./media/characters/cindy/back.svg",
  38579. extra: 1384/1346,
  38580. bottom: 14/1398
  38581. }
  38582. },
  38583. },
  38584. [
  38585. {
  38586. name: "Normal",
  38587. height: math.unit(5, "feet"),
  38588. default: true
  38589. },
  38590. ]
  38591. ))
  38592. characterMakers.push(() => makeCharacter(
  38593. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38594. {
  38595. front: {
  38596. height: math.unit(6 + 9/12, "feet"),
  38597. weight: math.unit(440, "lb"),
  38598. name: "Front",
  38599. image: {
  38600. source: "./media/characters/wilbur-owen/front.svg",
  38601. extra: 1575/1448,
  38602. bottom: 72/1647
  38603. }
  38604. },
  38605. back: {
  38606. height: math.unit(6 + 9/12, "feet"),
  38607. weight: math.unit(440, "lb"),
  38608. name: "Back",
  38609. image: {
  38610. source: "./media/characters/wilbur-owen/back.svg",
  38611. extra: 1578/1445,
  38612. bottom: 36/1614
  38613. }
  38614. },
  38615. },
  38616. [
  38617. {
  38618. name: "Normal",
  38619. height: math.unit(6 + 9/12, "feet"),
  38620. default: true
  38621. },
  38622. ]
  38623. ))
  38624. characterMakers.push(() => makeCharacter(
  38625. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38626. {
  38627. front: {
  38628. height: math.unit(6 + 5/12, "feet"),
  38629. weight: math.unit(650, "lb"),
  38630. name: "Front",
  38631. image: {
  38632. source: "./media/characters/keegan/front.svg",
  38633. extra: 2387/2198,
  38634. bottom: 33/2420
  38635. }
  38636. },
  38637. side: {
  38638. height: math.unit(6 + 5/12, "feet"),
  38639. weight: math.unit(650, "lb"),
  38640. name: "Side",
  38641. image: {
  38642. source: "./media/characters/keegan/side.svg",
  38643. extra: 2390/2202,
  38644. bottom: 47/2437
  38645. }
  38646. },
  38647. back: {
  38648. height: math.unit(6 + 5/12, "feet"),
  38649. weight: math.unit(650, "lb"),
  38650. name: "Back",
  38651. image: {
  38652. source: "./media/characters/keegan/back.svg",
  38653. extra: 2418/2268,
  38654. bottom: 15/2433
  38655. }
  38656. },
  38657. frontSfw: {
  38658. height: math.unit(6 + 5/12, "feet"),
  38659. weight: math.unit(650, "lb"),
  38660. name: "Front (SFW)",
  38661. image: {
  38662. source: "./media/characters/keegan/front-sfw.svg",
  38663. extra: 2387/2198,
  38664. bottom: 33/2420
  38665. }
  38666. },
  38667. beans: {
  38668. height: math.unit(1.85, "feet"),
  38669. name: "Beans",
  38670. image: {
  38671. source: "./media/characters/keegan/beans.svg"
  38672. }
  38673. },
  38674. },
  38675. [
  38676. {
  38677. name: "Normal",
  38678. height: math.unit(6 + 5/12, "feet"),
  38679. default: true
  38680. },
  38681. ]
  38682. ))
  38683. characterMakers.push(() => makeCharacter(
  38684. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38685. {
  38686. front: {
  38687. height: math.unit(9, "feet"),
  38688. name: "Front",
  38689. image: {
  38690. source: "./media/characters/colton/front.svg",
  38691. extra: 1589/1326,
  38692. bottom: 139/1728
  38693. }
  38694. },
  38695. },
  38696. [
  38697. {
  38698. name: "Normal",
  38699. height: math.unit(9, "feet"),
  38700. default: true
  38701. },
  38702. ]
  38703. ))
  38704. characterMakers.push(() => makeCharacter(
  38705. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38706. {
  38707. front: {
  38708. height: math.unit(2 + 9/12, "feet"),
  38709. name: "Front",
  38710. image: {
  38711. source: "./media/characters/bora/front.svg",
  38712. extra: 1265/1250,
  38713. bottom: 24/1289
  38714. }
  38715. },
  38716. },
  38717. [
  38718. {
  38719. name: "Normal",
  38720. height: math.unit(2 + 9/12, "feet"),
  38721. default: true
  38722. },
  38723. ]
  38724. ))
  38725. characterMakers.push(() => makeCharacter(
  38726. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38727. {
  38728. front: {
  38729. height: math.unit(8, "feet"),
  38730. name: "Front",
  38731. image: {
  38732. source: "./media/characters/myu-myu/front.svg",
  38733. extra: 1949/1857,
  38734. bottom: 90/2039
  38735. }
  38736. },
  38737. },
  38738. [
  38739. {
  38740. name: "Normal",
  38741. height: math.unit(8, "feet"),
  38742. default: true
  38743. },
  38744. {
  38745. name: "Big",
  38746. height: math.unit(15, "feet")
  38747. },
  38748. {
  38749. name: "BIG",
  38750. height: math.unit(25, "feet")
  38751. },
  38752. ]
  38753. ))
  38754. characterMakers.push(() => makeCharacter(
  38755. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38756. {
  38757. side: {
  38758. height: math.unit(7 + 5/12, "feet"),
  38759. weight: math.unit(2800, "lb"),
  38760. name: "Side",
  38761. image: {
  38762. source: "./media/characters/haloren/side.svg",
  38763. extra: 1793/409,
  38764. bottom: 59/1852
  38765. }
  38766. },
  38767. frontPaw: {
  38768. height: math.unit(2.36, "feet"),
  38769. name: "Front paw",
  38770. image: {
  38771. source: "./media/characters/haloren/front-paw.svg"
  38772. }
  38773. },
  38774. hindPaw: {
  38775. height: math.unit(3.18, "feet"),
  38776. name: "Hind paw",
  38777. image: {
  38778. source: "./media/characters/haloren/hind-paw.svg"
  38779. }
  38780. },
  38781. maw: {
  38782. height: math.unit(5.05, "feet"),
  38783. name: "Maw",
  38784. image: {
  38785. source: "./media/characters/haloren/maw.svg"
  38786. }
  38787. },
  38788. dick: {
  38789. height: math.unit(2.90, "feet"),
  38790. name: "Dick",
  38791. image: {
  38792. source: "./media/characters/haloren/dick.svg"
  38793. }
  38794. },
  38795. },
  38796. [
  38797. {
  38798. name: "Normal",
  38799. height: math.unit(7 + 5/12, "feet"),
  38800. default: true
  38801. },
  38802. {
  38803. name: "Enhanced",
  38804. height: math.unit(14 + 3/12, "feet")
  38805. },
  38806. ]
  38807. ))
  38808. characterMakers.push(() => makeCharacter(
  38809. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38810. {
  38811. front: {
  38812. height: math.unit(171, "cm"),
  38813. name: "Front",
  38814. image: {
  38815. source: "./media/characters/kimmy/front.svg",
  38816. extra: 1491/1435,
  38817. bottom: 53/1544
  38818. }
  38819. },
  38820. },
  38821. [
  38822. {
  38823. name: "Small",
  38824. height: math.unit(9, "cm")
  38825. },
  38826. {
  38827. name: "Normal",
  38828. height: math.unit(171, "cm"),
  38829. default: true
  38830. },
  38831. ]
  38832. ))
  38833. characterMakers.push(() => makeCharacter(
  38834. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38835. {
  38836. front: {
  38837. height: math.unit(8, "feet"),
  38838. weight: math.unit(300, "lb"),
  38839. name: "Front",
  38840. image: {
  38841. source: "./media/characters/galeboomer/front.svg",
  38842. extra: 4651/4415,
  38843. bottom: 162/4813
  38844. }
  38845. },
  38846. back: {
  38847. height: math.unit(8, "feet"),
  38848. weight: math.unit(300, "lb"),
  38849. name: "Back",
  38850. image: {
  38851. source: "./media/characters/galeboomer/back.svg",
  38852. extra: 4544/4314,
  38853. bottom: 16/4560
  38854. }
  38855. },
  38856. frontAlt: {
  38857. height: math.unit(8, "feet"),
  38858. weight: math.unit(300, "lb"),
  38859. name: "Front (Alt)",
  38860. image: {
  38861. source: "./media/characters/galeboomer/front-alt.svg",
  38862. extra: 4458/4228,
  38863. bottom: 68/4526
  38864. }
  38865. },
  38866. maw: {
  38867. height: math.unit(1.2, "feet"),
  38868. name: "Maw",
  38869. image: {
  38870. source: "./media/characters/galeboomer/maw.svg"
  38871. }
  38872. },
  38873. },
  38874. [
  38875. {
  38876. name: "Normal",
  38877. height: math.unit(8, "feet"),
  38878. default: true
  38879. },
  38880. ]
  38881. ))
  38882. characterMakers.push(() => makeCharacter(
  38883. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38884. {
  38885. front: {
  38886. height: math.unit(5 + 9/12, "feet"),
  38887. weight: math.unit(120, "lb"),
  38888. name: "Front",
  38889. image: {
  38890. source: "./media/characters/chyr/front.svg",
  38891. extra: 1323/1254,
  38892. bottom: 63/1386
  38893. }
  38894. },
  38895. back: {
  38896. height: math.unit(5 + 9/12, "feet"),
  38897. weight: math.unit(120, "lb"),
  38898. name: "Back",
  38899. image: {
  38900. source: "./media/characters/chyr/back.svg",
  38901. extra: 1323/1252,
  38902. bottom: 48/1371
  38903. }
  38904. },
  38905. },
  38906. [
  38907. {
  38908. name: "Normal",
  38909. height: math.unit(5 + 9/12, "feet"),
  38910. default: true
  38911. },
  38912. ]
  38913. ))
  38914. characterMakers.push(() => makeCharacter(
  38915. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38916. {
  38917. front: {
  38918. height: math.unit(7, "feet"),
  38919. weight: math.unit(310, "lb"),
  38920. name: "Front",
  38921. image: {
  38922. source: "./media/characters/solarus/front.svg",
  38923. extra: 2415/2021,
  38924. bottom: 103/2518
  38925. }
  38926. },
  38927. back: {
  38928. height: math.unit(7, "feet"),
  38929. weight: math.unit(310, "lb"),
  38930. name: "Back",
  38931. image: {
  38932. source: "./media/characters/solarus/back.svg",
  38933. extra: 2463/2089,
  38934. bottom: 79/2542
  38935. }
  38936. },
  38937. },
  38938. [
  38939. {
  38940. name: "Normal",
  38941. height: math.unit(7, "feet"),
  38942. default: true
  38943. },
  38944. ]
  38945. ))
  38946. characterMakers.push(() => makeCharacter(
  38947. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38948. {
  38949. front: {
  38950. height: math.unit(16, "feet"),
  38951. name: "Front",
  38952. image: {
  38953. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38954. extra: 1844/1780,
  38955. bottom: 58/1902
  38956. }
  38957. },
  38958. winterCoat: {
  38959. height: math.unit(16, "feet"),
  38960. name: "Winter Coat",
  38961. image: {
  38962. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38963. extra: 1807/1775,
  38964. bottom: 69/1876
  38965. }
  38966. },
  38967. },
  38968. [
  38969. {
  38970. name: "Normal",
  38971. height: math.unit(16, "feet"),
  38972. default: true
  38973. },
  38974. {
  38975. name: "Chicago Size",
  38976. height: math.unit(560, "feet")
  38977. },
  38978. ]
  38979. ))
  38980. characterMakers.push(() => makeCharacter(
  38981. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38982. {
  38983. front: {
  38984. height: math.unit(11 + 6/12, "feet"),
  38985. weight: math.unit(1366, "lb"),
  38986. name: "Front",
  38987. image: {
  38988. source: "./media/characters/lexor/front.svg",
  38989. extra: 1560/1481,
  38990. bottom: 211/1771
  38991. }
  38992. },
  38993. back: {
  38994. height: math.unit(11 + 6/12, "feet"),
  38995. weight: math.unit(1366, "lb"),
  38996. name: "Back",
  38997. image: {
  38998. source: "./media/characters/lexor/back.svg",
  38999. extra: 1614/1533,
  39000. bottom: 76/1690
  39001. }
  39002. },
  39003. maw: {
  39004. height: math.unit(3, "feet"),
  39005. name: "Maw",
  39006. image: {
  39007. source: "./media/characters/lexor/maw.svg"
  39008. }
  39009. },
  39010. dick: {
  39011. height: math.unit(2.59, "feet"),
  39012. name: "Dick",
  39013. image: {
  39014. source: "./media/characters/lexor/dick.svg"
  39015. }
  39016. },
  39017. },
  39018. [
  39019. {
  39020. name: "Normal",
  39021. height: math.unit(11 + 6/12, "feet"),
  39022. default: true
  39023. },
  39024. ]
  39025. ))
  39026. characterMakers.push(() => makeCharacter(
  39027. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39028. {
  39029. front: {
  39030. height: math.unit(5 + 8/12, "feet"),
  39031. name: "Front",
  39032. image: {
  39033. source: "./media/characters/magnum/front.svg",
  39034. extra: 942/855,
  39035. bottom: 26/968
  39036. }
  39037. },
  39038. },
  39039. [
  39040. {
  39041. name: "Normal",
  39042. height: math.unit(5 + 8/12, "feet"),
  39043. default: true
  39044. },
  39045. ]
  39046. ))
  39047. characterMakers.push(() => makeCharacter(
  39048. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39049. {
  39050. front: {
  39051. height: math.unit(18 + 4/12, "feet"),
  39052. weight: math.unit(1500, "kg"),
  39053. name: "Front",
  39054. image: {
  39055. source: "./media/characters/solas-sharpsman/front.svg",
  39056. extra: 1698/1589,
  39057. bottom: 0/1698
  39058. }
  39059. },
  39060. },
  39061. [
  39062. {
  39063. name: "Normal",
  39064. height: math.unit(18 + 4/12, "feet"),
  39065. default: true
  39066. },
  39067. ]
  39068. ))
  39069. characterMakers.push(() => makeCharacter(
  39070. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39071. {
  39072. front: {
  39073. height: math.unit(5 + 5/12, "feet"),
  39074. weight: math.unit(180, "lb"),
  39075. name: "Front",
  39076. image: {
  39077. source: "./media/characters/october/front.svg",
  39078. extra: 1800/1650,
  39079. bottom: 0/1800
  39080. }
  39081. },
  39082. frontNsfw: {
  39083. height: math.unit(5 + 5/12, "feet"),
  39084. weight: math.unit(180, "lb"),
  39085. name: "Front (NSFW)",
  39086. image: {
  39087. source: "./media/characters/october/front-nsfw.svg",
  39088. extra: 1392/1307,
  39089. bottom: 42/1434
  39090. }
  39091. },
  39092. },
  39093. [
  39094. {
  39095. name: "Normal",
  39096. height: math.unit(5 + 5/12, "feet"),
  39097. default: true
  39098. },
  39099. ]
  39100. ))
  39101. characterMakers.push(() => makeCharacter(
  39102. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39103. {
  39104. front: {
  39105. height: math.unit(8 + 6/12, "feet"),
  39106. name: "Front",
  39107. image: {
  39108. source: "./media/characters/essynkardi/front.svg",
  39109. extra: 1541/1457,
  39110. bottom: 47/1588
  39111. }
  39112. },
  39113. },
  39114. [
  39115. {
  39116. name: "Normal",
  39117. height: math.unit(8 + 6/12, "feet"),
  39118. default: true
  39119. },
  39120. ]
  39121. ))
  39122. characterMakers.push(() => makeCharacter(
  39123. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39124. {
  39125. front: {
  39126. height: math.unit(6 + 6/12, "feet"),
  39127. weight: math.unit(7, "lb"),
  39128. name: "Front",
  39129. image: {
  39130. source: "./media/characters/icky/front.svg",
  39131. extra: 813/782,
  39132. bottom: 66/879
  39133. }
  39134. },
  39135. back: {
  39136. height: math.unit(6 + 6/12, "feet"),
  39137. weight: math.unit(7, "lb"),
  39138. name: "Back",
  39139. image: {
  39140. source: "./media/characters/icky/back.svg",
  39141. extra: 754/735,
  39142. bottom: 56/810
  39143. }
  39144. },
  39145. },
  39146. [
  39147. {
  39148. name: "Normal",
  39149. height: math.unit(6 + 6/12, "feet"),
  39150. default: true
  39151. },
  39152. ]
  39153. ))
  39154. characterMakers.push(() => makeCharacter(
  39155. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39156. {
  39157. front: {
  39158. height: math.unit(15, "feet"),
  39159. name: "Front",
  39160. image: {
  39161. source: "./media/characters/rojas/front.svg",
  39162. extra: 1462/1408,
  39163. bottom: 95/1557
  39164. }
  39165. },
  39166. back: {
  39167. height: math.unit(15, "feet"),
  39168. name: "Back",
  39169. image: {
  39170. source: "./media/characters/rojas/back.svg",
  39171. extra: 1023/954,
  39172. bottom: 28/1051
  39173. }
  39174. },
  39175. },
  39176. [
  39177. {
  39178. name: "Normal",
  39179. height: math.unit(15, "feet"),
  39180. default: true
  39181. },
  39182. ]
  39183. ))
  39184. characterMakers.push(() => makeCharacter(
  39185. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39186. {
  39187. frontHuman: {
  39188. height: math.unit(5 + 7/12, "feet"),
  39189. name: "Front (Human)",
  39190. image: {
  39191. source: "./media/characters/alek-dryagan/front-human.svg",
  39192. extra: 1687/1667,
  39193. bottom: 69/1756
  39194. }
  39195. },
  39196. backHuman: {
  39197. height: math.unit(5 + 7/12, "feet"),
  39198. name: "Back (Human)",
  39199. image: {
  39200. source: "./media/characters/alek-dryagan/back-human.svg",
  39201. extra: 1670/1649,
  39202. bottom: 65/1735
  39203. }
  39204. },
  39205. frontDemi: {
  39206. height: math.unit(65, "feet"),
  39207. name: "Front (Demi)",
  39208. image: {
  39209. source: "./media/characters/alek-dryagan/front-demi.svg",
  39210. extra: 1669/1642,
  39211. bottom: 49/1718
  39212. }
  39213. },
  39214. backDemi: {
  39215. height: math.unit(65, "feet"),
  39216. name: "Back (Demi)",
  39217. image: {
  39218. source: "./media/characters/alek-dryagan/back-demi.svg",
  39219. extra: 1658/1637,
  39220. bottom: 40/1698
  39221. }
  39222. },
  39223. mawHuman: {
  39224. height: math.unit(0.3, "feet"),
  39225. name: "Maw (Human)",
  39226. image: {
  39227. source: "./media/characters/alek-dryagan/maw-human.svg"
  39228. }
  39229. },
  39230. mawDemi: {
  39231. height: math.unit(3.8, "feet"),
  39232. name: "Maw (Demi)",
  39233. image: {
  39234. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39235. }
  39236. },
  39237. },
  39238. [
  39239. {
  39240. name: "Normal",
  39241. height: math.unit(5 + 7/12, "feet"),
  39242. default: true
  39243. },
  39244. ]
  39245. ))
  39246. characterMakers.push(() => makeCharacter(
  39247. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39248. {
  39249. frontHuman: {
  39250. height: math.unit(5 + 2/12, "feet"),
  39251. name: "Front (Human)",
  39252. image: {
  39253. source: "./media/characters/gen/front-human.svg",
  39254. extra: 1627/1538,
  39255. bottom: 71/1698
  39256. }
  39257. },
  39258. backHuman: {
  39259. height: math.unit(5 + 2/12, "feet"),
  39260. name: "Back (Human)",
  39261. image: {
  39262. source: "./media/characters/gen/back-human.svg",
  39263. extra: 1638/1548,
  39264. bottom: 69/1707
  39265. }
  39266. },
  39267. frontDemi: {
  39268. height: math.unit(5 + 2/12, "feet"),
  39269. name: "Front (Demi)",
  39270. image: {
  39271. source: "./media/characters/gen/front-demi.svg",
  39272. extra: 1627/1538,
  39273. bottom: 71/1698
  39274. }
  39275. },
  39276. backDemi: {
  39277. height: math.unit(5 + 2/12, "feet"),
  39278. name: "Back (Demi)",
  39279. image: {
  39280. source: "./media/characters/gen/back-demi.svg",
  39281. extra: 1638/1548,
  39282. bottom: 69/1707
  39283. }
  39284. },
  39285. },
  39286. [
  39287. {
  39288. name: "Normal",
  39289. height: math.unit(5 + 2/12, "feet"),
  39290. default: true
  39291. },
  39292. ]
  39293. ))
  39294. characterMakers.push(() => makeCharacter(
  39295. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39296. {
  39297. frontImp: {
  39298. height: math.unit(1 + 11/12, "feet"),
  39299. name: "Front (Imp)",
  39300. image: {
  39301. source: "./media/characters/max-kobold/front-imp.svg",
  39302. extra: 1238/1134,
  39303. bottom: 81/1319
  39304. }
  39305. },
  39306. backImp: {
  39307. height: math.unit(1 + 11/12, "feet"),
  39308. name: "Back (Imp)",
  39309. image: {
  39310. source: "./media/characters/max-kobold/back-imp.svg",
  39311. extra: 1334/1175,
  39312. bottom: 34/1368
  39313. }
  39314. },
  39315. frontDemi: {
  39316. height: math.unit(5 + 9/12, "feet"),
  39317. name: "Front (Demi)",
  39318. image: {
  39319. source: "./media/characters/max-kobold/front-demi.svg",
  39320. extra: 1715/1685,
  39321. bottom: 54/1769
  39322. }
  39323. },
  39324. backDemi: {
  39325. height: math.unit(5 + 9/12, "feet"),
  39326. name: "Back (Demi)",
  39327. image: {
  39328. source: "./media/characters/max-kobold/back-demi.svg",
  39329. extra: 1752/1729,
  39330. bottom: 41/1793
  39331. }
  39332. },
  39333. handImp: {
  39334. height: math.unit(0.45, "feet"),
  39335. name: "Hand (Imp)",
  39336. image: {
  39337. source: "./media/characters/max-kobold/hand.svg"
  39338. }
  39339. },
  39340. pawImp: {
  39341. height: math.unit(0.46, "feet"),
  39342. name: "Paw (Imp)",
  39343. image: {
  39344. source: "./media/characters/max-kobold/paw.svg"
  39345. }
  39346. },
  39347. handDemi: {
  39348. height: math.unit(0.80, "feet"),
  39349. name: "Hand (Demi)",
  39350. image: {
  39351. source: "./media/characters/max-kobold/hand.svg"
  39352. }
  39353. },
  39354. pawDemi: {
  39355. height: math.unit(1.1, "feet"),
  39356. name: "Paw (Demi)",
  39357. image: {
  39358. source: "./media/characters/max-kobold/paw.svg"
  39359. }
  39360. },
  39361. headImp: {
  39362. height: math.unit(1.33, "feet"),
  39363. name: "Head (Imp)",
  39364. image: {
  39365. source: "./media/characters/max-kobold/head-imp.svg"
  39366. }
  39367. },
  39368. mawImp: {
  39369. height: math.unit(0.75, "feet"),
  39370. name: "Maw (Imp)",
  39371. image: {
  39372. source: "./media/characters/max-kobold/maw-imp.svg"
  39373. }
  39374. },
  39375. mawDemi: {
  39376. height: math.unit(0.42, "feet"),
  39377. name: "Maw (Demi)",
  39378. image: {
  39379. source: "./media/characters/max-kobold/maw-demi.svg"
  39380. }
  39381. },
  39382. },
  39383. [
  39384. {
  39385. name: "Normal",
  39386. height: math.unit(1 + 11/12, "feet"),
  39387. default: true
  39388. },
  39389. ]
  39390. ))
  39391. characterMakers.push(() => makeCharacter(
  39392. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39393. {
  39394. front: {
  39395. height: math.unit(7 + 5/12, "feet"),
  39396. name: "Front",
  39397. image: {
  39398. source: "./media/characters/carbon/front.svg",
  39399. extra: 1754/1689,
  39400. bottom: 65/1819
  39401. }
  39402. },
  39403. back: {
  39404. height: math.unit(7 + 5/12, "feet"),
  39405. name: "Back",
  39406. image: {
  39407. source: "./media/characters/carbon/back.svg",
  39408. extra: 1762/1695,
  39409. bottom: 24/1786
  39410. }
  39411. },
  39412. frontGigantamax: {
  39413. height: math.unit(150, "feet"),
  39414. name: "Front (Gigantamax)",
  39415. image: {
  39416. source: "./media/characters/carbon/front-gigantamax.svg",
  39417. extra: 1826/1669,
  39418. bottom: 59/1885
  39419. }
  39420. },
  39421. backGigantamax: {
  39422. height: math.unit(150, "feet"),
  39423. name: "Back (Gigantamax)",
  39424. image: {
  39425. source: "./media/characters/carbon/back-gigantamax.svg",
  39426. extra: 1796/1653,
  39427. bottom: 53/1849
  39428. }
  39429. },
  39430. maw: {
  39431. height: math.unit(0.48, "feet"),
  39432. name: "Maw",
  39433. image: {
  39434. source: "./media/characters/carbon/maw.svg"
  39435. }
  39436. },
  39437. mawGigantamax: {
  39438. height: math.unit(7.5, "feet"),
  39439. name: "Maw (Gigantamax)",
  39440. image: {
  39441. source: "./media/characters/carbon/maw-gigantamax.svg"
  39442. }
  39443. },
  39444. },
  39445. [
  39446. {
  39447. name: "Normal",
  39448. height: math.unit(7 + 5/12, "feet"),
  39449. default: true
  39450. },
  39451. ]
  39452. ))
  39453. characterMakers.push(() => makeCharacter(
  39454. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39455. {
  39456. front: {
  39457. height: math.unit(6, "feet"),
  39458. name: "Front",
  39459. image: {
  39460. source: "./media/characters/maverick/front.svg",
  39461. extra: 1672/1661,
  39462. bottom: 85/1757
  39463. }
  39464. },
  39465. back: {
  39466. height: math.unit(6, "feet"),
  39467. name: "Back",
  39468. image: {
  39469. source: "./media/characters/maverick/back.svg",
  39470. extra: 1642/1631,
  39471. bottom: 38/1680
  39472. }
  39473. },
  39474. },
  39475. [
  39476. {
  39477. name: "Normal",
  39478. height: math.unit(6, "feet"),
  39479. default: true
  39480. },
  39481. ]
  39482. ))
  39483. characterMakers.push(() => makeCharacter(
  39484. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39485. {
  39486. front: {
  39487. height: math.unit(15, "feet"),
  39488. weight: math.unit(615, "lb"),
  39489. name: "Front",
  39490. image: {
  39491. source: "./media/characters/grockle/front.svg",
  39492. extra: 1535/1427,
  39493. bottom: 56/1591
  39494. }
  39495. },
  39496. },
  39497. [
  39498. {
  39499. name: "Normal",
  39500. height: math.unit(15, "feet"),
  39501. default: true
  39502. },
  39503. {
  39504. name: "Large",
  39505. height: math.unit(150, "feet")
  39506. },
  39507. {
  39508. name: "Macro",
  39509. height: math.unit(1876, "feet")
  39510. },
  39511. {
  39512. name: "Mega Macro",
  39513. height: math.unit(121940, "feet")
  39514. },
  39515. {
  39516. name: "Giga Macro",
  39517. height: math.unit(750, "km")
  39518. },
  39519. {
  39520. name: "Tera Macro",
  39521. height: math.unit(750000, "km")
  39522. },
  39523. {
  39524. name: "Galactic",
  39525. height: math.unit(1.4e5, "km")
  39526. },
  39527. {
  39528. name: "Godlike",
  39529. height: math.unit(9.8e280, "galaxies")
  39530. },
  39531. ]
  39532. ))
  39533. characterMakers.push(() => makeCharacter(
  39534. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39535. {
  39536. front: {
  39537. height: math.unit(11, "meters"),
  39538. weight: math.unit(20, "tonnes"),
  39539. name: "Front",
  39540. image: {
  39541. source: "./media/characters/alistair/front.svg",
  39542. extra: 1265/1009,
  39543. bottom: 93/1358
  39544. }
  39545. },
  39546. },
  39547. [
  39548. {
  39549. name: "Normal",
  39550. height: math.unit(11, "meters"),
  39551. default: true
  39552. },
  39553. ]
  39554. ))
  39555. characterMakers.push(() => makeCharacter(
  39556. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39557. {
  39558. front: {
  39559. height: math.unit(5 + 8/12, "feet"),
  39560. name: "Front",
  39561. image: {
  39562. source: "./media/characters/haruka/front.svg",
  39563. extra: 2012/1952,
  39564. bottom: 0/2012
  39565. }
  39566. },
  39567. },
  39568. [
  39569. {
  39570. name: "Normal",
  39571. height: math.unit(5 + 8/12, "feet"),
  39572. default: true
  39573. },
  39574. ]
  39575. ))
  39576. characterMakers.push(() => makeCharacter(
  39577. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39578. {
  39579. back: {
  39580. height: math.unit(9, "feet"),
  39581. name: "Back",
  39582. image: {
  39583. source: "./media/characters/vivian-sylveon/back.svg",
  39584. extra: 1853/1714,
  39585. bottom: 0/1853
  39586. }
  39587. },
  39588. },
  39589. [
  39590. {
  39591. name: "Normal",
  39592. height: math.unit(9, "feet"),
  39593. default: true
  39594. },
  39595. {
  39596. name: "Macro",
  39597. height: math.unit(500, "feet")
  39598. },
  39599. {
  39600. name: "Megamacro",
  39601. height: math.unit(600, "miles")
  39602. },
  39603. {
  39604. name: "Gigamacro",
  39605. height: math.unit(30000, "miles")
  39606. },
  39607. ]
  39608. ))
  39609. characterMakers.push(() => makeCharacter(
  39610. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39611. {
  39612. anthro: {
  39613. height: math.unit(5 + 10/12, "feet"),
  39614. weight: math.unit(100, "lb"),
  39615. name: "Anthro",
  39616. image: {
  39617. source: "./media/characters/daiki/anthro.svg",
  39618. extra: 1115/1027,
  39619. bottom: 69/1184
  39620. }
  39621. },
  39622. feral: {
  39623. height: math.unit(200, "feet"),
  39624. name: "Feral",
  39625. image: {
  39626. source: "./media/characters/daiki/feral.svg",
  39627. extra: 1256/313,
  39628. bottom: 39/1295
  39629. }
  39630. },
  39631. feralHead: {
  39632. height: math.unit(171, "feet"),
  39633. name: "Feral Head",
  39634. image: {
  39635. source: "./media/characters/daiki/feral-head.svg"
  39636. }
  39637. },
  39638. manaDragon: {
  39639. height: math.unit(170, "meters"),
  39640. name: "Mana-dragon",
  39641. image: {
  39642. source: "./media/characters/daiki/mana-dragon.svg",
  39643. extra: 763/420,
  39644. bottom: 97/860
  39645. }
  39646. },
  39647. },
  39648. [
  39649. {
  39650. name: "Normal",
  39651. height: math.unit(5 + 10/12, "feet"),
  39652. default: true
  39653. },
  39654. ]
  39655. ))
  39656. characterMakers.push(() => makeCharacter(
  39657. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39658. {
  39659. fullyEquippedFront: {
  39660. height: math.unit(3 + 1/12, "feet"),
  39661. weight: math.unit(24, "lb"),
  39662. name: "Fully Equipped (Front)",
  39663. image: {
  39664. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39665. extra: 687/605,
  39666. bottom: 18/705
  39667. }
  39668. },
  39669. fullyEquippedBack: {
  39670. height: math.unit(3 + 1/12, "feet"),
  39671. weight: math.unit(24, "lb"),
  39672. name: "Fully Equipped (Back)",
  39673. image: {
  39674. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39675. extra: 689/590,
  39676. bottom: 18/707
  39677. }
  39678. },
  39679. dailyWear: {
  39680. height: math.unit(3 + 1/12, "feet"),
  39681. weight: math.unit(24, "lb"),
  39682. name: "Daily Wear",
  39683. image: {
  39684. source: "./media/characters/tea-spot/daily-wear.svg",
  39685. extra: 701/620,
  39686. bottom: 21/722
  39687. }
  39688. },
  39689. maidWork: {
  39690. height: math.unit(3 + 1/12, "feet"),
  39691. weight: math.unit(24, "lb"),
  39692. name: "Maid Work",
  39693. image: {
  39694. source: "./media/characters/tea-spot/maid-work.svg",
  39695. extra: 693/609,
  39696. bottom: 15/708
  39697. }
  39698. },
  39699. },
  39700. [
  39701. {
  39702. name: "Normal",
  39703. height: math.unit(3 + 1/12, "feet"),
  39704. default: true
  39705. },
  39706. ]
  39707. ))
  39708. characterMakers.push(() => makeCharacter(
  39709. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39710. {
  39711. front: {
  39712. height: math.unit(175, "cm"),
  39713. weight: math.unit(75, "kg"),
  39714. name: "Front",
  39715. image: {
  39716. source: "./media/characters/chee/front.svg",
  39717. extra: 1796/1740,
  39718. bottom: 40/1836
  39719. }
  39720. },
  39721. },
  39722. [
  39723. {
  39724. name: "Micro-Micro",
  39725. height: math.unit(1, "nm")
  39726. },
  39727. {
  39728. name: "Micro-erst",
  39729. height: math.unit(1, "micrometer")
  39730. },
  39731. {
  39732. name: "Micro-er",
  39733. height: math.unit(1, "cm")
  39734. },
  39735. {
  39736. name: "Normal",
  39737. height: math.unit(175, "cm"),
  39738. default: true
  39739. },
  39740. {
  39741. name: "Macro",
  39742. height: math.unit(100, "m")
  39743. },
  39744. {
  39745. name: "Macro-er",
  39746. height: math.unit(1, "km")
  39747. },
  39748. {
  39749. name: "Macro-erst",
  39750. height: math.unit(10, "km")
  39751. },
  39752. {
  39753. name: "Macro-Macro",
  39754. height: math.unit(100, "km")
  39755. },
  39756. ]
  39757. ))
  39758. characterMakers.push(() => makeCharacter(
  39759. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39760. {
  39761. front: {
  39762. height: math.unit(11 + 9/12, "feet"),
  39763. weight: math.unit(935, "lb"),
  39764. name: "Front",
  39765. image: {
  39766. source: "./media/characters/kingsley/front.svg",
  39767. extra: 1803/1674,
  39768. bottom: 127/1930
  39769. }
  39770. },
  39771. frontNude: {
  39772. height: math.unit(11 + 9/12, "feet"),
  39773. weight: math.unit(935, "lb"),
  39774. name: "Front (Nude)",
  39775. image: {
  39776. source: "./media/characters/kingsley/front-nude.svg",
  39777. extra: 1803/1674,
  39778. bottom: 127/1930
  39779. }
  39780. },
  39781. },
  39782. [
  39783. {
  39784. name: "Normal",
  39785. height: math.unit(11 + 9/12, "feet"),
  39786. default: true
  39787. },
  39788. ]
  39789. ))
  39790. characterMakers.push(() => makeCharacter(
  39791. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39792. {
  39793. side: {
  39794. height: math.unit(9, "feet"),
  39795. name: "Side",
  39796. image: {
  39797. source: "./media/characters/rymel/side.svg",
  39798. extra: 792/469,
  39799. bottom: 121/913
  39800. }
  39801. },
  39802. maw: {
  39803. height: math.unit(2.4, "meters"),
  39804. name: "Maw",
  39805. image: {
  39806. source: "./media/characters/rymel/maw.svg"
  39807. }
  39808. },
  39809. },
  39810. [
  39811. {
  39812. name: "House Drake",
  39813. height: math.unit(2, "feet")
  39814. },
  39815. {
  39816. name: "Reduced",
  39817. height: math.unit(4.5, "feet")
  39818. },
  39819. {
  39820. name: "Normal",
  39821. height: math.unit(9, "feet"),
  39822. default: true
  39823. },
  39824. ]
  39825. ))
  39826. characterMakers.push(() => makeCharacter(
  39827. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39828. {
  39829. front: {
  39830. height: math.unit(1.74, "meters"),
  39831. weight: math.unit(55, "kg"),
  39832. name: "Front",
  39833. image: {
  39834. source: "./media/characters/rubus/front.svg",
  39835. extra: 1894/1742,
  39836. bottom: 44/1938
  39837. }
  39838. },
  39839. },
  39840. [
  39841. {
  39842. name: "Normal",
  39843. height: math.unit(1.74, "meters"),
  39844. default: true
  39845. },
  39846. ]
  39847. ))
  39848. characterMakers.push(() => makeCharacter(
  39849. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39850. {
  39851. front: {
  39852. height: math.unit(5 + 2/12, "feet"),
  39853. weight: math.unit(112, "lb"),
  39854. name: "Front",
  39855. image: {
  39856. source: "./media/characters/cassie-kingston/front.svg",
  39857. extra: 1438/1390,
  39858. bottom: 47/1485
  39859. }
  39860. },
  39861. },
  39862. [
  39863. {
  39864. name: "Normal",
  39865. height: math.unit(5 + 2/12, "feet"),
  39866. default: true
  39867. },
  39868. {
  39869. name: "Macro",
  39870. height: math.unit(128, "feet")
  39871. },
  39872. {
  39873. name: "Megamacro",
  39874. height: math.unit(2.56, "miles")
  39875. },
  39876. ]
  39877. ))
  39878. characterMakers.push(() => makeCharacter(
  39879. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39880. {
  39881. front: {
  39882. height: math.unit(7, "feet"),
  39883. name: "Front",
  39884. image: {
  39885. source: "./media/characters/fox/front.svg",
  39886. extra: 1798/1703,
  39887. bottom: 55/1853
  39888. }
  39889. },
  39890. back: {
  39891. height: math.unit(7, "feet"),
  39892. name: "Back",
  39893. image: {
  39894. source: "./media/characters/fox/back.svg",
  39895. extra: 1748/1649,
  39896. bottom: 32/1780
  39897. }
  39898. },
  39899. head: {
  39900. height: math.unit(1.95, "feet"),
  39901. name: "Head",
  39902. image: {
  39903. source: "./media/characters/fox/head.svg"
  39904. }
  39905. },
  39906. dick: {
  39907. height: math.unit(1.33, "feet"),
  39908. name: "Dick",
  39909. image: {
  39910. source: "./media/characters/fox/dick.svg"
  39911. }
  39912. },
  39913. foot: {
  39914. height: math.unit(1, "feet"),
  39915. name: "Foot",
  39916. image: {
  39917. source: "./media/characters/fox/foot.svg"
  39918. }
  39919. },
  39920. paw: {
  39921. height: math.unit(0.92, "feet"),
  39922. name: "Paw",
  39923. image: {
  39924. source: "./media/characters/fox/paw.svg"
  39925. }
  39926. },
  39927. },
  39928. [
  39929. {
  39930. name: "Small",
  39931. height: math.unit(3, "inches")
  39932. },
  39933. {
  39934. name: "\"Realistic\"",
  39935. height: math.unit(7, "feet")
  39936. },
  39937. {
  39938. name: "Normal",
  39939. height: math.unit(150, "feet"),
  39940. default: true
  39941. },
  39942. {
  39943. name: "BIG",
  39944. height: math.unit(1200, "feet")
  39945. },
  39946. {
  39947. name: "👀",
  39948. height: math.unit(5, "miles")
  39949. },
  39950. {
  39951. name: "👀👀👀",
  39952. height: math.unit(64, "miles")
  39953. },
  39954. ]
  39955. ))
  39956. characterMakers.push(() => makeCharacter(
  39957. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39958. {
  39959. front: {
  39960. height: math.unit(625, "feet"),
  39961. name: "Front",
  39962. image: {
  39963. source: "./media/characters/asonja-rossa/front.svg",
  39964. extra: 1833/1686,
  39965. bottom: 24/1857
  39966. }
  39967. },
  39968. back: {
  39969. height: math.unit(625, "feet"),
  39970. name: "Back",
  39971. image: {
  39972. source: "./media/characters/asonja-rossa/back.svg",
  39973. extra: 1852/1753,
  39974. bottom: 26/1878
  39975. }
  39976. },
  39977. },
  39978. [
  39979. {
  39980. name: "Macro",
  39981. height: math.unit(625, "feet"),
  39982. default: true
  39983. },
  39984. ]
  39985. ))
  39986. characterMakers.push(() => makeCharacter(
  39987. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39988. {
  39989. side: {
  39990. height: math.unit(8, "feet"),
  39991. name: "Side",
  39992. image: {
  39993. source: "./media/characters/rezukii/side.svg",
  39994. extra: 979/542,
  39995. bottom: 87/1066
  39996. }
  39997. },
  39998. sitting: {
  39999. height: math.unit(14.6, "feet"),
  40000. name: "Sitting",
  40001. image: {
  40002. source: "./media/characters/rezukii/sitting.svg",
  40003. extra: 1023/813,
  40004. bottom: 45/1068
  40005. }
  40006. },
  40007. },
  40008. [
  40009. {
  40010. name: "Tiny",
  40011. height: math.unit(2, "feet")
  40012. },
  40013. {
  40014. name: "Smol",
  40015. height: math.unit(4, "feet")
  40016. },
  40017. {
  40018. name: "Normal",
  40019. height: math.unit(8, "feet"),
  40020. default: true
  40021. },
  40022. {
  40023. name: "Big",
  40024. height: math.unit(12, "feet")
  40025. },
  40026. {
  40027. name: "Macro",
  40028. height: math.unit(30, "feet")
  40029. },
  40030. ]
  40031. ))
  40032. characterMakers.push(() => makeCharacter(
  40033. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40034. {
  40035. front: {
  40036. height: math.unit(14, "feet"),
  40037. weight: math.unit(9.5, "tonnes"),
  40038. name: "Front",
  40039. image: {
  40040. source: "./media/characters/dawnheart/front.svg",
  40041. extra: 2792/2675,
  40042. bottom: 64/2856
  40043. }
  40044. },
  40045. },
  40046. [
  40047. {
  40048. name: "Normal",
  40049. height: math.unit(14, "feet"),
  40050. default: true
  40051. },
  40052. ]
  40053. ))
  40054. characterMakers.push(() => makeCharacter(
  40055. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40056. {
  40057. front: {
  40058. height: math.unit(1.7, "m"),
  40059. name: "Front",
  40060. image: {
  40061. source: "./media/characters/gladi/front.svg",
  40062. extra: 1460/1362,
  40063. bottom: 19/1479
  40064. }
  40065. },
  40066. back: {
  40067. height: math.unit(1.7, "m"),
  40068. name: "Back",
  40069. image: {
  40070. source: "./media/characters/gladi/back.svg",
  40071. extra: 1459/1357,
  40072. bottom: 12/1471
  40073. }
  40074. },
  40075. feral: {
  40076. height: math.unit(2.05, "m"),
  40077. name: "Feral",
  40078. image: {
  40079. source: "./media/characters/gladi/feral.svg",
  40080. extra: 821/557,
  40081. bottom: 91/912
  40082. }
  40083. },
  40084. },
  40085. [
  40086. {
  40087. name: "Shortest",
  40088. height: math.unit(70, "cm")
  40089. },
  40090. {
  40091. name: "Normal",
  40092. height: math.unit(1.7, "m")
  40093. },
  40094. {
  40095. name: "Macro",
  40096. height: math.unit(10, "m"),
  40097. default: true
  40098. },
  40099. {
  40100. name: "Tallest",
  40101. height: math.unit(200, "m")
  40102. },
  40103. ]
  40104. ))
  40105. characterMakers.push(() => makeCharacter(
  40106. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40107. {
  40108. front: {
  40109. height: math.unit(5 + 7/12, "feet"),
  40110. weight: math.unit(2, "tons"),
  40111. name: "Front",
  40112. image: {
  40113. source: "./media/characters/erdno/front.svg",
  40114. extra: 1234/1129,
  40115. bottom: 35/1269
  40116. }
  40117. },
  40118. angled: {
  40119. height: math.unit(5 + 7/12, "feet"),
  40120. weight: math.unit(2, "tons"),
  40121. name: "Angled",
  40122. image: {
  40123. source: "./media/characters/erdno/angled.svg",
  40124. extra: 1185/1139,
  40125. bottom: 36/1221
  40126. }
  40127. },
  40128. side: {
  40129. height: math.unit(5 + 7/12, "feet"),
  40130. weight: math.unit(2, "tons"),
  40131. name: "Side",
  40132. image: {
  40133. source: "./media/characters/erdno/side.svg",
  40134. extra: 1191/1144,
  40135. bottom: 40/1231
  40136. }
  40137. },
  40138. back: {
  40139. height: math.unit(5 + 7/12, "feet"),
  40140. weight: math.unit(2, "tons"),
  40141. name: "Back",
  40142. image: {
  40143. source: "./media/characters/erdno/back.svg",
  40144. extra: 1202/1146,
  40145. bottom: 17/1219
  40146. }
  40147. },
  40148. frontNsfw: {
  40149. height: math.unit(5 + 7/12, "feet"),
  40150. weight: math.unit(2, "tons"),
  40151. name: "Front (NSFW)",
  40152. image: {
  40153. source: "./media/characters/erdno/front-nsfw.svg",
  40154. extra: 1234/1129,
  40155. bottom: 35/1269
  40156. }
  40157. },
  40158. angledNsfw: {
  40159. height: math.unit(5 + 7/12, "feet"),
  40160. weight: math.unit(2, "tons"),
  40161. name: "Angled (NSFW)",
  40162. image: {
  40163. source: "./media/characters/erdno/angled-nsfw.svg",
  40164. extra: 1185/1139,
  40165. bottom: 36/1221
  40166. }
  40167. },
  40168. sideNsfw: {
  40169. height: math.unit(5 + 7/12, "feet"),
  40170. weight: math.unit(2, "tons"),
  40171. name: "Side (NSFW)",
  40172. image: {
  40173. source: "./media/characters/erdno/side-nsfw.svg",
  40174. extra: 1191/1144,
  40175. bottom: 40/1231
  40176. }
  40177. },
  40178. backNsfw: {
  40179. height: math.unit(5 + 7/12, "feet"),
  40180. weight: math.unit(2, "tons"),
  40181. name: "Back (NSFW)",
  40182. image: {
  40183. source: "./media/characters/erdno/back-nsfw.svg",
  40184. extra: 1202/1146,
  40185. bottom: 17/1219
  40186. }
  40187. },
  40188. frontHyper: {
  40189. height: math.unit(5 + 7/12, "feet"),
  40190. weight: math.unit(2, "tons"),
  40191. name: "Front (Hyper)",
  40192. image: {
  40193. source: "./media/characters/erdno/front-hyper.svg",
  40194. extra: 1298/1136,
  40195. bottom: 35/1333
  40196. }
  40197. },
  40198. },
  40199. [
  40200. {
  40201. name: "Normal",
  40202. height: math.unit(5 + 7/12, "feet"),
  40203. default: true
  40204. },
  40205. {
  40206. name: "Big",
  40207. height: math.unit(5.7, "meters")
  40208. },
  40209. {
  40210. name: "Macro",
  40211. height: math.unit(5.7, "kilometers")
  40212. },
  40213. {
  40214. name: "Megamacro",
  40215. height: math.unit(5.7, "earths")
  40216. },
  40217. ]
  40218. ))
  40219. characterMakers.push(() => makeCharacter(
  40220. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40221. {
  40222. front: {
  40223. height: math.unit(5 + 10/12, "feet"),
  40224. weight: math.unit(150, "lb"),
  40225. name: "Front",
  40226. image: {
  40227. source: "./media/characters/jamie/front.svg",
  40228. extra: 1908/1768,
  40229. bottom: 19/1927
  40230. }
  40231. },
  40232. },
  40233. [
  40234. {
  40235. name: "Minimum",
  40236. height: math.unit(2, "cm")
  40237. },
  40238. {
  40239. name: "Micro",
  40240. height: math.unit(3, "inches")
  40241. },
  40242. {
  40243. name: "Normal",
  40244. height: math.unit(5 + 10/12, "feet"),
  40245. default: true
  40246. },
  40247. {
  40248. name: "Macro",
  40249. height: math.unit(150, "feet")
  40250. },
  40251. {
  40252. name: "Megamacro",
  40253. height: math.unit(10000, "m")
  40254. },
  40255. ]
  40256. ))
  40257. characterMakers.push(() => makeCharacter(
  40258. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40259. {
  40260. front: {
  40261. height: math.unit(2, "meters"),
  40262. weight: math.unit(100, "kg"),
  40263. name: "Front",
  40264. image: {
  40265. source: "./media/characters/shiron/front.svg",
  40266. extra: 2103/1985,
  40267. bottom: 98/2201
  40268. }
  40269. },
  40270. back: {
  40271. height: math.unit(2, "meters"),
  40272. weight: math.unit(100, "kg"),
  40273. name: "Back",
  40274. image: {
  40275. source: "./media/characters/shiron/back.svg",
  40276. extra: 2110/2015,
  40277. bottom: 89/2199
  40278. }
  40279. },
  40280. hand: {
  40281. height: math.unit(0.96, "feet"),
  40282. name: "Hand",
  40283. image: {
  40284. source: "./media/characters/shiron/hand.svg"
  40285. }
  40286. },
  40287. foot: {
  40288. height: math.unit(1.464, "feet"),
  40289. name: "Foot",
  40290. image: {
  40291. source: "./media/characters/shiron/foot.svg"
  40292. }
  40293. },
  40294. },
  40295. [
  40296. {
  40297. name: "Normal",
  40298. height: math.unit(2, "meters")
  40299. },
  40300. {
  40301. name: "Macro",
  40302. height: math.unit(500, "meters"),
  40303. default: true
  40304. },
  40305. {
  40306. name: "Megamacro",
  40307. height: math.unit(20, "km")
  40308. },
  40309. ]
  40310. ))
  40311. characterMakers.push(() => makeCharacter(
  40312. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40313. {
  40314. front: {
  40315. height: math.unit(6, "feet"),
  40316. name: "Front",
  40317. image: {
  40318. source: "./media/characters/sam/front.svg",
  40319. extra: 849/826,
  40320. bottom: 19/868
  40321. }
  40322. },
  40323. },
  40324. [
  40325. {
  40326. name: "Normal",
  40327. height: math.unit(6, "feet"),
  40328. default: true
  40329. },
  40330. ]
  40331. ))
  40332. characterMakers.push(() => makeCharacter(
  40333. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40334. {
  40335. front: {
  40336. height: math.unit(8 + 4/12, "feet"),
  40337. weight: math.unit(122, "kg"),
  40338. name: "Front",
  40339. image: {
  40340. source: "./media/characters/namori-kurogawa/front.svg",
  40341. extra: 1894/1576,
  40342. bottom: 34/1928
  40343. }
  40344. },
  40345. },
  40346. [
  40347. {
  40348. name: "Normal",
  40349. height: math.unit(8 + 4/12, "feet"),
  40350. default: true
  40351. },
  40352. ]
  40353. ))
  40354. characterMakers.push(() => makeCharacter(
  40355. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40356. {
  40357. front: {
  40358. height: math.unit(9, "feet"),
  40359. weight: math.unit(621, "lb"),
  40360. name: "Front",
  40361. image: {
  40362. source: "./media/characters/unmru/front.svg",
  40363. extra: 1853/1747,
  40364. bottom: 73/1926
  40365. }
  40366. },
  40367. side: {
  40368. height: math.unit(9, "feet"),
  40369. weight: math.unit(621, "lb"),
  40370. name: "Side",
  40371. image: {
  40372. source: "./media/characters/unmru/side.svg",
  40373. extra: 1781/1671,
  40374. bottom: 127/1908
  40375. }
  40376. },
  40377. back: {
  40378. height: math.unit(9, "feet"),
  40379. weight: math.unit(621, "lb"),
  40380. name: "Back",
  40381. image: {
  40382. source: "./media/characters/unmru/back.svg",
  40383. extra: 1894/1765,
  40384. bottom: 75/1969
  40385. }
  40386. },
  40387. dick: {
  40388. height: math.unit(3, "feet"),
  40389. weight: math.unit(35, "lb"),
  40390. name: "Dick",
  40391. image: {
  40392. source: "./media/characters/unmru/dick.svg"
  40393. }
  40394. },
  40395. },
  40396. [
  40397. {
  40398. name: "Normal",
  40399. height: math.unit(9, "feet")
  40400. },
  40401. {
  40402. name: "Natural",
  40403. height: math.unit(27, "feet"),
  40404. default: true
  40405. },
  40406. {
  40407. name: "Giant",
  40408. height: math.unit(90, "feet")
  40409. },
  40410. {
  40411. name: "Kaiju",
  40412. height: math.unit(270, "feet")
  40413. },
  40414. {
  40415. name: "Macro",
  40416. height: math.unit(900, "feet")
  40417. },
  40418. {
  40419. name: "Macro+",
  40420. height: math.unit(2700, "feet")
  40421. },
  40422. {
  40423. name: "Megamacro",
  40424. height: math.unit(9000, "feet")
  40425. },
  40426. {
  40427. name: "City-Crushing",
  40428. height: math.unit(27000, "feet")
  40429. },
  40430. {
  40431. name: "Mountain-Mashing",
  40432. height: math.unit(90000, "feet")
  40433. },
  40434. {
  40435. name: "Earth-Eclipsing",
  40436. height: math.unit(2.7e8, "feet")
  40437. },
  40438. {
  40439. name: "Sol-Swallowing",
  40440. height: math.unit(9e10, "feet")
  40441. },
  40442. {
  40443. name: "Majoris-Munching",
  40444. height: math.unit(2.7e13, "feet")
  40445. },
  40446. ]
  40447. ))
  40448. characterMakers.push(() => makeCharacter(
  40449. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40450. {
  40451. front: {
  40452. height: math.unit(1, "inch"),
  40453. name: "Front",
  40454. image: {
  40455. source: "./media/characters/squeaks-mouse/front.svg",
  40456. extra: 352/308,
  40457. bottom: 25/377
  40458. }
  40459. },
  40460. },
  40461. [
  40462. {
  40463. name: "Micro",
  40464. height: math.unit(1, "inch"),
  40465. default: true
  40466. },
  40467. ]
  40468. ))
  40469. characterMakers.push(() => makeCharacter(
  40470. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40471. {
  40472. side: {
  40473. height: math.unit(35, "feet"),
  40474. name: "Side",
  40475. image: {
  40476. source: "./media/characters/sayko/side.svg",
  40477. extra: 1697/1021,
  40478. bottom: 82/1779
  40479. }
  40480. },
  40481. head: {
  40482. height: math.unit(16, "feet"),
  40483. name: "Head",
  40484. image: {
  40485. source: "./media/characters/sayko/head.svg"
  40486. }
  40487. },
  40488. forepaw: {
  40489. height: math.unit(7.85, "feet"),
  40490. name: "Forepaw",
  40491. image: {
  40492. source: "./media/characters/sayko/forepaw.svg"
  40493. }
  40494. },
  40495. hindpaw: {
  40496. height: math.unit(8.8, "feet"),
  40497. name: "Hindpaw",
  40498. image: {
  40499. source: "./media/characters/sayko/hindpaw.svg"
  40500. }
  40501. },
  40502. },
  40503. [
  40504. {
  40505. name: "Normal",
  40506. height: math.unit(35, "feet"),
  40507. default: true
  40508. },
  40509. {
  40510. name: "Colossus",
  40511. height: math.unit(100, "meters")
  40512. },
  40513. {
  40514. name: "\"Small\" Deity",
  40515. height: math.unit(1, "km")
  40516. },
  40517. {
  40518. name: "\"Large\" Deity",
  40519. height: math.unit(15, "km")
  40520. },
  40521. ]
  40522. ))
  40523. characterMakers.push(() => makeCharacter(
  40524. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40525. {
  40526. front: {
  40527. height: math.unit(6, "feet"),
  40528. weight: math.unit(250, "lb"),
  40529. name: "Front",
  40530. image: {
  40531. source: "./media/characters/mukiro/front.svg",
  40532. extra: 1368/1310,
  40533. bottom: 34/1402
  40534. }
  40535. },
  40536. },
  40537. [
  40538. {
  40539. name: "Normal",
  40540. height: math.unit(6, "feet"),
  40541. default: true
  40542. },
  40543. ]
  40544. ))
  40545. characterMakers.push(() => makeCharacter(
  40546. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40547. {
  40548. front: {
  40549. height: math.unit(12 + 4/12, "feet"),
  40550. name: "Front",
  40551. image: {
  40552. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40553. extra: 1346/1311,
  40554. bottom: 65/1411
  40555. }
  40556. },
  40557. },
  40558. [
  40559. {
  40560. name: "Base",
  40561. height: math.unit(12 + 4/12, "feet"),
  40562. default: true
  40563. },
  40564. {
  40565. name: "Macro",
  40566. height: math.unit(150, "feet")
  40567. },
  40568. {
  40569. name: "Mega",
  40570. height: math.unit(2, "miles")
  40571. },
  40572. {
  40573. name: "Demi God",
  40574. height: math.unit(4, "AU")
  40575. },
  40576. {
  40577. name: "God Size",
  40578. height: math.unit(1, "universe")
  40579. },
  40580. ]
  40581. ))
  40582. characterMakers.push(() => makeCharacter(
  40583. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40584. {
  40585. front: {
  40586. height: math.unit(3 + 3/12, "feet"),
  40587. weight: math.unit(88, "lb"),
  40588. name: "Front",
  40589. image: {
  40590. source: "./media/characters/trey/front.svg",
  40591. extra: 1815/1509,
  40592. bottom: 60/1875
  40593. }
  40594. },
  40595. },
  40596. [
  40597. {
  40598. name: "Normal",
  40599. height: math.unit(3 + 3/12, "feet"),
  40600. default: true
  40601. },
  40602. ]
  40603. ))
  40604. characterMakers.push(() => makeCharacter(
  40605. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40606. {
  40607. front: {
  40608. height: math.unit(4, "meters"),
  40609. name: "Front",
  40610. image: {
  40611. source: "./media/characters/adelonda/front.svg",
  40612. extra: 1077/982,
  40613. bottom: 39/1116
  40614. }
  40615. },
  40616. back: {
  40617. height: math.unit(4, "meters"),
  40618. name: "Back",
  40619. image: {
  40620. source: "./media/characters/adelonda/back.svg",
  40621. extra: 1105/1003,
  40622. bottom: 25/1130
  40623. }
  40624. },
  40625. feral: {
  40626. height: math.unit(40/1.5, "meters"),
  40627. name: "Feral",
  40628. image: {
  40629. source: "./media/characters/adelonda/feral.svg",
  40630. extra: 597/271,
  40631. bottom: 387/984
  40632. }
  40633. },
  40634. },
  40635. [
  40636. {
  40637. name: "Normal",
  40638. height: math.unit(4, "meters"),
  40639. default: true
  40640. },
  40641. ]
  40642. ))
  40643. characterMakers.push(() => makeCharacter(
  40644. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40645. {
  40646. front: {
  40647. height: math.unit(8 + 4/12, "feet"),
  40648. weight: math.unit(670, "lb"),
  40649. name: "Front",
  40650. image: {
  40651. source: "./media/characters/acadiel/front.svg",
  40652. extra: 1901/1595,
  40653. bottom: 142/2043
  40654. }
  40655. },
  40656. },
  40657. [
  40658. {
  40659. name: "Normal",
  40660. height: math.unit(8 + 4/12, "feet"),
  40661. default: true
  40662. },
  40663. {
  40664. name: "Macro",
  40665. height: math.unit(200, "feet")
  40666. },
  40667. ]
  40668. ))
  40669. characterMakers.push(() => makeCharacter(
  40670. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40671. {
  40672. front: {
  40673. height: math.unit(6 + 2/12, "feet"),
  40674. weight: math.unit(185, "lb"),
  40675. name: "Front",
  40676. image: {
  40677. source: "./media/characters/kayne-ein/front.svg",
  40678. extra: 1780/1560,
  40679. bottom: 81/1861
  40680. }
  40681. },
  40682. },
  40683. [
  40684. {
  40685. name: "Normal",
  40686. height: math.unit(6 + 2/12, "feet"),
  40687. default: true
  40688. },
  40689. {
  40690. name: "Transformation Stage",
  40691. height: math.unit(15, "feet")
  40692. },
  40693. {
  40694. name: "Macro",
  40695. height: math.unit(150, "feet")
  40696. },
  40697. {
  40698. name: "Earth's Shadow",
  40699. height: math.unit(6200, "miles")
  40700. },
  40701. {
  40702. name: "Universal Demon",
  40703. height: math.unit(28e9, "parsecs")
  40704. },
  40705. {
  40706. name: "Multiverse God",
  40707. height: math.unit(3, "multiverses")
  40708. },
  40709. ]
  40710. ))
  40711. characterMakers.push(() => makeCharacter(
  40712. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40713. {
  40714. front: {
  40715. height: math.unit(5 + 5/12, "feet"),
  40716. name: "Front",
  40717. image: {
  40718. source: "./media/characters/fawn/front.svg",
  40719. extra: 1873/1731,
  40720. bottom: 95/1968
  40721. }
  40722. },
  40723. back: {
  40724. height: math.unit(5 + 5/12, "feet"),
  40725. name: "Back",
  40726. image: {
  40727. source: "./media/characters/fawn/back.svg",
  40728. extra: 1813/1700,
  40729. bottom: 14/1827
  40730. }
  40731. },
  40732. hoof: {
  40733. height: math.unit(1.45, "feet"),
  40734. name: "Hoof",
  40735. image: {
  40736. source: "./media/characters/fawn/hoof.svg"
  40737. }
  40738. },
  40739. },
  40740. [
  40741. {
  40742. name: "Normal",
  40743. height: math.unit(5 + 5/12, "feet"),
  40744. default: true
  40745. },
  40746. ]
  40747. ))
  40748. characterMakers.push(() => makeCharacter(
  40749. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40750. {
  40751. front: {
  40752. height: math.unit(2 + 5/12, "feet"),
  40753. name: "Front",
  40754. image: {
  40755. source: "./media/characters/orion/front.svg",
  40756. extra: 1366/1304,
  40757. bottom: 43/1409
  40758. }
  40759. },
  40760. paw: {
  40761. height: math.unit(0.52, "feet"),
  40762. name: "Paw",
  40763. image: {
  40764. source: "./media/characters/orion/paw.svg"
  40765. }
  40766. },
  40767. },
  40768. [
  40769. {
  40770. name: "Normal",
  40771. height: math.unit(2 + 5/12, "feet"),
  40772. default: true
  40773. },
  40774. ]
  40775. ))
  40776. characterMakers.push(() => makeCharacter(
  40777. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40778. {
  40779. front: {
  40780. height: math.unit(5 + 10/12, "feet"),
  40781. name: "Front",
  40782. image: {
  40783. source: "./media/characters/vera/front.svg",
  40784. extra: 1680/1575,
  40785. bottom: 49/1729
  40786. }
  40787. },
  40788. back: {
  40789. height: math.unit(5 + 10/12, "feet"),
  40790. name: "Back",
  40791. image: {
  40792. source: "./media/characters/vera/back.svg",
  40793. extra: 1700/1588,
  40794. bottom: 18/1718
  40795. }
  40796. },
  40797. arcanine: {
  40798. height: math.unit(6 + 8/12, "feet"),
  40799. name: "Arcanine",
  40800. image: {
  40801. source: "./media/characters/vera/arcanine.svg",
  40802. extra: 1590/1511,
  40803. bottom: 71/1661
  40804. }
  40805. },
  40806. maw: {
  40807. height: math.unit(0.82, "feet"),
  40808. name: "Maw",
  40809. image: {
  40810. source: "./media/characters/vera/maw.svg"
  40811. }
  40812. },
  40813. mawArcanine: {
  40814. height: math.unit(0.97, "feet"),
  40815. name: "Maw (Arcanine)",
  40816. image: {
  40817. source: "./media/characters/vera/maw-arcanine.svg"
  40818. }
  40819. },
  40820. paw: {
  40821. height: math.unit(0.75, "feet"),
  40822. name: "Paw",
  40823. image: {
  40824. source: "./media/characters/vera/paw.svg"
  40825. }
  40826. },
  40827. pawprint: {
  40828. height: math.unit(0.52, "feet"),
  40829. name: "Pawprint",
  40830. image: {
  40831. source: "./media/characters/vera/pawprint.svg"
  40832. }
  40833. },
  40834. },
  40835. [
  40836. {
  40837. name: "Normal",
  40838. height: math.unit(5 + 10/12, "feet"),
  40839. default: true
  40840. },
  40841. {
  40842. name: "Macro",
  40843. height: math.unit(75, "feet")
  40844. },
  40845. ]
  40846. ))
  40847. characterMakers.push(() => makeCharacter(
  40848. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40849. {
  40850. front: {
  40851. height: math.unit(4, "feet"),
  40852. weight: math.unit(40, "lb"),
  40853. name: "Front",
  40854. image: {
  40855. source: "./media/characters/orvan-rabbit/front.svg",
  40856. extra: 1896/1642,
  40857. bottom: 29/1925
  40858. }
  40859. },
  40860. },
  40861. [
  40862. {
  40863. name: "Normal",
  40864. height: math.unit(4, "feet"),
  40865. default: true
  40866. },
  40867. ]
  40868. ))
  40869. characterMakers.push(() => makeCharacter(
  40870. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40871. {
  40872. front: {
  40873. height: math.unit(6, "feet"),
  40874. weight: math.unit(168, "lb"),
  40875. name: "Front",
  40876. image: {
  40877. source: "./media/characters/lisa/front.svg",
  40878. extra: 2065/1867,
  40879. bottom: 46/2111
  40880. }
  40881. },
  40882. back: {
  40883. height: math.unit(6, "feet"),
  40884. weight: math.unit(168, "lb"),
  40885. name: "Back",
  40886. image: {
  40887. source: "./media/characters/lisa/back.svg",
  40888. extra: 1982/1838,
  40889. bottom: 29/2011
  40890. }
  40891. },
  40892. maw: {
  40893. height: math.unit(0.81, "feet"),
  40894. name: "Maw",
  40895. image: {
  40896. source: "./media/characters/lisa/maw.svg"
  40897. }
  40898. },
  40899. paw: {
  40900. height: math.unit(0.9, "feet"),
  40901. name: "Paw",
  40902. image: {
  40903. source: "./media/characters/lisa/paw.svg"
  40904. }
  40905. },
  40906. caribousune: {
  40907. height: math.unit(7 + 2/12, "feet"),
  40908. weight: math.unit(268, "lb"),
  40909. name: "Caribousune",
  40910. image: {
  40911. source: "./media/characters/lisa/caribousune.svg",
  40912. extra: 1843/1633,
  40913. bottom: 29/1872
  40914. }
  40915. },
  40916. frontCaribousune: {
  40917. height: math.unit(7 + 2/12, "feet"),
  40918. weight: math.unit(268, "lb"),
  40919. name: "Front (Caribousune)",
  40920. image: {
  40921. source: "./media/characters/lisa/front-caribousune.svg",
  40922. extra: 1818/1638,
  40923. bottom: 52/1870
  40924. }
  40925. },
  40926. sideCaribousune: {
  40927. height: math.unit(7 + 2/12, "feet"),
  40928. weight: math.unit(268, "lb"),
  40929. name: "Side (Caribousune)",
  40930. image: {
  40931. source: "./media/characters/lisa/side-caribousune.svg",
  40932. extra: 1851/1635,
  40933. bottom: 16/1867
  40934. }
  40935. },
  40936. backCaribousune: {
  40937. height: math.unit(7 + 2/12, "feet"),
  40938. weight: math.unit(268, "lb"),
  40939. name: "Back (Caribousune)",
  40940. image: {
  40941. source: "./media/characters/lisa/back-caribousune.svg",
  40942. extra: 1801/1604,
  40943. bottom: 44/1845
  40944. }
  40945. },
  40946. caribou: {
  40947. height: math.unit(7 + 2/12, "feet"),
  40948. weight: math.unit(268, "lb"),
  40949. name: "Caribou",
  40950. image: {
  40951. source: "./media/characters/lisa/caribou.svg",
  40952. extra: 1843/1633,
  40953. bottom: 29/1872
  40954. }
  40955. },
  40956. frontCaribou: {
  40957. height: math.unit(7 + 2/12, "feet"),
  40958. weight: math.unit(268, "lb"),
  40959. name: "Front (Caribou)",
  40960. image: {
  40961. source: "./media/characters/lisa/front-caribou.svg",
  40962. extra: 1818/1638,
  40963. bottom: 52/1870
  40964. }
  40965. },
  40966. sideCaribou: {
  40967. height: math.unit(7 + 2/12, "feet"),
  40968. weight: math.unit(268, "lb"),
  40969. name: "Side (Caribou)",
  40970. image: {
  40971. source: "./media/characters/lisa/side-caribou.svg",
  40972. extra: 1851/1635,
  40973. bottom: 16/1867
  40974. }
  40975. },
  40976. backCaribou: {
  40977. height: math.unit(7 + 2/12, "feet"),
  40978. weight: math.unit(268, "lb"),
  40979. name: "Back (Caribou)",
  40980. image: {
  40981. source: "./media/characters/lisa/back-caribou.svg",
  40982. extra: 1801/1604,
  40983. bottom: 44/1845
  40984. }
  40985. },
  40986. mawCaribou: {
  40987. height: math.unit(1.45, "feet"),
  40988. name: "Maw (Caribou)",
  40989. image: {
  40990. source: "./media/characters/lisa/maw-caribou.svg"
  40991. }
  40992. },
  40993. mawCaribousune: {
  40994. height: math.unit(1.45, "feet"),
  40995. name: "Maw (Caribousune)",
  40996. image: {
  40997. source: "./media/characters/lisa/maw-caribousune.svg"
  40998. }
  40999. },
  41000. pawCaribousune: {
  41001. height: math.unit(1.61, "feet"),
  41002. name: "Paw (Caribou)",
  41003. image: {
  41004. source: "./media/characters/lisa/paw-caribousune.svg"
  41005. }
  41006. },
  41007. },
  41008. [
  41009. {
  41010. name: "Normal",
  41011. height: math.unit(6, "feet")
  41012. },
  41013. {
  41014. name: "God Size",
  41015. height: math.unit(72, "feet"),
  41016. default: true
  41017. },
  41018. {
  41019. name: "Towering",
  41020. height: math.unit(288, "feet")
  41021. },
  41022. {
  41023. name: "City Size",
  41024. height: math.unit(48384, "feet")
  41025. },
  41026. {
  41027. name: "Continental",
  41028. height: math.unit(4200, "miles")
  41029. },
  41030. {
  41031. name: "Planet Eater",
  41032. height: math.unit(42, "earths")
  41033. },
  41034. {
  41035. name: "Star Swallower",
  41036. height: math.unit(42, "solarradii")
  41037. },
  41038. {
  41039. name: "System Swallower",
  41040. height: math.unit(84000, "AU")
  41041. },
  41042. {
  41043. name: "Galaxy Gobbler",
  41044. height: math.unit(42, "galaxies")
  41045. },
  41046. {
  41047. name: "Universe Devourer",
  41048. height: math.unit(42, "universes")
  41049. },
  41050. {
  41051. name: "Multiverse Muncher",
  41052. height: math.unit(42, "multiverses")
  41053. },
  41054. ]
  41055. ))
  41056. characterMakers.push(() => makeCharacter(
  41057. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41058. {
  41059. front: {
  41060. height: math.unit(36, "feet"),
  41061. name: "Front",
  41062. image: {
  41063. source: "./media/characters/shadow-rat/front.svg",
  41064. extra: 1845/1758,
  41065. bottom: 83/1928
  41066. }
  41067. },
  41068. },
  41069. [
  41070. {
  41071. name: "Macro",
  41072. height: math.unit(36, "feet"),
  41073. default: true
  41074. },
  41075. ]
  41076. ))
  41077. characterMakers.push(() => makeCharacter(
  41078. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41079. {
  41080. side: {
  41081. height: math.unit(8, "feet"),
  41082. weight: math.unit(2630, "lb"),
  41083. name: "Side",
  41084. image: {
  41085. source: "./media/characters/torallia/side.svg",
  41086. extra: 2164/2021,
  41087. bottom: 371/2535
  41088. }
  41089. },
  41090. },
  41091. [
  41092. {
  41093. name: "Mortal Interaction",
  41094. height: math.unit(8, "feet")
  41095. },
  41096. {
  41097. name: "Natural",
  41098. height: math.unit(24, "feet"),
  41099. default: true
  41100. },
  41101. {
  41102. name: "Giant",
  41103. height: math.unit(80, "feet")
  41104. },
  41105. {
  41106. name: "Kaiju",
  41107. height: math.unit(240, "feet")
  41108. },
  41109. {
  41110. name: "Macro",
  41111. height: math.unit(800, "feet")
  41112. },
  41113. {
  41114. name: "Macro+",
  41115. height: math.unit(2400, "feet")
  41116. },
  41117. {
  41118. name: "Macro++",
  41119. height: math.unit(8000, "feet")
  41120. },
  41121. {
  41122. name: "City-Crushing",
  41123. height: math.unit(24000, "feet")
  41124. },
  41125. {
  41126. name: "Mountain-Mashing",
  41127. height: math.unit(80000, "feet")
  41128. },
  41129. {
  41130. name: "District Demolisher",
  41131. height: math.unit(240000, "feet")
  41132. },
  41133. {
  41134. name: "Tri-County Terror",
  41135. height: math.unit(800000, "feet")
  41136. },
  41137. {
  41138. name: "State Smasher",
  41139. height: math.unit(2.4e6, "feet")
  41140. },
  41141. {
  41142. name: "Nation Nemesis",
  41143. height: math.unit(8e6, "feet")
  41144. },
  41145. {
  41146. name: "Continent Cracker",
  41147. height: math.unit(2.4e7, "feet")
  41148. },
  41149. {
  41150. name: "Planet-Pillaging",
  41151. height: math.unit(8e7, "feet")
  41152. },
  41153. {
  41154. name: "Earth-Eclipsing",
  41155. height: math.unit(2.4e8, "feet")
  41156. },
  41157. {
  41158. name: "Jovian-Jostling",
  41159. height: math.unit(8e8, "feet")
  41160. },
  41161. {
  41162. name: "Gas Giant Gulper",
  41163. height: math.unit(2.4e9, "feet")
  41164. },
  41165. {
  41166. name: "Astral Annihilator",
  41167. height: math.unit(8e9, "feet")
  41168. },
  41169. {
  41170. name: "Celestial Conqueror",
  41171. height: math.unit(2.4e10, "feet")
  41172. },
  41173. {
  41174. name: "Sol-Swallowing",
  41175. height: math.unit(8e10, "feet")
  41176. },
  41177. {
  41178. name: "Hunter of the Heavens",
  41179. height: math.unit(2.4e13, "feet")
  41180. },
  41181. ]
  41182. ))
  41183. characterMakers.push(() => makeCharacter(
  41184. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41185. {
  41186. front: {
  41187. height: math.unit(6 + 8/12, "feet"),
  41188. weight: math.unit(250, "kilograms"),
  41189. volume: math.unit(28, "liters"),
  41190. name: "Front",
  41191. image: {
  41192. source: "./media/characters/rebecca-pawlson/front.svg",
  41193. extra: 1737/1596,
  41194. bottom: 107/1844
  41195. }
  41196. },
  41197. back: {
  41198. height: math.unit(6 + 8/12, "feet"),
  41199. weight: math.unit(250, "kilograms"),
  41200. volume: math.unit(28, "liters"),
  41201. name: "Back",
  41202. image: {
  41203. source: "./media/characters/rebecca-pawlson/back.svg",
  41204. extra: 1702/1523,
  41205. bottom: 86/1788
  41206. }
  41207. },
  41208. },
  41209. [
  41210. {
  41211. name: "Normal",
  41212. height: math.unit(6 + 8/12, "feet")
  41213. },
  41214. {
  41215. name: "Mini Macro",
  41216. height: math.unit(10, "feet"),
  41217. default: true
  41218. },
  41219. {
  41220. name: "Macro",
  41221. height: math.unit(100, "feet")
  41222. },
  41223. {
  41224. name: "Mega Macro",
  41225. height: math.unit(2500, "feet")
  41226. },
  41227. {
  41228. name: "Giga Macro",
  41229. height: math.unit(50, "miles")
  41230. },
  41231. ]
  41232. ))
  41233. characterMakers.push(() => makeCharacter(
  41234. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41235. {
  41236. front: {
  41237. height: math.unit(7 + 6/12, "feet"),
  41238. weight: math.unit(600, "lb"),
  41239. name: "Front",
  41240. image: {
  41241. source: "./media/characters/moxie-nova/front.svg",
  41242. extra: 1734/1652,
  41243. bottom: 41/1775
  41244. }
  41245. },
  41246. },
  41247. [
  41248. {
  41249. name: "Normal",
  41250. height: math.unit(7 + 6/12, "feet"),
  41251. default: true
  41252. },
  41253. ]
  41254. ))
  41255. characterMakers.push(() => makeCharacter(
  41256. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41257. {
  41258. goat: {
  41259. height: math.unit(4, "feet"),
  41260. weight: math.unit(180, "lb"),
  41261. name: "Goat",
  41262. image: {
  41263. source: "./media/characters/tiffany/goat.svg",
  41264. extra: 1845/1595,
  41265. bottom: 106/1951
  41266. }
  41267. },
  41268. front: {
  41269. height: math.unit(5, "feet"),
  41270. weight: math.unit(150, "lb"),
  41271. name: "Foxcoon",
  41272. image: {
  41273. source: "./media/characters/tiffany/foxcoon.svg",
  41274. extra: 1941/1845,
  41275. bottom: 58/1999
  41276. }
  41277. },
  41278. },
  41279. [
  41280. {
  41281. name: "Normal",
  41282. height: math.unit(5, "feet"),
  41283. default: true
  41284. },
  41285. ]
  41286. ))
  41287. characterMakers.push(() => makeCharacter(
  41288. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41289. {
  41290. front: {
  41291. height: math.unit(8, "feet"),
  41292. weight: math.unit(300, "lb"),
  41293. name: "Front",
  41294. image: {
  41295. source: "./media/characters/raxinath/front.svg",
  41296. extra: 1407/1309,
  41297. bottom: 39/1446
  41298. }
  41299. },
  41300. back: {
  41301. height: math.unit(8, "feet"),
  41302. weight: math.unit(300, "lb"),
  41303. name: "Back",
  41304. image: {
  41305. source: "./media/characters/raxinath/back.svg",
  41306. extra: 1405/1315,
  41307. bottom: 9/1414
  41308. }
  41309. },
  41310. },
  41311. [
  41312. {
  41313. name: "Speck",
  41314. height: math.unit(0.5, "nm")
  41315. },
  41316. {
  41317. name: "Micro",
  41318. height: math.unit(3, "inches")
  41319. },
  41320. {
  41321. name: "Kobold",
  41322. height: math.unit(3, "feet")
  41323. },
  41324. {
  41325. name: "Normal",
  41326. height: math.unit(8, "feet"),
  41327. default: true
  41328. },
  41329. {
  41330. name: "Giant",
  41331. height: math.unit(50, "feet")
  41332. },
  41333. {
  41334. name: "Macro",
  41335. height: math.unit(1000, "feet")
  41336. },
  41337. {
  41338. name: "Megamacro",
  41339. height: math.unit(1, "mile")
  41340. },
  41341. ]
  41342. ))
  41343. characterMakers.push(() => makeCharacter(
  41344. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41345. {
  41346. front: {
  41347. height: math.unit(10, "feet"),
  41348. weight: math.unit(1442, "lb"),
  41349. name: "Front",
  41350. image: {
  41351. source: "./media/characters/mal-dragon/front.svg",
  41352. extra: 1515/1444,
  41353. bottom: 113/1628
  41354. }
  41355. },
  41356. back: {
  41357. height: math.unit(10, "feet"),
  41358. weight: math.unit(1442, "lb"),
  41359. name: "Back",
  41360. image: {
  41361. source: "./media/characters/mal-dragon/back.svg",
  41362. extra: 1527/1434,
  41363. bottom: 25/1552
  41364. }
  41365. },
  41366. },
  41367. [
  41368. {
  41369. name: "Mortal Interaction",
  41370. height: math.unit(10, "feet"),
  41371. default: true
  41372. },
  41373. {
  41374. name: "Large",
  41375. height: math.unit(30, "feet")
  41376. },
  41377. {
  41378. name: "Kaiju",
  41379. height: math.unit(300, "feet")
  41380. },
  41381. {
  41382. name: "Megamacro",
  41383. height: math.unit(10000, "feet")
  41384. },
  41385. {
  41386. name: "Continent Cracker",
  41387. height: math.unit(30000000, "feet")
  41388. },
  41389. {
  41390. name: "Sol-Swallowing",
  41391. height: math.unit(1e11, "feet")
  41392. },
  41393. {
  41394. name: "Light Universal",
  41395. height: math.unit(5, "universes")
  41396. },
  41397. {
  41398. name: "Universe Atoms",
  41399. height: math.unit(1.829e9, "universes")
  41400. },
  41401. {
  41402. name: "Light Multiversal",
  41403. height: math.unit(5, "multiverses")
  41404. },
  41405. {
  41406. name: "Multiverse Atoms",
  41407. height: math.unit(1.829e9, "multiverses")
  41408. },
  41409. {
  41410. name: "Fabric of Time",
  41411. height: math.unit(1e262, "multiverses")
  41412. },
  41413. ]
  41414. ))
  41415. characterMakers.push(() => makeCharacter(
  41416. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41417. {
  41418. front: {
  41419. height: math.unit(9, "feet"),
  41420. weight: math.unit(1050, "lb"),
  41421. name: "Front",
  41422. image: {
  41423. source: "./media/characters/tabitha/front.svg",
  41424. extra: 2083/1994,
  41425. bottom: 68/2151
  41426. }
  41427. },
  41428. },
  41429. [
  41430. {
  41431. name: "Baseline",
  41432. height: math.unit(9, "feet"),
  41433. default: true
  41434. },
  41435. {
  41436. name: "Giant",
  41437. height: math.unit(90, "feet")
  41438. },
  41439. {
  41440. name: "Macro",
  41441. height: math.unit(900, "feet")
  41442. },
  41443. {
  41444. name: "Megamacro",
  41445. height: math.unit(9000, "feet")
  41446. },
  41447. {
  41448. name: "City-Crushing",
  41449. height: math.unit(27000, "feet")
  41450. },
  41451. {
  41452. name: "Mountain-Mashing",
  41453. height: math.unit(90000, "feet")
  41454. },
  41455. {
  41456. name: "Nation Nemesis",
  41457. height: math.unit(9e6, "feet")
  41458. },
  41459. {
  41460. name: "Continent Cracker",
  41461. height: math.unit(27e6, "feet")
  41462. },
  41463. {
  41464. name: "Earth-Eclipsing",
  41465. height: math.unit(2.7e8, "feet")
  41466. },
  41467. {
  41468. name: "Gas Giant Gulper",
  41469. height: math.unit(2.7e9, "feet")
  41470. },
  41471. {
  41472. name: "Sol-Swallowing",
  41473. height: math.unit(9e10, "feet")
  41474. },
  41475. {
  41476. name: "Galaxy Gulper",
  41477. height: math.unit(9, "galaxies")
  41478. },
  41479. {
  41480. name: "Cosmos Churner",
  41481. height: math.unit(9, "universes")
  41482. },
  41483. ]
  41484. ))
  41485. characterMakers.push(() => makeCharacter(
  41486. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41487. {
  41488. front: {
  41489. height: math.unit(160, "cm"),
  41490. weight: math.unit(55, "kg"),
  41491. name: "Front",
  41492. image: {
  41493. source: "./media/characters/tow/front.svg",
  41494. extra: 1751/1722,
  41495. bottom: 74/1825
  41496. }
  41497. },
  41498. },
  41499. [
  41500. {
  41501. name: "Norm",
  41502. height: math.unit(160, "cm")
  41503. },
  41504. {
  41505. name: "Casual",
  41506. height: math.unit(3200, "m"),
  41507. default: true
  41508. },
  41509. {
  41510. name: "Show-Off",
  41511. height: math.unit(160, "km")
  41512. },
  41513. ]
  41514. ))
  41515. characterMakers.push(() => makeCharacter(
  41516. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41517. {
  41518. front: {
  41519. height: math.unit(7 + 11/12, "feet"),
  41520. weight: math.unit(342.8, "lb"),
  41521. name: "Front",
  41522. image: {
  41523. source: "./media/characters/vivian-orca-dragon/front.svg",
  41524. extra: 1890/1865,
  41525. bottom: 28/1918
  41526. }
  41527. },
  41528. },
  41529. [
  41530. {
  41531. name: "Micro",
  41532. height: math.unit(5, "inches")
  41533. },
  41534. {
  41535. name: "Normal",
  41536. height: math.unit(7 + 11/12, "feet"),
  41537. default: true
  41538. },
  41539. {
  41540. name: "Macro",
  41541. height: math.unit(395 + 7/12, "feet")
  41542. },
  41543. ]
  41544. ))
  41545. characterMakers.push(() => makeCharacter(
  41546. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41547. {
  41548. side: {
  41549. height: math.unit(10, "feet"),
  41550. weight: math.unit(1442, "lb"),
  41551. name: "Side",
  41552. image: {
  41553. source: "./media/characters/lotherakon/side.svg",
  41554. extra: 1604/1497,
  41555. bottom: 89/1693
  41556. }
  41557. },
  41558. },
  41559. [
  41560. {
  41561. name: "Mortal Interaction",
  41562. height: math.unit(10, "feet")
  41563. },
  41564. {
  41565. name: "Large",
  41566. height: math.unit(30, "feet"),
  41567. default: true
  41568. },
  41569. {
  41570. name: "Giant",
  41571. height: math.unit(100, "feet")
  41572. },
  41573. {
  41574. name: "Kaiju",
  41575. height: math.unit(300, "feet")
  41576. },
  41577. {
  41578. name: "Macro",
  41579. height: math.unit(1000, "feet")
  41580. },
  41581. {
  41582. name: "Macro+",
  41583. height: math.unit(3000, "feet")
  41584. },
  41585. {
  41586. name: "Megamacro",
  41587. height: math.unit(10000, "feet")
  41588. },
  41589. {
  41590. name: "City-Crushing",
  41591. height: math.unit(30000, "feet")
  41592. },
  41593. {
  41594. name: "Continent Cracker",
  41595. height: math.unit(30e6, "feet")
  41596. },
  41597. {
  41598. name: "Earth Eclipsing",
  41599. height: math.unit(3e8, "feet")
  41600. },
  41601. {
  41602. name: "Gas Giant Gulper",
  41603. height: math.unit(3e9, "feet")
  41604. },
  41605. {
  41606. name: "Sol-Swallowing",
  41607. height: math.unit(1e11, "feet")
  41608. },
  41609. {
  41610. name: "System Swallower",
  41611. height: math.unit(3e14, "feet")
  41612. },
  41613. {
  41614. name: "Galaxy Gulper",
  41615. height: math.unit(10, "galaxies")
  41616. },
  41617. {
  41618. name: "Light Universal",
  41619. height: math.unit(5, "universes")
  41620. },
  41621. {
  41622. name: "Universe Palm",
  41623. height: math.unit(20, "universes")
  41624. },
  41625. {
  41626. name: "Light Multiversal",
  41627. height: math.unit(5, "multiverses")
  41628. },
  41629. {
  41630. name: "Multiverse Palm",
  41631. height: math.unit(20, "multiverses")
  41632. },
  41633. {
  41634. name: "Inferno Incarnate",
  41635. height: math.unit(1e7, "multiverses")
  41636. },
  41637. ]
  41638. ))
  41639. characterMakers.push(() => makeCharacter(
  41640. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41641. {
  41642. front: {
  41643. height: math.unit(8, "feet"),
  41644. weight: math.unit(1200, "lb"),
  41645. name: "Front",
  41646. image: {
  41647. source: "./media/characters/malithee/front.svg",
  41648. extra: 1675/1640,
  41649. bottom: 162/1837
  41650. }
  41651. },
  41652. },
  41653. [
  41654. {
  41655. name: "Mortal Interaction",
  41656. height: math.unit(8, "feet"),
  41657. default: true
  41658. },
  41659. {
  41660. name: "Large",
  41661. height: math.unit(24, "feet")
  41662. },
  41663. {
  41664. name: "Kaiju",
  41665. height: math.unit(240, "feet")
  41666. },
  41667. {
  41668. name: "Megamacro",
  41669. height: math.unit(8000, "feet")
  41670. },
  41671. {
  41672. name: "Continent Cracker",
  41673. height: math.unit(24e6, "feet")
  41674. },
  41675. {
  41676. name: "Earth-Eclipsing",
  41677. height: math.unit(2.4e8, "feet")
  41678. },
  41679. {
  41680. name: "Sol-Swallowing",
  41681. height: math.unit(8e10, "feet")
  41682. },
  41683. {
  41684. name: "Galaxy Gulper",
  41685. height: math.unit(8, "galaxies")
  41686. },
  41687. {
  41688. name: "Light Universal",
  41689. height: math.unit(4, "universes")
  41690. },
  41691. {
  41692. name: "Universe Atoms",
  41693. height: math.unit(1.829e9, "universes")
  41694. },
  41695. {
  41696. name: "Light Multiversal",
  41697. height: math.unit(4, "multiverses")
  41698. },
  41699. {
  41700. name: "Multiverse Atoms",
  41701. height: math.unit(1.829e9, "multiverses")
  41702. },
  41703. {
  41704. name: "Nigh-Omnipresence",
  41705. height: math.unit(8e261, "multiverses")
  41706. },
  41707. ]
  41708. ))
  41709. characterMakers.push(() => makeCharacter(
  41710. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41711. {
  41712. front: {
  41713. height: math.unit(10, "feet"),
  41714. weight: math.unit(1500, "lb"),
  41715. name: "Front",
  41716. image: {
  41717. source: "./media/characters/miles-thestia/front.svg",
  41718. extra: 1812/1727,
  41719. bottom: 86/1898
  41720. }
  41721. },
  41722. back: {
  41723. height: math.unit(10, "feet"),
  41724. weight: math.unit(1500, "lb"),
  41725. name: "Back",
  41726. image: {
  41727. source: "./media/characters/miles-thestia/back.svg",
  41728. extra: 1799/1690,
  41729. bottom: 47/1846
  41730. }
  41731. },
  41732. frontNsfw: {
  41733. height: math.unit(10, "feet"),
  41734. weight: math.unit(1500, "lb"),
  41735. name: "Front (NSFW)",
  41736. image: {
  41737. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41738. extra: 1812/1727,
  41739. bottom: 86/1898
  41740. }
  41741. },
  41742. },
  41743. [
  41744. {
  41745. name: "Mini-Macro",
  41746. height: math.unit(10, "feet"),
  41747. default: true
  41748. },
  41749. ]
  41750. ))
  41751. characterMakers.push(() => makeCharacter(
  41752. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41753. {
  41754. front: {
  41755. height: math.unit(25, "feet"),
  41756. name: "Front",
  41757. image: {
  41758. source: "./media/characters/titan-s-wulf/front.svg",
  41759. extra: 1560/1484,
  41760. bottom: 76/1636
  41761. }
  41762. },
  41763. },
  41764. [
  41765. {
  41766. name: "Smallest",
  41767. height: math.unit(25, "feet"),
  41768. default: true
  41769. },
  41770. {
  41771. name: "Normal",
  41772. height: math.unit(200, "feet")
  41773. },
  41774. {
  41775. name: "Macro",
  41776. height: math.unit(200000, "feet")
  41777. },
  41778. {
  41779. name: "Multiversal Original",
  41780. height: math.unit(10000, "multiverses")
  41781. },
  41782. ]
  41783. ))
  41784. characterMakers.push(() => makeCharacter(
  41785. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41786. {
  41787. front: {
  41788. height: math.unit(8, "feet"),
  41789. weight: math.unit(553, "lb"),
  41790. name: "Front",
  41791. image: {
  41792. source: "./media/characters/tawendeh/front.svg",
  41793. extra: 2365/2268,
  41794. bottom: 83/2448
  41795. }
  41796. },
  41797. frontClothed: {
  41798. height: math.unit(8, "feet"),
  41799. weight: math.unit(553, "lb"),
  41800. name: "Front (Clothed)",
  41801. image: {
  41802. source: "./media/characters/tawendeh/front-clothed.svg",
  41803. extra: 2365/2268,
  41804. bottom: 83/2448
  41805. }
  41806. },
  41807. back: {
  41808. height: math.unit(8, "feet"),
  41809. weight: math.unit(553, "lb"),
  41810. name: "Back",
  41811. image: {
  41812. source: "./media/characters/tawendeh/back.svg",
  41813. extra: 2397/2294,
  41814. bottom: 42/2439
  41815. }
  41816. },
  41817. },
  41818. [
  41819. {
  41820. name: "Mortal Interaction",
  41821. height: math.unit(8, "feet"),
  41822. default: true
  41823. },
  41824. {
  41825. name: "Giant",
  41826. height: math.unit(80, "feet")
  41827. },
  41828. {
  41829. name: "Macro",
  41830. height: math.unit(800, "feet")
  41831. },
  41832. {
  41833. name: "Megamacro",
  41834. height: math.unit(8000, "feet")
  41835. },
  41836. {
  41837. name: "City-Crushing",
  41838. height: math.unit(24000, "feet")
  41839. },
  41840. {
  41841. name: "Mountain-Mashing",
  41842. height: math.unit(80000, "feet")
  41843. },
  41844. {
  41845. name: "Nation Nemesis",
  41846. height: math.unit(8e6, "feet")
  41847. },
  41848. {
  41849. name: "Continent Cracker",
  41850. height: math.unit(24e6, "feet")
  41851. },
  41852. {
  41853. name: "Earth-Eclipsing",
  41854. height: math.unit(2.4e8, "feet")
  41855. },
  41856. {
  41857. name: "Gas Giant Gulper",
  41858. height: math.unit(2.4e9, "feet")
  41859. },
  41860. {
  41861. name: "Sol-Swallowing",
  41862. height: math.unit(8e10, "feet")
  41863. },
  41864. {
  41865. name: "Galaxy Gulper",
  41866. height: math.unit(8, "galaxies")
  41867. },
  41868. {
  41869. name: "Cosmos Churner",
  41870. height: math.unit(8, "universes")
  41871. },
  41872. {
  41873. name: "Omnipotent Otter",
  41874. height: math.unit(80, "universes")
  41875. },
  41876. ]
  41877. ))
  41878. characterMakers.push(() => makeCharacter(
  41879. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41880. {
  41881. front: {
  41882. height: math.unit(2.6, "meters"),
  41883. weight: math.unit(900, "kg"),
  41884. name: "Front",
  41885. image: {
  41886. source: "./media/characters/neesha/front.svg",
  41887. extra: 1803/1653,
  41888. bottom: 128/1931
  41889. }
  41890. },
  41891. },
  41892. [
  41893. {
  41894. name: "Normal",
  41895. height: math.unit(2.6, "meters"),
  41896. default: true
  41897. },
  41898. {
  41899. name: "Macro",
  41900. height: math.unit(50, "meters")
  41901. },
  41902. ]
  41903. ))
  41904. characterMakers.push(() => makeCharacter(
  41905. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41906. {
  41907. front: {
  41908. height: math.unit(5, "feet"),
  41909. weight: math.unit(185, "lb"),
  41910. name: "Front",
  41911. image: {
  41912. source: "./media/characters/kyera/front.svg",
  41913. extra: 1875/1790,
  41914. bottom: 96/1971
  41915. }
  41916. },
  41917. },
  41918. [
  41919. {
  41920. name: "Normal",
  41921. height: math.unit(5, "feet"),
  41922. default: true
  41923. },
  41924. ]
  41925. ))
  41926. characterMakers.push(() => makeCharacter(
  41927. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41928. {
  41929. front: {
  41930. height: math.unit(7 + 6/12, "feet"),
  41931. weight: math.unit(540, "lb"),
  41932. name: "Front",
  41933. image: {
  41934. source: "./media/characters/yuko/front.svg",
  41935. extra: 1282/1222,
  41936. bottom: 101/1383
  41937. }
  41938. },
  41939. frontClothed: {
  41940. height: math.unit(7 + 6/12, "feet"),
  41941. weight: math.unit(540, "lb"),
  41942. name: "Front (Clothed)",
  41943. image: {
  41944. source: "./media/characters/yuko/front-clothed.svg",
  41945. extra: 1282/1222,
  41946. bottom: 101/1383
  41947. }
  41948. },
  41949. },
  41950. [
  41951. {
  41952. name: "Normal",
  41953. height: math.unit(7 + 6/12, "feet"),
  41954. default: true
  41955. },
  41956. {
  41957. name: "Macro",
  41958. height: math.unit(26 + 9/12, "feet")
  41959. },
  41960. {
  41961. name: "Megamacro",
  41962. height: math.unit(300, "feet")
  41963. },
  41964. {
  41965. name: "Gigamacro",
  41966. height: math.unit(5000, "feet")
  41967. },
  41968. {
  41969. name: "Planetary",
  41970. height: math.unit(10000, "miles")
  41971. },
  41972. ]
  41973. ))
  41974. characterMakers.push(() => makeCharacter(
  41975. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41976. {
  41977. front: {
  41978. height: math.unit(8 + 2/12, "feet"),
  41979. weight: math.unit(600, "lb"),
  41980. name: "Front",
  41981. image: {
  41982. source: "./media/characters/deam-nitrel/front.svg",
  41983. extra: 1308/1234,
  41984. bottom: 125/1433
  41985. }
  41986. },
  41987. },
  41988. [
  41989. {
  41990. name: "Normal",
  41991. height: math.unit(8 + 2/12, "feet"),
  41992. default: true
  41993. },
  41994. ]
  41995. ))
  41996. characterMakers.push(() => makeCharacter(
  41997. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41998. {
  41999. front: {
  42000. height: math.unit(6.1, "feet"),
  42001. weight: math.unit(180, "lb"),
  42002. name: "Front",
  42003. image: {
  42004. source: "./media/characters/skyress/front.svg",
  42005. extra: 1045/915,
  42006. bottom: 28/1073
  42007. }
  42008. },
  42009. maw: {
  42010. height: math.unit(1, "feet"),
  42011. name: "Maw",
  42012. image: {
  42013. source: "./media/characters/skyress/maw.svg"
  42014. }
  42015. },
  42016. },
  42017. [
  42018. {
  42019. name: "Normal",
  42020. height: math.unit(6.1, "feet"),
  42021. default: true
  42022. },
  42023. {
  42024. name: "Macro",
  42025. height: math.unit(200, "feet")
  42026. },
  42027. ]
  42028. ))
  42029. characterMakers.push(() => makeCharacter(
  42030. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42031. {
  42032. front: {
  42033. height: math.unit(4 + 2/12, "feet"),
  42034. weight: math.unit(40, "kg"),
  42035. name: "Front",
  42036. image: {
  42037. source: "./media/characters/amethyst-jones/front.svg",
  42038. extra: 1220/1150,
  42039. bottom: 101/1321
  42040. }
  42041. },
  42042. },
  42043. [
  42044. {
  42045. name: "Normal",
  42046. height: math.unit(4 + 2/12, "feet"),
  42047. default: true
  42048. },
  42049. ]
  42050. ))
  42051. characterMakers.push(() => makeCharacter(
  42052. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42053. {
  42054. front: {
  42055. height: math.unit(1.7, "m"),
  42056. weight: math.unit(135, "lb"),
  42057. name: "Front",
  42058. image: {
  42059. source: "./media/characters/jade/front.svg",
  42060. extra: 1818/1767,
  42061. bottom: 32/1850
  42062. }
  42063. },
  42064. back: {
  42065. height: math.unit(1.7, "m"),
  42066. weight: math.unit(135, "lb"),
  42067. name: "Back",
  42068. image: {
  42069. source: "./media/characters/jade/back.svg",
  42070. extra: 1869/1809,
  42071. bottom: 35/1904
  42072. }
  42073. },
  42074. hand: {
  42075. height: math.unit(0.24, "m"),
  42076. name: "Hand",
  42077. image: {
  42078. source: "./media/characters/jade/hand.svg"
  42079. }
  42080. },
  42081. foot: {
  42082. height: math.unit(0.263, "m"),
  42083. name: "Foot",
  42084. image: {
  42085. source: "./media/characters/jade/foot.svg"
  42086. }
  42087. },
  42088. dick: {
  42089. height: math.unit(0.47, "m"),
  42090. name: "Dick",
  42091. image: {
  42092. source: "./media/characters/jade/dick.svg"
  42093. }
  42094. },
  42095. },
  42096. [
  42097. {
  42098. name: "Micro",
  42099. height: math.unit(22, "cm")
  42100. },
  42101. {
  42102. name: "Normal",
  42103. height: math.unit(1.7, "m"),
  42104. default: true
  42105. },
  42106. {
  42107. name: "Macro",
  42108. height: math.unit(152, "m")
  42109. },
  42110. ]
  42111. ))
  42112. characterMakers.push(() => makeCharacter(
  42113. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42114. {
  42115. front: {
  42116. height: math.unit(100, "miles"),
  42117. weight: math.unit(20000, "tons"),
  42118. name: "Front",
  42119. image: {
  42120. source: "./media/characters/cookie/front.svg",
  42121. extra: 1125/1070,
  42122. bottom: 30/1155
  42123. }
  42124. },
  42125. },
  42126. [
  42127. {
  42128. name: "Big",
  42129. height: math.unit(50, "feet")
  42130. },
  42131. {
  42132. name: "Macro",
  42133. height: math.unit(100, "miles"),
  42134. default: true
  42135. },
  42136. {
  42137. name: "Megamacro",
  42138. height: math.unit(90000, "miles")
  42139. },
  42140. ]
  42141. ))
  42142. characterMakers.push(() => makeCharacter(
  42143. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42144. {
  42145. front: {
  42146. height: math.unit(6, "feet"),
  42147. weight: math.unit(145, "lb"),
  42148. name: "Front",
  42149. image: {
  42150. source: "./media/characters/farzian/front.svg",
  42151. extra: 1902/1693,
  42152. bottom: 108/2010
  42153. }
  42154. },
  42155. },
  42156. [
  42157. {
  42158. name: "Macro",
  42159. height: math.unit(500, "feet"),
  42160. default: true
  42161. },
  42162. ]
  42163. ))
  42164. characterMakers.push(() => makeCharacter(
  42165. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42166. {
  42167. front: {
  42168. height: math.unit(3 + 6/12, "feet"),
  42169. weight: math.unit(50, "lb"),
  42170. name: "Front",
  42171. image: {
  42172. source: "./media/characters/kimberly-tilson/front.svg",
  42173. extra: 1400/1322,
  42174. bottom: 36/1436
  42175. }
  42176. },
  42177. back: {
  42178. height: math.unit(3 + 6/12, "feet"),
  42179. weight: math.unit(50, "lb"),
  42180. name: "Back",
  42181. image: {
  42182. source: "./media/characters/kimberly-tilson/back.svg",
  42183. extra: 1370/1307,
  42184. bottom: 20/1390
  42185. }
  42186. },
  42187. },
  42188. [
  42189. {
  42190. name: "Normal",
  42191. height: math.unit(3 + 6/12, "feet"),
  42192. default: true
  42193. },
  42194. ]
  42195. ))
  42196. characterMakers.push(() => makeCharacter(
  42197. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42198. {
  42199. front: {
  42200. height: math.unit(1148, "feet"),
  42201. weight: math.unit(34057, "lb"),
  42202. name: "Front",
  42203. image: {
  42204. source: "./media/characters/harthos/front.svg",
  42205. extra: 1391/1339,
  42206. bottom: 13/1404
  42207. }
  42208. },
  42209. },
  42210. [
  42211. {
  42212. name: "Macro",
  42213. height: math.unit(1148, "feet"),
  42214. default: true
  42215. },
  42216. ]
  42217. ))
  42218. characterMakers.push(() => makeCharacter(
  42219. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42220. {
  42221. front: {
  42222. height: math.unit(15, "feet"),
  42223. name: "Front",
  42224. image: {
  42225. source: "./media/characters/hypatia/front.svg",
  42226. extra: 1653/1591,
  42227. bottom: 79/1732
  42228. }
  42229. },
  42230. },
  42231. [
  42232. {
  42233. name: "Normal",
  42234. height: math.unit(15, "feet")
  42235. },
  42236. {
  42237. name: "Small",
  42238. height: math.unit(300, "feet")
  42239. },
  42240. {
  42241. name: "Macro",
  42242. height: math.unit(2500, "feet"),
  42243. default: true
  42244. },
  42245. {
  42246. name: "Mega Macro",
  42247. height: math.unit(1500, "miles")
  42248. },
  42249. {
  42250. name: "Giga Macro",
  42251. height: math.unit(1.5e6, "miles")
  42252. },
  42253. ]
  42254. ))
  42255. characterMakers.push(() => makeCharacter(
  42256. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42257. {
  42258. front: {
  42259. height: math.unit(6, "feet"),
  42260. weight: math.unit(200, "lb"),
  42261. name: "Front",
  42262. image: {
  42263. source: "./media/characters/wulver/front.svg",
  42264. extra: 1724/1632,
  42265. bottom: 130/1854
  42266. }
  42267. },
  42268. frontNsfw: {
  42269. height: math.unit(6, "feet"),
  42270. weight: math.unit(200, "lb"),
  42271. name: "Front (NSFW)",
  42272. image: {
  42273. source: "./media/characters/wulver/front-nsfw.svg",
  42274. extra: 1724/1632,
  42275. bottom: 130/1854
  42276. }
  42277. },
  42278. },
  42279. [
  42280. {
  42281. name: "Human-Sized",
  42282. height: math.unit(6, "feet")
  42283. },
  42284. {
  42285. name: "Normal",
  42286. height: math.unit(4, "meters"),
  42287. default: true
  42288. },
  42289. {
  42290. name: "Large",
  42291. height: math.unit(6, "m")
  42292. },
  42293. ]
  42294. ))
  42295. characterMakers.push(() => makeCharacter(
  42296. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42297. {
  42298. front: {
  42299. height: math.unit(7, "feet"),
  42300. name: "Front",
  42301. image: {
  42302. source: "./media/characters/maru/front.svg",
  42303. extra: 1595/1570,
  42304. bottom: 0/1595
  42305. }
  42306. },
  42307. },
  42308. [
  42309. {
  42310. name: "Normal",
  42311. height: math.unit(7, "feet"),
  42312. default: true
  42313. },
  42314. {
  42315. name: "Macro",
  42316. height: math.unit(700, "feet")
  42317. },
  42318. {
  42319. name: "Mega Macro",
  42320. height: math.unit(25, "miles")
  42321. },
  42322. ]
  42323. ))
  42324. characterMakers.push(() => makeCharacter(
  42325. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42326. {
  42327. front: {
  42328. height: math.unit(6, "feet"),
  42329. weight: math.unit(170, "lb"),
  42330. name: "Front",
  42331. image: {
  42332. source: "./media/characters/xenon/front.svg",
  42333. extra: 1376/1305,
  42334. bottom: 56/1432
  42335. }
  42336. },
  42337. back: {
  42338. height: math.unit(6, "feet"),
  42339. weight: math.unit(170, "lb"),
  42340. name: "Back",
  42341. image: {
  42342. source: "./media/characters/xenon/back.svg",
  42343. extra: 1328/1259,
  42344. bottom: 95/1423
  42345. }
  42346. },
  42347. maw: {
  42348. height: math.unit(0.52, "feet"),
  42349. name: "Maw",
  42350. image: {
  42351. source: "./media/characters/xenon/maw.svg"
  42352. }
  42353. },
  42354. handLeft: {
  42355. height: math.unit(0.82 * 169 / 153, "feet"),
  42356. name: "Hand (Left)",
  42357. image: {
  42358. source: "./media/characters/xenon/hand-left.svg"
  42359. }
  42360. },
  42361. handRight: {
  42362. height: math.unit(0.82, "feet"),
  42363. name: "Hand (Right)",
  42364. image: {
  42365. source: "./media/characters/xenon/hand-right.svg"
  42366. }
  42367. },
  42368. footLeft: {
  42369. height: math.unit(1.13, "feet"),
  42370. name: "Foot (Left)",
  42371. image: {
  42372. source: "./media/characters/xenon/foot-left.svg"
  42373. }
  42374. },
  42375. footRight: {
  42376. height: math.unit(1.13 * 194 / 196, "feet"),
  42377. name: "Foot (Right)",
  42378. image: {
  42379. source: "./media/characters/xenon/foot-right.svg"
  42380. }
  42381. },
  42382. },
  42383. [
  42384. {
  42385. name: "Micro",
  42386. height: math.unit(0.8, "inches")
  42387. },
  42388. {
  42389. name: "Normal",
  42390. height: math.unit(6, "feet")
  42391. },
  42392. {
  42393. name: "Macro",
  42394. height: math.unit(50, "feet"),
  42395. default: true
  42396. },
  42397. {
  42398. name: "Macro+",
  42399. height: math.unit(250, "feet")
  42400. },
  42401. {
  42402. name: "Megamacro",
  42403. height: math.unit(1500, "feet")
  42404. },
  42405. ]
  42406. ))
  42407. characterMakers.push(() => makeCharacter(
  42408. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42409. {
  42410. front: {
  42411. height: math.unit(7 + 5/12, "feet"),
  42412. name: "Front",
  42413. image: {
  42414. source: "./media/characters/zane/front.svg",
  42415. extra: 1260/1203,
  42416. bottom: 94/1354
  42417. }
  42418. },
  42419. back: {
  42420. height: math.unit(5.05, "feet"),
  42421. name: "Back",
  42422. image: {
  42423. source: "./media/characters/zane/back.svg",
  42424. extra: 893/829,
  42425. bottom: 30/923
  42426. }
  42427. },
  42428. werewolf: {
  42429. height: math.unit(11, "feet"),
  42430. name: "Werewolf",
  42431. image: {
  42432. source: "./media/characters/zane/werewolf.svg",
  42433. extra: 1383/1323,
  42434. bottom: 89/1472
  42435. }
  42436. },
  42437. foot: {
  42438. height: math.unit(1.46, "feet"),
  42439. name: "Foot",
  42440. image: {
  42441. source: "./media/characters/zane/foot.svg"
  42442. }
  42443. },
  42444. footFront: {
  42445. height: math.unit(0.784, "feet"),
  42446. name: "Foot (Front)",
  42447. image: {
  42448. source: "./media/characters/zane/foot-front.svg"
  42449. }
  42450. },
  42451. dick: {
  42452. height: math.unit(1.95, "feet"),
  42453. name: "Dick",
  42454. image: {
  42455. source: "./media/characters/zane/dick.svg"
  42456. }
  42457. },
  42458. dickWerewolf: {
  42459. height: math.unit(3.77, "feet"),
  42460. name: "Dick (Werewolf)",
  42461. image: {
  42462. source: "./media/characters/zane/dick.svg"
  42463. }
  42464. },
  42465. },
  42466. [
  42467. {
  42468. name: "Normal",
  42469. height: math.unit(7 + 5/12, "feet"),
  42470. default: true
  42471. },
  42472. ]
  42473. ))
  42474. characterMakers.push(() => makeCharacter(
  42475. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42476. {
  42477. front: {
  42478. height: math.unit(6 + 2/12, "feet"),
  42479. weight: math.unit(284, "lb"),
  42480. name: "Front",
  42481. image: {
  42482. source: "./media/characters/benni-desparque/front.svg",
  42483. extra: 1353/1126,
  42484. bottom: 69/1422
  42485. }
  42486. },
  42487. },
  42488. [
  42489. {
  42490. name: "Civilian",
  42491. height: math.unit(6 + 2/12, "feet")
  42492. },
  42493. {
  42494. name: "Normal",
  42495. height: math.unit(98, "feet"),
  42496. default: true
  42497. },
  42498. {
  42499. name: "Kaiju Fighter",
  42500. height: math.unit(268, "feet")
  42501. },
  42502. ]
  42503. ))
  42504. characterMakers.push(() => makeCharacter(
  42505. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42506. {
  42507. front: {
  42508. height: math.unit(5, "feet"),
  42509. weight: math.unit(105, "lb"),
  42510. name: "Front",
  42511. image: {
  42512. source: "./media/characters/maxine/front.svg",
  42513. extra: 1386/1250,
  42514. bottom: 71/1457
  42515. }
  42516. },
  42517. },
  42518. [
  42519. {
  42520. name: "Normal",
  42521. height: math.unit(5, "feet"),
  42522. default: true
  42523. },
  42524. ]
  42525. ))
  42526. characterMakers.push(() => makeCharacter(
  42527. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42528. {
  42529. front: {
  42530. height: math.unit(11 + 7/12, "feet"),
  42531. weight: math.unit(9576, "lb"),
  42532. name: "Front",
  42533. image: {
  42534. source: "./media/characters/scaly/front.svg",
  42535. extra: 888/867,
  42536. bottom: 36/924
  42537. }
  42538. },
  42539. },
  42540. [
  42541. {
  42542. name: "Normal",
  42543. height: math.unit(11 + 7/12, "feet"),
  42544. default: true
  42545. },
  42546. ]
  42547. ))
  42548. characterMakers.push(() => makeCharacter(
  42549. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42550. {
  42551. front: {
  42552. height: math.unit(6 + 3/12, "feet"),
  42553. name: "Front",
  42554. image: {
  42555. source: "./media/characters/saelria/front.svg",
  42556. extra: 1243/1138,
  42557. bottom: 46/1289
  42558. }
  42559. },
  42560. },
  42561. [
  42562. {
  42563. name: "Micro",
  42564. height: math.unit(6, "inches"),
  42565. },
  42566. {
  42567. name: "Normal",
  42568. height: math.unit(6 + 3/12, "feet"),
  42569. default: true
  42570. },
  42571. {
  42572. name: "Macro",
  42573. height: math.unit(25, "feet")
  42574. },
  42575. ]
  42576. ))
  42577. characterMakers.push(() => makeCharacter(
  42578. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42579. {
  42580. front: {
  42581. height: math.unit(80, "meters"),
  42582. weight: math.unit(7000, "tonnes"),
  42583. name: "Front",
  42584. image: {
  42585. source: "./media/characters/tef/front.svg",
  42586. extra: 2036/1991,
  42587. bottom: 54/2090
  42588. }
  42589. },
  42590. back: {
  42591. height: math.unit(80, "meters"),
  42592. weight: math.unit(7000, "tonnes"),
  42593. name: "Back",
  42594. image: {
  42595. source: "./media/characters/tef/back.svg",
  42596. extra: 2036/1991,
  42597. bottom: 54/2090
  42598. }
  42599. },
  42600. },
  42601. [
  42602. {
  42603. name: "Macro",
  42604. height: math.unit(80, "meters"),
  42605. default: true
  42606. },
  42607. ]
  42608. ))
  42609. characterMakers.push(() => makeCharacter(
  42610. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42611. {
  42612. front: {
  42613. height: math.unit(13, "feet"),
  42614. weight: math.unit(6, "tons"),
  42615. name: "Front",
  42616. image: {
  42617. source: "./media/characters/rover/front.svg",
  42618. extra: 1233/1156,
  42619. bottom: 50/1283
  42620. }
  42621. },
  42622. back: {
  42623. height: math.unit(13, "feet"),
  42624. weight: math.unit(6, "tons"),
  42625. name: "Back",
  42626. image: {
  42627. source: "./media/characters/rover/back.svg",
  42628. extra: 1327/1258,
  42629. bottom: 39/1366
  42630. }
  42631. },
  42632. },
  42633. [
  42634. {
  42635. name: "Normal",
  42636. height: math.unit(13, "feet"),
  42637. default: true
  42638. },
  42639. {
  42640. name: "Macro",
  42641. height: math.unit(1300, "feet")
  42642. },
  42643. {
  42644. name: "Megamacro",
  42645. height: math.unit(1300, "miles")
  42646. },
  42647. {
  42648. name: "Gigamacro",
  42649. height: math.unit(1300000, "miles")
  42650. },
  42651. ]
  42652. ))
  42653. characterMakers.push(() => makeCharacter(
  42654. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42655. {
  42656. front: {
  42657. height: math.unit(6, "feet"),
  42658. weight: math.unit(150, "lb"),
  42659. name: "Front",
  42660. image: {
  42661. source: "./media/characters/ariz/front.svg",
  42662. extra: 1401/1346,
  42663. bottom: 5/1406
  42664. }
  42665. },
  42666. },
  42667. [
  42668. {
  42669. name: "Normal",
  42670. height: math.unit(10, "feet"),
  42671. default: true
  42672. },
  42673. ]
  42674. ))
  42675. characterMakers.push(() => makeCharacter(
  42676. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42677. {
  42678. front: {
  42679. height: math.unit(6, "feet"),
  42680. weight: math.unit(140, "lb"),
  42681. name: "Front",
  42682. image: {
  42683. source: "./media/characters/sigrun/front.svg",
  42684. extra: 1418/1359,
  42685. bottom: 27/1445
  42686. }
  42687. },
  42688. },
  42689. [
  42690. {
  42691. name: "Macro",
  42692. height: math.unit(35, "feet"),
  42693. default: true
  42694. },
  42695. ]
  42696. ))
  42697. characterMakers.push(() => makeCharacter(
  42698. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42699. {
  42700. front: {
  42701. height: math.unit(6, "feet"),
  42702. weight: math.unit(150, "lb"),
  42703. name: "Front",
  42704. image: {
  42705. source: "./media/characters/numin/front.svg",
  42706. extra: 1433/1388,
  42707. bottom: 12/1445
  42708. }
  42709. },
  42710. },
  42711. [
  42712. {
  42713. name: "Macro",
  42714. height: math.unit(21.5, "km"),
  42715. default: true
  42716. },
  42717. ]
  42718. ))
  42719. characterMakers.push(() => makeCharacter(
  42720. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42721. {
  42722. front: {
  42723. height: math.unit(6, "feet"),
  42724. weight: math.unit(463, "lb"),
  42725. name: "Front",
  42726. image: {
  42727. source: "./media/characters/melwa/front.svg",
  42728. extra: 1307/1248,
  42729. bottom: 93/1400
  42730. }
  42731. },
  42732. },
  42733. [
  42734. {
  42735. name: "Macro",
  42736. height: math.unit(50, "meters"),
  42737. default: true
  42738. },
  42739. ]
  42740. ))
  42741. characterMakers.push(() => makeCharacter(
  42742. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42743. {
  42744. front: {
  42745. height: math.unit(325, "feet"),
  42746. name: "Front",
  42747. image: {
  42748. source: "./media/characters/zorkaiju/front.svg",
  42749. extra: 1955/1814,
  42750. bottom: 40/1995
  42751. }
  42752. },
  42753. frontExtended: {
  42754. height: math.unit(325, "feet"),
  42755. name: "Front (Extended)",
  42756. image: {
  42757. source: "./media/characters/zorkaiju/front-extended.svg",
  42758. extra: 1955/1814,
  42759. bottom: 40/1995
  42760. }
  42761. },
  42762. side: {
  42763. height: math.unit(325, "feet"),
  42764. name: "Side",
  42765. image: {
  42766. source: "./media/characters/zorkaiju/side.svg",
  42767. extra: 1495/1396,
  42768. bottom: 17/1512
  42769. }
  42770. },
  42771. sideExtended: {
  42772. height: math.unit(325, "feet"),
  42773. name: "Side (Extended)",
  42774. image: {
  42775. source: "./media/characters/zorkaiju/side-extended.svg",
  42776. extra: 1495/1396,
  42777. bottom: 17/1512
  42778. }
  42779. },
  42780. back: {
  42781. height: math.unit(325, "feet"),
  42782. name: "Back",
  42783. image: {
  42784. source: "./media/characters/zorkaiju/back.svg",
  42785. extra: 1959/1821,
  42786. bottom: 31/1990
  42787. }
  42788. },
  42789. backExtended: {
  42790. height: math.unit(325, "feet"),
  42791. name: "Back (Extended)",
  42792. image: {
  42793. source: "./media/characters/zorkaiju/back-extended.svg",
  42794. extra: 1959/1821,
  42795. bottom: 31/1990
  42796. }
  42797. },
  42798. hand: {
  42799. height: math.unit(58.4, "feet"),
  42800. name: "Hand",
  42801. image: {
  42802. source: "./media/characters/zorkaiju/hand.svg"
  42803. }
  42804. },
  42805. handExtended: {
  42806. height: math.unit(61.4, "feet"),
  42807. name: "Hand (Extended)",
  42808. image: {
  42809. source: "./media/characters/zorkaiju/hand-extended.svg"
  42810. }
  42811. },
  42812. foot: {
  42813. height: math.unit(95, "feet"),
  42814. name: "Foot",
  42815. image: {
  42816. source: "./media/characters/zorkaiju/foot.svg"
  42817. }
  42818. },
  42819. leftArm: {
  42820. height: math.unit(59, "feet"),
  42821. name: "Left Arm",
  42822. image: {
  42823. source: "./media/characters/zorkaiju/left-arm.svg"
  42824. }
  42825. },
  42826. rightArm: {
  42827. height: math.unit(59, "feet"),
  42828. name: "Right Arm",
  42829. image: {
  42830. source: "./media/characters/zorkaiju/right-arm.svg"
  42831. }
  42832. },
  42833. leftArmExtended: {
  42834. height: math.unit(59 * 1.033546, "feet"),
  42835. name: "Left Arm (Extended)",
  42836. image: {
  42837. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42838. }
  42839. },
  42840. rightArmExtended: {
  42841. height: math.unit(59 * 1.0496, "feet"),
  42842. name: "Right Arm (Extended)",
  42843. image: {
  42844. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42845. }
  42846. },
  42847. tail: {
  42848. height: math.unit(104, "feet"),
  42849. name: "Tail",
  42850. image: {
  42851. source: "./media/characters/zorkaiju/tail.svg"
  42852. }
  42853. },
  42854. tailExtended: {
  42855. height: math.unit(104, "feet"),
  42856. name: "Tail (Extended)",
  42857. image: {
  42858. source: "./media/characters/zorkaiju/tail-extended.svg"
  42859. }
  42860. },
  42861. tailBottom: {
  42862. height: math.unit(104, "feet"),
  42863. name: "Tail Bottom",
  42864. image: {
  42865. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42866. }
  42867. },
  42868. crystal: {
  42869. height: math.unit(27.54, "feet"),
  42870. name: "Crystal",
  42871. image: {
  42872. source: "./media/characters/zorkaiju/crystal.svg"
  42873. }
  42874. },
  42875. },
  42876. [
  42877. {
  42878. name: "Kaiju",
  42879. height: math.unit(325, "feet"),
  42880. default: true
  42881. },
  42882. ]
  42883. ))
  42884. characterMakers.push(() => makeCharacter(
  42885. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42886. {
  42887. front: {
  42888. height: math.unit(6 + 1/12, "feet"),
  42889. weight: math.unit(115, "lb"),
  42890. name: "Front",
  42891. image: {
  42892. source: "./media/characters/bailey-belfry/front.svg",
  42893. extra: 1240/1121,
  42894. bottom: 101/1341
  42895. }
  42896. },
  42897. },
  42898. [
  42899. {
  42900. name: "Normal",
  42901. height: math.unit(6 + 1/12, "feet"),
  42902. default: true
  42903. },
  42904. ]
  42905. ))
  42906. characterMakers.push(() => makeCharacter(
  42907. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42908. {
  42909. side: {
  42910. height: math.unit(4, "meters"),
  42911. weight: math.unit(250, "kg"),
  42912. name: "Side",
  42913. image: {
  42914. source: "./media/characters/blacky/side.svg",
  42915. extra: 1027/919,
  42916. bottom: 43/1070
  42917. }
  42918. },
  42919. maw: {
  42920. height: math.unit(1, "meters"),
  42921. name: "Maw",
  42922. image: {
  42923. source: "./media/characters/blacky/maw.svg"
  42924. }
  42925. },
  42926. paw: {
  42927. height: math.unit(1, "meters"),
  42928. name: "Paw",
  42929. image: {
  42930. source: "./media/characters/blacky/paw.svg"
  42931. }
  42932. },
  42933. },
  42934. [
  42935. {
  42936. name: "Normal",
  42937. height: math.unit(4, "meters"),
  42938. default: true
  42939. },
  42940. ]
  42941. ))
  42942. characterMakers.push(() => makeCharacter(
  42943. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42944. {
  42945. front: {
  42946. height: math.unit(170, "cm"),
  42947. weight: math.unit(66, "kg"),
  42948. name: "Front",
  42949. image: {
  42950. source: "./media/characters/thux-ei/front.svg",
  42951. extra: 1109/1011,
  42952. bottom: 8/1117
  42953. }
  42954. },
  42955. },
  42956. [
  42957. {
  42958. name: "Normal",
  42959. height: math.unit(170, "cm"),
  42960. default: true
  42961. },
  42962. ]
  42963. ))
  42964. characterMakers.push(() => makeCharacter(
  42965. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42966. {
  42967. front: {
  42968. height: math.unit(5, "feet"),
  42969. weight: math.unit(120, "lb"),
  42970. name: "Front",
  42971. image: {
  42972. source: "./media/characters/roxanne-voltaire/front.svg",
  42973. extra: 1901/1779,
  42974. bottom: 53/1954
  42975. }
  42976. },
  42977. },
  42978. [
  42979. {
  42980. name: "Normal",
  42981. height: math.unit(5, "feet"),
  42982. default: true
  42983. },
  42984. {
  42985. name: "Giant",
  42986. height: math.unit(50, "feet")
  42987. },
  42988. {
  42989. name: "Titan",
  42990. height: math.unit(500, "feet")
  42991. },
  42992. {
  42993. name: "Macro",
  42994. height: math.unit(5000, "feet")
  42995. },
  42996. {
  42997. name: "Megamacro",
  42998. height: math.unit(50000, "feet")
  42999. },
  43000. {
  43001. name: "Gigamacro",
  43002. height: math.unit(500000, "feet")
  43003. },
  43004. {
  43005. name: "Teramacro",
  43006. height: math.unit(5e6, "feet")
  43007. },
  43008. ]
  43009. ))
  43010. characterMakers.push(() => makeCharacter(
  43011. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43012. {
  43013. front: {
  43014. height: math.unit(6 + 2/12, "feet"),
  43015. name: "Front",
  43016. image: {
  43017. source: "./media/characters/squeaks/front.svg",
  43018. extra: 1823/1768,
  43019. bottom: 138/1961
  43020. }
  43021. },
  43022. },
  43023. [
  43024. {
  43025. name: "Micro",
  43026. height: math.unit(0.5, "inches")
  43027. },
  43028. {
  43029. name: "Normal",
  43030. height: math.unit(6 + 2/12, "feet"),
  43031. default: true
  43032. },
  43033. {
  43034. name: "Macro",
  43035. height: math.unit(600, "feet")
  43036. },
  43037. ]
  43038. ))
  43039. characterMakers.push(() => makeCharacter(
  43040. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43041. {
  43042. front: {
  43043. height: math.unit(1.72, "meters"),
  43044. name: "Front",
  43045. image: {
  43046. source: "./media/characters/archinger/front.svg",
  43047. extra: 1861/1675,
  43048. bottom: 125/1986
  43049. }
  43050. },
  43051. back: {
  43052. height: math.unit(1.72, "meters"),
  43053. name: "Back",
  43054. image: {
  43055. source: "./media/characters/archinger/back.svg",
  43056. extra: 1844/1701,
  43057. bottom: 104/1948
  43058. }
  43059. },
  43060. cock: {
  43061. height: math.unit(0.59, "feet"),
  43062. name: "Cock",
  43063. image: {
  43064. source: "./media/characters/archinger/cock.svg"
  43065. }
  43066. },
  43067. },
  43068. [
  43069. {
  43070. name: "Normal",
  43071. height: math.unit(1.72, "meters"),
  43072. default: true
  43073. },
  43074. {
  43075. name: "Macro",
  43076. height: math.unit(84, "meters")
  43077. },
  43078. {
  43079. name: "Macro+",
  43080. height: math.unit(112, "meters")
  43081. },
  43082. {
  43083. name: "Macro++",
  43084. height: math.unit(960, "meters")
  43085. },
  43086. {
  43087. name: "Macro+++",
  43088. height: math.unit(4, "km")
  43089. },
  43090. {
  43091. name: "Macro++++",
  43092. height: math.unit(48, "km")
  43093. },
  43094. {
  43095. name: "Macro+++++",
  43096. height: math.unit(4500, "km")
  43097. },
  43098. ]
  43099. ))
  43100. characterMakers.push(() => makeCharacter(
  43101. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43102. {
  43103. front: {
  43104. height: math.unit(5 + 5/12, "feet"),
  43105. name: "Front",
  43106. image: {
  43107. source: "./media/characters/alsnapz/front.svg",
  43108. extra: 1157/1065,
  43109. bottom: 42/1199
  43110. }
  43111. },
  43112. },
  43113. [
  43114. {
  43115. name: "Normal",
  43116. height: math.unit(5 + 5/12, "feet"),
  43117. default: true
  43118. },
  43119. ]
  43120. ))
  43121. characterMakers.push(() => makeCharacter(
  43122. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43123. {
  43124. side: {
  43125. height: math.unit(3.2, "earths"),
  43126. name: "Side",
  43127. image: {
  43128. source: "./media/characters/mag/side.svg",
  43129. extra: 1331/1008,
  43130. bottom: 52/1383
  43131. }
  43132. },
  43133. wing: {
  43134. height: math.unit(1.94, "earths"),
  43135. name: "Wing",
  43136. image: {
  43137. source: "./media/characters/mag/wing.svg"
  43138. }
  43139. },
  43140. dick: {
  43141. height: math.unit(1.8, "earths"),
  43142. name: "Dick",
  43143. image: {
  43144. source: "./media/characters/mag/dick.svg"
  43145. }
  43146. },
  43147. ass: {
  43148. height: math.unit(1.33, "earths"),
  43149. name: "Ass",
  43150. image: {
  43151. source: "./media/characters/mag/ass.svg"
  43152. }
  43153. },
  43154. head: {
  43155. height: math.unit(1.1, "earths"),
  43156. name: "Head",
  43157. image: {
  43158. source: "./media/characters/mag/head.svg"
  43159. }
  43160. },
  43161. maw: {
  43162. height: math.unit(1.62, "earths"),
  43163. name: "Maw",
  43164. image: {
  43165. source: "./media/characters/mag/maw.svg"
  43166. }
  43167. },
  43168. },
  43169. [
  43170. {
  43171. name: "Small",
  43172. height: math.unit(162, "feet")
  43173. },
  43174. {
  43175. name: "Normal",
  43176. height: math.unit(3.2, "earths"),
  43177. default: true
  43178. },
  43179. ]
  43180. ))
  43181. characterMakers.push(() => makeCharacter(
  43182. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43183. {
  43184. front: {
  43185. height: math.unit(512, "feet"),
  43186. weight: math.unit(63509, "tonnes"),
  43187. name: "Front",
  43188. image: {
  43189. source: "./media/characters/vorrel-harroc/front.svg",
  43190. extra: 1075/1063,
  43191. bottom: 62/1137
  43192. }
  43193. },
  43194. },
  43195. [
  43196. {
  43197. name: "Normal",
  43198. height: math.unit(10, "feet")
  43199. },
  43200. {
  43201. name: "Macro",
  43202. height: math.unit(512, "feet"),
  43203. default: true
  43204. },
  43205. {
  43206. name: "Megamacro",
  43207. height: math.unit(256, "miles")
  43208. },
  43209. {
  43210. name: "Gigamacro",
  43211. height: math.unit(4096, "miles")
  43212. },
  43213. ]
  43214. ))
  43215. characterMakers.push(() => makeCharacter(
  43216. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43217. {
  43218. side: {
  43219. height: math.unit(50, "feet"),
  43220. name: "Side",
  43221. image: {
  43222. source: "./media/characters/froimar/side.svg",
  43223. extra: 855/638,
  43224. bottom: 99/954
  43225. }
  43226. },
  43227. },
  43228. [
  43229. {
  43230. name: "Macro",
  43231. height: math.unit(50, "feet"),
  43232. default: true
  43233. },
  43234. ]
  43235. ))
  43236. characterMakers.push(() => makeCharacter(
  43237. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43238. {
  43239. front: {
  43240. height: math.unit(210, "miles"),
  43241. name: "Front",
  43242. image: {
  43243. source: "./media/characters/timothy/front.svg",
  43244. extra: 1007/943,
  43245. bottom: 62/1069
  43246. }
  43247. },
  43248. frontSkirt: {
  43249. height: math.unit(210, "miles"),
  43250. name: "Front (Skirt)",
  43251. image: {
  43252. source: "./media/characters/timothy/front-skirt.svg",
  43253. extra: 1007/943,
  43254. bottom: 62/1069
  43255. }
  43256. },
  43257. frontCoat: {
  43258. height: math.unit(210, "miles"),
  43259. name: "Front (Coat)",
  43260. image: {
  43261. source: "./media/characters/timothy/front-coat.svg",
  43262. extra: 1007/943,
  43263. bottom: 62/1069
  43264. }
  43265. },
  43266. },
  43267. [
  43268. {
  43269. name: "Macro",
  43270. height: math.unit(210, "miles"),
  43271. default: true
  43272. },
  43273. {
  43274. name: "Megamacro",
  43275. height: math.unit(210000, "miles")
  43276. },
  43277. ]
  43278. ))
  43279. characterMakers.push(() => makeCharacter(
  43280. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43281. {
  43282. front: {
  43283. height: math.unit(188, "feet"),
  43284. name: "Front",
  43285. image: {
  43286. source: "./media/characters/pyotr/front.svg",
  43287. extra: 1912/1826,
  43288. bottom: 18/1930
  43289. }
  43290. },
  43291. },
  43292. [
  43293. {
  43294. name: "Macro",
  43295. height: math.unit(188, "feet"),
  43296. default: true
  43297. },
  43298. {
  43299. name: "Megamacro",
  43300. height: math.unit(8, "miles")
  43301. },
  43302. ]
  43303. ))
  43304. characterMakers.push(() => makeCharacter(
  43305. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43306. {
  43307. side: {
  43308. height: math.unit(10, "feet"),
  43309. weight: math.unit(4500, "lb"),
  43310. name: "Side",
  43311. image: {
  43312. source: "./media/characters/ackart/side.svg",
  43313. extra: 1776/1668,
  43314. bottom: 116/1892
  43315. }
  43316. },
  43317. },
  43318. [
  43319. {
  43320. name: "Normal",
  43321. height: math.unit(10, "feet"),
  43322. default: true
  43323. },
  43324. ]
  43325. ))
  43326. characterMakers.push(() => makeCharacter(
  43327. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43328. {
  43329. side: {
  43330. height: math.unit(21, "feet"),
  43331. name: "Side",
  43332. image: {
  43333. source: "./media/characters/nolow/side.svg",
  43334. extra: 1484/1434,
  43335. bottom: 85/1569
  43336. }
  43337. },
  43338. sideErect: {
  43339. height: math.unit(21, "feet"),
  43340. name: "Side-erect",
  43341. image: {
  43342. source: "./media/characters/nolow/side-erect.svg",
  43343. extra: 1484/1434,
  43344. bottom: 85/1569
  43345. }
  43346. },
  43347. },
  43348. [
  43349. {
  43350. name: "Regular",
  43351. height: math.unit(12, "feet")
  43352. },
  43353. {
  43354. name: "Big Chee",
  43355. height: math.unit(21, "feet"),
  43356. default: true
  43357. },
  43358. ]
  43359. ))
  43360. characterMakers.push(() => makeCharacter(
  43361. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43362. {
  43363. front: {
  43364. height: math.unit(7, "feet"),
  43365. weight: math.unit(250, "lb"),
  43366. name: "Front",
  43367. image: {
  43368. source: "./media/characters/nines/front.svg",
  43369. extra: 1741/1607,
  43370. bottom: 41/1782
  43371. }
  43372. },
  43373. side: {
  43374. height: math.unit(7, "feet"),
  43375. weight: math.unit(250, "lb"),
  43376. name: "Side",
  43377. image: {
  43378. source: "./media/characters/nines/side.svg",
  43379. extra: 1854/1735,
  43380. bottom: 93/1947
  43381. }
  43382. },
  43383. back: {
  43384. height: math.unit(7, "feet"),
  43385. weight: math.unit(250, "lb"),
  43386. name: "Back",
  43387. image: {
  43388. source: "./media/characters/nines/back.svg",
  43389. extra: 1748/1615,
  43390. bottom: 20/1768
  43391. }
  43392. },
  43393. },
  43394. [
  43395. {
  43396. name: "Megamacro",
  43397. height: math.unit(99, "km"),
  43398. default: true
  43399. },
  43400. ]
  43401. ))
  43402. characterMakers.push(() => makeCharacter(
  43403. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43404. {
  43405. front: {
  43406. height: math.unit(5 + 10/12, "feet"),
  43407. weight: math.unit(210, "lb"),
  43408. name: "Front",
  43409. image: {
  43410. source: "./media/characters/zenith/front.svg",
  43411. extra: 1531/1452,
  43412. bottom: 198/1729
  43413. }
  43414. },
  43415. back: {
  43416. height: math.unit(5 + 10/12, "feet"),
  43417. weight: math.unit(210, "lb"),
  43418. name: "Back",
  43419. image: {
  43420. source: "./media/characters/zenith/back.svg",
  43421. extra: 1571/1487,
  43422. bottom: 75/1646
  43423. }
  43424. },
  43425. },
  43426. [
  43427. {
  43428. name: "Normal",
  43429. height: math.unit(5 + 10/12, "feet"),
  43430. default: true
  43431. }
  43432. ]
  43433. ))
  43434. characterMakers.push(() => makeCharacter(
  43435. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43436. {
  43437. front: {
  43438. height: math.unit(4, "feet"),
  43439. weight: math.unit(60, "lb"),
  43440. name: "Front",
  43441. image: {
  43442. source: "./media/characters/jasper/front.svg",
  43443. extra: 1450/1379,
  43444. bottom: 19/1469
  43445. }
  43446. },
  43447. },
  43448. [
  43449. {
  43450. name: "Normal",
  43451. height: math.unit(4, "feet"),
  43452. default: true
  43453. },
  43454. ]
  43455. ))
  43456. characterMakers.push(() => makeCharacter(
  43457. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43458. {
  43459. front: {
  43460. height: math.unit(6 + 5/12, "feet"),
  43461. weight: math.unit(290, "lb"),
  43462. name: "Front",
  43463. image: {
  43464. source: "./media/characters/tiberius-thyben/front.svg",
  43465. extra: 757/739,
  43466. bottom: 39/796
  43467. }
  43468. },
  43469. },
  43470. [
  43471. {
  43472. name: "Micro",
  43473. height: math.unit(1.5, "inches")
  43474. },
  43475. {
  43476. name: "Normal",
  43477. height: math.unit(6 + 5/12, "feet"),
  43478. default: true
  43479. },
  43480. {
  43481. name: "Macro",
  43482. height: math.unit(300, "feet")
  43483. },
  43484. ]
  43485. ))
  43486. characterMakers.push(() => makeCharacter(
  43487. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43488. {
  43489. front: {
  43490. height: math.unit(5 + 6/12, "feet"),
  43491. weight: math.unit(60, "kg"),
  43492. name: "Front",
  43493. image: {
  43494. source: "./media/characters/sabre/front.svg",
  43495. extra: 738/671,
  43496. bottom: 27/765
  43497. }
  43498. },
  43499. },
  43500. [
  43501. {
  43502. name: "Teeny",
  43503. height: math.unit(2, "inches")
  43504. },
  43505. {
  43506. name: "Smol",
  43507. height: math.unit(8, "inches")
  43508. },
  43509. {
  43510. name: "Normal",
  43511. height: math.unit(5 + 6/12, "feet"),
  43512. default: true
  43513. },
  43514. {
  43515. name: "Mini-Macro",
  43516. height: math.unit(15, "feet")
  43517. },
  43518. {
  43519. name: "Macro",
  43520. height: math.unit(50, "feet")
  43521. },
  43522. ]
  43523. ))
  43524. characterMakers.push(() => makeCharacter(
  43525. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43526. {
  43527. front: {
  43528. height: math.unit(6 + 4/12, "feet"),
  43529. weight: math.unit(170, "lb"),
  43530. name: "Front",
  43531. image: {
  43532. source: "./media/characters/charlie/front.svg",
  43533. extra: 1348/1228,
  43534. bottom: 15/1363
  43535. }
  43536. },
  43537. },
  43538. [
  43539. {
  43540. name: "Macro",
  43541. height: math.unit(1700, "meters"),
  43542. default: true
  43543. },
  43544. {
  43545. name: "MegaMacro",
  43546. height: math.unit(20400, "meters")
  43547. },
  43548. ]
  43549. ))
  43550. characterMakers.push(() => makeCharacter(
  43551. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43552. {
  43553. front: {
  43554. height: math.unit(6 + 3/12, "feet"),
  43555. weight: math.unit(185, "lb"),
  43556. name: "Front",
  43557. image: {
  43558. source: "./media/characters/susan-grant/front.svg",
  43559. extra: 1351/1327,
  43560. bottom: 26/1377
  43561. }
  43562. },
  43563. },
  43564. [
  43565. {
  43566. name: "Normal",
  43567. height: math.unit(6 + 3/12, "feet"),
  43568. default: true
  43569. },
  43570. {
  43571. name: "Macro",
  43572. height: math.unit(225, "feet")
  43573. },
  43574. {
  43575. name: "Macro+",
  43576. height: math.unit(900, "feet")
  43577. },
  43578. {
  43579. name: "MegaMacro",
  43580. height: math.unit(14400, "feet")
  43581. },
  43582. ]
  43583. ))
  43584. characterMakers.push(() => makeCharacter(
  43585. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43586. {
  43587. front: {
  43588. height: math.unit(5 + 4/12, "feet"),
  43589. weight: math.unit(110, "lb"),
  43590. name: "Front",
  43591. image: {
  43592. source: "./media/characters/axel-isanov/front.svg",
  43593. extra: 1096/1065,
  43594. bottom: 13/1109
  43595. }
  43596. },
  43597. },
  43598. [
  43599. {
  43600. name: "Normal",
  43601. height: math.unit(5 + 4/12, "feet"),
  43602. default: true
  43603. },
  43604. ]
  43605. ))
  43606. characterMakers.push(() => makeCharacter(
  43607. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43608. {
  43609. front: {
  43610. height: math.unit(9, "feet"),
  43611. weight: math.unit(467, "lb"),
  43612. name: "Front",
  43613. image: {
  43614. source: "./media/characters/necahual/front.svg",
  43615. extra: 920/873,
  43616. bottom: 26/946
  43617. }
  43618. },
  43619. back: {
  43620. height: math.unit(9, "feet"),
  43621. weight: math.unit(467, "lb"),
  43622. name: "Back",
  43623. image: {
  43624. source: "./media/characters/necahual/back.svg",
  43625. extra: 930/884,
  43626. bottom: 16/946
  43627. }
  43628. },
  43629. frontUnderwear: {
  43630. height: math.unit(9, "feet"),
  43631. weight: math.unit(467, "lb"),
  43632. name: "Front (Underwear)",
  43633. image: {
  43634. source: "./media/characters/necahual/front-underwear.svg",
  43635. extra: 920/873,
  43636. bottom: 26/946
  43637. }
  43638. },
  43639. frontDressed: {
  43640. height: math.unit(9, "feet"),
  43641. weight: math.unit(467, "lb"),
  43642. name: "Front (Dressed)",
  43643. image: {
  43644. source: "./media/characters/necahual/front-dressed.svg",
  43645. extra: 920/873,
  43646. bottom: 26/946
  43647. }
  43648. },
  43649. },
  43650. [
  43651. {
  43652. name: "Comprsesed",
  43653. height: math.unit(9, "feet")
  43654. },
  43655. {
  43656. name: "Natural",
  43657. height: math.unit(15, "feet"),
  43658. default: true
  43659. },
  43660. {
  43661. name: "Boosted",
  43662. height: math.unit(50, "feet")
  43663. },
  43664. {
  43665. name: "Boosted+",
  43666. height: math.unit(150, "feet")
  43667. },
  43668. {
  43669. name: "Max",
  43670. height: math.unit(500, "feet")
  43671. },
  43672. ]
  43673. ))
  43674. characterMakers.push(() => makeCharacter(
  43675. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43676. {
  43677. front: {
  43678. height: math.unit(22 + 1/12, "feet"),
  43679. weight: math.unit(3200, "lb"),
  43680. name: "Front",
  43681. image: {
  43682. source: "./media/characters/theo-acacia/front.svg",
  43683. extra: 1796/1741,
  43684. bottom: 83/1879
  43685. }
  43686. },
  43687. frontUnderwear: {
  43688. height: math.unit(22 + 1/12, "feet"),
  43689. weight: math.unit(3200, "lb"),
  43690. name: "Front (Underwear)",
  43691. image: {
  43692. source: "./media/characters/theo-acacia/front-underwear.svg",
  43693. extra: 1796/1741,
  43694. bottom: 83/1879
  43695. }
  43696. },
  43697. frontNude: {
  43698. height: math.unit(22 + 1/12, "feet"),
  43699. weight: math.unit(3200, "lb"),
  43700. name: "Front (Nude)",
  43701. image: {
  43702. source: "./media/characters/theo-acacia/front-nude.svg",
  43703. extra: 1796/1741,
  43704. bottom: 83/1879
  43705. }
  43706. },
  43707. },
  43708. [
  43709. {
  43710. name: "Normal",
  43711. height: math.unit(22 + 1/12, "feet"),
  43712. default: true
  43713. },
  43714. ]
  43715. ))
  43716. characterMakers.push(() => makeCharacter(
  43717. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43718. {
  43719. front: {
  43720. height: math.unit(20, "feet"),
  43721. name: "Front",
  43722. image: {
  43723. source: "./media/characters/astra/front.svg",
  43724. extra: 1850/1714,
  43725. bottom: 106/1956
  43726. }
  43727. },
  43728. frontUndressed: {
  43729. height: math.unit(20, "feet"),
  43730. name: "Front (Undressed)",
  43731. image: {
  43732. source: "./media/characters/astra/front-undressed.svg",
  43733. extra: 1926/1749,
  43734. bottom: 0/1926
  43735. }
  43736. },
  43737. hand: {
  43738. height: math.unit(1.53, "feet"),
  43739. name: "Hand",
  43740. image: {
  43741. source: "./media/characters/astra/hand.svg"
  43742. }
  43743. },
  43744. paw: {
  43745. height: math.unit(1.53, "feet"),
  43746. name: "Paw",
  43747. image: {
  43748. source: "./media/characters/astra/paw.svg"
  43749. }
  43750. },
  43751. },
  43752. [
  43753. {
  43754. name: "Smallest",
  43755. height: math.unit(20, "feet")
  43756. },
  43757. {
  43758. name: "Normal",
  43759. height: math.unit(1e9, "miles"),
  43760. default: true
  43761. },
  43762. {
  43763. name: "Larger",
  43764. height: math.unit(5, "multiverses")
  43765. },
  43766. {
  43767. name: "Largest",
  43768. height: math.unit(1e9, "multiverses")
  43769. },
  43770. ]
  43771. ))
  43772. characterMakers.push(() => makeCharacter(
  43773. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43774. {
  43775. front: {
  43776. height: math.unit(8, "feet"),
  43777. name: "Front",
  43778. image: {
  43779. source: "./media/characters/breanna/front.svg",
  43780. extra: 1912/1632,
  43781. bottom: 33/1945
  43782. }
  43783. },
  43784. },
  43785. [
  43786. {
  43787. name: "Smallest",
  43788. height: math.unit(8, "feet")
  43789. },
  43790. {
  43791. name: "Normal",
  43792. height: math.unit(1, "mile"),
  43793. default: true
  43794. },
  43795. {
  43796. name: "Maximum",
  43797. height: math.unit(1500000000000, "lightyears")
  43798. },
  43799. ]
  43800. ))
  43801. characterMakers.push(() => makeCharacter(
  43802. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43803. {
  43804. front: {
  43805. height: math.unit(5 + 11/12, "feet"),
  43806. weight: math.unit(155, "lb"),
  43807. name: "Front",
  43808. image: {
  43809. source: "./media/characters/cai/front.svg",
  43810. extra: 1823/1702,
  43811. bottom: 32/1855
  43812. }
  43813. },
  43814. back: {
  43815. height: math.unit(5 + 11/12, "feet"),
  43816. weight: math.unit(155, "lb"),
  43817. name: "Back",
  43818. image: {
  43819. source: "./media/characters/cai/back.svg",
  43820. extra: 1809/1708,
  43821. bottom: 31/1840
  43822. }
  43823. },
  43824. },
  43825. [
  43826. {
  43827. name: "Normal",
  43828. height: math.unit(5 + 11/12, "feet"),
  43829. default: true
  43830. },
  43831. {
  43832. name: "Big",
  43833. height: math.unit(15, "feet")
  43834. },
  43835. {
  43836. name: "Macro",
  43837. height: math.unit(200, "feet")
  43838. },
  43839. ]
  43840. ))
  43841. characterMakers.push(() => makeCharacter(
  43842. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43843. {
  43844. front: {
  43845. height: math.unit(5 + 6/12, "feet"),
  43846. weight: math.unit(160, "lb"),
  43847. name: "Front",
  43848. image: {
  43849. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43850. extra: 1227/1174,
  43851. bottom: 37/1264
  43852. }
  43853. },
  43854. },
  43855. [
  43856. {
  43857. name: "Macro",
  43858. height: math.unit(444, "meters"),
  43859. default: true
  43860. },
  43861. ]
  43862. ))
  43863. characterMakers.push(() => makeCharacter(
  43864. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43865. {
  43866. front: {
  43867. height: math.unit(18 + 7/12, "feet"),
  43868. name: "Front",
  43869. image: {
  43870. source: "./media/characters/rex/front.svg",
  43871. extra: 1941/1807,
  43872. bottom: 66/2007
  43873. }
  43874. },
  43875. back: {
  43876. height: math.unit(18 + 7/12, "feet"),
  43877. name: "Back",
  43878. image: {
  43879. source: "./media/characters/rex/back.svg",
  43880. extra: 1937/1822,
  43881. bottom: 42/1979
  43882. }
  43883. },
  43884. boot: {
  43885. height: math.unit(3.45, "feet"),
  43886. name: "Boot",
  43887. image: {
  43888. source: "./media/characters/rex/boot.svg"
  43889. }
  43890. },
  43891. paw: {
  43892. height: math.unit(4.17, "feet"),
  43893. name: "Paw",
  43894. image: {
  43895. source: "./media/characters/rex/paw.svg"
  43896. }
  43897. },
  43898. head: {
  43899. height: math.unit(6.728, "feet"),
  43900. name: "Head",
  43901. image: {
  43902. source: "./media/characters/rex/head.svg"
  43903. }
  43904. },
  43905. },
  43906. [
  43907. {
  43908. name: "Nano",
  43909. height: math.unit(18 + 7/12, "feet")
  43910. },
  43911. {
  43912. name: "Micro",
  43913. height: math.unit(1.5, "megameters")
  43914. },
  43915. {
  43916. name: "Normal",
  43917. height: math.unit(440, "megameters"),
  43918. default: true
  43919. },
  43920. {
  43921. name: "Macro",
  43922. height: math.unit(2.5, "gigameters")
  43923. },
  43924. {
  43925. name: "Gigamacro",
  43926. height: math.unit(2, "galaxies")
  43927. },
  43928. ]
  43929. ))
  43930. characterMakers.push(() => makeCharacter(
  43931. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43932. {
  43933. side: {
  43934. height: math.unit(32, "feet"),
  43935. weight: math.unit(250000, "lb"),
  43936. name: "Side",
  43937. image: {
  43938. source: "./media/characters/silverwing/side.svg",
  43939. extra: 1100/1019,
  43940. bottom: 204/1304
  43941. }
  43942. },
  43943. },
  43944. [
  43945. {
  43946. name: "Normal",
  43947. height: math.unit(32, "feet"),
  43948. default: true
  43949. },
  43950. ]
  43951. ))
  43952. characterMakers.push(() => makeCharacter(
  43953. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43954. {
  43955. front: {
  43956. height: math.unit(6 + 6/12, "feet"),
  43957. weight: math.unit(350, "lb"),
  43958. name: "Front",
  43959. image: {
  43960. source: "./media/characters/tristan-hawthorne/front.svg",
  43961. extra: 1159/1124,
  43962. bottom: 37/1196
  43963. },
  43964. form: "labrador",
  43965. default: true
  43966. },
  43967. skunkFront: {
  43968. height: math.unit(4 + 6/12, "feet"),
  43969. weight: math.unit(120, "lb"),
  43970. name: "Front",
  43971. image: {
  43972. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43973. extra: 1609/1551,
  43974. bottom: 169/1778
  43975. },
  43976. form: "skunk",
  43977. default: true
  43978. },
  43979. },
  43980. [
  43981. {
  43982. name: "Normal",
  43983. height: math.unit(6 + 6/12, "feet"),
  43984. form: "labrador",
  43985. default: true
  43986. },
  43987. {
  43988. name: "Normal",
  43989. height: math.unit(4 + 6/12, "feet"),
  43990. form: "skunk",
  43991. default: true
  43992. },
  43993. ],
  43994. {
  43995. "labrador": {
  43996. name: "Labrador",
  43997. default: true
  43998. },
  43999. "skunk": {
  44000. name: "Skunk"
  44001. }
  44002. }
  44003. ))
  44004. characterMakers.push(() => makeCharacter(
  44005. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44006. {
  44007. front: {
  44008. height: math.unit(5 + 11/12, "feet"),
  44009. weight: math.unit(190, "lb"),
  44010. name: "Front",
  44011. image: {
  44012. source: "./media/characters/mizu/front.svg",
  44013. extra: 1988/1788,
  44014. bottom: 14/2002
  44015. }
  44016. },
  44017. },
  44018. [
  44019. {
  44020. name: "Normal",
  44021. height: math.unit(5 + 11/12, "feet"),
  44022. default: true
  44023. },
  44024. ]
  44025. ))
  44026. characterMakers.push(() => makeCharacter(
  44027. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44028. {
  44029. front: {
  44030. height: math.unit(1.7, "feet"),
  44031. weight: math.unit(50, "lb"),
  44032. name: "Front",
  44033. image: {
  44034. source: "./media/characters/dechroma/front.svg",
  44035. extra: 1095/859,
  44036. bottom: 64/1159
  44037. }
  44038. },
  44039. },
  44040. [
  44041. {
  44042. name: "Normal",
  44043. height: math.unit(1.7, "feet"),
  44044. default: true
  44045. },
  44046. ]
  44047. ))
  44048. characterMakers.push(() => makeCharacter(
  44049. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44050. {
  44051. side: {
  44052. height: math.unit(30, "feet"),
  44053. name: "Side",
  44054. image: {
  44055. source: "./media/characters/veluren-thanazel/side.svg",
  44056. extra: 1611/633,
  44057. bottom: 118/1729
  44058. }
  44059. },
  44060. front: {
  44061. height: math.unit(30, "feet"),
  44062. name: "Front",
  44063. image: {
  44064. source: "./media/characters/veluren-thanazel/front.svg",
  44065. extra: 1486/636,
  44066. bottom: 238/1724
  44067. }
  44068. },
  44069. head: {
  44070. height: math.unit(21.4, "feet"),
  44071. name: "Head",
  44072. image: {
  44073. source: "./media/characters/veluren-thanazel/head.svg"
  44074. }
  44075. },
  44076. genitals: {
  44077. height: math.unit(19.4, "feet"),
  44078. name: "Genitals",
  44079. image: {
  44080. source: "./media/characters/veluren-thanazel/genitals.svg"
  44081. }
  44082. },
  44083. },
  44084. [
  44085. {
  44086. name: "Social",
  44087. height: math.unit(6, "feet")
  44088. },
  44089. {
  44090. name: "Play",
  44091. height: math.unit(12, "feet")
  44092. },
  44093. {
  44094. name: "True",
  44095. height: math.unit(30, "feet"),
  44096. default: true
  44097. },
  44098. ]
  44099. ))
  44100. characterMakers.push(() => makeCharacter(
  44101. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44102. {
  44103. front: {
  44104. height: math.unit(7 + 6/12, "feet"),
  44105. weight: math.unit(500, "kg"),
  44106. name: "Front",
  44107. image: {
  44108. source: "./media/characters/arcturas/front.svg",
  44109. extra: 1700/1500,
  44110. bottom: 145/1845
  44111. }
  44112. },
  44113. },
  44114. [
  44115. {
  44116. name: "Normal",
  44117. height: math.unit(7 + 6/12, "feet"),
  44118. default: true
  44119. },
  44120. ]
  44121. ))
  44122. characterMakers.push(() => makeCharacter(
  44123. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44124. {
  44125. side: {
  44126. height: math.unit(6, "feet"),
  44127. weight: math.unit(2, "tons"),
  44128. name: "Side",
  44129. image: {
  44130. source: "./media/characters/vitaen/side.svg",
  44131. extra: 1157/617,
  44132. bottom: 122/1279
  44133. }
  44134. },
  44135. },
  44136. [
  44137. {
  44138. name: "Normal",
  44139. height: math.unit(6, "feet"),
  44140. default: true
  44141. },
  44142. ]
  44143. ))
  44144. characterMakers.push(() => makeCharacter(
  44145. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44146. {
  44147. front: {
  44148. height: math.unit(19, "feet"),
  44149. name: "Front",
  44150. image: {
  44151. source: "./media/characters/fia-dreamweaver/front.svg",
  44152. extra: 1630/1504,
  44153. bottom: 25/1655
  44154. }
  44155. },
  44156. },
  44157. [
  44158. {
  44159. name: "Normal",
  44160. height: math.unit(19, "feet"),
  44161. default: true
  44162. },
  44163. ]
  44164. ))
  44165. characterMakers.push(() => makeCharacter(
  44166. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44167. {
  44168. front: {
  44169. height: math.unit(5 + 4/12, "feet"),
  44170. name: "Front",
  44171. image: {
  44172. source: "./media/characters/artan/front.svg",
  44173. extra: 1618/1535,
  44174. bottom: 46/1664
  44175. }
  44176. },
  44177. back: {
  44178. height: math.unit(5 + 4/12, "feet"),
  44179. name: "Back",
  44180. image: {
  44181. source: "./media/characters/artan/back.svg",
  44182. extra: 1618/1543,
  44183. bottom: 31/1649
  44184. }
  44185. },
  44186. },
  44187. [
  44188. {
  44189. name: "Normal",
  44190. height: math.unit(5 + 4/12, "feet"),
  44191. default: true
  44192. },
  44193. ]
  44194. ))
  44195. characterMakers.push(() => makeCharacter(
  44196. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44197. {
  44198. side: {
  44199. height: math.unit(182, "cm"),
  44200. weight: math.unit(1000, "lb"),
  44201. name: "Side",
  44202. image: {
  44203. source: "./media/characters/silver-dragon/side.svg",
  44204. extra: 710/287,
  44205. bottom: 88/798
  44206. }
  44207. },
  44208. },
  44209. [
  44210. {
  44211. name: "Normal",
  44212. height: math.unit(182, "cm"),
  44213. default: true
  44214. },
  44215. ]
  44216. ))
  44217. characterMakers.push(() => makeCharacter(
  44218. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44219. {
  44220. side: {
  44221. height: math.unit(6 + 6/12, "feet"),
  44222. weight: math.unit(1.5, "tons"),
  44223. name: "Side",
  44224. image: {
  44225. source: "./media/characters/zephyr/side.svg",
  44226. extra: 1433/586,
  44227. bottom: 109/1542
  44228. }
  44229. },
  44230. },
  44231. [
  44232. {
  44233. name: "Normal",
  44234. height: math.unit(6 + 6/12, "feet"),
  44235. default: true
  44236. },
  44237. ]
  44238. ))
  44239. characterMakers.push(() => makeCharacter(
  44240. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44241. {
  44242. side: {
  44243. height: math.unit(1, "feet"),
  44244. name: "Side",
  44245. image: {
  44246. source: "./media/characters/vixye/side.svg",
  44247. extra: 632/541,
  44248. bottom: 0/632
  44249. }
  44250. },
  44251. },
  44252. [
  44253. {
  44254. name: "Normal",
  44255. height: math.unit(1, "feet"),
  44256. default: true
  44257. },
  44258. {
  44259. name: "True",
  44260. height: math.unit(1e15, "multiverses")
  44261. },
  44262. ]
  44263. ))
  44264. characterMakers.push(() => makeCharacter(
  44265. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44266. {
  44267. front: {
  44268. height: math.unit(8 + 2/12, "feet"),
  44269. weight: math.unit(650, "lb"),
  44270. name: "Front",
  44271. image: {
  44272. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44273. extra: 1174/1137,
  44274. bottom: 82/1256
  44275. }
  44276. },
  44277. back: {
  44278. height: math.unit(8 + 2/12, "feet"),
  44279. weight: math.unit(650, "lb"),
  44280. name: "Back",
  44281. image: {
  44282. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44283. extra: 1204/1157,
  44284. bottom: 46/1250
  44285. }
  44286. },
  44287. },
  44288. [
  44289. {
  44290. name: "Wildform",
  44291. height: math.unit(8 + 2/12, "feet"),
  44292. default: true
  44293. },
  44294. ]
  44295. ))
  44296. characterMakers.push(() => makeCharacter(
  44297. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44298. {
  44299. front: {
  44300. height: math.unit(18, "feet"),
  44301. name: "Front",
  44302. image: {
  44303. source: "./media/characters/cyphin/front.svg",
  44304. extra: 970/886,
  44305. bottom: 42/1012
  44306. }
  44307. },
  44308. back: {
  44309. height: math.unit(18, "feet"),
  44310. name: "Back",
  44311. image: {
  44312. source: "./media/characters/cyphin/back.svg",
  44313. extra: 1009/894,
  44314. bottom: 24/1033
  44315. }
  44316. },
  44317. head: {
  44318. height: math.unit(5.05, "feet"),
  44319. name: "Head",
  44320. image: {
  44321. source: "./media/characters/cyphin/head.svg"
  44322. }
  44323. },
  44324. tailbud: {
  44325. height: math.unit(5, "feet"),
  44326. name: "Tailbud",
  44327. image: {
  44328. source: "./media/characters/cyphin/tailbud.svg"
  44329. }
  44330. },
  44331. },
  44332. [
  44333. ]
  44334. ))
  44335. characterMakers.push(() => makeCharacter(
  44336. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44337. {
  44338. side: {
  44339. height: math.unit(10, "feet"),
  44340. weight: math.unit(6, "tons"),
  44341. name: "Side",
  44342. image: {
  44343. source: "./media/characters/raijin/side.svg",
  44344. extra: 1529/613,
  44345. bottom: 337/1866
  44346. }
  44347. },
  44348. },
  44349. [
  44350. {
  44351. name: "Normal",
  44352. height: math.unit(10, "feet"),
  44353. default: true
  44354. },
  44355. ]
  44356. ))
  44357. characterMakers.push(() => makeCharacter(
  44358. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44359. {
  44360. side: {
  44361. height: math.unit(9, "feet"),
  44362. name: "Side",
  44363. image: {
  44364. source: "./media/characters/nilghais/side.svg",
  44365. extra: 1047/744,
  44366. bottom: 91/1138
  44367. }
  44368. },
  44369. head: {
  44370. height: math.unit(3.14, "feet"),
  44371. name: "Head",
  44372. image: {
  44373. source: "./media/characters/nilghais/head.svg"
  44374. }
  44375. },
  44376. mouth: {
  44377. height: math.unit(4.6, "feet"),
  44378. name: "Mouth",
  44379. image: {
  44380. source: "./media/characters/nilghais/mouth.svg"
  44381. }
  44382. },
  44383. wings: {
  44384. height: math.unit(24, "feet"),
  44385. name: "Wings",
  44386. image: {
  44387. source: "./media/characters/nilghais/wings.svg"
  44388. }
  44389. },
  44390. ass: {
  44391. height: math.unit(6.12, "feet"),
  44392. name: "Ass",
  44393. image: {
  44394. source: "./media/characters/nilghais/ass.svg"
  44395. }
  44396. },
  44397. },
  44398. [
  44399. {
  44400. name: "Normal",
  44401. height: math.unit(9, "feet"),
  44402. default: true
  44403. },
  44404. ]
  44405. ))
  44406. characterMakers.push(() => makeCharacter(
  44407. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44408. {
  44409. regular: {
  44410. height: math.unit(16 + 2/12, "feet"),
  44411. weight: math.unit(2300, "lb"),
  44412. name: "Regular",
  44413. image: {
  44414. source: "./media/characters/zolgar/regular.svg",
  44415. extra: 1246/1004,
  44416. bottom: 124/1370
  44417. }
  44418. },
  44419. boxers: {
  44420. height: math.unit(16 + 2/12, "feet"),
  44421. weight: math.unit(2300, "lb"),
  44422. name: "Boxers",
  44423. image: {
  44424. source: "./media/characters/zolgar/boxers.svg",
  44425. extra: 1246/1004,
  44426. bottom: 124/1370
  44427. }
  44428. },
  44429. armored: {
  44430. height: math.unit(16 + 2/12, "feet"),
  44431. weight: math.unit(2300, "lb"),
  44432. name: "Armored",
  44433. image: {
  44434. source: "./media/characters/zolgar/armored.svg",
  44435. extra: 1246/1004,
  44436. bottom: 124/1370
  44437. }
  44438. },
  44439. goth: {
  44440. height: math.unit(16 + 2/12, "feet"),
  44441. weight: math.unit(2300, "lb"),
  44442. name: "Goth",
  44443. image: {
  44444. source: "./media/characters/zolgar/goth.svg",
  44445. extra: 1246/1004,
  44446. bottom: 124/1370
  44447. }
  44448. },
  44449. },
  44450. [
  44451. {
  44452. name: "Shrunken Down",
  44453. height: math.unit(9 + 2/12, "feet")
  44454. },
  44455. {
  44456. name: "Normal",
  44457. height: math.unit(16 + 2/12, "feet"),
  44458. default: true
  44459. },
  44460. ]
  44461. ))
  44462. characterMakers.push(() => makeCharacter(
  44463. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44464. {
  44465. front: {
  44466. height: math.unit(6, "feet"),
  44467. weight: math.unit(168, "lb"),
  44468. name: "Front",
  44469. image: {
  44470. source: "./media/characters/luca/front.svg",
  44471. extra: 841/667,
  44472. bottom: 102/943
  44473. }
  44474. },
  44475. },
  44476. [
  44477. {
  44478. name: "Normal",
  44479. height: math.unit(6, "feet"),
  44480. default: true
  44481. },
  44482. ]
  44483. ))
  44484. characterMakers.push(() => makeCharacter(
  44485. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44486. {
  44487. side: {
  44488. height: math.unit(7 + 3/12, "feet"),
  44489. weight: math.unit(312, "lb"),
  44490. name: "Side",
  44491. image: {
  44492. source: "./media/characters/zezo/side.svg",
  44493. extra: 1192/1067,
  44494. bottom: 63/1255
  44495. }
  44496. },
  44497. },
  44498. [
  44499. {
  44500. name: "Normal",
  44501. height: math.unit(7 + 3/12, "feet"),
  44502. default: true
  44503. },
  44504. ]
  44505. ))
  44506. characterMakers.push(() => makeCharacter(
  44507. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44508. {
  44509. front: {
  44510. height: math.unit(5 + 5/12, "feet"),
  44511. weight: math.unit(170, "lb"),
  44512. name: "Front",
  44513. image: {
  44514. source: "./media/characters/mayso/front.svg",
  44515. extra: 1215/1108,
  44516. bottom: 16/1231
  44517. }
  44518. },
  44519. },
  44520. [
  44521. {
  44522. name: "Normal",
  44523. height: math.unit(5 + 5/12, "feet"),
  44524. default: true
  44525. },
  44526. ]
  44527. ))
  44528. characterMakers.push(() => makeCharacter(
  44529. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44530. {
  44531. front: {
  44532. height: math.unit(4 + 3/12, "feet"),
  44533. weight: math.unit(80, "lb"),
  44534. name: "Front",
  44535. image: {
  44536. source: "./media/characters/hess/front.svg",
  44537. extra: 1200/1123,
  44538. bottom: 16/1216
  44539. }
  44540. },
  44541. },
  44542. [
  44543. {
  44544. name: "Normal",
  44545. height: math.unit(4 + 3/12, "feet"),
  44546. default: true
  44547. },
  44548. ]
  44549. ))
  44550. characterMakers.push(() => makeCharacter(
  44551. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44552. {
  44553. front: {
  44554. height: math.unit(1.9, "meters"),
  44555. name: "Front",
  44556. image: {
  44557. source: "./media/characters/ashgar/front.svg",
  44558. extra: 1177/1146,
  44559. bottom: 99/1276
  44560. }
  44561. },
  44562. back: {
  44563. height: math.unit(1.9, "meters"),
  44564. name: "Back",
  44565. image: {
  44566. source: "./media/characters/ashgar/back.svg",
  44567. extra: 1201/1183,
  44568. bottom: 53/1254
  44569. }
  44570. },
  44571. feral: {
  44572. height: math.unit(1.4, "meters"),
  44573. name: "Feral",
  44574. image: {
  44575. source: "./media/characters/ashgar/feral.svg",
  44576. extra: 370/345,
  44577. bottom: 45/415
  44578. }
  44579. },
  44580. },
  44581. [
  44582. {
  44583. name: "Normal",
  44584. height: math.unit(1.9, "meters"),
  44585. default: true
  44586. },
  44587. ]
  44588. ))
  44589. characterMakers.push(() => makeCharacter(
  44590. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44591. {
  44592. regular: {
  44593. height: math.unit(6, "feet"),
  44594. weight: math.unit(220, "lb"),
  44595. name: "Regular",
  44596. image: {
  44597. source: "./media/characters/phillip/regular.svg",
  44598. extra: 1373/1277,
  44599. bottom: 75/1448
  44600. }
  44601. },
  44602. dressed: {
  44603. height: math.unit(6, "feet"),
  44604. weight: math.unit(220, "lb"),
  44605. name: "Dressed",
  44606. image: {
  44607. source: "./media/characters/phillip/dressed.svg",
  44608. extra: 1373/1277,
  44609. bottom: 75/1448
  44610. }
  44611. },
  44612. paw: {
  44613. height: math.unit(1.44, "feet"),
  44614. name: "Paw",
  44615. image: {
  44616. source: "./media/characters/phillip/paw.svg"
  44617. }
  44618. },
  44619. },
  44620. [
  44621. {
  44622. name: "Normal",
  44623. height: math.unit(6, "feet"),
  44624. default: true
  44625. },
  44626. ]
  44627. ))
  44628. characterMakers.push(() => makeCharacter(
  44629. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44630. {
  44631. side: {
  44632. height: math.unit(42, "feet"),
  44633. name: "Side",
  44634. image: {
  44635. source: "./media/characters/uvula/side.svg",
  44636. extra: 683/586,
  44637. bottom: 60/743
  44638. }
  44639. },
  44640. front: {
  44641. height: math.unit(42, "feet"),
  44642. name: "Front",
  44643. image: {
  44644. source: "./media/characters/uvula/front.svg",
  44645. extra: 705/613,
  44646. bottom: 54/759
  44647. }
  44648. },
  44649. maw: {
  44650. height: math.unit(23.5, "feet"),
  44651. name: "Maw",
  44652. image: {
  44653. source: "./media/characters/uvula/maw.svg"
  44654. }
  44655. },
  44656. },
  44657. [
  44658. {
  44659. name: "Original Size",
  44660. height: math.unit(14, "inches")
  44661. },
  44662. {
  44663. name: "Human Size",
  44664. height: math.unit(6, "feet")
  44665. },
  44666. {
  44667. name: "Big",
  44668. height: math.unit(42, "feet"),
  44669. default: true
  44670. },
  44671. {
  44672. name: "Bigger",
  44673. height: math.unit(100, "feet")
  44674. },
  44675. ]
  44676. ))
  44677. characterMakers.push(() => makeCharacter(
  44678. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44679. {
  44680. front: {
  44681. height: math.unit(5 + 11/12, "feet"),
  44682. name: "Front",
  44683. image: {
  44684. source: "./media/characters/lannah/front.svg",
  44685. extra: 1208/1113,
  44686. bottom: 97/1305
  44687. }
  44688. },
  44689. },
  44690. [
  44691. {
  44692. name: "Normal",
  44693. height: math.unit(5 + 11/12, "feet"),
  44694. default: true
  44695. },
  44696. ]
  44697. ))
  44698. characterMakers.push(() => makeCharacter(
  44699. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44700. {
  44701. front: {
  44702. height: math.unit(6 + 3/12, "feet"),
  44703. weight: math.unit(3.5, "tons"),
  44704. name: "Front",
  44705. image: {
  44706. source: "./media/characters/emberflame/front.svg",
  44707. extra: 1198/672,
  44708. bottom: 82/1280
  44709. }
  44710. },
  44711. side: {
  44712. height: math.unit(6 + 3/12, "feet"),
  44713. weight: math.unit(3.5, "tons"),
  44714. name: "Side",
  44715. image: {
  44716. source: "./media/characters/emberflame/side.svg",
  44717. extra: 938/527,
  44718. bottom: 56/994
  44719. }
  44720. },
  44721. },
  44722. [
  44723. {
  44724. name: "Normal",
  44725. height: math.unit(6 + 3/12, "feet"),
  44726. default: true
  44727. },
  44728. ]
  44729. ))
  44730. characterMakers.push(() => makeCharacter(
  44731. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44732. {
  44733. side: {
  44734. height: math.unit(17.5, "feet"),
  44735. weight: math.unit(35, "tons"),
  44736. name: "Side",
  44737. image: {
  44738. source: "./media/characters/sophie-ambrose/side.svg",
  44739. extra: 1573/1242,
  44740. bottom: 71/1644
  44741. }
  44742. },
  44743. maw: {
  44744. height: math.unit(7.4, "feet"),
  44745. name: "Maw",
  44746. image: {
  44747. source: "./media/characters/sophie-ambrose/maw.svg"
  44748. }
  44749. },
  44750. },
  44751. [
  44752. {
  44753. name: "Normal",
  44754. height: math.unit(17.5, "feet"),
  44755. default: true
  44756. },
  44757. ]
  44758. ))
  44759. characterMakers.push(() => makeCharacter(
  44760. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44761. {
  44762. front: {
  44763. height: math.unit(280, "feet"),
  44764. weight: math.unit(550, "tons"),
  44765. name: "Front",
  44766. image: {
  44767. source: "./media/characters/king-mugi/front.svg",
  44768. extra: 1102/947,
  44769. bottom: 104/1206
  44770. }
  44771. },
  44772. },
  44773. [
  44774. {
  44775. name: "King Mugi",
  44776. height: math.unit(280, "feet"),
  44777. default: true
  44778. },
  44779. ]
  44780. ))
  44781. characterMakers.push(() => makeCharacter(
  44782. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44783. {
  44784. front: {
  44785. height: math.unit(64, "meters"),
  44786. name: "Front",
  44787. image: {
  44788. source: "./media/characters/nova-fox/front.svg",
  44789. extra: 1310/1246,
  44790. bottom: 65/1375
  44791. }
  44792. },
  44793. },
  44794. [
  44795. {
  44796. name: "Macro",
  44797. height: math.unit(64, "meters"),
  44798. default: true
  44799. },
  44800. ]
  44801. ))
  44802. characterMakers.push(() => makeCharacter(
  44803. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44804. {
  44805. front: {
  44806. height: math.unit(6 + 3/12, "feet"),
  44807. weight: math.unit(170, "lb"),
  44808. name: "Front",
  44809. image: {
  44810. source: "./media/characters/sam-bat/front.svg",
  44811. extra: 1601/1411,
  44812. bottom: 125/1726
  44813. }
  44814. },
  44815. back: {
  44816. height: math.unit(6 + 3/12, "feet"),
  44817. weight: math.unit(170, "lb"),
  44818. name: "Back",
  44819. image: {
  44820. source: "./media/characters/sam-bat/back.svg",
  44821. extra: 1577/1405,
  44822. bottom: 58/1635
  44823. }
  44824. },
  44825. },
  44826. [
  44827. {
  44828. name: "Normal",
  44829. height: math.unit(6 + 3/12, "feet"),
  44830. default: true
  44831. },
  44832. ]
  44833. ))
  44834. characterMakers.push(() => makeCharacter(
  44835. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44836. {
  44837. front: {
  44838. height: math.unit(59, "feet"),
  44839. weight: math.unit(40000, "lb"),
  44840. name: "Front",
  44841. image: {
  44842. source: "./media/characters/inari/front.svg",
  44843. extra: 1884/1350,
  44844. bottom: 95/1979
  44845. }
  44846. },
  44847. },
  44848. [
  44849. {
  44850. name: "Gigantamax",
  44851. height: math.unit(59, "feet"),
  44852. default: true
  44853. },
  44854. ]
  44855. ))
  44856. characterMakers.push(() => makeCharacter(
  44857. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44858. {
  44859. front: {
  44860. height: math.unit(5 + 8/12, "feet"),
  44861. name: "Front",
  44862. image: {
  44863. source: "./media/characters/elizabeth/front.svg",
  44864. extra: 1395/1298,
  44865. bottom: 54/1449
  44866. }
  44867. },
  44868. mouth: {
  44869. height: math.unit(1.97, "feet"),
  44870. name: "Mouth",
  44871. image: {
  44872. source: "./media/characters/elizabeth/mouth.svg"
  44873. }
  44874. },
  44875. foot: {
  44876. height: math.unit(1.17, "feet"),
  44877. name: "Foot",
  44878. image: {
  44879. source: "./media/characters/elizabeth/foot.svg"
  44880. }
  44881. },
  44882. },
  44883. [
  44884. {
  44885. name: "Normal",
  44886. height: math.unit(5 + 8/12, "feet"),
  44887. default: true
  44888. },
  44889. {
  44890. name: "Minimacro",
  44891. height: math.unit(18, "feet")
  44892. },
  44893. {
  44894. name: "Macro",
  44895. height: math.unit(180, "feet")
  44896. },
  44897. ]
  44898. ))
  44899. characterMakers.push(() => makeCharacter(
  44900. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44901. {
  44902. front: {
  44903. height: math.unit(5 + 2/12, "feet"),
  44904. name: "Front",
  44905. image: {
  44906. source: "./media/characters/october-gossamer/front.svg",
  44907. extra: 505/454,
  44908. bottom: 7/512
  44909. }
  44910. },
  44911. back: {
  44912. height: math.unit(5 + 2/12, "feet"),
  44913. name: "Back",
  44914. image: {
  44915. source: "./media/characters/october-gossamer/back.svg",
  44916. extra: 501/454,
  44917. bottom: 11/512
  44918. }
  44919. },
  44920. },
  44921. [
  44922. {
  44923. name: "Normal",
  44924. height: math.unit(5 + 2/12, "feet"),
  44925. default: true
  44926. },
  44927. ]
  44928. ))
  44929. characterMakers.push(() => makeCharacter(
  44930. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44931. {
  44932. front: {
  44933. height: math.unit(5, "feet"),
  44934. name: "Front",
  44935. image: {
  44936. source: "./media/characters/epiglottis/front.svg",
  44937. extra: 923/849,
  44938. bottom: 17/940
  44939. }
  44940. },
  44941. },
  44942. [
  44943. {
  44944. name: "Original Size",
  44945. height: math.unit(10, "inches")
  44946. },
  44947. {
  44948. name: "Human Size",
  44949. height: math.unit(5, "feet"),
  44950. default: true
  44951. },
  44952. {
  44953. name: "Big",
  44954. height: math.unit(25, "feet")
  44955. },
  44956. {
  44957. name: "Bigger",
  44958. height: math.unit(50, "feet")
  44959. },
  44960. {
  44961. name: "oh lawd",
  44962. height: math.unit(75, "feet")
  44963. },
  44964. ]
  44965. ))
  44966. characterMakers.push(() => makeCharacter(
  44967. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44968. {
  44969. front: {
  44970. height: math.unit(2 + 4/12, "feet"),
  44971. weight: math.unit(60, "lb"),
  44972. name: "Front",
  44973. image: {
  44974. source: "./media/characters/lerm/front.svg",
  44975. extra: 796/790,
  44976. bottom: 79/875
  44977. }
  44978. },
  44979. },
  44980. [
  44981. {
  44982. name: "Normal",
  44983. height: math.unit(2 + 4/12, "feet"),
  44984. default: true
  44985. },
  44986. ]
  44987. ))
  44988. characterMakers.push(() => makeCharacter(
  44989. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44990. {
  44991. front: {
  44992. height: math.unit(5.5, "feet"),
  44993. weight: math.unit(130, "lb"),
  44994. name: "Front",
  44995. image: {
  44996. source: "./media/characters/xena-nebadon/front.svg",
  44997. extra: 1828/1730,
  44998. bottom: 79/1907
  44999. }
  45000. },
  45001. },
  45002. [
  45003. {
  45004. name: "Tiny Puppy",
  45005. height: math.unit(3, "inches")
  45006. },
  45007. {
  45008. name: "Normal",
  45009. height: math.unit(5.5, "feet"),
  45010. default: true
  45011. },
  45012. {
  45013. name: "Lotta Lady",
  45014. height: math.unit(12, "feet")
  45015. },
  45016. {
  45017. name: "Pretty Big",
  45018. height: math.unit(100, "feet")
  45019. },
  45020. {
  45021. name: "Big",
  45022. height: math.unit(500, "feet")
  45023. },
  45024. {
  45025. name: "Skyscraper Toys",
  45026. height: math.unit(2500, "feet")
  45027. },
  45028. {
  45029. name: "Plane Catcher",
  45030. height: math.unit(8, "miles")
  45031. },
  45032. {
  45033. name: "Planet Toys",
  45034. height: math.unit(15, "earths")
  45035. },
  45036. {
  45037. name: "Stardust",
  45038. height: math.unit(0.25, "galaxies")
  45039. },
  45040. {
  45041. name: "Snacks",
  45042. height: math.unit(70, "universes")
  45043. },
  45044. ]
  45045. ))
  45046. characterMakers.push(() => makeCharacter(
  45047. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45048. {
  45049. front: {
  45050. height: math.unit(1.6, "meters"),
  45051. weight: math.unit(60, "kg"),
  45052. name: "Front",
  45053. image: {
  45054. source: "./media/characters/bounty/front.svg",
  45055. extra: 1426/1308,
  45056. bottom: 15/1441
  45057. }
  45058. },
  45059. back: {
  45060. height: math.unit(1.6, "meters"),
  45061. weight: math.unit(60, "kg"),
  45062. name: "Back",
  45063. image: {
  45064. source: "./media/characters/bounty/back.svg",
  45065. extra: 1417/1307,
  45066. bottom: 8/1425
  45067. }
  45068. },
  45069. },
  45070. [
  45071. {
  45072. name: "Normal",
  45073. height: math.unit(1.6, "meters"),
  45074. default: true
  45075. },
  45076. {
  45077. name: "Macro",
  45078. height: math.unit(300, "meters")
  45079. },
  45080. ]
  45081. ))
  45082. characterMakers.push(() => makeCharacter(
  45083. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45084. {
  45085. front: {
  45086. height: math.unit(2 + 8/12, "feet"),
  45087. weight: math.unit(15, "lb"),
  45088. name: "Front",
  45089. image: {
  45090. source: "./media/characters/mochi/front.svg",
  45091. extra: 1022/852,
  45092. bottom: 435/1457
  45093. }
  45094. },
  45095. back: {
  45096. height: math.unit(2 + 8/12, "feet"),
  45097. weight: math.unit(15, "lb"),
  45098. name: "Back",
  45099. image: {
  45100. source: "./media/characters/mochi/back.svg",
  45101. extra: 1335/1119,
  45102. bottom: 39/1374
  45103. }
  45104. },
  45105. bird: {
  45106. height: math.unit(2 + 8/12, "feet"),
  45107. weight: math.unit(15, "lb"),
  45108. name: "Bird",
  45109. image: {
  45110. source: "./media/characters/mochi/bird.svg",
  45111. extra: 1251/1113,
  45112. bottom: 178/1429
  45113. }
  45114. },
  45115. kaiju: {
  45116. height: math.unit(154, "feet"),
  45117. weight: math.unit(1e7, "lb"),
  45118. name: "Kaiju",
  45119. image: {
  45120. source: "./media/characters/mochi/kaiju.svg",
  45121. extra: 460/324,
  45122. bottom: 40/500
  45123. }
  45124. },
  45125. head: {
  45126. height: math.unit(1.21, "feet"),
  45127. name: "Head",
  45128. image: {
  45129. source: "./media/characters/mochi/head.svg"
  45130. }
  45131. },
  45132. alternateTail: {
  45133. height: math.unit(2 + 8/12, "feet"),
  45134. weight: math.unit(45, "lb"),
  45135. name: "Alternate Tail",
  45136. image: {
  45137. source: "./media/characters/mochi/alternate-tail.svg",
  45138. extra: 139/76,
  45139. bottom: 45/184
  45140. }
  45141. },
  45142. },
  45143. [
  45144. {
  45145. name: "Micro",
  45146. height: math.unit(2, "inches")
  45147. },
  45148. {
  45149. name: "Normal",
  45150. height: math.unit(2 + 8/12, "feet"),
  45151. default: true
  45152. },
  45153. {
  45154. name: "Macro",
  45155. height: math.unit(106, "feet")
  45156. },
  45157. ]
  45158. ))
  45159. characterMakers.push(() => makeCharacter(
  45160. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45161. {
  45162. front: {
  45163. height: math.unit(5.67, "feet"),
  45164. weight: math.unit(135, "lb"),
  45165. name: "Front",
  45166. image: {
  45167. source: "./media/characters/sarel/front.svg",
  45168. extra: 865/788,
  45169. bottom: 97/962
  45170. }
  45171. },
  45172. back: {
  45173. height: math.unit(5.67, "feet"),
  45174. weight: math.unit(135, "lb"),
  45175. name: "Back",
  45176. image: {
  45177. source: "./media/characters/sarel/back.svg",
  45178. extra: 857/777,
  45179. bottom: 32/889
  45180. }
  45181. },
  45182. chozoan: {
  45183. height: math.unit(5.67, "feet"),
  45184. weight: math.unit(135, "lb"),
  45185. name: "Chozoan",
  45186. image: {
  45187. source: "./media/characters/sarel/chozoan.svg",
  45188. extra: 865/788,
  45189. bottom: 97/962
  45190. }
  45191. },
  45192. current: {
  45193. height: math.unit(5.67, "feet"),
  45194. weight: math.unit(135, "lb"),
  45195. name: "Current",
  45196. image: {
  45197. source: "./media/characters/sarel/current.svg",
  45198. extra: 865/788,
  45199. bottom: 97/962
  45200. }
  45201. },
  45202. head: {
  45203. height: math.unit(1.77, "feet"),
  45204. name: "Head",
  45205. image: {
  45206. source: "./media/characters/sarel/head.svg"
  45207. }
  45208. },
  45209. claws: {
  45210. height: math.unit(1.8, "feet"),
  45211. name: "Claws",
  45212. image: {
  45213. source: "./media/characters/sarel/claws.svg"
  45214. }
  45215. },
  45216. clawsAlt: {
  45217. height: math.unit(1.8, "feet"),
  45218. name: "Claws-alt",
  45219. image: {
  45220. source: "./media/characters/sarel/claws-alt.svg"
  45221. }
  45222. },
  45223. },
  45224. [
  45225. {
  45226. name: "Normal",
  45227. height: math.unit(5.67, "feet"),
  45228. default: true
  45229. },
  45230. ]
  45231. ))
  45232. characterMakers.push(() => makeCharacter(
  45233. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45234. {
  45235. front: {
  45236. height: math.unit(5500, "feet"),
  45237. name: "Front",
  45238. image: {
  45239. source: "./media/characters/alyonia/front.svg",
  45240. extra: 1200/1135,
  45241. bottom: 29/1229
  45242. }
  45243. },
  45244. back: {
  45245. height: math.unit(5500, "feet"),
  45246. name: "Back",
  45247. image: {
  45248. source: "./media/characters/alyonia/back.svg",
  45249. extra: 1205/1138,
  45250. bottom: 10/1215
  45251. }
  45252. },
  45253. },
  45254. [
  45255. {
  45256. name: "Small",
  45257. height: math.unit(10, "feet")
  45258. },
  45259. {
  45260. name: "Macro",
  45261. height: math.unit(500, "feet")
  45262. },
  45263. {
  45264. name: "Mega Macro",
  45265. height: math.unit(5500, "feet"),
  45266. default: true
  45267. },
  45268. {
  45269. name: "Mega Macro+",
  45270. height: math.unit(500000, "feet")
  45271. },
  45272. {
  45273. name: "Giga Macro",
  45274. height: math.unit(3000, "miles")
  45275. },
  45276. {
  45277. name: "Tera Macro",
  45278. height: math.unit(2.8e6, "miles")
  45279. },
  45280. {
  45281. name: "Galactic",
  45282. height: math.unit(120000, "lightyears")
  45283. },
  45284. ]
  45285. ))
  45286. characterMakers.push(() => makeCharacter(
  45287. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45288. {
  45289. werewolf: {
  45290. height: math.unit(8, "feet"),
  45291. weight: math.unit(425, "lb"),
  45292. name: "Werewolf",
  45293. image: {
  45294. source: "./media/characters/autumn/werewolf.svg",
  45295. extra: 2154/2031,
  45296. bottom: 160/2314
  45297. }
  45298. },
  45299. human: {
  45300. height: math.unit(5 + 8/12, "feet"),
  45301. weight: math.unit(150, "lb"),
  45302. name: "Human",
  45303. image: {
  45304. source: "./media/characters/autumn/human.svg",
  45305. extra: 1200/1149,
  45306. bottom: 30/1230
  45307. }
  45308. },
  45309. },
  45310. [
  45311. {
  45312. name: "Normal",
  45313. height: math.unit(8, "feet"),
  45314. default: true
  45315. },
  45316. ]
  45317. ))
  45318. characterMakers.push(() => makeCharacter(
  45319. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45320. {
  45321. front: {
  45322. height: math.unit(8 + 5/12, "feet"),
  45323. weight: math.unit(825, "lb"),
  45324. name: "Front",
  45325. image: {
  45326. source: "./media/characters/cobalt-charizard/front.svg",
  45327. extra: 1268/1155,
  45328. bottom: 122/1390
  45329. }
  45330. },
  45331. side: {
  45332. height: math.unit(8 + 5/12, "feet"),
  45333. weight: math.unit(825, "lb"),
  45334. name: "Side",
  45335. image: {
  45336. source: "./media/characters/cobalt-charizard/side.svg",
  45337. extra: 1348/1257,
  45338. bottom: 58/1406
  45339. }
  45340. },
  45341. gMax: {
  45342. height: math.unit(134 + 11/12, "feet"),
  45343. name: "G-Max",
  45344. image: {
  45345. source: "./media/characters/cobalt-charizard/g-max.svg",
  45346. extra: 1835/1541,
  45347. bottom: 151/1986
  45348. }
  45349. },
  45350. },
  45351. [
  45352. {
  45353. name: "Normal",
  45354. height: math.unit(8 + 5/12, "feet"),
  45355. default: true
  45356. },
  45357. ]
  45358. ))
  45359. characterMakers.push(() => makeCharacter(
  45360. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45361. {
  45362. front: {
  45363. height: math.unit(6 + 3/12, "feet"),
  45364. weight: math.unit(210, "lb"),
  45365. name: "Front",
  45366. image: {
  45367. source: "./media/characters/stella/front.svg",
  45368. extra: 3549/3335,
  45369. bottom: 51/3600
  45370. }
  45371. },
  45372. },
  45373. [
  45374. {
  45375. name: "Normal",
  45376. height: math.unit(6 + 3/12, "feet"),
  45377. default: true
  45378. },
  45379. ]
  45380. ))
  45381. characterMakers.push(() => makeCharacter(
  45382. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45383. {
  45384. front: {
  45385. height: math.unit(5, "feet"),
  45386. weight: math.unit(90, "lb"),
  45387. name: "Front",
  45388. image: {
  45389. source: "./media/characters/riley-bishop/front.svg",
  45390. extra: 1450/1428,
  45391. bottom: 152/1602
  45392. }
  45393. },
  45394. },
  45395. [
  45396. {
  45397. name: "Normal",
  45398. height: math.unit(5, "feet"),
  45399. default: true
  45400. },
  45401. ]
  45402. ))
  45403. characterMakers.push(() => makeCharacter(
  45404. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45405. {
  45406. side: {
  45407. height: math.unit(8 + 2/12, "feet"),
  45408. weight: math.unit(500, "kg"),
  45409. name: "Side",
  45410. image: {
  45411. source: "./media/characters/theo-arcanine/side.svg",
  45412. extra: 1342/1074,
  45413. bottom: 111/1453
  45414. }
  45415. },
  45416. },
  45417. [
  45418. {
  45419. name: "Normal",
  45420. height: math.unit(8 + 2/12, "feet"),
  45421. default: true
  45422. },
  45423. ]
  45424. ))
  45425. characterMakers.push(() => makeCharacter(
  45426. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45427. {
  45428. front: {
  45429. height: math.unit(4, "feet"),
  45430. name: "Front",
  45431. image: {
  45432. source: "./media/characters/kali/front.svg",
  45433. extra: 1921/1357,
  45434. bottom: 70/1991
  45435. }
  45436. },
  45437. },
  45438. [
  45439. {
  45440. name: "Normal",
  45441. height: math.unit(4, "feet"),
  45442. default: true
  45443. },
  45444. {
  45445. name: "Macro",
  45446. height: math.unit(32, "meters")
  45447. },
  45448. {
  45449. name: "Macro+",
  45450. height: math.unit(150, "meters")
  45451. },
  45452. {
  45453. name: "Megamacro",
  45454. height: math.unit(7500, "meters")
  45455. },
  45456. {
  45457. name: "Megamacro+",
  45458. height: math.unit(80, "kilometers")
  45459. },
  45460. ]
  45461. ))
  45462. characterMakers.push(() => makeCharacter(
  45463. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45464. {
  45465. side: {
  45466. height: math.unit(5 + 11/12, "feet"),
  45467. weight: math.unit(236, "lb"),
  45468. name: "Side",
  45469. image: {
  45470. source: "./media/characters/gapp/side.svg",
  45471. extra: 775/340,
  45472. bottom: 58/833
  45473. }
  45474. },
  45475. mouth: {
  45476. height: math.unit(2.98, "feet"),
  45477. name: "Mouth",
  45478. image: {
  45479. source: "./media/characters/gapp/mouth.svg"
  45480. }
  45481. },
  45482. },
  45483. [
  45484. {
  45485. name: "Normal",
  45486. height: math.unit(5 + 1/12, "feet"),
  45487. default: true
  45488. },
  45489. ]
  45490. ))
  45491. characterMakers.push(() => makeCharacter(
  45492. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45493. {
  45494. front: {
  45495. height: math.unit(6, "feet"),
  45496. name: "Front",
  45497. image: {
  45498. source: "./media/characters/persephone/front.svg",
  45499. extra: 1895/1717,
  45500. bottom: 96/1991
  45501. }
  45502. },
  45503. back: {
  45504. height: math.unit(6, "feet"),
  45505. name: "Back",
  45506. image: {
  45507. source: "./media/characters/persephone/back.svg",
  45508. extra: 1868/1679,
  45509. bottom: 26/1894
  45510. }
  45511. },
  45512. casual: {
  45513. height: math.unit(6, "feet"),
  45514. name: "Casual",
  45515. image: {
  45516. source: "./media/characters/persephone/casual.svg",
  45517. extra: 1713/1541,
  45518. bottom: 76/1789
  45519. }
  45520. },
  45521. },
  45522. [
  45523. {
  45524. name: "Human Size",
  45525. height: math.unit(6, "feet")
  45526. },
  45527. {
  45528. name: "Big Steppy",
  45529. height: math.unit(600, "meters"),
  45530. default: true
  45531. },
  45532. {
  45533. name: "Galaxy Brain",
  45534. height: math.unit(1, "zettameter")
  45535. },
  45536. ]
  45537. ))
  45538. characterMakers.push(() => makeCharacter(
  45539. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45540. {
  45541. front: {
  45542. height: math.unit(1.85, "meters"),
  45543. name: "Front",
  45544. image: {
  45545. source: "./media/characters/riley-foxthing/front.svg",
  45546. extra: 1495/1354,
  45547. bottom: 122/1617
  45548. }
  45549. },
  45550. frontAlt: {
  45551. height: math.unit(1.85, "meters"),
  45552. name: "Front (Alt)",
  45553. image: {
  45554. source: "./media/characters/riley-foxthing/front-alt.svg",
  45555. extra: 1572/1389,
  45556. bottom: 116/1688
  45557. }
  45558. },
  45559. },
  45560. [
  45561. {
  45562. name: "Normal Sized",
  45563. height: math.unit(1.85, "meters"),
  45564. default: true
  45565. },
  45566. {
  45567. name: "Quite Sizable",
  45568. height: math.unit(5, "meters")
  45569. },
  45570. {
  45571. name: "Rather Large",
  45572. height: math.unit(20, "meters")
  45573. },
  45574. {
  45575. name: "Macro",
  45576. height: math.unit(450, "meters")
  45577. },
  45578. {
  45579. name: "Giga",
  45580. height: math.unit(5, "km")
  45581. },
  45582. ]
  45583. ))
  45584. characterMakers.push(() => makeCharacter(
  45585. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45586. {
  45587. front: {
  45588. height: math.unit(6, "feet"),
  45589. weight: math.unit(200, "lb"),
  45590. name: "Front",
  45591. image: {
  45592. source: "./media/characters/blizzard/front.svg",
  45593. extra: 1136/990,
  45594. bottom: 136/1272
  45595. }
  45596. },
  45597. back: {
  45598. height: math.unit(6, "feet"),
  45599. weight: math.unit(200, "lb"),
  45600. name: "Back",
  45601. image: {
  45602. source: "./media/characters/blizzard/back.svg",
  45603. extra: 1175/1034,
  45604. bottom: 97/1272
  45605. }
  45606. },
  45607. sitting: {
  45608. height: math.unit(3.725, "feet"),
  45609. weight: math.unit(200, "lb"),
  45610. name: "Sitting",
  45611. image: {
  45612. source: "./media/characters/blizzard/sitting.svg",
  45613. extra: 581/485,
  45614. bottom: 90/671
  45615. }
  45616. },
  45617. frontWizard: {
  45618. height: math.unit(7.9, "feet"),
  45619. weight: math.unit(200, "lb"),
  45620. name: "Front (Wizard)",
  45621. image: {
  45622. source: "./media/characters/blizzard/front-wizard.svg"
  45623. }
  45624. },
  45625. backWizard: {
  45626. height: math.unit(7.9, "feet"),
  45627. weight: math.unit(200, "lb"),
  45628. name: "Back (Wizard)",
  45629. image: {
  45630. source: "./media/characters/blizzard/back-wizard.svg"
  45631. }
  45632. },
  45633. frontNsfw: {
  45634. height: math.unit(6, "feet"),
  45635. weight: math.unit(200, "lb"),
  45636. name: "Front (NSFW)",
  45637. image: {
  45638. source: "./media/characters/blizzard/front-nsfw.svg",
  45639. extra: 1136/990,
  45640. bottom: 136/1272
  45641. }
  45642. },
  45643. backNsfw: {
  45644. height: math.unit(6, "feet"),
  45645. weight: math.unit(200, "lb"),
  45646. name: "Back (NSFW)",
  45647. image: {
  45648. source: "./media/characters/blizzard/back-nsfw.svg",
  45649. extra: 1175/1034,
  45650. bottom: 97/1272
  45651. }
  45652. },
  45653. sittingNsfw: {
  45654. height: math.unit(3.725, "feet"),
  45655. weight: math.unit(200, "lb"),
  45656. name: "Sitting (NSFW)",
  45657. image: {
  45658. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45659. extra: 581/485,
  45660. bottom: 90/671
  45661. }
  45662. },
  45663. wizardFrontNsfw: {
  45664. height: math.unit(7.9, "feet"),
  45665. weight: math.unit(200, "lb"),
  45666. name: "Wizard (Front, NSFW)",
  45667. image: {
  45668. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45669. }
  45670. },
  45671. },
  45672. [
  45673. {
  45674. name: "Normal",
  45675. height: math.unit(6, "feet"),
  45676. default: true
  45677. },
  45678. ]
  45679. ))
  45680. characterMakers.push(() => makeCharacter(
  45681. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45682. {
  45683. front: {
  45684. height: math.unit(5 + 2/12, "feet"),
  45685. name: "Front",
  45686. image: {
  45687. source: "./media/characters/lumi/front.svg",
  45688. extra: 1328/1268,
  45689. bottom: 103/1431
  45690. }
  45691. },
  45692. back: {
  45693. height: math.unit(5 + 2/12, "feet"),
  45694. name: "Back",
  45695. image: {
  45696. source: "./media/characters/lumi/back.svg",
  45697. extra: 1381/1327,
  45698. bottom: 43/1424
  45699. }
  45700. },
  45701. },
  45702. [
  45703. {
  45704. name: "Normal",
  45705. height: math.unit(5 + 2/12, "feet"),
  45706. default: true
  45707. },
  45708. ]
  45709. ))
  45710. characterMakers.push(() => makeCharacter(
  45711. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45712. {
  45713. front: {
  45714. height: math.unit(5 + 9/12, "feet"),
  45715. name: "Front",
  45716. image: {
  45717. source: "./media/characters/aliya-cotton/front.svg",
  45718. extra: 577/564,
  45719. bottom: 29/606
  45720. }
  45721. },
  45722. },
  45723. [
  45724. {
  45725. name: "Normal",
  45726. height: math.unit(5 + 9/12, "feet"),
  45727. default: true
  45728. },
  45729. ]
  45730. ))
  45731. characterMakers.push(() => makeCharacter(
  45732. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45733. {
  45734. front: {
  45735. height: math.unit(2.7, "meters"),
  45736. weight: math.unit(25000, "lb"),
  45737. name: "Front",
  45738. image: {
  45739. source: "./media/characters/noah-luxray/front.svg",
  45740. extra: 1644/825,
  45741. bottom: 339/1983
  45742. }
  45743. },
  45744. side: {
  45745. height: math.unit(2.97, "meters"),
  45746. weight: math.unit(25000, "lb"),
  45747. name: "Side",
  45748. image: {
  45749. source: "./media/characters/noah-luxray/side.svg",
  45750. extra: 1319/650,
  45751. bottom: 163/1482
  45752. }
  45753. },
  45754. dick: {
  45755. height: math.unit(7.4, "feet"),
  45756. weight: math.unit(2500, "lb"),
  45757. name: "Dick",
  45758. image: {
  45759. source: "./media/characters/noah-luxray/dick.svg"
  45760. }
  45761. },
  45762. dickAlt: {
  45763. height: math.unit(10.83, "feet"),
  45764. weight: math.unit(2500, "lb"),
  45765. name: "Dick-alt",
  45766. image: {
  45767. source: "./media/characters/noah-luxray/dick-alt.svg"
  45768. }
  45769. },
  45770. },
  45771. [
  45772. {
  45773. name: "BIG",
  45774. height: math.unit(2.7, "meters"),
  45775. default: true
  45776. },
  45777. ]
  45778. ))
  45779. characterMakers.push(() => makeCharacter(
  45780. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45781. {
  45782. standing: {
  45783. height: math.unit(183, "cm"),
  45784. weight: math.unit(68, "kg"),
  45785. name: "Standing",
  45786. image: {
  45787. source: "./media/characters/arion/standing.svg",
  45788. extra: 1869/1807,
  45789. bottom: 93/1962
  45790. }
  45791. },
  45792. reclining: {
  45793. height: math.unit(70.5, "cm"),
  45794. weight: math.unit(68, "lb"),
  45795. name: "Reclining",
  45796. image: {
  45797. source: "./media/characters/arion/reclining.svg",
  45798. extra: 937/870,
  45799. bottom: 63/1000
  45800. }
  45801. },
  45802. },
  45803. [
  45804. {
  45805. name: "Colossus Size, Low",
  45806. height: math.unit(33, "meters"),
  45807. default: true
  45808. },
  45809. {
  45810. name: "Colossus Size, Mid",
  45811. height: math.unit(52, "meters")
  45812. },
  45813. {
  45814. name: "Colossus Size, High",
  45815. height: math.unit(60, "meters")
  45816. },
  45817. {
  45818. name: "Titan Size, Low",
  45819. height: math.unit(91, "meters"),
  45820. },
  45821. {
  45822. name: "Titan Size, Mid",
  45823. height: math.unit(122, "meters")
  45824. },
  45825. {
  45826. name: "Titan Size, High",
  45827. height: math.unit(162, "meters")
  45828. },
  45829. ]
  45830. ))
  45831. characterMakers.push(() => makeCharacter(
  45832. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45833. {
  45834. front: {
  45835. height: math.unit(53, "meters"),
  45836. name: "Front",
  45837. image: {
  45838. source: "./media/characters/stellar-marbey/front.svg",
  45839. extra: 1913/1805,
  45840. bottom: 92/2005
  45841. }
  45842. },
  45843. back: {
  45844. height: math.unit(53, "meters"),
  45845. name: "Back",
  45846. image: {
  45847. source: "./media/characters/stellar-marbey/back.svg",
  45848. extra: 1960/1851,
  45849. bottom: 28/1988
  45850. }
  45851. },
  45852. mouth: {
  45853. height: math.unit(3.5, "meters"),
  45854. name: "Mouth",
  45855. image: {
  45856. source: "./media/characters/stellar-marbey/mouth.svg"
  45857. }
  45858. },
  45859. },
  45860. [
  45861. {
  45862. name: "Macro",
  45863. height: math.unit(53, "meters"),
  45864. default: true
  45865. },
  45866. ]
  45867. ))
  45868. characterMakers.push(() => makeCharacter(
  45869. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45870. {
  45871. front: {
  45872. height: math.unit(8 + 1/12, "feet"),
  45873. weight: math.unit(233, "lb"),
  45874. name: "Front",
  45875. image: {
  45876. source: "./media/characters/matsu/front.svg",
  45877. extra: 832/772,
  45878. bottom: 40/872
  45879. }
  45880. },
  45881. back: {
  45882. height: math.unit(8 + 1/12, "feet"),
  45883. weight: math.unit(233, "lb"),
  45884. name: "Back",
  45885. image: {
  45886. source: "./media/characters/matsu/back.svg",
  45887. extra: 839/780,
  45888. bottom: 47/886
  45889. }
  45890. },
  45891. },
  45892. [
  45893. {
  45894. name: "Normal",
  45895. height: math.unit(8 + 1/12, "feet"),
  45896. default: true
  45897. },
  45898. ]
  45899. ))
  45900. characterMakers.push(() => makeCharacter(
  45901. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45902. {
  45903. front: {
  45904. height: math.unit(4, "feet"),
  45905. weight: math.unit(148, "lb"),
  45906. name: "Front",
  45907. image: {
  45908. source: "./media/characters/thiz/front.svg",
  45909. extra: 1913/1748,
  45910. bottom: 62/1975
  45911. }
  45912. },
  45913. },
  45914. [
  45915. {
  45916. name: "Normal",
  45917. height: math.unit(4, "feet"),
  45918. default: true
  45919. },
  45920. ]
  45921. ))
  45922. characterMakers.push(() => makeCharacter(
  45923. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45924. {
  45925. front: {
  45926. height: math.unit(7 + 6/12, "feet"),
  45927. weight: math.unit(267, "lb"),
  45928. name: "Front",
  45929. image: {
  45930. source: "./media/characters/marcel/front.svg",
  45931. extra: 1221/1096,
  45932. bottom: 76/1297
  45933. }
  45934. },
  45935. },
  45936. [
  45937. {
  45938. name: "Normal",
  45939. height: math.unit(7 + 6/12, "feet"),
  45940. default: true
  45941. },
  45942. ]
  45943. ))
  45944. characterMakers.push(() => makeCharacter(
  45945. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45946. {
  45947. side: {
  45948. height: math.unit(42, "meters"),
  45949. name: "Side",
  45950. image: {
  45951. source: "./media/characters/flake/side.svg",
  45952. extra: 1525/1306,
  45953. bottom: 209/1734
  45954. }
  45955. },
  45956. },
  45957. [
  45958. {
  45959. name: "Normal",
  45960. height: math.unit(42, "meters"),
  45961. default: true
  45962. },
  45963. ]
  45964. ))
  45965. characterMakers.push(() => makeCharacter(
  45966. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45967. {
  45968. dressed: {
  45969. height: math.unit(6 + 4/12, "feet"),
  45970. weight: math.unit(520, "lb"),
  45971. name: "Dressed",
  45972. image: {
  45973. source: "./media/characters/someonne/dressed.svg",
  45974. extra: 1020/1010,
  45975. bottom: 178/1198
  45976. }
  45977. },
  45978. undressed: {
  45979. height: math.unit(6 + 4/12, "feet"),
  45980. weight: math.unit(520, "lb"),
  45981. name: "Undressed",
  45982. image: {
  45983. source: "./media/characters/someonne/undressed.svg",
  45984. extra: 1019/1014,
  45985. bottom: 169/1188
  45986. }
  45987. },
  45988. },
  45989. [
  45990. {
  45991. name: "Normal",
  45992. height: math.unit(6 + 4/12, "feet"),
  45993. default: true
  45994. },
  45995. ]
  45996. ))
  45997. characterMakers.push(() => makeCharacter(
  45998. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45999. {
  46000. front: {
  46001. height: math.unit(3, "feet"),
  46002. weight: math.unit(30, "lb"),
  46003. name: "Front",
  46004. image: {
  46005. source: "./media/characters/till/front.svg",
  46006. extra: 892/823,
  46007. bottom: 55/947
  46008. }
  46009. },
  46010. },
  46011. [
  46012. {
  46013. name: "Normal",
  46014. height: math.unit(3, "feet"),
  46015. default: true
  46016. },
  46017. ]
  46018. ))
  46019. characterMakers.push(() => makeCharacter(
  46020. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46021. {
  46022. front: {
  46023. height: math.unit(9 + 8/12, "feet"),
  46024. weight: math.unit(800, "lb"),
  46025. name: "Front",
  46026. image: {
  46027. source: "./media/characters/sydney-heki/front.svg",
  46028. extra: 1360/1300,
  46029. bottom: 22/1382
  46030. }
  46031. },
  46032. back: {
  46033. height: math.unit(9 + 8/12, "feet"),
  46034. weight: math.unit(800, "lb"),
  46035. name: "Back",
  46036. image: {
  46037. source: "./media/characters/sydney-heki/back.svg",
  46038. extra: 1356/1293,
  46039. bottom: 12/1368
  46040. }
  46041. },
  46042. frontDressed: {
  46043. height: math.unit(9 + 8/12, "feet"),
  46044. weight: math.unit(800, "lb"),
  46045. name: "Front-dressed",
  46046. image: {
  46047. source: "./media/characters/sydney-heki/front-dressed.svg",
  46048. extra: 1360/1300,
  46049. bottom: 22/1382
  46050. }
  46051. },
  46052. },
  46053. [
  46054. {
  46055. name: "Normal",
  46056. height: math.unit(9 + 8/12, "feet"),
  46057. default: true
  46058. },
  46059. {
  46060. name: "Macro",
  46061. height: math.unit(500, "feet")
  46062. },
  46063. {
  46064. name: "Megamacro",
  46065. height: math.unit(3.6, "miles")
  46066. },
  46067. ]
  46068. ))
  46069. characterMakers.push(() => makeCharacter(
  46070. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46071. {
  46072. front: {
  46073. height: math.unit(200, "cm"),
  46074. weight: math.unit(250, "lb"),
  46075. name: "Front",
  46076. image: {
  46077. source: "./media/characters/fowler-karlsson/front.svg",
  46078. extra: 897/845,
  46079. bottom: 123/1020
  46080. }
  46081. },
  46082. back: {
  46083. height: math.unit(200, "cm"),
  46084. weight: math.unit(250, "lb"),
  46085. name: "Back",
  46086. image: {
  46087. source: "./media/characters/fowler-karlsson/back.svg",
  46088. extra: 999/944,
  46089. bottom: 26/1025
  46090. }
  46091. },
  46092. dick: {
  46093. height: math.unit(1.92, "feet"),
  46094. weight: math.unit(150, "lb"),
  46095. name: "Dick",
  46096. image: {
  46097. source: "./media/characters/fowler-karlsson/dick.svg"
  46098. }
  46099. },
  46100. },
  46101. [
  46102. {
  46103. name: "Normal",
  46104. height: math.unit(200, "cm"),
  46105. default: true
  46106. },
  46107. {
  46108. name: "Smaller Macro",
  46109. height: math.unit(90, "m")
  46110. },
  46111. {
  46112. name: "Macro",
  46113. height: math.unit(150, "m")
  46114. },
  46115. {
  46116. name: "Bigger Macro",
  46117. height: math.unit(300, "m")
  46118. },
  46119. ]
  46120. ))
  46121. characterMakers.push(() => makeCharacter(
  46122. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46123. {
  46124. side: {
  46125. height: math.unit(8 + 2/12, "feet"),
  46126. weight: math.unit(1, "tonne"),
  46127. name: "Side",
  46128. image: {
  46129. source: "./media/characters/rylide/side.svg",
  46130. extra: 1318/1034,
  46131. bottom: 106/1424
  46132. }
  46133. },
  46134. sitting: {
  46135. height: math.unit(303, "cm"),
  46136. weight: math.unit(1, "tonne"),
  46137. name: "Sitting",
  46138. image: {
  46139. source: "./media/characters/rylide/sitting.svg",
  46140. extra: 1303/1103,
  46141. bottom: 36/1339
  46142. }
  46143. },
  46144. },
  46145. [
  46146. {
  46147. name: "Normal",
  46148. height: math.unit(8 + 2/12, "feet"),
  46149. default: true
  46150. },
  46151. ]
  46152. ))
  46153. characterMakers.push(() => makeCharacter(
  46154. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46155. {
  46156. front: {
  46157. height: math.unit(5 + 10/12, "feet"),
  46158. weight: math.unit(160, "lb"),
  46159. name: "Front",
  46160. image: {
  46161. source: "./media/characters/pudask/front.svg",
  46162. extra: 1616/1590,
  46163. bottom: 161/1777
  46164. }
  46165. },
  46166. },
  46167. [
  46168. {
  46169. name: "Ferret Height",
  46170. height: math.unit(2 + 5/12, "feet")
  46171. },
  46172. {
  46173. name: "Canon Height",
  46174. height: math.unit(5 + 10/12, "feet"),
  46175. default: true
  46176. },
  46177. ]
  46178. ))
  46179. characterMakers.push(() => makeCharacter(
  46180. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46181. {
  46182. front: {
  46183. height: math.unit(3 + 6/12, "feet"),
  46184. weight: math.unit(60, "lb"),
  46185. name: "Front",
  46186. image: {
  46187. source: "./media/characters/ramita/front.svg",
  46188. extra: 1402/1232,
  46189. bottom: 62/1464
  46190. }
  46191. },
  46192. dressed: {
  46193. height: math.unit(3 + 6/12, "feet"),
  46194. weight: math.unit(60, "lb"),
  46195. name: "Dressed",
  46196. image: {
  46197. source: "./media/characters/ramita/dressed.svg",
  46198. extra: 1534/1249,
  46199. bottom: 50/1584
  46200. }
  46201. },
  46202. },
  46203. [
  46204. {
  46205. name: "Normal",
  46206. height: math.unit(3 + 6/12, "feet"),
  46207. default: true
  46208. },
  46209. ]
  46210. ))
  46211. characterMakers.push(() => makeCharacter(
  46212. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46213. {
  46214. front: {
  46215. height: math.unit(8, "feet"),
  46216. name: "Front",
  46217. image: {
  46218. source: "./media/characters/ark/front.svg",
  46219. extra: 772/693,
  46220. bottom: 45/817
  46221. }
  46222. },
  46223. },
  46224. [
  46225. {
  46226. name: "Normal",
  46227. height: math.unit(8, "feet"),
  46228. default: true
  46229. },
  46230. ]
  46231. ))
  46232. characterMakers.push(() => makeCharacter(
  46233. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46234. {
  46235. front: {
  46236. height: math.unit(6, "feet"),
  46237. weight: math.unit(250, "lb"),
  46238. volume: math.unit(5/8, "gallons"),
  46239. name: "Front",
  46240. image: {
  46241. source: "./media/characters/ludwig-horn/front.svg",
  46242. extra: 1782/1635,
  46243. bottom: 96/1878
  46244. }
  46245. },
  46246. back: {
  46247. height: math.unit(6, "feet"),
  46248. weight: math.unit(250, "lb"),
  46249. volume: math.unit(5/8, "gallons"),
  46250. name: "Back",
  46251. image: {
  46252. source: "./media/characters/ludwig-horn/back.svg",
  46253. extra: 1874/1729,
  46254. bottom: 27/1901
  46255. }
  46256. },
  46257. dick: {
  46258. height: math.unit(1.05, "feet"),
  46259. weight: math.unit(15, "lb"),
  46260. volume: math.unit(5/8, "gallons"),
  46261. name: "Dick",
  46262. image: {
  46263. source: "./media/characters/ludwig-horn/dick.svg"
  46264. }
  46265. },
  46266. },
  46267. [
  46268. {
  46269. name: "Small",
  46270. height: math.unit(6, "feet")
  46271. },
  46272. {
  46273. name: "Typical",
  46274. height: math.unit(12, "feet"),
  46275. default: true
  46276. },
  46277. {
  46278. name: "Building",
  46279. height: math.unit(80, "feet")
  46280. },
  46281. {
  46282. name: "Town",
  46283. height: math.unit(800, "feet")
  46284. },
  46285. {
  46286. name: "Kingdom",
  46287. height: math.unit(80000, "feet")
  46288. },
  46289. {
  46290. name: "Planet",
  46291. height: math.unit(8000000, "feet")
  46292. },
  46293. {
  46294. name: "Universe",
  46295. height: math.unit(8000000000, "feet")
  46296. },
  46297. {
  46298. name: "Transcended",
  46299. height: math.unit(8e27, "feet")
  46300. },
  46301. ]
  46302. ))
  46303. characterMakers.push(() => makeCharacter(
  46304. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46305. {
  46306. front: {
  46307. height: math.unit(5, "feet"),
  46308. weight: math.unit(50, "kg"),
  46309. name: "Front",
  46310. image: {
  46311. source: "./media/characters/biot-avery/front.svg",
  46312. extra: 1295/1232,
  46313. bottom: 86/1381
  46314. }
  46315. },
  46316. },
  46317. [
  46318. {
  46319. name: "Normal",
  46320. height: math.unit(5, "feet"),
  46321. default: true
  46322. },
  46323. ]
  46324. ))
  46325. characterMakers.push(() => makeCharacter(
  46326. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46327. {
  46328. front: {
  46329. height: math.unit(6, "feet"),
  46330. name: "Front",
  46331. image: {
  46332. source: "./media/characters/kitsune-kiro/front.svg",
  46333. extra: 1270/1158,
  46334. bottom: 42/1312
  46335. }
  46336. },
  46337. frontAlt: {
  46338. height: math.unit(6, "feet"),
  46339. name: "Front-alt",
  46340. image: {
  46341. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46342. extra: 1130/1081,
  46343. bottom: 36/1166
  46344. }
  46345. },
  46346. },
  46347. [
  46348. {
  46349. name: "Smol",
  46350. height: math.unit(3, "feet")
  46351. },
  46352. {
  46353. name: "Normal",
  46354. height: math.unit(6, "feet"),
  46355. default: true
  46356. },
  46357. ]
  46358. ))
  46359. characterMakers.push(() => makeCharacter(
  46360. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46361. {
  46362. front: {
  46363. height: math.unit(6, "feet"),
  46364. weight: math.unit(125, "lb"),
  46365. name: "Front",
  46366. image: {
  46367. source: "./media/characters/jack-thatcher/front.svg",
  46368. extra: 1474/1370,
  46369. bottom: 26/1500
  46370. }
  46371. },
  46372. back: {
  46373. height: math.unit(6, "feet"),
  46374. weight: math.unit(125, "lb"),
  46375. name: "Back",
  46376. image: {
  46377. source: "./media/characters/jack-thatcher/back.svg",
  46378. extra: 1489/1384,
  46379. bottom: 18/1507
  46380. }
  46381. },
  46382. },
  46383. [
  46384. {
  46385. name: "Normal",
  46386. height: math.unit(6, "feet"),
  46387. default: true
  46388. },
  46389. {
  46390. name: "Macro",
  46391. height: math.unit(75, "feet")
  46392. },
  46393. {
  46394. name: "Macro-er",
  46395. height: math.unit(250, "feet")
  46396. },
  46397. ]
  46398. ))
  46399. characterMakers.push(() => makeCharacter(
  46400. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46401. {
  46402. front: {
  46403. height: math.unit(7, "feet"),
  46404. weight: math.unit(110, "kg"),
  46405. name: "Front",
  46406. image: {
  46407. source: "./media/characters/max-hyper/front.svg",
  46408. extra: 1969/1881,
  46409. bottom: 49/2018
  46410. }
  46411. },
  46412. },
  46413. [
  46414. {
  46415. name: "Normal",
  46416. height: math.unit(7, "feet"),
  46417. default: true
  46418. },
  46419. ]
  46420. ))
  46421. characterMakers.push(() => makeCharacter(
  46422. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46423. {
  46424. front: {
  46425. height: math.unit(5 + 5/12, "feet"),
  46426. weight: math.unit(160, "lb"),
  46427. name: "Front",
  46428. image: {
  46429. source: "./media/characters/spook/front.svg",
  46430. extra: 794/791,
  46431. bottom: 54/848
  46432. }
  46433. },
  46434. back: {
  46435. height: math.unit(5 + 5/12, "feet"),
  46436. weight: math.unit(160, "lb"),
  46437. name: "Back",
  46438. image: {
  46439. source: "./media/characters/spook/back.svg",
  46440. extra: 812/798,
  46441. bottom: 32/844
  46442. }
  46443. },
  46444. },
  46445. [
  46446. {
  46447. name: "Normal",
  46448. height: math.unit(5 + 5/12, "feet"),
  46449. default: true
  46450. },
  46451. ]
  46452. ))
  46453. characterMakers.push(() => makeCharacter(
  46454. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46455. {
  46456. front: {
  46457. height: math.unit(18, "feet"),
  46458. name: "Front",
  46459. image: {
  46460. source: "./media/characters/xeaduulix/front.svg",
  46461. extra: 1380/1166,
  46462. bottom: 110/1490
  46463. }
  46464. },
  46465. back: {
  46466. height: math.unit(18, "feet"),
  46467. name: "Back",
  46468. image: {
  46469. source: "./media/characters/xeaduulix/back.svg",
  46470. extra: 1592/1170,
  46471. bottom: 128/1720
  46472. }
  46473. },
  46474. frontNsfw: {
  46475. height: math.unit(18, "feet"),
  46476. name: "Front (NSFW)",
  46477. image: {
  46478. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46479. extra: 1380/1166,
  46480. bottom: 110/1490
  46481. }
  46482. },
  46483. backNsfw: {
  46484. height: math.unit(18, "feet"),
  46485. name: "Back (NSFW)",
  46486. image: {
  46487. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46488. extra: 1592/1170,
  46489. bottom: 128/1720
  46490. }
  46491. },
  46492. },
  46493. [
  46494. {
  46495. name: "Normal",
  46496. height: math.unit(18, "feet"),
  46497. default: true
  46498. },
  46499. ]
  46500. ))
  46501. characterMakers.push(() => makeCharacter(
  46502. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46503. {
  46504. spreadWings: {
  46505. height: math.unit(20, "feet"),
  46506. name: "Spread Wings",
  46507. image: {
  46508. source: "./media/characters/fledge/spread-wings.svg",
  46509. extra: 693/635,
  46510. bottom: 26/719
  46511. }
  46512. },
  46513. front: {
  46514. height: math.unit(20, "feet"),
  46515. name: "Front",
  46516. image: {
  46517. source: "./media/characters/fledge/front.svg",
  46518. extra: 684/637,
  46519. bottom: 18/702
  46520. }
  46521. },
  46522. frontAlt: {
  46523. height: math.unit(20, "feet"),
  46524. name: "Front (Alt)",
  46525. image: {
  46526. source: "./media/characters/fledge/front-alt.svg",
  46527. extra: 708/664,
  46528. bottom: 13/721
  46529. }
  46530. },
  46531. back: {
  46532. height: math.unit(20, "feet"),
  46533. name: "Back",
  46534. image: {
  46535. source: "./media/characters/fledge/back.svg",
  46536. extra: 718/634,
  46537. bottom: 22/740
  46538. }
  46539. },
  46540. head: {
  46541. height: math.unit(5.55, "feet"),
  46542. name: "Head",
  46543. image: {
  46544. source: "./media/characters/fledge/head.svg"
  46545. }
  46546. },
  46547. headAlt: {
  46548. height: math.unit(5.1, "feet"),
  46549. name: "Head (Alt)",
  46550. image: {
  46551. source: "./media/characters/fledge/head-alt.svg"
  46552. }
  46553. },
  46554. },
  46555. [
  46556. {
  46557. name: "Small",
  46558. height: math.unit(6 + 2/12, "feet")
  46559. },
  46560. {
  46561. name: "Big",
  46562. height: math.unit(20, "feet"),
  46563. default: true
  46564. },
  46565. {
  46566. name: "Giant",
  46567. height: math.unit(100, "feet")
  46568. },
  46569. {
  46570. name: "Macro",
  46571. height: math.unit(200, "feet")
  46572. },
  46573. ]
  46574. ))
  46575. characterMakers.push(() => makeCharacter(
  46576. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46577. {
  46578. front: {
  46579. height: math.unit(1, "meter"),
  46580. name: "Front",
  46581. image: {
  46582. source: "./media/characters/atlas-morenai/front.svg",
  46583. extra: 1275/1043,
  46584. bottom: 19/1294
  46585. }
  46586. },
  46587. back: {
  46588. height: math.unit(1, "meter"),
  46589. name: "Back",
  46590. image: {
  46591. source: "./media/characters/atlas-morenai/back.svg",
  46592. extra: 1141/1001,
  46593. bottom: 25/1166
  46594. }
  46595. },
  46596. },
  46597. [
  46598. {
  46599. name: "Normal",
  46600. height: math.unit(1, "meter"),
  46601. default: true
  46602. },
  46603. {
  46604. name: "Magic-Infused",
  46605. height: math.unit(5, "meters")
  46606. },
  46607. ]
  46608. ))
  46609. characterMakers.push(() => makeCharacter(
  46610. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46611. {
  46612. front: {
  46613. height: math.unit(5, "meters"),
  46614. name: "Front",
  46615. image: {
  46616. source: "./media/characters/cintia/front.svg",
  46617. extra: 1312/1228,
  46618. bottom: 38/1350
  46619. }
  46620. },
  46621. back: {
  46622. height: math.unit(5, "meters"),
  46623. name: "Back",
  46624. image: {
  46625. source: "./media/characters/cintia/back.svg",
  46626. extra: 1260/1166,
  46627. bottom: 98/1358
  46628. }
  46629. },
  46630. frontDick: {
  46631. height: math.unit(5, "meters"),
  46632. name: "Front (Dick)",
  46633. image: {
  46634. source: "./media/characters/cintia/front-dick.svg",
  46635. extra: 1312/1228,
  46636. bottom: 38/1350
  46637. }
  46638. },
  46639. backDick: {
  46640. height: math.unit(5, "meters"),
  46641. name: "Back (Dick)",
  46642. image: {
  46643. source: "./media/characters/cintia/back-dick.svg",
  46644. extra: 1260/1166,
  46645. bottom: 98/1358
  46646. }
  46647. },
  46648. bust: {
  46649. height: math.unit(1.97, "meters"),
  46650. name: "Bust",
  46651. image: {
  46652. source: "./media/characters/cintia/bust.svg",
  46653. extra: 617/565,
  46654. bottom: 0/617
  46655. }
  46656. },
  46657. },
  46658. [
  46659. {
  46660. name: "Normal",
  46661. height: math.unit(5, "meters"),
  46662. default: true
  46663. },
  46664. ]
  46665. ))
  46666. characterMakers.push(() => makeCharacter(
  46667. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46668. {
  46669. side: {
  46670. height: math.unit(100, "feet"),
  46671. name: "Side",
  46672. image: {
  46673. source: "./media/characters/denora/side.svg",
  46674. extra: 875/803,
  46675. bottom: 9/884
  46676. }
  46677. },
  46678. },
  46679. [
  46680. {
  46681. name: "Standard",
  46682. height: math.unit(100, "feet"),
  46683. default: true
  46684. },
  46685. {
  46686. name: "Grand",
  46687. height: math.unit(1000, "feet")
  46688. },
  46689. {
  46690. name: "Conquering",
  46691. height: math.unit(10000, "feet")
  46692. },
  46693. ]
  46694. ))
  46695. characterMakers.push(() => makeCharacter(
  46696. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46697. {
  46698. dressed: {
  46699. height: math.unit(8 + 5/12, "feet"),
  46700. weight: math.unit(700, "lb"),
  46701. name: "Dressed",
  46702. image: {
  46703. source: "./media/characters/kiva/dressed.svg",
  46704. extra: 1102/1055,
  46705. bottom: 60/1162
  46706. }
  46707. },
  46708. nude: {
  46709. height: math.unit(8 + 5/12, "feet"),
  46710. weight: math.unit(700, "lb"),
  46711. name: "Nude",
  46712. image: {
  46713. source: "./media/characters/kiva/nude.svg",
  46714. extra: 1102/1055,
  46715. bottom: 60/1162
  46716. }
  46717. },
  46718. },
  46719. [
  46720. {
  46721. name: "Base Height",
  46722. height: math.unit(8 + 5/12, "feet"),
  46723. default: true
  46724. },
  46725. {
  46726. name: "Macro",
  46727. height: math.unit(100, "feet")
  46728. },
  46729. {
  46730. name: "Max",
  46731. height: math.unit(3280, "feet")
  46732. },
  46733. ]
  46734. ))
  46735. characterMakers.push(() => makeCharacter(
  46736. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46737. {
  46738. front: {
  46739. height: math.unit(6 + 8/12, "feet"),
  46740. weight: math.unit(250, "lb"),
  46741. name: "Front",
  46742. image: {
  46743. source: "./media/characters/ztragon/front.svg",
  46744. extra: 1825/1684,
  46745. bottom: 98/1923
  46746. }
  46747. },
  46748. },
  46749. [
  46750. {
  46751. name: "Normal",
  46752. height: math.unit(6 + 8/12, "feet"),
  46753. default: true
  46754. },
  46755. {
  46756. name: "Macro",
  46757. height: math.unit(80, "feet")
  46758. },
  46759. ]
  46760. ))
  46761. characterMakers.push(() => makeCharacter(
  46762. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46763. {
  46764. front: {
  46765. height: math.unit(10.4, "feet"),
  46766. weight: math.unit(2, "tons"),
  46767. name: "Front",
  46768. image: {
  46769. source: "./media/characters/yesenia/front.svg",
  46770. extra: 1479/1474,
  46771. bottom: 233/1712
  46772. }
  46773. },
  46774. },
  46775. [
  46776. {
  46777. name: "Normal",
  46778. height: math.unit(10.4, "feet"),
  46779. default: true
  46780. },
  46781. ]
  46782. ))
  46783. characterMakers.push(() => makeCharacter(
  46784. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46785. {
  46786. normal: {
  46787. height: math.unit(6 + 1/12, "feet"),
  46788. weight: math.unit(180, "lb"),
  46789. name: "Normal",
  46790. image: {
  46791. source: "./media/characters/leanne-lycheborne/normal.svg",
  46792. extra: 1748/1660,
  46793. bottom: 98/1846
  46794. }
  46795. },
  46796. were: {
  46797. height: math.unit(12, "feet"),
  46798. weight: math.unit(1600, "lb"),
  46799. name: "Were",
  46800. image: {
  46801. source: "./media/characters/leanne-lycheborne/were.svg",
  46802. extra: 1485/1432,
  46803. bottom: 66/1551
  46804. }
  46805. },
  46806. },
  46807. [
  46808. {
  46809. name: "Normal",
  46810. height: math.unit(6 + 1/12, "feet"),
  46811. default: true
  46812. },
  46813. ]
  46814. ))
  46815. characterMakers.push(() => makeCharacter(
  46816. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46817. {
  46818. side: {
  46819. height: math.unit(13, "feet"),
  46820. name: "Side",
  46821. image: {
  46822. source: "./media/characters/kira-tyler/side.svg",
  46823. extra: 693/393,
  46824. bottom: 58/751
  46825. }
  46826. },
  46827. },
  46828. [
  46829. {
  46830. name: "Normal",
  46831. height: math.unit(13, "feet"),
  46832. default: true
  46833. },
  46834. ]
  46835. ))
  46836. characterMakers.push(() => makeCharacter(
  46837. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46838. {
  46839. front: {
  46840. height: math.unit(10.3, "feet"),
  46841. weight: math.unit(150, "lb"),
  46842. name: "Front",
  46843. image: {
  46844. source: "./media/characters/blaze/front.svg",
  46845. extra: 1378/1286,
  46846. bottom: 172/1550
  46847. }
  46848. },
  46849. },
  46850. [
  46851. {
  46852. name: "Normal",
  46853. height: math.unit(10.3, "feet"),
  46854. default: true
  46855. },
  46856. ]
  46857. ))
  46858. characterMakers.push(() => makeCharacter(
  46859. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46860. {
  46861. side: {
  46862. height: math.unit(2, "meters"),
  46863. weight: math.unit(400, "kg"),
  46864. name: "Side",
  46865. image: {
  46866. source: "./media/characters/anu/side.svg",
  46867. extra: 506/394,
  46868. bottom: 18/524
  46869. }
  46870. },
  46871. },
  46872. [
  46873. {
  46874. name: "Humanoid",
  46875. height: math.unit(2, "meters")
  46876. },
  46877. {
  46878. name: "Normal",
  46879. height: math.unit(5, "meters"),
  46880. default: true
  46881. },
  46882. ]
  46883. ))
  46884. characterMakers.push(() => makeCharacter(
  46885. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46886. {
  46887. front: {
  46888. height: math.unit(5 + 5/12, "feet"),
  46889. weight: math.unit(170, "lb"),
  46890. name: "Front",
  46891. image: {
  46892. source: "./media/characters/synx-the-lynx/front.svg",
  46893. extra: 1893/1745,
  46894. bottom: 17/1910
  46895. }
  46896. },
  46897. side: {
  46898. height: math.unit(5 + 5/12, "feet"),
  46899. weight: math.unit(170, "lb"),
  46900. name: "Side",
  46901. image: {
  46902. source: "./media/characters/synx-the-lynx/side.svg",
  46903. extra: 1884/1740,
  46904. bottom: 39/1923
  46905. }
  46906. },
  46907. back: {
  46908. height: math.unit(5 + 5/12, "feet"),
  46909. weight: math.unit(170, "lb"),
  46910. name: "Back",
  46911. image: {
  46912. source: "./media/characters/synx-the-lynx/back.svg",
  46913. extra: 1903/1755,
  46914. bottom: 14/1917
  46915. }
  46916. },
  46917. },
  46918. [
  46919. {
  46920. name: "Normal",
  46921. height: math.unit(5 + 5/12, "feet"),
  46922. default: true
  46923. },
  46924. ]
  46925. ))
  46926. characterMakers.push(() => makeCharacter(
  46927. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46928. {
  46929. back: {
  46930. height: math.unit(15, "feet"),
  46931. name: "Back",
  46932. image: {
  46933. source: "./media/characters/nadezda-fex/back.svg",
  46934. extra: 1695/1481,
  46935. bottom: 25/1720
  46936. }
  46937. },
  46938. },
  46939. [
  46940. {
  46941. name: "Normal",
  46942. height: math.unit(15, "feet"),
  46943. default: true
  46944. },
  46945. {
  46946. name: "Macro",
  46947. height: math.unit(2.5, "miles")
  46948. },
  46949. {
  46950. name: "Goddess",
  46951. height: math.unit(2, "multiverses")
  46952. },
  46953. ]
  46954. ))
  46955. characterMakers.push(() => makeCharacter(
  46956. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46957. {
  46958. front: {
  46959. height: math.unit(216, "cm"),
  46960. name: "Front",
  46961. image: {
  46962. source: "./media/characters/lev/front.svg",
  46963. extra: 1728/1670,
  46964. bottom: 82/1810
  46965. }
  46966. },
  46967. back: {
  46968. height: math.unit(216, "cm"),
  46969. name: "Back",
  46970. image: {
  46971. source: "./media/characters/lev/back.svg",
  46972. extra: 1738/1675,
  46973. bottom: 24/1762
  46974. }
  46975. },
  46976. dressed: {
  46977. height: math.unit(216, "cm"),
  46978. name: "Dressed",
  46979. image: {
  46980. source: "./media/characters/lev/dressed.svg",
  46981. extra: 1397/1351,
  46982. bottom: 73/1470
  46983. }
  46984. },
  46985. head: {
  46986. height: math.unit(0.51, "meter"),
  46987. name: "Head",
  46988. image: {
  46989. source: "./media/characters/lev/head.svg"
  46990. }
  46991. },
  46992. },
  46993. [
  46994. {
  46995. name: "Normal",
  46996. height: math.unit(216, "cm"),
  46997. default: true
  46998. },
  46999. {
  47000. name: "Relatively Macro",
  47001. height: math.unit(80, "meters")
  47002. },
  47003. {
  47004. name: "Megamacro",
  47005. height: math.unit(21600, "meters")
  47006. },
  47007. {
  47008. name: "Megamacro+",
  47009. height: math.unit(64800, "meters")
  47010. },
  47011. ]
  47012. ))
  47013. characterMakers.push(() => makeCharacter(
  47014. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47015. {
  47016. front: {
  47017. height: math.unit(2, "meters"),
  47018. weight: math.unit(80, "kg"),
  47019. name: "Front",
  47020. image: {
  47021. source: "./media/characters/moka/front.svg",
  47022. extra: 1337/1255,
  47023. bottom: 58/1395
  47024. }
  47025. },
  47026. },
  47027. [
  47028. {
  47029. name: "Micro",
  47030. height: math.unit(15, "cm")
  47031. },
  47032. {
  47033. name: "Normal",
  47034. height: math.unit(2, "meters"),
  47035. default: true
  47036. },
  47037. {
  47038. name: "Macro",
  47039. height: math.unit(20, "meters"),
  47040. },
  47041. ]
  47042. ))
  47043. characterMakers.push(() => makeCharacter(
  47044. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47045. {
  47046. front: {
  47047. height: math.unit(9, "feet"),
  47048. weight: math.unit(240, "lb"),
  47049. name: "Front",
  47050. image: {
  47051. source: "./media/characters/kuzco/front.svg",
  47052. extra: 1593/1487,
  47053. bottom: 32/1625
  47054. }
  47055. },
  47056. side: {
  47057. height: math.unit(9, "feet"),
  47058. weight: math.unit(240, "lb"),
  47059. name: "Side",
  47060. image: {
  47061. source: "./media/characters/kuzco/side.svg",
  47062. extra: 1575/1485,
  47063. bottom: 30/1605
  47064. }
  47065. },
  47066. back: {
  47067. height: math.unit(9, "feet"),
  47068. weight: math.unit(240, "lb"),
  47069. name: "Back",
  47070. image: {
  47071. source: "./media/characters/kuzco/back.svg",
  47072. extra: 1603/1514,
  47073. bottom: 14/1617
  47074. }
  47075. },
  47076. },
  47077. [
  47078. {
  47079. name: "Normal",
  47080. height: math.unit(9, "feet"),
  47081. default: true
  47082. },
  47083. ]
  47084. ))
  47085. characterMakers.push(() => makeCharacter(
  47086. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47087. {
  47088. side: {
  47089. height: math.unit(2, "meters"),
  47090. weight: math.unit(300, "kg"),
  47091. name: "Side",
  47092. image: {
  47093. source: "./media/characters/ceruleus/side.svg",
  47094. extra: 1068/974,
  47095. bottom: 126/1194
  47096. }
  47097. },
  47098. maw: {
  47099. height: math.unit(0.8125, "meter"),
  47100. name: "Maw",
  47101. image: {
  47102. source: "./media/characters/ceruleus/maw.svg"
  47103. }
  47104. },
  47105. },
  47106. [
  47107. {
  47108. name: "Normal",
  47109. height: math.unit(16, "meters"),
  47110. default: true
  47111. },
  47112. ]
  47113. ))
  47114. characterMakers.push(() => makeCharacter(
  47115. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47116. {
  47117. front: {
  47118. height: math.unit(9, "feet"),
  47119. weight: math.unit(500, "kg"),
  47120. name: "Front",
  47121. image: {
  47122. source: "./media/characters/acouya/front.svg",
  47123. extra: 1660/1473,
  47124. bottom: 28/1688
  47125. }
  47126. },
  47127. },
  47128. [
  47129. {
  47130. name: "Normal",
  47131. height: math.unit(9, "feet"),
  47132. default: true
  47133. },
  47134. ]
  47135. ))
  47136. characterMakers.push(() => makeCharacter(
  47137. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47138. {
  47139. front: {
  47140. height: math.unit(5 + 6/12, "feet"),
  47141. weight: math.unit(195, "lb"),
  47142. name: "Front",
  47143. image: {
  47144. source: "./media/characters/vant/front.svg",
  47145. extra: 1396/1320,
  47146. bottom: 20/1416
  47147. }
  47148. },
  47149. back: {
  47150. height: math.unit(5 + 6/12, "feet"),
  47151. weight: math.unit(195, "lb"),
  47152. name: "Back",
  47153. image: {
  47154. source: "./media/characters/vant/back.svg",
  47155. extra: 1396/1320,
  47156. bottom: 20/1416
  47157. }
  47158. },
  47159. maw: {
  47160. height: math.unit(0.75, "feet"),
  47161. name: "Maw",
  47162. image: {
  47163. source: "./media/characters/vant/maw.svg"
  47164. }
  47165. },
  47166. paw: {
  47167. height: math.unit(1.07, "feet"),
  47168. name: "Paw",
  47169. image: {
  47170. source: "./media/characters/vant/paw.svg"
  47171. }
  47172. },
  47173. },
  47174. [
  47175. {
  47176. name: "Micro",
  47177. height: math.unit(0.25, "inches")
  47178. },
  47179. {
  47180. name: "Normal",
  47181. height: math.unit(5 + 6/12, "feet"),
  47182. default: true
  47183. },
  47184. {
  47185. name: "Macro",
  47186. height: math.unit(75, "feet")
  47187. },
  47188. ]
  47189. ))
  47190. characterMakers.push(() => makeCharacter(
  47191. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47192. {
  47193. front: {
  47194. height: math.unit(30, "meters"),
  47195. weight: math.unit(363, "tons"),
  47196. name: "Front",
  47197. image: {
  47198. source: "./media/characters/ahra/front.svg",
  47199. extra: 1914/1814,
  47200. bottom: 46/1960
  47201. }
  47202. },
  47203. },
  47204. [
  47205. {
  47206. name: "Macro",
  47207. height: math.unit(30, "meters"),
  47208. default: true
  47209. },
  47210. ]
  47211. ))
  47212. characterMakers.push(() => makeCharacter(
  47213. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47214. {
  47215. undressed: {
  47216. height: math.unit(2, "m"),
  47217. weight: math.unit(250, "kg"),
  47218. name: "Undressed",
  47219. image: {
  47220. source: "./media/characters/coriander/undressed.svg",
  47221. extra: 1757/1606,
  47222. bottom: 107/1864
  47223. }
  47224. },
  47225. dressed: {
  47226. height: math.unit(2, "m"),
  47227. weight: math.unit(250, "kg"),
  47228. name: "Dressed",
  47229. image: {
  47230. source: "./media/characters/coriander/dressed.svg",
  47231. extra: 1757/1606,
  47232. bottom: 107/1864
  47233. }
  47234. },
  47235. },
  47236. [
  47237. {
  47238. name: "Normal",
  47239. height: math.unit(4, "meters"),
  47240. default: true
  47241. },
  47242. {
  47243. name: "XL",
  47244. height: math.unit(6, "meters")
  47245. },
  47246. {
  47247. name: "XXL",
  47248. height: math.unit(8, "meters")
  47249. },
  47250. ]
  47251. ))
  47252. characterMakers.push(() => makeCharacter(
  47253. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47254. {
  47255. front: {
  47256. height: math.unit(6, "feet"),
  47257. name: "Front",
  47258. image: {
  47259. source: "./media/characters/syrinx/front.svg",
  47260. extra: 1557/1259,
  47261. bottom: 171/1728
  47262. }
  47263. },
  47264. },
  47265. [
  47266. {
  47267. name: "Normal",
  47268. height: math.unit(6 + 3/12, "feet"),
  47269. default: true
  47270. },
  47271. ]
  47272. ))
  47273. characterMakers.push(() => makeCharacter(
  47274. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47275. {
  47276. front: {
  47277. height: math.unit(11 + 6/12, "feet"),
  47278. weight: math.unit(1.5, "tons"),
  47279. name: "Front",
  47280. image: {
  47281. source: "./media/characters/bor/front.svg",
  47282. extra: 1189/1109,
  47283. bottom: 170/1359
  47284. }
  47285. },
  47286. },
  47287. [
  47288. {
  47289. name: "Normal",
  47290. height: math.unit(11 + 6/12, "feet"),
  47291. default: true
  47292. },
  47293. {
  47294. name: "Macro",
  47295. height: math.unit(32 + 9/12, "feet")
  47296. },
  47297. ]
  47298. ))
  47299. characterMakers.push(() => makeCharacter(
  47300. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47301. {
  47302. anthro: {
  47303. height: math.unit(9, "feet"),
  47304. weight: math.unit(2076, "lb"),
  47305. name: "Anthro",
  47306. image: {
  47307. source: "./media/characters/abacus/anthro.svg",
  47308. extra: 1540/1494,
  47309. bottom: 233/1773
  47310. }
  47311. },
  47312. pigeon: {
  47313. height: math.unit(1, "feet"),
  47314. name: "Pigeon",
  47315. image: {
  47316. source: "./media/characters/abacus/pigeon.svg",
  47317. extra: 528/525,
  47318. bottom: 46/574
  47319. }
  47320. },
  47321. },
  47322. [
  47323. {
  47324. name: "Normal",
  47325. height: math.unit(9, "feet"),
  47326. default: true
  47327. },
  47328. ]
  47329. ))
  47330. characterMakers.push(() => makeCharacter(
  47331. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47332. {
  47333. side: {
  47334. height: math.unit(6, "feet"),
  47335. name: "Side",
  47336. image: {
  47337. source: "./media/characters/delkhan/side.svg",
  47338. extra: 1884/1786,
  47339. bottom: 308/2192
  47340. }
  47341. },
  47342. head: {
  47343. height: math.unit(3.38, "feet"),
  47344. name: "Head",
  47345. image: {
  47346. source: "./media/characters/delkhan/head.svg"
  47347. }
  47348. },
  47349. },
  47350. [
  47351. {
  47352. name: "Normal",
  47353. height: math.unit(72, "feet"),
  47354. default: true
  47355. },
  47356. {
  47357. name: "Giant",
  47358. height: math.unit(172, "feet")
  47359. },
  47360. ]
  47361. ))
  47362. characterMakers.push(() => makeCharacter(
  47363. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47364. {
  47365. standing: {
  47366. height: math.unit(6, "feet"),
  47367. name: "Standing",
  47368. image: {
  47369. source: "./media/characters/euchidat/standing.svg",
  47370. extra: 1612/1553,
  47371. bottom: 116/1728
  47372. }
  47373. },
  47374. leaning: {
  47375. height: math.unit(6, "feet"),
  47376. name: "Leaning",
  47377. image: {
  47378. source: "./media/characters/euchidat/leaning.svg",
  47379. extra: 1719/1674,
  47380. bottom: 27/1746
  47381. }
  47382. },
  47383. },
  47384. [
  47385. {
  47386. name: "Normal",
  47387. height: math.unit(175, "feet"),
  47388. default: true
  47389. },
  47390. {
  47391. name: "Megamacro",
  47392. height: math.unit(190, "miles")
  47393. },
  47394. {
  47395. name: "Gigamacro",
  47396. height: math.unit(190000, "miles")
  47397. },
  47398. ]
  47399. ))
  47400. characterMakers.push(() => makeCharacter(
  47401. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47402. {
  47403. front: {
  47404. height: math.unit(6, "feet"),
  47405. weight: math.unit(150, "lb"),
  47406. name: "Front",
  47407. image: {
  47408. source: "./media/characters/rebecca-stack/front.svg",
  47409. extra: 1256/1201,
  47410. bottom: 18/1274
  47411. }
  47412. },
  47413. },
  47414. [
  47415. {
  47416. name: "Normal",
  47417. height: math.unit(5 + 8/12, "feet"),
  47418. default: true
  47419. },
  47420. {
  47421. name: "Demolitionist",
  47422. height: math.unit(200, "feet")
  47423. },
  47424. {
  47425. name: "Out of Control",
  47426. height: math.unit(2, "miles")
  47427. },
  47428. {
  47429. name: "Giga",
  47430. height: math.unit(7200, "miles")
  47431. },
  47432. ]
  47433. ))
  47434. characterMakers.push(() => makeCharacter(
  47435. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47436. {
  47437. front: {
  47438. height: math.unit(6, "feet"),
  47439. weight: math.unit(150, "lb"),
  47440. name: "Front",
  47441. image: {
  47442. source: "./media/characters/jenny-cartwright/front.svg",
  47443. extra: 1384/1376,
  47444. bottom: 58/1442
  47445. }
  47446. },
  47447. },
  47448. [
  47449. {
  47450. name: "Normal",
  47451. height: math.unit(6 + 7/12, "feet"),
  47452. default: true
  47453. },
  47454. {
  47455. name: "Librarian",
  47456. height: math.unit(55, "feet")
  47457. },
  47458. {
  47459. name: "Sightseer",
  47460. height: math.unit(50, "miles")
  47461. },
  47462. {
  47463. name: "Giga",
  47464. height: math.unit(30000, "miles")
  47465. },
  47466. ]
  47467. ))
  47468. characterMakers.push(() => makeCharacter(
  47469. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47470. {
  47471. nude: {
  47472. height: math.unit(8, "feet"),
  47473. weight: math.unit(225, "lb"),
  47474. name: "Nude",
  47475. image: {
  47476. source: "./media/characters/marvy/nude.svg",
  47477. extra: 1900/1683,
  47478. bottom: 89/1989
  47479. }
  47480. },
  47481. dressed: {
  47482. height: math.unit(8, "feet"),
  47483. weight: math.unit(225, "lb"),
  47484. name: "Dressed",
  47485. image: {
  47486. source: "./media/characters/marvy/dressed.svg",
  47487. extra: 1900/1683,
  47488. bottom: 89/1989
  47489. }
  47490. },
  47491. head: {
  47492. height: math.unit(2.85, "feet"),
  47493. name: "Head",
  47494. image: {
  47495. source: "./media/characters/marvy/head.svg"
  47496. }
  47497. },
  47498. },
  47499. [
  47500. {
  47501. name: "Normal",
  47502. height: math.unit(8, "feet"),
  47503. default: true
  47504. },
  47505. ]
  47506. ))
  47507. characterMakers.push(() => makeCharacter(
  47508. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47509. {
  47510. front: {
  47511. height: math.unit(8, "feet"),
  47512. weight: math.unit(250, "lb"),
  47513. name: "Front",
  47514. image: {
  47515. source: "./media/characters/leah/front.svg",
  47516. extra: 1257/1149,
  47517. bottom: 109/1366
  47518. }
  47519. },
  47520. },
  47521. [
  47522. {
  47523. name: "Normal",
  47524. height: math.unit(8, "feet"),
  47525. default: true
  47526. },
  47527. {
  47528. name: "Minimacro",
  47529. height: math.unit(40, "feet")
  47530. },
  47531. {
  47532. name: "Macro",
  47533. height: math.unit(124, "feet")
  47534. },
  47535. {
  47536. name: "Megamacro",
  47537. height: math.unit(850, "feet")
  47538. },
  47539. ]
  47540. ))
  47541. characterMakers.push(() => makeCharacter(
  47542. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47543. {
  47544. side: {
  47545. height: math.unit(13 + 6/12, "feet"),
  47546. weight: math.unit(3200, "lb"),
  47547. name: "Side",
  47548. image: {
  47549. source: "./media/characters/alvir/side.svg",
  47550. extra: 896/589,
  47551. bottom: 26/922
  47552. }
  47553. },
  47554. },
  47555. [
  47556. {
  47557. name: "Normal",
  47558. height: math.unit(13 + 6/12, "feet"),
  47559. default: true
  47560. },
  47561. ]
  47562. ))
  47563. characterMakers.push(() => makeCharacter(
  47564. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47565. {
  47566. front: {
  47567. height: math.unit(5 + 4/12, "feet"),
  47568. weight: math.unit(236, "lb"),
  47569. name: "Front",
  47570. image: {
  47571. source: "./media/characters/zaina-khalil/front.svg",
  47572. extra: 1533/1485,
  47573. bottom: 94/1627
  47574. }
  47575. },
  47576. side: {
  47577. height: math.unit(5 + 4/12, "feet"),
  47578. weight: math.unit(236, "lb"),
  47579. name: "Side",
  47580. image: {
  47581. source: "./media/characters/zaina-khalil/side.svg",
  47582. extra: 1537/1498,
  47583. bottom: 66/1603
  47584. }
  47585. },
  47586. back: {
  47587. height: math.unit(5 + 4/12, "feet"),
  47588. weight: math.unit(236, "lb"),
  47589. name: "Back",
  47590. image: {
  47591. source: "./media/characters/zaina-khalil/back.svg",
  47592. extra: 1546/1494,
  47593. bottom: 89/1635
  47594. }
  47595. },
  47596. },
  47597. [
  47598. {
  47599. name: "Normal",
  47600. height: math.unit(5 + 4/12, "feet"),
  47601. default: true
  47602. },
  47603. ]
  47604. ))
  47605. characterMakers.push(() => makeCharacter(
  47606. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47607. {
  47608. side: {
  47609. height: math.unit(12, "feet"),
  47610. weight: math.unit(4000, "lb"),
  47611. name: "Side",
  47612. image: {
  47613. source: "./media/characters/terry/side.svg",
  47614. extra: 1518/1439,
  47615. bottom: 149/1667
  47616. }
  47617. },
  47618. },
  47619. [
  47620. {
  47621. name: "Normal",
  47622. height: math.unit(12, "feet"),
  47623. default: true
  47624. },
  47625. ]
  47626. ))
  47627. characterMakers.push(() => makeCharacter(
  47628. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47629. {
  47630. front: {
  47631. height: math.unit(12, "feet"),
  47632. weight: math.unit(1500, "lb"),
  47633. name: "Front",
  47634. image: {
  47635. source: "./media/characters/kahea/front.svg",
  47636. extra: 1722/1617,
  47637. bottom: 179/1901
  47638. }
  47639. },
  47640. },
  47641. [
  47642. {
  47643. name: "Normal",
  47644. height: math.unit(12, "feet"),
  47645. default: true
  47646. },
  47647. ]
  47648. ))
  47649. characterMakers.push(() => makeCharacter(
  47650. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47651. {
  47652. demonFront: {
  47653. height: math.unit(36, "feet"),
  47654. name: "Front",
  47655. image: {
  47656. source: "./media/characters/alex-xuria/demon-front.svg",
  47657. extra: 1705/1673,
  47658. bottom: 198/1903
  47659. },
  47660. form: "demon",
  47661. default: true
  47662. },
  47663. demonBack: {
  47664. height: math.unit(36, "feet"),
  47665. name: "Back",
  47666. image: {
  47667. source: "./media/characters/alex-xuria/demon-back.svg",
  47668. extra: 1725/1693,
  47669. bottom: 70/1795
  47670. },
  47671. form: "demon"
  47672. },
  47673. demonHead: {
  47674. height: math.unit(2.14, "meters"),
  47675. name: "Head",
  47676. image: {
  47677. source: "./media/characters/alex-xuria/demon-head.svg"
  47678. },
  47679. form: "demon"
  47680. },
  47681. demonHand: {
  47682. height: math.unit(1.61, "meters"),
  47683. name: "Hand",
  47684. image: {
  47685. source: "./media/characters/alex-xuria/demon-hand.svg"
  47686. },
  47687. form: "demon"
  47688. },
  47689. demonPaw: {
  47690. height: math.unit(1.35, "meters"),
  47691. name: "Paw",
  47692. image: {
  47693. source: "./media/characters/alex-xuria/demon-paw.svg"
  47694. },
  47695. form: "demon"
  47696. },
  47697. demonFoot: {
  47698. height: math.unit(2.2, "meters"),
  47699. name: "Foot",
  47700. image: {
  47701. source: "./media/characters/alex-xuria/demon-foot.svg"
  47702. },
  47703. form: "demon"
  47704. },
  47705. demonCock: {
  47706. height: math.unit(1.74, "meters"),
  47707. name: "Cock",
  47708. image: {
  47709. source: "./media/characters/alex-xuria/demon-cock.svg"
  47710. },
  47711. form: "demon"
  47712. },
  47713. demonTailClosed: {
  47714. height: math.unit(1.47, "meters"),
  47715. name: "Tail (Closed)",
  47716. image: {
  47717. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47718. },
  47719. form: "demon"
  47720. },
  47721. demonTailOpen: {
  47722. height: math.unit(2.85, "meters"),
  47723. name: "Tail (Open)",
  47724. image: {
  47725. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47726. },
  47727. form: "demon"
  47728. },
  47729. incubusFront: {
  47730. height: math.unit(12, "feet"),
  47731. name: "Front",
  47732. image: {
  47733. source: "./media/characters/alex-xuria/incubus-front.svg",
  47734. extra: 1754/1677,
  47735. bottom: 125/1879
  47736. },
  47737. form: "incubus",
  47738. default: true
  47739. },
  47740. incubusBack: {
  47741. height: math.unit(12, "feet"),
  47742. name: "Back",
  47743. image: {
  47744. source: "./media/characters/alex-xuria/incubus-back.svg",
  47745. extra: 1702/1647,
  47746. bottom: 30/1732
  47747. },
  47748. form: "incubus"
  47749. },
  47750. incubusHead: {
  47751. height: math.unit(3.45, "feet"),
  47752. name: "Head",
  47753. image: {
  47754. source: "./media/characters/alex-xuria/incubus-head.svg"
  47755. },
  47756. form: "incubus"
  47757. },
  47758. rabbitFront: {
  47759. height: math.unit(6, "feet"),
  47760. name: "Front",
  47761. image: {
  47762. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47763. extra: 1369/1349,
  47764. bottom: 45/1414
  47765. },
  47766. form: "rabbit",
  47767. default: true
  47768. },
  47769. rabbitSide: {
  47770. height: math.unit(6, "feet"),
  47771. name: "Side",
  47772. image: {
  47773. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47774. extra: 1370/1356,
  47775. bottom: 37/1407
  47776. },
  47777. form: "rabbit"
  47778. },
  47779. rabbitBack: {
  47780. height: math.unit(6, "feet"),
  47781. name: "Back",
  47782. image: {
  47783. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47784. extra: 1375/1358,
  47785. bottom: 43/1418
  47786. },
  47787. form: "rabbit"
  47788. },
  47789. },
  47790. [
  47791. {
  47792. name: "Normal",
  47793. height: math.unit(6, "feet"),
  47794. default: true,
  47795. form: "rabbit"
  47796. },
  47797. {
  47798. name: "Incubus",
  47799. height: math.unit(12, "feet"),
  47800. default: true,
  47801. form: "incubus"
  47802. },
  47803. {
  47804. name: "Demon",
  47805. height: math.unit(36, "feet"),
  47806. default: true,
  47807. form: "demon"
  47808. }
  47809. ],
  47810. {
  47811. "demon": {
  47812. name: "Demon",
  47813. default: true
  47814. },
  47815. "incubus": {
  47816. name: "Incubus",
  47817. },
  47818. "rabbit": {
  47819. name: "Rabbit"
  47820. }
  47821. }
  47822. ))
  47823. characterMakers.push(() => makeCharacter(
  47824. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47825. {
  47826. front: {
  47827. height: math.unit(7 + 5/12, "feet"),
  47828. weight: math.unit(510, "lb"),
  47829. name: "Front",
  47830. image: {
  47831. source: "./media/characters/syrup/front.svg",
  47832. extra: 932/916,
  47833. bottom: 26/958
  47834. }
  47835. },
  47836. },
  47837. [
  47838. {
  47839. name: "Normal",
  47840. height: math.unit(7 + 5/12, "feet"),
  47841. default: true
  47842. },
  47843. {
  47844. name: "Big",
  47845. height: math.unit(50, "feet")
  47846. },
  47847. {
  47848. name: "Macro",
  47849. height: math.unit(300, "feet")
  47850. },
  47851. {
  47852. name: "Megamacro",
  47853. height: math.unit(1, "mile")
  47854. },
  47855. ]
  47856. ))
  47857. characterMakers.push(() => makeCharacter(
  47858. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47859. {
  47860. front: {
  47861. height: math.unit(6 + 9/12, "feet"),
  47862. name: "Front",
  47863. image: {
  47864. source: "./media/characters/zeimne/front.svg",
  47865. extra: 1969/1806,
  47866. bottom: 53/2022
  47867. }
  47868. },
  47869. },
  47870. [
  47871. {
  47872. name: "Normal",
  47873. height: math.unit(6 + 9/12, "feet"),
  47874. default: true
  47875. },
  47876. {
  47877. name: "Giant",
  47878. height: math.unit(550, "feet")
  47879. },
  47880. {
  47881. name: "Mega",
  47882. height: math.unit(3, "miles")
  47883. },
  47884. {
  47885. name: "Giga",
  47886. height: math.unit(250, "miles")
  47887. },
  47888. {
  47889. name: "Tera",
  47890. height: math.unit(1, "AU")
  47891. },
  47892. ]
  47893. ))
  47894. characterMakers.push(() => makeCharacter(
  47895. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47896. {
  47897. front: {
  47898. height: math.unit(5 + 2/12, "feet"),
  47899. name: "Front",
  47900. image: {
  47901. source: "./media/characters/grar/front.svg",
  47902. extra: 1331/1119,
  47903. bottom: 60/1391
  47904. }
  47905. },
  47906. back: {
  47907. height: math.unit(5 + 2/12, "feet"),
  47908. name: "Back",
  47909. image: {
  47910. source: "./media/characters/grar/back.svg",
  47911. extra: 1385/1169,
  47912. bottom: 23/1408
  47913. }
  47914. },
  47915. },
  47916. [
  47917. {
  47918. name: "Normal",
  47919. height: math.unit(5 + 2/12, "feet"),
  47920. default: true
  47921. },
  47922. ]
  47923. ))
  47924. characterMakers.push(() => makeCharacter(
  47925. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47926. {
  47927. front: {
  47928. height: math.unit(13 + 7/12, "feet"),
  47929. weight: math.unit(2200, "lb"),
  47930. name: "Front",
  47931. image: {
  47932. source: "./media/characters/endraya/front.svg",
  47933. extra: 1289/1215,
  47934. bottom: 50/1339
  47935. }
  47936. },
  47937. nude: {
  47938. height: math.unit(13 + 7/12, "feet"),
  47939. weight: math.unit(2200, "lb"),
  47940. name: "Nude",
  47941. image: {
  47942. source: "./media/characters/endraya/nude.svg",
  47943. extra: 1247/1171,
  47944. bottom: 40/1287
  47945. }
  47946. },
  47947. head: {
  47948. height: math.unit(2.6, "feet"),
  47949. name: "Head",
  47950. image: {
  47951. source: "./media/characters/endraya/head.svg"
  47952. }
  47953. },
  47954. slit: {
  47955. height: math.unit(3.4, "feet"),
  47956. name: "Slit",
  47957. image: {
  47958. source: "./media/characters/endraya/slit.svg"
  47959. }
  47960. },
  47961. },
  47962. [
  47963. {
  47964. name: "Normal",
  47965. height: math.unit(13 + 7/12, "feet"),
  47966. default: true
  47967. },
  47968. {
  47969. name: "Macro",
  47970. height: math.unit(200, "feet")
  47971. },
  47972. ]
  47973. ))
  47974. characterMakers.push(() => makeCharacter(
  47975. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47976. {
  47977. front: {
  47978. height: math.unit(1.81, "meters"),
  47979. weight: math.unit(69, "kg"),
  47980. name: "Front",
  47981. image: {
  47982. source: "./media/characters/rodryana/front.svg",
  47983. extra: 2002/1921,
  47984. bottom: 53/2055
  47985. }
  47986. },
  47987. back: {
  47988. height: math.unit(1.81, "meters"),
  47989. weight: math.unit(69, "kg"),
  47990. name: "Back",
  47991. image: {
  47992. source: "./media/characters/rodryana/back.svg",
  47993. extra: 1993/1926,
  47994. bottom: 48/2041
  47995. }
  47996. },
  47997. maw: {
  47998. height: math.unit(0.19769417475, "meters"),
  47999. name: "Maw",
  48000. image: {
  48001. source: "./media/characters/rodryana/maw.svg"
  48002. }
  48003. },
  48004. slit: {
  48005. height: math.unit(0.31631067961, "meters"),
  48006. name: "Slit",
  48007. image: {
  48008. source: "./media/characters/rodryana/slit.svg"
  48009. }
  48010. },
  48011. },
  48012. [
  48013. {
  48014. name: "Normal",
  48015. height: math.unit(1.81, "meters")
  48016. },
  48017. {
  48018. name: "Mini Macro",
  48019. height: math.unit(181, "meters")
  48020. },
  48021. {
  48022. name: "Macro",
  48023. height: math.unit(452, "meters"),
  48024. default: true
  48025. },
  48026. {
  48027. name: "Mega Macro",
  48028. height: math.unit(1.375, "km")
  48029. },
  48030. {
  48031. name: "Giga Macro",
  48032. height: math.unit(13.575, "km")
  48033. },
  48034. ]
  48035. ))
  48036. characterMakers.push(() => makeCharacter(
  48037. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48038. {
  48039. front: {
  48040. height: math.unit(6, "feet"),
  48041. weight: math.unit(1000, "lb"),
  48042. name: "Front",
  48043. image: {
  48044. source: "./media/characters/asaya/front.svg",
  48045. extra: 1460/1200,
  48046. bottom: 71/1531
  48047. }
  48048. },
  48049. },
  48050. [
  48051. {
  48052. name: "Normal",
  48053. height: math.unit(8, "km"),
  48054. default: true
  48055. },
  48056. ]
  48057. ))
  48058. characterMakers.push(() => makeCharacter(
  48059. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48060. {
  48061. front: {
  48062. height: math.unit(3.5, "meters"),
  48063. name: "Front",
  48064. image: {
  48065. source: "./media/characters/sarzu-and-israz/front.svg",
  48066. extra: 1570/1558,
  48067. bottom: 150/1720
  48068. },
  48069. },
  48070. back: {
  48071. height: math.unit(3.5, "meters"),
  48072. name: "Back",
  48073. image: {
  48074. source: "./media/characters/sarzu-and-israz/back.svg",
  48075. extra: 1523/1509,
  48076. bottom: 132/1655
  48077. },
  48078. },
  48079. frontFemale: {
  48080. height: math.unit(3.5, "meters"),
  48081. name: "Front (Female)",
  48082. image: {
  48083. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48084. extra: 1570/1558,
  48085. bottom: 150/1720
  48086. },
  48087. },
  48088. frontHerm: {
  48089. height: math.unit(3.5, "meters"),
  48090. name: "Front (Herm)",
  48091. image: {
  48092. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48093. extra: 1570/1558,
  48094. bottom: 150/1720
  48095. },
  48096. },
  48097. },
  48098. [
  48099. {
  48100. name: "Normal",
  48101. height: math.unit(3.5, "meters"),
  48102. default: true,
  48103. },
  48104. {
  48105. name: "Macro",
  48106. height: math.unit(65.5, "meters"),
  48107. },
  48108. ],
  48109. ))
  48110. characterMakers.push(() => makeCharacter(
  48111. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48112. {
  48113. front: {
  48114. height: math.unit(6, "feet"),
  48115. weight: math.unit(250, "lb"),
  48116. name: "Front",
  48117. image: {
  48118. source: "./media/characters/zenimma/front.svg",
  48119. extra: 1346/1320,
  48120. bottom: 58/1404
  48121. }
  48122. },
  48123. back: {
  48124. height: math.unit(6, "feet"),
  48125. weight: math.unit(250, "lb"),
  48126. name: "Back",
  48127. image: {
  48128. source: "./media/characters/zenimma/back.svg",
  48129. extra: 1324/1308,
  48130. bottom: 44/1368
  48131. }
  48132. },
  48133. dick: {
  48134. height: math.unit(1.44, "feet"),
  48135. name: "Dick",
  48136. image: {
  48137. source: "./media/characters/zenimma/dick.svg"
  48138. }
  48139. },
  48140. },
  48141. [
  48142. {
  48143. name: "Canon Height",
  48144. height: math.unit(66, "miles"),
  48145. default: true
  48146. },
  48147. ]
  48148. ))
  48149. characterMakers.push(() => makeCharacter(
  48150. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48151. {
  48152. nude: {
  48153. height: math.unit(6, "feet"),
  48154. weight: math.unit(150, "lb"),
  48155. name: "Nude",
  48156. image: {
  48157. source: "./media/characters/shavon/nude.svg",
  48158. extra: 1242/1096,
  48159. bottom: 98/1340
  48160. }
  48161. },
  48162. dressed: {
  48163. height: math.unit(6, "feet"),
  48164. weight: math.unit(150, "lb"),
  48165. name: "Dressed",
  48166. image: {
  48167. source: "./media/characters/shavon/dressed.svg",
  48168. extra: 1242/1096,
  48169. bottom: 98/1340
  48170. }
  48171. },
  48172. },
  48173. [
  48174. {
  48175. name: "Macro",
  48176. height: math.unit(255, "feet"),
  48177. default: true
  48178. },
  48179. ]
  48180. ))
  48181. characterMakers.push(() => makeCharacter(
  48182. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48183. {
  48184. front: {
  48185. height: math.unit(6, "feet"),
  48186. name: "Front",
  48187. image: {
  48188. source: "./media/characters/steph/front.svg",
  48189. extra: 1430/1330,
  48190. bottom: 54/1484
  48191. }
  48192. },
  48193. },
  48194. [
  48195. {
  48196. name: "Normal",
  48197. height: math.unit(6, "feet"),
  48198. default: true
  48199. },
  48200. ]
  48201. ))
  48202. characterMakers.push(() => makeCharacter(
  48203. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48204. {
  48205. front: {
  48206. height: math.unit(9, "feet"),
  48207. weight: math.unit(400, "lb"),
  48208. name: "Front",
  48209. image: {
  48210. source: "./media/characters/kil'aman/front.svg",
  48211. extra: 1210/1159,
  48212. bottom: 109/1319
  48213. }
  48214. },
  48215. head: {
  48216. height: math.unit(2.14, "feet"),
  48217. name: "Head",
  48218. image: {
  48219. source: "./media/characters/kil'aman/head.svg"
  48220. }
  48221. },
  48222. maw: {
  48223. height: math.unit(1.21, "feet"),
  48224. name: "Maw",
  48225. image: {
  48226. source: "./media/characters/kil'aman/maw.svg"
  48227. }
  48228. },
  48229. foot: {
  48230. height: math.unit(1.7, "feet"),
  48231. name: "Foot",
  48232. image: {
  48233. source: "./media/characters/kil'aman/foot.svg"
  48234. }
  48235. },
  48236. dick: {
  48237. height: math.unit(2.1, "feet"),
  48238. name: "Dick",
  48239. image: {
  48240. source: "./media/characters/kil'aman/dick.svg"
  48241. }
  48242. },
  48243. },
  48244. [
  48245. {
  48246. name: "Normal",
  48247. height: math.unit(9, "feet")
  48248. },
  48249. {
  48250. name: "Canon Height",
  48251. height: math.unit(10, "miles"),
  48252. default: true
  48253. },
  48254. {
  48255. name: "Maximum",
  48256. height: math.unit(6e9, "miles")
  48257. },
  48258. ]
  48259. ))
  48260. characterMakers.push(() => makeCharacter(
  48261. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48262. {
  48263. front: {
  48264. height: math.unit(90, "feet"),
  48265. weight: math.unit(675000, "lb"),
  48266. name: "Front",
  48267. image: {
  48268. source: "./media/characters/qadan/front.svg",
  48269. extra: 1012/1004,
  48270. bottom: 78/1090
  48271. }
  48272. },
  48273. back: {
  48274. height: math.unit(90, "feet"),
  48275. weight: math.unit(675000, "lb"),
  48276. name: "Back",
  48277. image: {
  48278. source: "./media/characters/qadan/back.svg",
  48279. extra: 1042/1031,
  48280. bottom: 55/1097
  48281. }
  48282. },
  48283. armored: {
  48284. height: math.unit(90, "feet"),
  48285. weight: math.unit(675000, "lb"),
  48286. name: "Armored",
  48287. image: {
  48288. source: "./media/characters/qadan/armored.svg",
  48289. extra: 1047/1037,
  48290. bottom: 48/1095
  48291. }
  48292. },
  48293. },
  48294. [
  48295. {
  48296. name: "Normal",
  48297. height: math.unit(90, "feet"),
  48298. default: true
  48299. },
  48300. ]
  48301. ))
  48302. characterMakers.push(() => makeCharacter(
  48303. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48304. {
  48305. front: {
  48306. height: math.unit(6, "feet"),
  48307. weight: math.unit(225, "lb"),
  48308. name: "Front",
  48309. image: {
  48310. source: "./media/characters/brooke/front.svg",
  48311. extra: 1050/1010,
  48312. bottom: 66/1116
  48313. }
  48314. },
  48315. back: {
  48316. height: math.unit(6, "feet"),
  48317. weight: math.unit(225, "lb"),
  48318. name: "Back",
  48319. image: {
  48320. source: "./media/characters/brooke/back.svg",
  48321. extra: 1053/1013,
  48322. bottom: 41/1094
  48323. }
  48324. },
  48325. dressed: {
  48326. height: math.unit(6, "feet"),
  48327. weight: math.unit(225, "lb"),
  48328. name: "Dressed",
  48329. image: {
  48330. source: "./media/characters/brooke/dressed.svg",
  48331. extra: 1050/1010,
  48332. bottom: 66/1116
  48333. }
  48334. },
  48335. },
  48336. [
  48337. {
  48338. name: "Canon Height",
  48339. height: math.unit(500, "miles"),
  48340. default: true
  48341. },
  48342. ]
  48343. ))
  48344. characterMakers.push(() => makeCharacter(
  48345. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48346. {
  48347. front: {
  48348. height: math.unit(6 + 2/12, "feet"),
  48349. weight: math.unit(210, "lb"),
  48350. name: "Front",
  48351. image: {
  48352. source: "./media/characters/wubs/front.svg",
  48353. extra: 1345/1325,
  48354. bottom: 70/1415
  48355. }
  48356. },
  48357. back: {
  48358. height: math.unit(6 + 2/12, "feet"),
  48359. weight: math.unit(210, "lb"),
  48360. name: "Back",
  48361. image: {
  48362. source: "./media/characters/wubs/back.svg",
  48363. extra: 1296/1275,
  48364. bottom: 58/1354
  48365. }
  48366. },
  48367. },
  48368. [
  48369. {
  48370. name: "Normal",
  48371. height: math.unit(6 + 2/12, "feet"),
  48372. default: true
  48373. },
  48374. {
  48375. name: "Macro",
  48376. height: math.unit(1000, "feet")
  48377. },
  48378. {
  48379. name: "Megamacro",
  48380. height: math.unit(1, "mile")
  48381. },
  48382. ]
  48383. ))
  48384. characterMakers.push(() => makeCharacter(
  48385. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48386. {
  48387. front: {
  48388. height: math.unit(4, "feet"),
  48389. weight: math.unit(120, "lb"),
  48390. name: "Front",
  48391. image: {
  48392. source: "./media/characters/blue/front.svg",
  48393. extra: 1636/1525,
  48394. bottom: 43/1679
  48395. }
  48396. },
  48397. back: {
  48398. height: math.unit(4, "feet"),
  48399. weight: math.unit(120, "lb"),
  48400. name: "Back",
  48401. image: {
  48402. source: "./media/characters/blue/back.svg",
  48403. extra: 1660/1560,
  48404. bottom: 57/1717
  48405. }
  48406. },
  48407. paws: {
  48408. height: math.unit(0.826, "feet"),
  48409. name: "Paws",
  48410. image: {
  48411. source: "./media/characters/blue/paws.svg"
  48412. }
  48413. },
  48414. },
  48415. [
  48416. {
  48417. name: "Micro",
  48418. height: math.unit(3, "inches")
  48419. },
  48420. {
  48421. name: "Normal",
  48422. height: math.unit(4, "feet"),
  48423. default: true
  48424. },
  48425. {
  48426. name: "Femenine Form",
  48427. height: math.unit(14, "feet")
  48428. },
  48429. {
  48430. name: "Werebat Form",
  48431. height: math.unit(18, "feet")
  48432. },
  48433. ]
  48434. ))
  48435. characterMakers.push(() => makeCharacter(
  48436. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48437. {
  48438. female: {
  48439. height: math.unit(7 + 4/12, "feet"),
  48440. weight: math.unit(243, "lb"),
  48441. name: "Female",
  48442. image: {
  48443. source: "./media/characters/kaya/female.svg",
  48444. extra: 975/898,
  48445. bottom: 34/1009
  48446. }
  48447. },
  48448. herm: {
  48449. height: math.unit(7 + 4/12, "feet"),
  48450. weight: math.unit(243, "lb"),
  48451. name: "Herm",
  48452. image: {
  48453. source: "./media/characters/kaya/herm.svg",
  48454. extra: 975/898,
  48455. bottom: 34/1009
  48456. }
  48457. },
  48458. },
  48459. [
  48460. {
  48461. name: "Normal",
  48462. height: math.unit(7 + 4/12, "feet"),
  48463. default: true
  48464. },
  48465. ]
  48466. ))
  48467. characterMakers.push(() => makeCharacter(
  48468. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48469. {
  48470. female: {
  48471. height: math.unit(9 + 4/12, "feet"),
  48472. weight: math.unit(398, "lb"),
  48473. name: "Female",
  48474. image: {
  48475. source: "./media/characters/kassandra/female.svg",
  48476. extra: 908/839,
  48477. bottom: 61/969
  48478. }
  48479. },
  48480. intersex: {
  48481. height: math.unit(9 + 4/12, "feet"),
  48482. weight: math.unit(398, "lb"),
  48483. name: "Intersex",
  48484. image: {
  48485. source: "./media/characters/kassandra/intersex.svg",
  48486. extra: 908/839,
  48487. bottom: 61/969
  48488. }
  48489. },
  48490. },
  48491. [
  48492. {
  48493. name: "Normal",
  48494. height: math.unit(9 + 4/12, "feet"),
  48495. default: true
  48496. },
  48497. ]
  48498. ))
  48499. characterMakers.push(() => makeCharacter(
  48500. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48501. {
  48502. front: {
  48503. height: math.unit(3, "meters"),
  48504. name: "Front",
  48505. image: {
  48506. source: "./media/characters/amy/front.svg",
  48507. extra: 1380/1343,
  48508. bottom: 70/1450
  48509. }
  48510. },
  48511. back: {
  48512. height: math.unit(3, "meters"),
  48513. name: "Back",
  48514. image: {
  48515. source: "./media/characters/amy/back.svg",
  48516. extra: 1380/1347,
  48517. bottom: 66/1446
  48518. }
  48519. },
  48520. },
  48521. [
  48522. {
  48523. name: "Normal",
  48524. height: math.unit(3, "meters"),
  48525. default: true
  48526. },
  48527. ]
  48528. ))
  48529. characterMakers.push(() => makeCharacter(
  48530. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48531. {
  48532. side: {
  48533. height: math.unit(47, "cm"),
  48534. weight: math.unit(10.8, "kg"),
  48535. name: "Side",
  48536. image: {
  48537. source: "./media/characters/alphaschakal/side.svg",
  48538. extra: 1058/568,
  48539. bottom: 62/1120
  48540. }
  48541. },
  48542. back: {
  48543. height: math.unit(78, "cm"),
  48544. weight: math.unit(10.8, "kg"),
  48545. name: "Back",
  48546. image: {
  48547. source: "./media/characters/alphaschakal/back.svg",
  48548. extra: 1102/942,
  48549. bottom: 185/1287
  48550. }
  48551. },
  48552. head: {
  48553. height: math.unit(28, "cm"),
  48554. name: "Head",
  48555. image: {
  48556. source: "./media/characters/alphaschakal/head.svg",
  48557. extra: 696/508,
  48558. bottom: 0/696
  48559. }
  48560. },
  48561. paw: {
  48562. height: math.unit(16, "cm"),
  48563. name: "Paw",
  48564. image: {
  48565. source: "./media/characters/alphaschakal/paw.svg"
  48566. }
  48567. },
  48568. },
  48569. [
  48570. {
  48571. name: "Normal",
  48572. height: math.unit(47, "cm"),
  48573. default: true
  48574. },
  48575. {
  48576. name: "Macro",
  48577. height: math.unit(340, "cm")
  48578. },
  48579. ]
  48580. ))
  48581. characterMakers.push(() => makeCharacter(
  48582. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48583. {
  48584. front: {
  48585. height: math.unit(36, "earths"),
  48586. name: "Front",
  48587. image: {
  48588. source: "./media/characters/ecobyss/front.svg",
  48589. extra: 1282/1215,
  48590. bottom: 11/1293
  48591. }
  48592. },
  48593. back: {
  48594. height: math.unit(36, "earths"),
  48595. name: "Back",
  48596. image: {
  48597. source: "./media/characters/ecobyss/back.svg",
  48598. extra: 1291/1222,
  48599. bottom: 8/1299
  48600. }
  48601. },
  48602. },
  48603. [
  48604. {
  48605. name: "Normal",
  48606. height: math.unit(36, "earths"),
  48607. default: true
  48608. },
  48609. ]
  48610. ))
  48611. characterMakers.push(() => makeCharacter(
  48612. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48613. {
  48614. front: {
  48615. height: math.unit(12, "feet"),
  48616. name: "Front",
  48617. image: {
  48618. source: "./media/characters/vasuk/front.svg",
  48619. extra: 1326/1207,
  48620. bottom: 64/1390
  48621. }
  48622. },
  48623. },
  48624. [
  48625. {
  48626. name: "Normal",
  48627. height: math.unit(12, "feet"),
  48628. default: true
  48629. },
  48630. ]
  48631. ))
  48632. characterMakers.push(() => makeCharacter(
  48633. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48634. {
  48635. side: {
  48636. height: math.unit(100, "feet"),
  48637. name: "Side",
  48638. image: {
  48639. source: "./media/characters/linneaus/side.svg",
  48640. extra: 987/807,
  48641. bottom: 47/1034
  48642. }
  48643. },
  48644. },
  48645. [
  48646. {
  48647. name: "Macro",
  48648. height: math.unit(100, "feet"),
  48649. default: true
  48650. },
  48651. ]
  48652. ))
  48653. characterMakers.push(() => makeCharacter(
  48654. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48655. {
  48656. front: {
  48657. height: math.unit(8, "feet"),
  48658. weight: math.unit(1200, "lb"),
  48659. name: "Front",
  48660. image: {
  48661. source: "./media/characters/nyterious-daligdig/front.svg",
  48662. extra: 1284/1094,
  48663. bottom: 84/1368
  48664. }
  48665. },
  48666. back: {
  48667. height: math.unit(8, "feet"),
  48668. weight: math.unit(1200, "lb"),
  48669. name: "Back",
  48670. image: {
  48671. source: "./media/characters/nyterious-daligdig/back.svg",
  48672. extra: 1301/1121,
  48673. bottom: 129/1430
  48674. }
  48675. },
  48676. mouth: {
  48677. height: math.unit(1.464, "feet"),
  48678. name: "Mouth",
  48679. image: {
  48680. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48681. }
  48682. },
  48683. },
  48684. [
  48685. {
  48686. name: "Small",
  48687. height: math.unit(8, "feet"),
  48688. default: true
  48689. },
  48690. {
  48691. name: "Normal",
  48692. height: math.unit(15, "feet")
  48693. },
  48694. {
  48695. name: "Macro",
  48696. height: math.unit(90, "feet")
  48697. },
  48698. ]
  48699. ))
  48700. characterMakers.push(() => makeCharacter(
  48701. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48702. {
  48703. front: {
  48704. height: math.unit(7 + 4/12, "feet"),
  48705. weight: math.unit(252, "lb"),
  48706. name: "Front",
  48707. image: {
  48708. source: "./media/characters/bandel/front.svg",
  48709. extra: 1946/1775,
  48710. bottom: 26/1972
  48711. }
  48712. },
  48713. back: {
  48714. height: math.unit(7 + 4/12, "feet"),
  48715. weight: math.unit(252, "lb"),
  48716. name: "Back",
  48717. image: {
  48718. source: "./media/characters/bandel/back.svg",
  48719. extra: 1940/1770,
  48720. bottom: 25/1965
  48721. }
  48722. },
  48723. maw: {
  48724. height: math.unit(2.15, "feet"),
  48725. name: "Maw",
  48726. image: {
  48727. source: "./media/characters/bandel/maw.svg"
  48728. }
  48729. },
  48730. stomach: {
  48731. height: math.unit(1.95, "feet"),
  48732. name: "Stomach",
  48733. image: {
  48734. source: "./media/characters/bandel/stomach.svg"
  48735. }
  48736. },
  48737. },
  48738. [
  48739. {
  48740. name: "Normal",
  48741. height: math.unit(7 + 4/12, "feet"),
  48742. default: true
  48743. },
  48744. ]
  48745. ))
  48746. characterMakers.push(() => makeCharacter(
  48747. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48748. {
  48749. front: {
  48750. height: math.unit(10 + 5/12, "feet"),
  48751. weight: math.unit(773.5, "kg"),
  48752. name: "Front",
  48753. image: {
  48754. source: "./media/characters/zed/front.svg",
  48755. extra: 987/941,
  48756. bottom: 52/1039
  48757. }
  48758. },
  48759. },
  48760. [
  48761. {
  48762. name: "Short",
  48763. height: math.unit(5 + 4/12, "feet")
  48764. },
  48765. {
  48766. name: "Average",
  48767. height: math.unit(10 + 5/12, "feet"),
  48768. default: true
  48769. },
  48770. {
  48771. name: "Mini-Macro",
  48772. height: math.unit(24 + 9/12, "feet")
  48773. },
  48774. {
  48775. name: "Macro",
  48776. height: math.unit(249, "feet")
  48777. },
  48778. {
  48779. name: "Mega-Macro",
  48780. height: math.unit(12490, "feet")
  48781. },
  48782. {
  48783. name: "Giga-Macro",
  48784. height: math.unit(24.9, "miles")
  48785. },
  48786. {
  48787. name: "Tera-Macro",
  48788. height: math.unit(24900, "miles")
  48789. },
  48790. {
  48791. name: "Cosmic Scale",
  48792. height: math.unit(38.9, "lightyears")
  48793. },
  48794. {
  48795. name: "Universal Scale",
  48796. height: math.unit(138e12, "lightyears")
  48797. },
  48798. ]
  48799. ))
  48800. characterMakers.push(() => makeCharacter(
  48801. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48802. {
  48803. front: {
  48804. height: math.unit(1561, "inches"),
  48805. name: "Front",
  48806. image: {
  48807. source: "./media/characters/ivan/front.svg",
  48808. extra: 1126/1071,
  48809. bottom: 26/1152
  48810. }
  48811. },
  48812. back: {
  48813. height: math.unit(1561, "inches"),
  48814. name: "Back",
  48815. image: {
  48816. source: "./media/characters/ivan/back.svg",
  48817. extra: 1134/1079,
  48818. bottom: 30/1164
  48819. }
  48820. },
  48821. },
  48822. [
  48823. {
  48824. name: "Normal",
  48825. height: math.unit(1561, "inches"),
  48826. default: true
  48827. },
  48828. ]
  48829. ))
  48830. characterMakers.push(() => makeCharacter(
  48831. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48832. {
  48833. front: {
  48834. height: math.unit(5 + 7/12, "feet"),
  48835. weight: math.unit(150, "lb"),
  48836. name: "Front",
  48837. image: {
  48838. source: "./media/characters/robin-arctic-hare/front.svg",
  48839. extra: 1148/974,
  48840. bottom: 20/1168
  48841. }
  48842. },
  48843. },
  48844. [
  48845. {
  48846. name: "Normal",
  48847. height: math.unit(5 + 7/12, "feet"),
  48848. default: true
  48849. },
  48850. ]
  48851. ))
  48852. characterMakers.push(() => makeCharacter(
  48853. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48854. {
  48855. side: {
  48856. height: math.unit(5, "feet"),
  48857. name: "Side",
  48858. image: {
  48859. source: "./media/characters/birch/side.svg",
  48860. extra: 985/796,
  48861. bottom: 111/1096
  48862. }
  48863. },
  48864. },
  48865. [
  48866. {
  48867. name: "Normal",
  48868. height: math.unit(5, "feet"),
  48869. default: true
  48870. },
  48871. ]
  48872. ))
  48873. characterMakers.push(() => makeCharacter(
  48874. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48875. {
  48876. front: {
  48877. height: math.unit(4, "feet"),
  48878. name: "Front",
  48879. image: {
  48880. source: "./media/characters/rasp/front.svg",
  48881. extra: 561/478,
  48882. bottom: 74/635
  48883. }
  48884. },
  48885. },
  48886. [
  48887. {
  48888. name: "Normal",
  48889. height: math.unit(4, "feet"),
  48890. default: true
  48891. },
  48892. ]
  48893. ))
  48894. characterMakers.push(() => makeCharacter(
  48895. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48896. {
  48897. front: {
  48898. height: math.unit(4 + 6/12, "feet"),
  48899. name: "Front",
  48900. image: {
  48901. source: "./media/characters/agatha/front.svg",
  48902. extra: 947/933,
  48903. bottom: 42/989
  48904. }
  48905. },
  48906. back: {
  48907. height: math.unit(4 + 6/12, "feet"),
  48908. name: "Back",
  48909. image: {
  48910. source: "./media/characters/agatha/back.svg",
  48911. extra: 935/922,
  48912. bottom: 48/983
  48913. }
  48914. },
  48915. },
  48916. [
  48917. {
  48918. name: "Normal",
  48919. height: math.unit(4 + 6 /12, "feet"),
  48920. default: true
  48921. },
  48922. {
  48923. name: "Max Size",
  48924. height: math.unit(500, "feet")
  48925. },
  48926. ]
  48927. ))
  48928. characterMakers.push(() => makeCharacter(
  48929. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48930. {
  48931. side: {
  48932. height: math.unit(30, "feet"),
  48933. name: "Side",
  48934. image: {
  48935. source: "./media/characters/roggy/side.svg",
  48936. extra: 909/643,
  48937. bottom: 63/972
  48938. }
  48939. },
  48940. lounging: {
  48941. height: math.unit(20, "feet"),
  48942. name: "Lounging",
  48943. image: {
  48944. source: "./media/characters/roggy/lounging.svg",
  48945. extra: 643/479,
  48946. bottom: 145/788
  48947. }
  48948. },
  48949. handpaw: {
  48950. height: math.unit(13.1, "feet"),
  48951. name: "Handpaw",
  48952. image: {
  48953. source: "./media/characters/roggy/handpaw.svg"
  48954. }
  48955. },
  48956. footpaw: {
  48957. height: math.unit(15.8, "feet"),
  48958. name: "Footpaw",
  48959. image: {
  48960. source: "./media/characters/roggy/footpaw.svg"
  48961. }
  48962. },
  48963. },
  48964. [
  48965. {
  48966. name: "Menacing",
  48967. height: math.unit(30, "feet"),
  48968. default: true
  48969. },
  48970. ]
  48971. ))
  48972. characterMakers.push(() => makeCharacter(
  48973. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48974. {
  48975. front: {
  48976. height: math.unit(5 + 7/12, "feet"),
  48977. weight: math.unit(135, "lb"),
  48978. name: "Front",
  48979. image: {
  48980. source: "./media/characters/naomi/front.svg",
  48981. extra: 1209/1154,
  48982. bottom: 129/1338
  48983. }
  48984. },
  48985. back: {
  48986. height: math.unit(5 + 7/12, "feet"),
  48987. weight: math.unit(135, "lb"),
  48988. name: "Back",
  48989. image: {
  48990. source: "./media/characters/naomi/back.svg",
  48991. extra: 1252/1190,
  48992. bottom: 23/1275
  48993. }
  48994. },
  48995. },
  48996. [
  48997. {
  48998. name: "Normal",
  48999. height: math.unit(5 + 7 /12, "feet"),
  49000. default: true
  49001. },
  49002. ]
  49003. ))
  49004. characterMakers.push(() => makeCharacter(
  49005. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49006. {
  49007. side: {
  49008. height: math.unit(35, "meters"),
  49009. name: "Side",
  49010. image: {
  49011. source: "./media/characters/kimpi/side.svg",
  49012. extra: 419/382,
  49013. bottom: 63/482
  49014. }
  49015. },
  49016. hand: {
  49017. height: math.unit(8.96, "meters"),
  49018. name: "Hand",
  49019. image: {
  49020. source: "./media/characters/kimpi/hand.svg"
  49021. }
  49022. },
  49023. },
  49024. [
  49025. {
  49026. name: "Normal",
  49027. height: math.unit(35, "meters"),
  49028. default: true
  49029. },
  49030. ]
  49031. ))
  49032. characterMakers.push(() => makeCharacter(
  49033. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49034. {
  49035. front: {
  49036. height: math.unit(4 + 4/12, "feet"),
  49037. name: "Front",
  49038. image: {
  49039. source: "./media/characters/pepper-purrloin/front.svg",
  49040. extra: 1141/1024,
  49041. bottom: 21/1162
  49042. }
  49043. },
  49044. },
  49045. [
  49046. {
  49047. name: "Normal",
  49048. height: math.unit(4 + 4/12, "feet"),
  49049. default: true
  49050. },
  49051. ]
  49052. ))
  49053. characterMakers.push(() => makeCharacter(
  49054. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49055. {
  49056. front: {
  49057. height: math.unit(6 + 2/12, "feet"),
  49058. name: "Front",
  49059. image: {
  49060. source: "./media/characters/raphael/front.svg",
  49061. extra: 1101/962,
  49062. bottom: 59/1160
  49063. }
  49064. },
  49065. },
  49066. [
  49067. {
  49068. name: "Normal",
  49069. height: math.unit(6 + 2/12, "feet"),
  49070. default: true
  49071. },
  49072. ]
  49073. ))
  49074. characterMakers.push(() => makeCharacter(
  49075. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49076. {
  49077. front: {
  49078. height: math.unit(6, "feet"),
  49079. weight: math.unit(150, "lb"),
  49080. name: "Front",
  49081. image: {
  49082. source: "./media/characters/victor-williams/front.svg",
  49083. extra: 1894/1825,
  49084. bottom: 67/1961
  49085. }
  49086. },
  49087. },
  49088. [
  49089. {
  49090. name: "Normal",
  49091. height: math.unit(6, "feet"),
  49092. default: true
  49093. },
  49094. ]
  49095. ))
  49096. characterMakers.push(() => makeCharacter(
  49097. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49098. {
  49099. front: {
  49100. height: math.unit(5 + 8/12, "feet"),
  49101. weight: math.unit(150, "lb"),
  49102. name: "Front",
  49103. image: {
  49104. source: "./media/characters/rachel/front.svg",
  49105. extra: 1902/1787,
  49106. bottom: 46/1948
  49107. }
  49108. },
  49109. },
  49110. [
  49111. {
  49112. name: "Base Height",
  49113. height: math.unit(5 + 8/12, "feet"),
  49114. default: true
  49115. },
  49116. {
  49117. name: "Macro",
  49118. height: math.unit(200, "feet")
  49119. },
  49120. {
  49121. name: "Mega Macro",
  49122. height: math.unit(1, "mile")
  49123. },
  49124. {
  49125. name: "Giga Macro",
  49126. height: math.unit(1500, "miles")
  49127. },
  49128. {
  49129. name: "Tera Macro",
  49130. height: math.unit(8000, "miles")
  49131. },
  49132. {
  49133. name: "Tera Macro+",
  49134. height: math.unit(2e5, "miles")
  49135. },
  49136. ]
  49137. ))
  49138. characterMakers.push(() => makeCharacter(
  49139. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49140. {
  49141. front: {
  49142. height: math.unit(6.5, "feet"),
  49143. name: "Front",
  49144. image: {
  49145. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49146. extra: 860/819,
  49147. bottom: 307/1167
  49148. }
  49149. },
  49150. back: {
  49151. height: math.unit(6.5, "feet"),
  49152. name: "Back",
  49153. image: {
  49154. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49155. extra: 880/837,
  49156. bottom: 395/1275
  49157. }
  49158. },
  49159. sleeping: {
  49160. height: math.unit(2.79, "feet"),
  49161. name: "Sleeping",
  49162. image: {
  49163. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49164. extra: 465/383,
  49165. bottom: 263/728
  49166. }
  49167. },
  49168. maw: {
  49169. height: math.unit(2.52, "feet"),
  49170. name: "Maw",
  49171. image: {
  49172. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49173. }
  49174. },
  49175. },
  49176. [
  49177. {
  49178. name: "Normal",
  49179. height: math.unit(6.5, "feet"),
  49180. default: true
  49181. },
  49182. ]
  49183. ))
  49184. characterMakers.push(() => makeCharacter(
  49185. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49186. {
  49187. front: {
  49188. height: math.unit(5, "feet"),
  49189. name: "Front",
  49190. image: {
  49191. source: "./media/characters/nova-nerium/front.svg",
  49192. extra: 1548/1392,
  49193. bottom: 374/1922
  49194. }
  49195. },
  49196. back: {
  49197. height: math.unit(5, "feet"),
  49198. name: "Back",
  49199. image: {
  49200. source: "./media/characters/nova-nerium/back.svg",
  49201. extra: 1658/1468,
  49202. bottom: 257/1915
  49203. }
  49204. },
  49205. },
  49206. [
  49207. {
  49208. name: "Normal",
  49209. height: math.unit(5, "feet"),
  49210. default: true
  49211. },
  49212. ]
  49213. ))
  49214. characterMakers.push(() => makeCharacter(
  49215. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49216. {
  49217. front: {
  49218. height: math.unit(5 + 4/12, "feet"),
  49219. name: "Front",
  49220. image: {
  49221. source: "./media/characters/ashe-pyriph/front.svg",
  49222. extra: 1935/1747,
  49223. bottom: 60/1995
  49224. }
  49225. },
  49226. },
  49227. [
  49228. {
  49229. name: "Normal",
  49230. height: math.unit(5 + 4/12, "feet"),
  49231. default: true
  49232. },
  49233. ]
  49234. ))
  49235. characterMakers.push(() => makeCharacter(
  49236. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49237. {
  49238. front: {
  49239. height: math.unit(8.7, "feet"),
  49240. name: "Front",
  49241. image: {
  49242. source: "./media/characters/flicker-wisp/front.svg",
  49243. extra: 1835/1613,
  49244. bottom: 449/2284
  49245. }
  49246. },
  49247. side: {
  49248. height: math.unit(8.7, "feet"),
  49249. name: "Side",
  49250. image: {
  49251. source: "./media/characters/flicker-wisp/side.svg",
  49252. extra: 1841/1642,
  49253. bottom: 336/2177
  49254. },
  49255. default: true
  49256. },
  49257. maw: {
  49258. height: math.unit(3.35, "feet"),
  49259. name: "Maw",
  49260. image: {
  49261. source: "./media/characters/flicker-wisp/maw.svg",
  49262. extra: 2338/1506,
  49263. bottom: 0/2338
  49264. }
  49265. },
  49266. ovipositor: {
  49267. height: math.unit(4.95, "feet"),
  49268. name: "Ovipositor",
  49269. image: {
  49270. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49271. }
  49272. },
  49273. egg: {
  49274. height: math.unit(0.385, "feet"),
  49275. weight: math.unit(2, "lb"),
  49276. name: "Egg",
  49277. image: {
  49278. source: "./media/characters/flicker-wisp/egg.svg"
  49279. }
  49280. },
  49281. },
  49282. [
  49283. {
  49284. name: "Normal",
  49285. height: math.unit(8.7, "feet"),
  49286. default: true
  49287. },
  49288. ]
  49289. ))
  49290. characterMakers.push(() => makeCharacter(
  49291. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49292. {
  49293. side: {
  49294. height: math.unit(11, "feet"),
  49295. name: "Side",
  49296. image: {
  49297. source: "./media/characters/faefnul/side.svg",
  49298. extra: 1100/1007,
  49299. bottom: 0/1100
  49300. }
  49301. },
  49302. },
  49303. [
  49304. {
  49305. name: "Normal",
  49306. height: math.unit(11, "feet"),
  49307. default: true
  49308. },
  49309. ]
  49310. ))
  49311. characterMakers.push(() => makeCharacter(
  49312. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49313. {
  49314. front: {
  49315. height: math.unit(6 + 2/12, "feet"),
  49316. name: "Front",
  49317. image: {
  49318. source: "./media/characters/shady/front.svg",
  49319. extra: 502/461,
  49320. bottom: 9/511
  49321. }
  49322. },
  49323. kneeling: {
  49324. height: math.unit(4.6, "feet"),
  49325. name: "Kneeling",
  49326. image: {
  49327. source: "./media/characters/shady/kneeling.svg",
  49328. extra: 1328/1219,
  49329. bottom: 117/1445
  49330. }
  49331. },
  49332. maw: {
  49333. height: math.unit(2, "feet"),
  49334. name: "Maw",
  49335. image: {
  49336. source: "./media/characters/shady/maw.svg"
  49337. }
  49338. },
  49339. },
  49340. [
  49341. {
  49342. name: "Nano",
  49343. height: math.unit(1, "mm")
  49344. },
  49345. {
  49346. name: "Micro",
  49347. height: math.unit(12, "mm")
  49348. },
  49349. {
  49350. name: "Tiny",
  49351. height: math.unit(3, "inches")
  49352. },
  49353. {
  49354. name: "Normal",
  49355. height: math.unit(6 + 2/12, "feet"),
  49356. default: true
  49357. },
  49358. {
  49359. name: "Big",
  49360. height: math.unit(15, "feet")
  49361. },
  49362. {
  49363. name: "Macro",
  49364. height: math.unit(150, "feet")
  49365. },
  49366. {
  49367. name: "Titanic",
  49368. height: math.unit(500, "feet")
  49369. },
  49370. ]
  49371. ))
  49372. characterMakers.push(() => makeCharacter(
  49373. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49374. {
  49375. front: {
  49376. height: math.unit(12, "feet"),
  49377. name: "Front",
  49378. image: {
  49379. source: "./media/characters/fenrir/front.svg",
  49380. extra: 968/875,
  49381. bottom: 22/990
  49382. }
  49383. },
  49384. },
  49385. [
  49386. {
  49387. name: "Big",
  49388. height: math.unit(12, "feet"),
  49389. default: true
  49390. },
  49391. ]
  49392. ))
  49393. characterMakers.push(() => makeCharacter(
  49394. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49395. {
  49396. front: {
  49397. height: math.unit(5 + 4/12, "feet"),
  49398. name: "Front",
  49399. image: {
  49400. source: "./media/characters/makar/front.svg",
  49401. extra: 1181/1112,
  49402. bottom: 78/1259
  49403. }
  49404. },
  49405. },
  49406. [
  49407. {
  49408. name: "Normal",
  49409. height: math.unit(5 + 4/12, "feet"),
  49410. default: true
  49411. },
  49412. ]
  49413. ))
  49414. characterMakers.push(() => makeCharacter(
  49415. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49416. {
  49417. front: {
  49418. height: math.unit(5 + 7/12, "feet"),
  49419. name: "Front",
  49420. image: {
  49421. source: "./media/characters/callow/front.svg",
  49422. extra: 1482/1304,
  49423. bottom: 23/1505
  49424. }
  49425. },
  49426. back: {
  49427. height: math.unit(5 + 7/12, "feet"),
  49428. name: "Back",
  49429. image: {
  49430. source: "./media/characters/callow/back.svg",
  49431. extra: 1484/1296,
  49432. bottom: 25/1509
  49433. }
  49434. },
  49435. },
  49436. [
  49437. {
  49438. name: "Micro",
  49439. height: math.unit(3, "inches"),
  49440. default: true
  49441. },
  49442. {
  49443. name: "Normal",
  49444. height: math.unit(5 + 7/12, "feet")
  49445. },
  49446. ]
  49447. ))
  49448. characterMakers.push(() => makeCharacter(
  49449. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49450. {
  49451. front: {
  49452. height: math.unit(6 + 2/12, "feet"),
  49453. name: "Front",
  49454. image: {
  49455. source: "./media/characters/natel/front.svg",
  49456. extra: 1833/1692,
  49457. bottom: 166/1999
  49458. }
  49459. },
  49460. },
  49461. [
  49462. {
  49463. name: "Normal",
  49464. height: math.unit(6 + 2/12, "feet"),
  49465. default: true
  49466. },
  49467. ]
  49468. ))
  49469. characterMakers.push(() => makeCharacter(
  49470. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49471. {
  49472. front: {
  49473. height: math.unit(1.75, "meters"),
  49474. name: "Front",
  49475. image: {
  49476. source: "./media/characters/misu/front.svg",
  49477. extra: 1690/1558,
  49478. bottom: 234/1924
  49479. }
  49480. },
  49481. back: {
  49482. height: math.unit(1.75, "meters"),
  49483. name: "Back",
  49484. image: {
  49485. source: "./media/characters/misu/back.svg",
  49486. extra: 1762/1618,
  49487. bottom: 146/1908
  49488. }
  49489. },
  49490. frontNude: {
  49491. height: math.unit(1.75, "meters"),
  49492. name: "Front (Nude)",
  49493. image: {
  49494. source: "./media/characters/misu/front-nude.svg",
  49495. extra: 1690/1558,
  49496. bottom: 234/1924
  49497. }
  49498. },
  49499. backNude: {
  49500. height: math.unit(1.75, "meters"),
  49501. name: "Back (Nude)",
  49502. image: {
  49503. source: "./media/characters/misu/back-nude.svg",
  49504. extra: 1762/1618,
  49505. bottom: 146/1908
  49506. }
  49507. },
  49508. frontErect: {
  49509. height: math.unit(1.75, "meters"),
  49510. name: "Front (Erect)",
  49511. image: {
  49512. source: "./media/characters/misu/front-erect.svg",
  49513. extra: 1690/1558,
  49514. bottom: 234/1924
  49515. }
  49516. },
  49517. maw: {
  49518. height: math.unit(0.47, "meters"),
  49519. name: "Maw",
  49520. image: {
  49521. source: "./media/characters/misu/maw.svg"
  49522. }
  49523. },
  49524. head: {
  49525. height: math.unit(0.35, "meters"),
  49526. name: "Head",
  49527. image: {
  49528. source: "./media/characters/misu/head.svg"
  49529. }
  49530. },
  49531. rear: {
  49532. height: math.unit(0.47, "meters"),
  49533. name: "Rear",
  49534. image: {
  49535. source: "./media/characters/misu/rear.svg"
  49536. }
  49537. },
  49538. },
  49539. [
  49540. {
  49541. name: "Normal",
  49542. height: math.unit(1.75, "meters")
  49543. },
  49544. {
  49545. name: "Not good for the people",
  49546. height: math.unit(42, "meters")
  49547. },
  49548. {
  49549. name: "Not good for the neighborhood",
  49550. height: math.unit(135, "meters")
  49551. },
  49552. {
  49553. name: "Bit bigger problem",
  49554. height: math.unit(380, "meters"),
  49555. default: true
  49556. },
  49557. {
  49558. name: "Not good for the city",
  49559. height: math.unit(1.5, "km")
  49560. },
  49561. {
  49562. name: "Not good for the county",
  49563. height: math.unit(5.5, "km")
  49564. },
  49565. {
  49566. name: "Not good for the state",
  49567. height: math.unit(25, "km")
  49568. },
  49569. {
  49570. name: "Not good for the country",
  49571. height: math.unit(125, "km")
  49572. },
  49573. {
  49574. name: "Not good for the continent",
  49575. height: math.unit(2100, "km")
  49576. },
  49577. {
  49578. name: "Not good for the planet",
  49579. height: math.unit(35000, "km")
  49580. },
  49581. {
  49582. name: "Just no",
  49583. height: math.unit(8.5e18, "km")
  49584. },
  49585. ]
  49586. ))
  49587. characterMakers.push(() => makeCharacter(
  49588. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49589. {
  49590. front: {
  49591. height: math.unit(6.5, "feet"),
  49592. name: "Front",
  49593. image: {
  49594. source: "./media/characters/poppy/front.svg",
  49595. extra: 1878/1812,
  49596. bottom: 43/1921
  49597. }
  49598. },
  49599. feet: {
  49600. height: math.unit(1.06, "feet"),
  49601. name: "Feet",
  49602. image: {
  49603. source: "./media/characters/poppy/feet.svg",
  49604. extra: 1083/1083,
  49605. bottom: 87/1170
  49606. }
  49607. },
  49608. },
  49609. [
  49610. {
  49611. name: "Human",
  49612. height: math.unit(6.5, "feet")
  49613. },
  49614. {
  49615. name: "Default",
  49616. height: math.unit(300, "feet"),
  49617. default: true
  49618. },
  49619. {
  49620. name: "Huge",
  49621. height: math.unit(850, "feet")
  49622. },
  49623. {
  49624. name: "Mega",
  49625. height: math.unit(8000, "feet")
  49626. },
  49627. {
  49628. name: "Giga",
  49629. height: math.unit(300, "miles")
  49630. },
  49631. ]
  49632. ))
  49633. characterMakers.push(() => makeCharacter(
  49634. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49635. {
  49636. bipedal: {
  49637. height: math.unit(7, "feet"),
  49638. name: "Bipedal",
  49639. image: {
  49640. source: "./media/characters/zener/bipedal.svg",
  49641. extra: 874/805,
  49642. bottom: 109/983
  49643. }
  49644. },
  49645. quadrupedal: {
  49646. height: math.unit(4.64, "feet"),
  49647. name: "Quadrupedal",
  49648. image: {
  49649. source: "./media/characters/zener/quadrupedal.svg",
  49650. extra: 638/507,
  49651. bottom: 190/828
  49652. }
  49653. },
  49654. cock: {
  49655. height: math.unit(18, "inches"),
  49656. name: "Cock",
  49657. image: {
  49658. source: "./media/characters/zener/cock.svg"
  49659. }
  49660. },
  49661. },
  49662. [
  49663. {
  49664. name: "Normal",
  49665. height: math.unit(7, "feet"),
  49666. default: true
  49667. },
  49668. ]
  49669. ))
  49670. characterMakers.push(() => makeCharacter(
  49671. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49672. {
  49673. nude: {
  49674. height: math.unit(5 + 6/12, "feet"),
  49675. name: "Nude",
  49676. image: {
  49677. source: "./media/characters/charlie-dog/nude.svg",
  49678. extra: 768/734,
  49679. bottom: 26/794
  49680. }
  49681. },
  49682. dressed: {
  49683. height: math.unit(5 + 6/12, "feet"),
  49684. name: "Dressed",
  49685. image: {
  49686. source: "./media/characters/charlie-dog/dressed.svg",
  49687. extra: 768/734,
  49688. bottom: 26/794
  49689. }
  49690. },
  49691. },
  49692. [
  49693. {
  49694. name: "Normal",
  49695. height: math.unit(5 + 6/12, "feet"),
  49696. default: true
  49697. },
  49698. ]
  49699. ))
  49700. characterMakers.push(() => makeCharacter(
  49701. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49702. {
  49703. front: {
  49704. height: math.unit(6 + 4/12, "feet"),
  49705. name: "Front",
  49706. image: {
  49707. source: "./media/characters/ir'istrasz/front.svg",
  49708. extra: 1014/977,
  49709. bottom: 65/1079
  49710. }
  49711. },
  49712. back: {
  49713. height: math.unit(6 + 4/12, "feet"),
  49714. name: "Back",
  49715. image: {
  49716. source: "./media/characters/ir'istrasz/back.svg",
  49717. extra: 1024/992,
  49718. bottom: 34/1058
  49719. }
  49720. },
  49721. },
  49722. [
  49723. {
  49724. name: "Normal",
  49725. height: math.unit(6 + 4/12, "feet"),
  49726. default: true
  49727. },
  49728. ]
  49729. ))
  49730. characterMakers.push(() => makeCharacter(
  49731. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49732. {
  49733. front: {
  49734. height: math.unit(5 + 8/12, "feet"),
  49735. name: "Front",
  49736. image: {
  49737. source: "./media/characters/dee-ditto/front.svg",
  49738. extra: 1874/1785,
  49739. bottom: 68/1942
  49740. }
  49741. },
  49742. back: {
  49743. height: math.unit(5 + 8/12, "feet"),
  49744. name: "Back",
  49745. image: {
  49746. source: "./media/characters/dee-ditto/back.svg",
  49747. extra: 1870/1783,
  49748. bottom: 77/1947
  49749. }
  49750. },
  49751. },
  49752. [
  49753. {
  49754. name: "Normal",
  49755. height: math.unit(5 + 8/12, "feet"),
  49756. default: true
  49757. },
  49758. ]
  49759. ))
  49760. characterMakers.push(() => makeCharacter(
  49761. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49762. {
  49763. front: {
  49764. height: math.unit(7 + 6/12, "feet"),
  49765. name: "Front",
  49766. image: {
  49767. source: "./media/characters/fey/front.svg",
  49768. extra: 995/979,
  49769. bottom: 30/1025
  49770. }
  49771. },
  49772. back: {
  49773. height: math.unit(7 + 6/12, "feet"),
  49774. name: "Back",
  49775. image: {
  49776. source: "./media/characters/fey/back.svg",
  49777. extra: 1079/1008,
  49778. bottom: 5/1084
  49779. }
  49780. },
  49781. dressed: {
  49782. height: math.unit(7 + 6/12, "feet"),
  49783. name: "Dressed",
  49784. image: {
  49785. source: "./media/characters/fey/dressed.svg",
  49786. extra: 995/979,
  49787. bottom: 30/1025
  49788. }
  49789. },
  49790. },
  49791. [
  49792. {
  49793. name: "Normal",
  49794. height: math.unit(7 + 6/12, "feet"),
  49795. default: true
  49796. },
  49797. ]
  49798. ))
  49799. characterMakers.push(() => makeCharacter(
  49800. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49801. {
  49802. standing: {
  49803. height: math.unit(17, "feet"),
  49804. name: "Standing",
  49805. image: {
  49806. source: "./media/characters/aster/standing.svg",
  49807. extra: 1798/1598,
  49808. bottom: 117/1915
  49809. }
  49810. },
  49811. },
  49812. [
  49813. {
  49814. name: "Normal",
  49815. height: math.unit(17, "feet"),
  49816. default: true
  49817. },
  49818. {
  49819. name: "Homewrecker",
  49820. height: math.unit(95, "feet")
  49821. },
  49822. {
  49823. name: "Planet Devourer",
  49824. height: math.unit(1008000, "miles")
  49825. },
  49826. ]
  49827. ))
  49828. characterMakers.push(() => makeCharacter(
  49829. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49830. {
  49831. front: {
  49832. height: math.unit(6 + 5/12, "feet"),
  49833. weight: math.unit(265, "lb"),
  49834. name: "Front",
  49835. image: {
  49836. source: "./media/characters/devon-childs/front.svg",
  49837. extra: 1795/1721,
  49838. bottom: 41/1836
  49839. }
  49840. },
  49841. side: {
  49842. height: math.unit(6 + 5/12, "feet"),
  49843. weight: math.unit(265, "lb"),
  49844. name: "Side",
  49845. image: {
  49846. source: "./media/characters/devon-childs/side.svg",
  49847. extra: 1812/1738,
  49848. bottom: 30/1842
  49849. }
  49850. },
  49851. back: {
  49852. height: math.unit(6 + 5/12, "feet"),
  49853. weight: math.unit(265, "lb"),
  49854. name: "Back",
  49855. image: {
  49856. source: "./media/characters/devon-childs/back.svg",
  49857. extra: 1808/1735,
  49858. bottom: 23/1831
  49859. }
  49860. },
  49861. hand: {
  49862. height: math.unit(1.464, "feet"),
  49863. name: "Hand",
  49864. image: {
  49865. source: "./media/characters/devon-childs/hand.svg"
  49866. }
  49867. },
  49868. foot: {
  49869. height: math.unit(1.6, "feet"),
  49870. name: "Foot",
  49871. image: {
  49872. source: "./media/characters/devon-childs/foot.svg"
  49873. }
  49874. },
  49875. },
  49876. [
  49877. {
  49878. name: "Micro",
  49879. height: math.unit(7, "cm")
  49880. },
  49881. {
  49882. name: "Normal",
  49883. height: math.unit(6 + 5/12, "feet"),
  49884. default: true
  49885. },
  49886. {
  49887. name: "Macro",
  49888. height: math.unit(154, "feet")
  49889. },
  49890. ]
  49891. ))
  49892. characterMakers.push(() => makeCharacter(
  49893. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49894. {
  49895. front: {
  49896. height: math.unit(6, "feet"),
  49897. weight: math.unit(180, "lb"),
  49898. name: "Front",
  49899. image: {
  49900. source: "./media/characters/lydemox-vir/front.svg",
  49901. extra: 1632/1435,
  49902. bottom: 58/1690
  49903. }
  49904. },
  49905. frontSFW: {
  49906. height: math.unit(6, "feet"),
  49907. weight: math.unit(180, "lb"),
  49908. name: "Front (SFW)",
  49909. image: {
  49910. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49911. extra: 1632/1435,
  49912. bottom: 58/1690
  49913. }
  49914. },
  49915. back: {
  49916. height: math.unit(6, "feet"),
  49917. weight: math.unit(180, "lb"),
  49918. name: "Back",
  49919. image: {
  49920. source: "./media/characters/lydemox-vir/back.svg",
  49921. extra: 1593/1408,
  49922. bottom: 31/1624
  49923. }
  49924. },
  49925. paw: {
  49926. height: math.unit(1.85, "feet"),
  49927. name: "Paw",
  49928. image: {
  49929. source: "./media/characters/lydemox-vir/paw.svg"
  49930. }
  49931. },
  49932. dick: {
  49933. height: math.unit(1.8, "feet"),
  49934. name: "Dick",
  49935. image: {
  49936. source: "./media/characters/lydemox-vir/dick.svg"
  49937. }
  49938. },
  49939. },
  49940. [
  49941. {
  49942. name: "Macro",
  49943. height: math.unit(100, "feet"),
  49944. default: true
  49945. },
  49946. {
  49947. name: "Teramacro",
  49948. height: math.unit(1, "earth")
  49949. },
  49950. {
  49951. name: "Planetary",
  49952. height: math.unit(20, "earths")
  49953. },
  49954. ]
  49955. ))
  49956. characterMakers.push(() => makeCharacter(
  49957. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49958. {
  49959. front: {
  49960. height: math.unit(15 + 8/12, "feet"),
  49961. weight: math.unit(1237, "kg"),
  49962. name: "Front",
  49963. image: {
  49964. source: "./media/characters/mia/front.svg",
  49965. extra: 1573/1446,
  49966. bottom: 58/1631
  49967. }
  49968. },
  49969. },
  49970. [
  49971. {
  49972. name: "Small",
  49973. height: math.unit(9 + 5/12, "feet")
  49974. },
  49975. {
  49976. name: "Normal",
  49977. height: math.unit(15 + 8/12, "feet"),
  49978. default: true
  49979. },
  49980. ]
  49981. ))
  49982. characterMakers.push(() => makeCharacter(
  49983. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49984. {
  49985. front: {
  49986. height: math.unit(10 + 6/12, "feet"),
  49987. weight: math.unit(1.3, "tons"),
  49988. name: "Front",
  49989. image: {
  49990. source: "./media/characters/mr-graves/front.svg",
  49991. extra: 1779/1695,
  49992. bottom: 198/1977
  49993. }
  49994. },
  49995. },
  49996. [
  49997. {
  49998. name: "Normal",
  49999. height: math.unit(10 + 6 /12, "feet"),
  50000. default: true
  50001. },
  50002. ]
  50003. ))
  50004. characterMakers.push(() => makeCharacter(
  50005. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50006. {
  50007. dressedFront: {
  50008. height: math.unit(5 + 8/12, "feet"),
  50009. weight: math.unit(125, "lb"),
  50010. name: "Dressed (Front)",
  50011. image: {
  50012. source: "./media/characters/jess/dressed-front.svg",
  50013. extra: 1176/1152,
  50014. bottom: 42/1218
  50015. }
  50016. },
  50017. dressedSide: {
  50018. height: math.unit(5 + 8/12, "feet"),
  50019. weight: math.unit(125, "lb"),
  50020. name: "Dressed (Side)",
  50021. image: {
  50022. source: "./media/characters/jess/dressed-side.svg",
  50023. extra: 1204/1190,
  50024. bottom: 6/1210
  50025. }
  50026. },
  50027. nudeFront: {
  50028. height: math.unit(5 + 8/12, "feet"),
  50029. weight: math.unit(125, "lb"),
  50030. name: "Nude (Front)",
  50031. image: {
  50032. source: "./media/characters/jess/nude-front.svg",
  50033. extra: 1176/1152,
  50034. bottom: 42/1218
  50035. }
  50036. },
  50037. nudeSide: {
  50038. height: math.unit(5 + 8/12, "feet"),
  50039. weight: math.unit(125, "lb"),
  50040. name: "Nude (Side)",
  50041. image: {
  50042. source: "./media/characters/jess/nude-side.svg",
  50043. extra: 1204/1190,
  50044. bottom: 6/1210
  50045. }
  50046. },
  50047. organsFront: {
  50048. height: math.unit(2.83799342105, "feet"),
  50049. name: "Organs (Front)",
  50050. image: {
  50051. source: "./media/characters/jess/organs-front.svg"
  50052. }
  50053. },
  50054. organsSide: {
  50055. height: math.unit(2.64225290474, "feet"),
  50056. name: "Organs (Side)",
  50057. image: {
  50058. source: "./media/characters/jess/organs-side.svg"
  50059. }
  50060. },
  50061. digestiveTractFront: {
  50062. height: math.unit(2.8106580871, "feet"),
  50063. name: "Digestive Tract (Front)",
  50064. image: {
  50065. source: "./media/characters/jess/digestive-tract-front.svg"
  50066. }
  50067. },
  50068. digestiveTractSide: {
  50069. height: math.unit(2.54365045014, "feet"),
  50070. name: "Digestive Tract (Side)",
  50071. image: {
  50072. source: "./media/characters/jess/digestive-tract-side.svg"
  50073. }
  50074. },
  50075. respiratorySystemFront: {
  50076. height: math.unit(1.11196233456, "feet"),
  50077. name: "Respiratory System (Front)",
  50078. image: {
  50079. source: "./media/characters/jess/respiratory-system-front.svg"
  50080. }
  50081. },
  50082. respiratorySystemSide: {
  50083. height: math.unit(0.89327966297, "feet"),
  50084. name: "Respiratory System (Side)",
  50085. image: {
  50086. source: "./media/characters/jess/respiratory-system-side.svg"
  50087. }
  50088. },
  50089. urinaryTractFront: {
  50090. height: math.unit(1.16126356186, "feet"),
  50091. name: "Urinary Tract (Front)",
  50092. image: {
  50093. source: "./media/characters/jess/urinary-tract-front.svg"
  50094. }
  50095. },
  50096. urinaryTractSide: {
  50097. height: math.unit(1.20910039627, "feet"),
  50098. name: "Urinary Tract (Side)",
  50099. image: {
  50100. source: "./media/characters/jess/urinary-tract-side.svg"
  50101. }
  50102. },
  50103. reproductiveOrgansFront: {
  50104. height: math.unit(0.48422591566, "feet"),
  50105. name: "Reproductive Organs (Front)",
  50106. image: {
  50107. source: "./media/characters/jess/reproductive-organs-front.svg"
  50108. }
  50109. },
  50110. reproductiveOrgansSide: {
  50111. height: math.unit(0.61553314481, "feet"),
  50112. name: "Reproductive Organs (Side)",
  50113. image: {
  50114. source: "./media/characters/jess/reproductive-organs-side.svg"
  50115. }
  50116. },
  50117. breastsFront: {
  50118. height: math.unit(0.47690395121, "feet"),
  50119. name: "Breasts (Front)",
  50120. image: {
  50121. source: "./media/characters/jess/breasts-front.svg"
  50122. }
  50123. },
  50124. breastsSide: {
  50125. height: math.unit(0.30556998307, "feet"),
  50126. name: "Breasts (Side)",
  50127. image: {
  50128. source: "./media/characters/jess/breasts-side.svg"
  50129. }
  50130. },
  50131. heartFront: {
  50132. height: math.unit(0.53011022622, "feet"),
  50133. name: "Heart (Front)",
  50134. image: {
  50135. source: "./media/characters/jess/heart-front.svg"
  50136. }
  50137. },
  50138. heartSide: {
  50139. height: math.unit(0.51790695213, "feet"),
  50140. name: "Heart (Side)",
  50141. image: {
  50142. source: "./media/characters/jess/heart-side.svg"
  50143. }
  50144. },
  50145. earsAndNoseFront: {
  50146. height: math.unit(0.29385483995, "feet"),
  50147. name: "Ears and Nose (Front)",
  50148. image: {
  50149. source: "./media/characters/jess/ears-and-nose-front.svg"
  50150. }
  50151. },
  50152. earsAndNoseSide: {
  50153. height: math.unit(0.18109658741, "feet"),
  50154. name: "Ears and Nose (Side)",
  50155. image: {
  50156. source: "./media/characters/jess/ears-and-nose-side.svg"
  50157. }
  50158. },
  50159. },
  50160. [
  50161. {
  50162. name: "Normal",
  50163. height: math.unit(5 + 8/12, "feet"),
  50164. default: true
  50165. },
  50166. ]
  50167. ))
  50168. characterMakers.push(() => makeCharacter(
  50169. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50170. {
  50171. front: {
  50172. height: math.unit(6, "feet"),
  50173. weight: math.unit(6.64467e-7, "grams"),
  50174. name: "Front",
  50175. image: {
  50176. source: "./media/characters/wimpering/front.svg",
  50177. extra: 597/587,
  50178. bottom: 34/631
  50179. }
  50180. },
  50181. },
  50182. [
  50183. {
  50184. name: "Micro",
  50185. height: math.unit(0.4, "mm"),
  50186. default: true
  50187. },
  50188. ]
  50189. ))
  50190. characterMakers.push(() => makeCharacter(
  50191. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50192. {
  50193. front: {
  50194. height: math.unit(5 + 2/12, "feet"),
  50195. weight: math.unit(110, "lb"),
  50196. name: "Front",
  50197. image: {
  50198. source: "./media/characters/keltre/front.svg",
  50199. extra: 1099/1057,
  50200. bottom: 22/1121
  50201. }
  50202. },
  50203. back: {
  50204. height: math.unit(5 + 2/12, "feet"),
  50205. weight: math.unit(110, "lb"),
  50206. name: "Back",
  50207. image: {
  50208. source: "./media/characters/keltre/back.svg",
  50209. extra: 1095/1053,
  50210. bottom: 17/1112
  50211. }
  50212. },
  50213. dressed: {
  50214. height: math.unit(5 + 2/12, "feet"),
  50215. weight: math.unit(110, "lb"),
  50216. name: "Dressed",
  50217. image: {
  50218. source: "./media/characters/keltre/dressed.svg",
  50219. extra: 1099/1057,
  50220. bottom: 22/1121
  50221. }
  50222. },
  50223. winter: {
  50224. height: math.unit(5 + 2/12, "feet"),
  50225. weight: math.unit(110, "lb"),
  50226. name: "Winter",
  50227. image: {
  50228. source: "./media/characters/keltre/winter.svg",
  50229. extra: 1099/1057,
  50230. bottom: 22/1121
  50231. }
  50232. },
  50233. head: {
  50234. height: math.unit(1.61 * 0.86, "feet"),
  50235. name: "Head",
  50236. image: {
  50237. source: "./media/characters/keltre/head.svg",
  50238. extra: 534/421,
  50239. bottom: 0/534
  50240. }
  50241. },
  50242. hand: {
  50243. height: math.unit(1.3 * 0.86, "feet"),
  50244. name: "Hand",
  50245. image: {
  50246. source: "./media/characters/keltre/hand.svg"
  50247. }
  50248. },
  50249. foot: {
  50250. height: math.unit(1.8 * 0.86, "feet"),
  50251. name: "Foot",
  50252. image: {
  50253. source: "./media/characters/keltre/foot.svg"
  50254. }
  50255. },
  50256. },
  50257. [
  50258. {
  50259. name: "Fine",
  50260. height: math.unit(1, "inch")
  50261. },
  50262. {
  50263. name: "Dimnutive",
  50264. height: math.unit(4, "inches")
  50265. },
  50266. {
  50267. name: "Tiny",
  50268. height: math.unit(1, "foot")
  50269. },
  50270. {
  50271. name: "Small",
  50272. height: math.unit(3, "feet")
  50273. },
  50274. {
  50275. name: "Normal",
  50276. height: math.unit(5 + 2/12, "feet"),
  50277. default: true
  50278. },
  50279. ]
  50280. ))
  50281. characterMakers.push(() => makeCharacter(
  50282. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50283. {
  50284. front: {
  50285. height: math.unit(6 + 2/12, "feet"),
  50286. name: "Front",
  50287. image: {
  50288. source: "./media/characters/nox/front.svg",
  50289. extra: 1917/1830,
  50290. bottom: 74/1991
  50291. }
  50292. },
  50293. back: {
  50294. height: math.unit(6 + 2/12, "feet"),
  50295. name: "Back",
  50296. image: {
  50297. source: "./media/characters/nox/back.svg",
  50298. extra: 1896/1815,
  50299. bottom: 21/1917
  50300. }
  50301. },
  50302. head: {
  50303. height: math.unit(1.1, "feet"),
  50304. name: "Head",
  50305. image: {
  50306. source: "./media/characters/nox/head.svg",
  50307. extra: 874/704,
  50308. bottom: 0/874
  50309. }
  50310. },
  50311. tattoo: {
  50312. height: math.unit(0.729, "feet"),
  50313. name: "Tattoo",
  50314. image: {
  50315. source: "./media/characters/nox/tattoo.svg"
  50316. }
  50317. },
  50318. },
  50319. [
  50320. {
  50321. name: "Normal",
  50322. height: math.unit(6 + 2/12, "feet")
  50323. },
  50324. {
  50325. name: "Gigamacro",
  50326. height: math.unit(2, "earths"),
  50327. default: true
  50328. },
  50329. {
  50330. name: "Cosmic",
  50331. height: math.unit(867, "yottameters")
  50332. },
  50333. ]
  50334. ))
  50335. characterMakers.push(() => makeCharacter(
  50336. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50337. {
  50338. front: {
  50339. height: math.unit(6, "feet"),
  50340. weight: math.unit(150, "lb"),
  50341. name: "Front",
  50342. image: {
  50343. source: "./media/characters/caspian/front.svg",
  50344. extra: 1443/1359,
  50345. bottom: 0/1443
  50346. }
  50347. },
  50348. back: {
  50349. height: math.unit(6, "feet"),
  50350. weight: math.unit(150, "lb"),
  50351. name: "Back",
  50352. image: {
  50353. source: "./media/characters/caspian/back.svg",
  50354. extra: 1379/1309,
  50355. bottom: 0/1379
  50356. }
  50357. },
  50358. head: {
  50359. height: math.unit(0.9, "feet"),
  50360. name: "Head",
  50361. image: {
  50362. source: "./media/characters/caspian/head.svg",
  50363. extra: 692/492,
  50364. bottom: 0/692
  50365. }
  50366. },
  50367. headAlt: {
  50368. height: math.unit(0.95, "feet"),
  50369. name: "Head (Alt)",
  50370. image: {
  50371. source: "./media/characters/caspian/head-alt.svg",
  50372. extra: 668/508,
  50373. bottom: 0/668
  50374. }
  50375. },
  50376. hand: {
  50377. height: math.unit(0.8, "feet"),
  50378. name: "Hand",
  50379. image: {
  50380. source: "./media/characters/caspian/hand.svg"
  50381. }
  50382. },
  50383. paw: {
  50384. height: math.unit(0.95, "feet"),
  50385. name: "Paw",
  50386. image: {
  50387. source: "./media/characters/caspian/paw.svg"
  50388. }
  50389. },
  50390. },
  50391. [
  50392. {
  50393. name: "Normal",
  50394. height: math.unit(162, "feet"),
  50395. default: true
  50396. },
  50397. ]
  50398. ))
  50399. characterMakers.push(() => makeCharacter(
  50400. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50401. {
  50402. front: {
  50403. height: math.unit(6, "feet"),
  50404. name: "Front",
  50405. image: {
  50406. source: "./media/characters/myra-aisling/front.svg",
  50407. extra: 1268/1166,
  50408. bottom: 73/1341
  50409. }
  50410. },
  50411. back: {
  50412. height: math.unit(6, "feet"),
  50413. name: "Back",
  50414. image: {
  50415. source: "./media/characters/myra-aisling/back.svg",
  50416. extra: 1249/1149,
  50417. bottom: 79/1328
  50418. }
  50419. },
  50420. dressed: {
  50421. height: math.unit(6, "feet"),
  50422. name: "Dressed",
  50423. image: {
  50424. source: "./media/characters/myra-aisling/dressed.svg",
  50425. extra: 1290/1189,
  50426. bottom: 47/1337
  50427. }
  50428. },
  50429. hand: {
  50430. height: math.unit(1.1, "feet"),
  50431. name: "Hand",
  50432. image: {
  50433. source: "./media/characters/myra-aisling/hand.svg"
  50434. }
  50435. },
  50436. paw: {
  50437. height: math.unit(1.23, "feet"),
  50438. name: "Paw",
  50439. image: {
  50440. source: "./media/characters/myra-aisling/paw.svg"
  50441. }
  50442. },
  50443. },
  50444. [
  50445. {
  50446. name: "Normal",
  50447. height: math.unit(160, "feet"),
  50448. default: true
  50449. },
  50450. ]
  50451. ))
  50452. characterMakers.push(() => makeCharacter(
  50453. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50454. {
  50455. front: {
  50456. height: math.unit(6, "feet"),
  50457. name: "Front",
  50458. image: {
  50459. source: "./media/characters/tenley-sidero/front.svg",
  50460. extra: 1365/1276,
  50461. bottom: 47/1412
  50462. }
  50463. },
  50464. back: {
  50465. height: math.unit(6, "feet"),
  50466. name: "Back",
  50467. image: {
  50468. source: "./media/characters/tenley-sidero/back.svg",
  50469. extra: 1383/1283,
  50470. bottom: 35/1418
  50471. }
  50472. },
  50473. dressed: {
  50474. height: math.unit(6, "feet"),
  50475. name: "Dressed",
  50476. image: {
  50477. source: "./media/characters/tenley-sidero/dressed.svg",
  50478. extra: 1364/1275,
  50479. bottom: 42/1406
  50480. }
  50481. },
  50482. head: {
  50483. height: math.unit(1.47, "feet"),
  50484. name: "Head",
  50485. image: {
  50486. source: "./media/characters/tenley-sidero/head.svg",
  50487. extra: 610/490,
  50488. bottom: 0/610
  50489. }
  50490. },
  50491. },
  50492. [
  50493. {
  50494. name: "Normal",
  50495. height: math.unit(154, "feet"),
  50496. default: true
  50497. },
  50498. ]
  50499. ))
  50500. characterMakers.push(() => makeCharacter(
  50501. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50502. {
  50503. front: {
  50504. height: math.unit(5, "inches"),
  50505. name: "Front",
  50506. image: {
  50507. source: "./media/characters/mallory/front.svg",
  50508. extra: 1919/1678,
  50509. bottom: 29/1948
  50510. }
  50511. },
  50512. hand: {
  50513. height: math.unit(0.73, "inches"),
  50514. name: "Hand",
  50515. image: {
  50516. source: "./media/characters/mallory/hand.svg"
  50517. }
  50518. },
  50519. paw: {
  50520. height: math.unit(0.68, "inches"),
  50521. name: "Paw",
  50522. image: {
  50523. source: "./media/characters/mallory/paw.svg"
  50524. }
  50525. },
  50526. },
  50527. [
  50528. {
  50529. name: "Small",
  50530. height: math.unit(5, "inches"),
  50531. default: true
  50532. },
  50533. ]
  50534. ))
  50535. characterMakers.push(() => makeCharacter(
  50536. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50537. {
  50538. naked: {
  50539. height: math.unit(6, "feet"),
  50540. name: "Naked",
  50541. image: {
  50542. source: "./media/characters/mab/naked.svg",
  50543. extra: 1855/1757,
  50544. bottom: 208/2063
  50545. }
  50546. },
  50547. outside: {
  50548. height: math.unit(6, "feet"),
  50549. name: "Outside",
  50550. image: {
  50551. source: "./media/characters/mab/outside.svg",
  50552. extra: 1855/1757,
  50553. bottom: 208/2063
  50554. }
  50555. },
  50556. party: {
  50557. height: math.unit(6, "feet"),
  50558. name: "Party",
  50559. image: {
  50560. source: "./media/characters/mab/party.svg",
  50561. extra: 1855/1757,
  50562. bottom: 208/2063
  50563. }
  50564. },
  50565. },
  50566. [
  50567. {
  50568. name: "Normal",
  50569. height: math.unit(165, "feet"),
  50570. default: true
  50571. },
  50572. ]
  50573. ))
  50574. characterMakers.push(() => makeCharacter(
  50575. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50576. {
  50577. feral: {
  50578. height: math.unit(12, "feet"),
  50579. weight: math.unit(20000, "lb"),
  50580. name: "Side",
  50581. image: {
  50582. source: "./media/characters/winter/feral.svg",
  50583. extra: 1286/943,
  50584. bottom: 112/1398
  50585. },
  50586. form: "feral",
  50587. default: true
  50588. },
  50589. feralNsfw: {
  50590. height: math.unit(12, "feet"),
  50591. weight: math.unit(20000, "lb"),
  50592. name: "Side (NSFW)",
  50593. image: {
  50594. source: "./media/characters/winter/feral-nsfw.svg",
  50595. extra: 1286/943,
  50596. bottom: 112/1398
  50597. },
  50598. form: "feral"
  50599. },
  50600. dick: {
  50601. height: math.unit(3.79, "feet"),
  50602. name: "Dick",
  50603. image: {
  50604. source: "./media/characters/winter/dick.svg"
  50605. },
  50606. form: "feral"
  50607. },
  50608. anthro: {
  50609. height: math.unit(12, "feet"),
  50610. weight: math.unit(10, "tons"),
  50611. name: "Anthro",
  50612. image: {
  50613. source: "./media/characters/winter/anthro.svg",
  50614. extra: 1701/1553,
  50615. bottom: 64/1765
  50616. },
  50617. form: "anthro",
  50618. default: true
  50619. },
  50620. },
  50621. [
  50622. {
  50623. name: "Big",
  50624. height: math.unit(12, "feet"),
  50625. default: true,
  50626. form: "feral"
  50627. },
  50628. {
  50629. name: "Big",
  50630. height: math.unit(12, "feet"),
  50631. default: true,
  50632. form: "anthro"
  50633. },
  50634. ],
  50635. {
  50636. "feral": {
  50637. name: "Feral",
  50638. default: true
  50639. },
  50640. "anthro": {
  50641. name: "Anthro"
  50642. }
  50643. }
  50644. ))
  50645. characterMakers.push(() => makeCharacter(
  50646. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50647. {
  50648. front: {
  50649. height: math.unit(4.1, "inches"),
  50650. name: "Front",
  50651. image: {
  50652. source: "./media/characters/alto/front.svg",
  50653. extra: 736/627,
  50654. bottom: 90/826
  50655. }
  50656. },
  50657. },
  50658. [
  50659. {
  50660. name: "Normal",
  50661. height: math.unit(4.1, "inches"),
  50662. default: true
  50663. },
  50664. ]
  50665. ))
  50666. characterMakers.push(() => makeCharacter(
  50667. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50668. {
  50669. sitting: {
  50670. height: math.unit(3, "feet"),
  50671. name: "Sitting",
  50672. image: {
  50673. source: "./media/characters/ratstrid-v/sitting.svg",
  50674. extra: 355/310,
  50675. bottom: 136/491
  50676. }
  50677. },
  50678. },
  50679. [
  50680. {
  50681. name: "Normal",
  50682. height: math.unit(3, "feet"),
  50683. default: true
  50684. },
  50685. ]
  50686. ))
  50687. characterMakers.push(() => makeCharacter(
  50688. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50689. {
  50690. back: {
  50691. height: math.unit(6, "feet"),
  50692. weight: math.unit(450, "lb"),
  50693. name: "Back",
  50694. image: {
  50695. source: "./media/characters/siz/back.svg",
  50696. extra: 1449/1274,
  50697. bottom: 13/1462
  50698. }
  50699. },
  50700. },
  50701. [
  50702. {
  50703. name: "Smallest",
  50704. height: math.unit(18 + 3/12, "feet")
  50705. },
  50706. {
  50707. name: "Modest",
  50708. height: math.unit(56 + 8/12, "feet"),
  50709. default: true
  50710. },
  50711. {
  50712. name: "Largest",
  50713. height: math.unit(3590, "feet")
  50714. },
  50715. ]
  50716. ))
  50717. characterMakers.push(() => makeCharacter(
  50718. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50719. {
  50720. front: {
  50721. height: math.unit(5 + 9/12, "feet"),
  50722. weight: math.unit(150, "lb"),
  50723. name: "Front",
  50724. image: {
  50725. source: "./media/characters/ven/front.svg",
  50726. extra: 1372/1320,
  50727. bottom: 73/1445
  50728. }
  50729. },
  50730. side: {
  50731. height: math.unit(5 + 9/12, "feet"),
  50732. weight: math.unit(1150, "lb"),
  50733. name: "Side",
  50734. image: {
  50735. source: "./media/characters/ven/side.svg",
  50736. extra: 1119/1070,
  50737. bottom: 42/1161
  50738. },
  50739. default: true
  50740. },
  50741. },
  50742. [
  50743. {
  50744. name: "Normal",
  50745. height: math.unit(5 + 9/12, "feet"),
  50746. default: true
  50747. },
  50748. ]
  50749. ))
  50750. characterMakers.push(() => makeCharacter(
  50751. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50752. {
  50753. front: {
  50754. height: math.unit(12, "feet"),
  50755. weight: math.unit(1000, "kg"),
  50756. name: "Front",
  50757. image: {
  50758. source: "./media/characters/maple/front.svg",
  50759. extra: 1193/1081,
  50760. bottom: 22/1215
  50761. }
  50762. },
  50763. },
  50764. [
  50765. {
  50766. name: "Compressed",
  50767. height: math.unit(7, "feet")
  50768. },
  50769. {
  50770. name: "Normal",
  50771. height: math.unit(12, "feet"),
  50772. default: true
  50773. },
  50774. ]
  50775. ))
  50776. characterMakers.push(() => makeCharacter(
  50777. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50778. {
  50779. front: {
  50780. height: math.unit(9, "feet"),
  50781. weight: math.unit(1500, "lb"),
  50782. name: "Front",
  50783. image: {
  50784. source: "./media/characters/nora/front.svg",
  50785. extra: 1348/1286,
  50786. bottom: 218/1566
  50787. }
  50788. },
  50789. erect: {
  50790. height: math.unit(9, "feet"),
  50791. weight: math.unit(11500, "lb"),
  50792. name: "Erect",
  50793. image: {
  50794. source: "./media/characters/nora/erect.svg",
  50795. extra: 1488/1433,
  50796. bottom: 133/1621
  50797. }
  50798. },
  50799. },
  50800. [
  50801. {
  50802. name: "Normal",
  50803. height: math.unit(9, "feet"),
  50804. default: true
  50805. },
  50806. ]
  50807. ))
  50808. characterMakers.push(() => makeCharacter(
  50809. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50810. {
  50811. front: {
  50812. height: math.unit(25, "feet"),
  50813. weight: math.unit(27500, "lb"),
  50814. name: "Front",
  50815. image: {
  50816. source: "./media/characters/north-caudin/front.svg",
  50817. extra: 1184/1082,
  50818. bottom: 23/1207
  50819. }
  50820. },
  50821. },
  50822. [
  50823. {
  50824. name: "Compressed",
  50825. height: math.unit(10, "feet")
  50826. },
  50827. {
  50828. name: "Normal",
  50829. height: math.unit(25, "feet"),
  50830. default: true
  50831. },
  50832. ]
  50833. ))
  50834. characterMakers.push(() => makeCharacter(
  50835. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50836. {
  50837. front: {
  50838. height: math.unit(9, "feet"),
  50839. weight: math.unit(1250, "lb"),
  50840. name: "Front",
  50841. image: {
  50842. source: "./media/characters/merrian/front.svg",
  50843. extra: 2393/2304,
  50844. bottom: 40/2433
  50845. }
  50846. },
  50847. },
  50848. [
  50849. {
  50850. name: "Normal",
  50851. height: math.unit(9, "feet"),
  50852. default: true
  50853. },
  50854. ]
  50855. ))
  50856. characterMakers.push(() => makeCharacter(
  50857. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50858. {
  50859. front: {
  50860. height: math.unit(9, "feet"),
  50861. weight: math.unit(1000, "lb"),
  50862. name: "Front",
  50863. image: {
  50864. source: "./media/characters/hazel/front.svg",
  50865. extra: 2351/2298,
  50866. bottom: 38/2389
  50867. }
  50868. },
  50869. },
  50870. [
  50871. {
  50872. name: "Normal",
  50873. height: math.unit(9, "feet"),
  50874. default: true
  50875. },
  50876. ]
  50877. ))
  50878. characterMakers.push(() => makeCharacter(
  50879. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50880. {
  50881. front: {
  50882. height: math.unit(13, "feet"),
  50883. weight: math.unit(3200, "lb"),
  50884. name: "Front",
  50885. image: {
  50886. source: "./media/characters/emma/front.svg",
  50887. extra: 2263/2029,
  50888. bottom: 68/2331
  50889. }
  50890. },
  50891. },
  50892. [
  50893. {
  50894. name: "Normal",
  50895. height: math.unit(13, "feet"),
  50896. default: true
  50897. },
  50898. ]
  50899. ))
  50900. characterMakers.push(() => makeCharacter(
  50901. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50902. {
  50903. front: {
  50904. height: math.unit(11 + 9/12, "feet"),
  50905. weight: math.unit(2500, "lb"),
  50906. name: "Front",
  50907. image: {
  50908. source: "./media/characters/ilumina/front.svg",
  50909. extra: 2248/2209,
  50910. bottom: 164/2412
  50911. }
  50912. },
  50913. },
  50914. [
  50915. {
  50916. name: "Normal",
  50917. height: math.unit(11 + 9/12, "feet"),
  50918. default: true
  50919. },
  50920. ]
  50921. ))
  50922. characterMakers.push(() => makeCharacter(
  50923. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50924. {
  50925. front: {
  50926. height: math.unit(8 + 10/12, "feet"),
  50927. weight: math.unit(1350, "lb"),
  50928. name: "Front",
  50929. image: {
  50930. source: "./media/characters/moonshine/front.svg",
  50931. extra: 2395/2288,
  50932. bottom: 40/2435
  50933. }
  50934. },
  50935. },
  50936. [
  50937. {
  50938. name: "Normal",
  50939. height: math.unit(8 + 10/12, "feet"),
  50940. default: true
  50941. },
  50942. ]
  50943. ))
  50944. characterMakers.push(() => makeCharacter(
  50945. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50946. {
  50947. front: {
  50948. height: math.unit(14, "feet"),
  50949. weight: math.unit(3400, "lb"),
  50950. name: "Front",
  50951. image: {
  50952. source: "./media/characters/aletia/front.svg",
  50953. extra: 1185/1052,
  50954. bottom: 21/1206
  50955. }
  50956. },
  50957. },
  50958. [
  50959. {
  50960. name: "Compressed",
  50961. height: math.unit(8, "feet")
  50962. },
  50963. {
  50964. name: "Normal",
  50965. height: math.unit(14, "feet"),
  50966. default: true
  50967. },
  50968. ]
  50969. ))
  50970. characterMakers.push(() => makeCharacter(
  50971. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50972. {
  50973. front: {
  50974. height: math.unit(17, "feet"),
  50975. weight: math.unit(6500, "lb"),
  50976. name: "Front",
  50977. image: {
  50978. source: "./media/characters/deidra/front.svg",
  50979. extra: 1201/1081,
  50980. bottom: 16/1217
  50981. }
  50982. },
  50983. },
  50984. [
  50985. {
  50986. name: "Compressed",
  50987. height: math.unit(9 + 6/12, "feet")
  50988. },
  50989. {
  50990. name: "Normal",
  50991. height: math.unit(17, "feet"),
  50992. default: true
  50993. },
  50994. ]
  50995. ))
  50996. characterMakers.push(() => makeCharacter(
  50997. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50998. {
  50999. front: {
  51000. height: math.unit(7 + 4/12, "feet"),
  51001. weight: math.unit(280, "lb"),
  51002. name: "Front",
  51003. image: {
  51004. source: "./media/characters/freki-yrmori/front.svg",
  51005. extra: 1286/1182,
  51006. bottom: 29/1315
  51007. }
  51008. },
  51009. maw: {
  51010. height: math.unit(0.9, "feet"),
  51011. name: "Maw",
  51012. image: {
  51013. source: "./media/characters/freki-yrmori/maw.svg"
  51014. }
  51015. },
  51016. },
  51017. [
  51018. {
  51019. name: "Normal",
  51020. height: math.unit(7 + 4/12, "feet"),
  51021. default: true
  51022. },
  51023. {
  51024. name: "Macro",
  51025. height: math.unit(38.5, "meters")
  51026. },
  51027. ]
  51028. ))
  51029. characterMakers.push(() => makeCharacter(
  51030. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51031. {
  51032. side: {
  51033. height: math.unit(47.2, "meters"),
  51034. weight: math.unit(10000, "tons"),
  51035. name: "Side",
  51036. image: {
  51037. source: "./media/characters/aetherios/side.svg",
  51038. extra: 2363/642,
  51039. bottom: 221/2584
  51040. }
  51041. },
  51042. top: {
  51043. height: math.unit(240, "meters"),
  51044. weight: math.unit(10000, "tons"),
  51045. name: "Top",
  51046. image: {
  51047. source: "./media/characters/aetherios/top.svg"
  51048. }
  51049. },
  51050. bottom: {
  51051. height: math.unit(240, "meters"),
  51052. weight: math.unit(10000, "tons"),
  51053. name: "Bottom",
  51054. image: {
  51055. source: "./media/characters/aetherios/bottom.svg"
  51056. }
  51057. },
  51058. head: {
  51059. height: math.unit(38.6, "meters"),
  51060. name: "Head",
  51061. image: {
  51062. source: "./media/characters/aetherios/head.svg",
  51063. extra: 1335/1112,
  51064. bottom: 0/1335
  51065. }
  51066. },
  51067. front: {
  51068. height: math.unit(29, "meters"),
  51069. name: "Front",
  51070. image: {
  51071. source: "./media/characters/aetherios/front.svg",
  51072. extra: 1266/953,
  51073. bottom: 158/1424
  51074. }
  51075. },
  51076. maw: {
  51077. height: math.unit(16.37, "meters"),
  51078. name: "Maw",
  51079. image: {
  51080. source: "./media/characters/aetherios/maw.svg",
  51081. extra: 748/637,
  51082. bottom: 0/748
  51083. },
  51084. extraAttributes: {
  51085. preyCapacity: {
  51086. name: "Capacity",
  51087. power: 3,
  51088. type: "volume",
  51089. base: math.unit(1000, "people")
  51090. },
  51091. tongueSize: {
  51092. name: "Tongue Size",
  51093. power: 2,
  51094. type: "area",
  51095. base: math.unit(21, "m^2")
  51096. }
  51097. }
  51098. },
  51099. forepaw: {
  51100. height: math.unit(18, "meters"),
  51101. name: "Forepaw",
  51102. image: {
  51103. source: "./media/characters/aetherios/forepaw.svg"
  51104. }
  51105. },
  51106. hindpaw: {
  51107. height: math.unit(23, "meters"),
  51108. name: "Hindpaw",
  51109. image: {
  51110. source: "./media/characters/aetherios/hindpaw.svg"
  51111. }
  51112. },
  51113. genitals: {
  51114. height: math.unit(42, "meters"),
  51115. name: "Genitals",
  51116. image: {
  51117. source: "./media/characters/aetherios/genitals.svg"
  51118. }
  51119. },
  51120. },
  51121. [
  51122. {
  51123. name: "Normal",
  51124. height: math.unit(47.2, "meters"),
  51125. default: true
  51126. },
  51127. {
  51128. name: "Macro",
  51129. height: math.unit(160, "meters")
  51130. },
  51131. {
  51132. name: "Mega",
  51133. height: math.unit(1.87, "km")
  51134. },
  51135. {
  51136. name: "Giga",
  51137. height: math.unit(40000, "km")
  51138. },
  51139. {
  51140. name: "Stellar",
  51141. height: math.unit(158000000, "km")
  51142. },
  51143. {
  51144. name: "Cosmic",
  51145. height: math.unit(9.46e12, "km")
  51146. },
  51147. ]
  51148. ))
  51149. characterMakers.push(() => makeCharacter(
  51150. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51151. {
  51152. front: {
  51153. height: math.unit(5 + 4/12, "feet"),
  51154. weight: math.unit(80, "lb"),
  51155. name: "Front",
  51156. image: {
  51157. source: "./media/characters/mizu-gieeg/front.svg",
  51158. extra: 850/709,
  51159. bottom: 52/902
  51160. }
  51161. },
  51162. back: {
  51163. height: math.unit(5 + 4/12, "feet"),
  51164. weight: math.unit(80, "lb"),
  51165. name: "Back",
  51166. image: {
  51167. source: "./media/characters/mizu-gieeg/back.svg",
  51168. extra: 882/745,
  51169. bottom: 25/907
  51170. }
  51171. },
  51172. },
  51173. [
  51174. {
  51175. name: "Normal",
  51176. height: math.unit(5 + 4/12, "feet"),
  51177. default: true
  51178. },
  51179. ]
  51180. ))
  51181. characterMakers.push(() => makeCharacter(
  51182. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51183. {
  51184. front: {
  51185. height: math.unit(6, "feet"),
  51186. name: "Front",
  51187. image: {
  51188. source: "./media/characters/roselle-st-papier/front.svg",
  51189. extra: 1430/1280,
  51190. bottom: 37/1467
  51191. }
  51192. },
  51193. back: {
  51194. height: math.unit(6, "feet"),
  51195. name: "Back",
  51196. image: {
  51197. source: "./media/characters/roselle-st-papier/back.svg",
  51198. extra: 1491/1296,
  51199. bottom: 23/1514
  51200. }
  51201. },
  51202. ear: {
  51203. height: math.unit(1.26, "feet"),
  51204. name: "Ear",
  51205. image: {
  51206. source: "./media/characters/roselle-st-papier/ear.svg"
  51207. }
  51208. },
  51209. },
  51210. [
  51211. {
  51212. name: "Normal",
  51213. height: math.unit(150, "feet"),
  51214. default: true
  51215. },
  51216. ]
  51217. ))
  51218. characterMakers.push(() => makeCharacter(
  51219. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51220. {
  51221. front: {
  51222. height: math.unit(1, "inches"),
  51223. name: "Front",
  51224. image: {
  51225. source: "./media/characters/valargent/front.svg",
  51226. extra: 1825/1694,
  51227. bottom: 62/1887
  51228. }
  51229. },
  51230. back: {
  51231. height: math.unit(1, "inches"),
  51232. name: "Back",
  51233. image: {
  51234. source: "./media/characters/valargent/back.svg",
  51235. extra: 1775/1682,
  51236. bottom: 88/1863
  51237. }
  51238. },
  51239. },
  51240. [
  51241. {
  51242. name: "Micro",
  51243. height: math.unit(1, "inch"),
  51244. default: true
  51245. },
  51246. ]
  51247. ))
  51248. characterMakers.push(() => makeCharacter(
  51249. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51250. {
  51251. front: {
  51252. height: math.unit(3.4, "meters"),
  51253. name: "Front",
  51254. image: {
  51255. source: "./media/characters/zarina/front.svg",
  51256. extra: 1733/1425,
  51257. bottom: 93/1826
  51258. }
  51259. },
  51260. squatting: {
  51261. height: math.unit(2.14, "meters"),
  51262. name: "Squatting",
  51263. image: {
  51264. source: "./media/characters/zarina/squatting.svg",
  51265. extra: 1073/788,
  51266. bottom: 63/1136
  51267. }
  51268. },
  51269. back: {
  51270. height: math.unit(2.14, "meters"),
  51271. name: "Back",
  51272. image: {
  51273. source: "./media/characters/zarina/back.svg",
  51274. extra: 1128/885,
  51275. bottom: 0/1128
  51276. }
  51277. },
  51278. },
  51279. [
  51280. {
  51281. name: "Normal",
  51282. height: math.unit(3.4, "meters"),
  51283. default: true
  51284. },
  51285. {
  51286. name: "Big",
  51287. height: math.unit(5, "meters")
  51288. },
  51289. {
  51290. name: "Macro",
  51291. height: math.unit(110, "meters")
  51292. },
  51293. ]
  51294. ))
  51295. characterMakers.push(() => makeCharacter(
  51296. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51297. {
  51298. front: {
  51299. height: math.unit(7, "feet"),
  51300. name: "Front",
  51301. image: {
  51302. source: "./media/characters/ventus-astro-fox/front.svg",
  51303. extra: 1792/1623,
  51304. bottom: 28/1820
  51305. }
  51306. },
  51307. back: {
  51308. height: math.unit(7, "feet"),
  51309. name: "Back",
  51310. image: {
  51311. source: "./media/characters/ventus-astro-fox/back.svg",
  51312. extra: 1789/1620,
  51313. bottom: 31/1820
  51314. }
  51315. },
  51316. outfit: {
  51317. height: math.unit(7, "feet"),
  51318. name: "Outfit",
  51319. image: {
  51320. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51321. extra: 1054/925,
  51322. bottom: 15/1069
  51323. }
  51324. },
  51325. head: {
  51326. height: math.unit(1.12, "feet"),
  51327. name: "Head",
  51328. image: {
  51329. source: "./media/characters/ventus-astro-fox/head.svg",
  51330. extra: 866/504,
  51331. bottom: 0/866
  51332. }
  51333. },
  51334. hand: {
  51335. height: math.unit(1, "feet"),
  51336. name: "Hand",
  51337. image: {
  51338. source: "./media/characters/ventus-astro-fox/hand.svg"
  51339. }
  51340. },
  51341. paw: {
  51342. height: math.unit(1.5, "feet"),
  51343. name: "Paw",
  51344. image: {
  51345. source: "./media/characters/ventus-astro-fox/paw.svg"
  51346. }
  51347. },
  51348. },
  51349. [
  51350. {
  51351. name: "Normal",
  51352. height: math.unit(7, "feet"),
  51353. default: true
  51354. },
  51355. {
  51356. name: "Macro",
  51357. height: math.unit(200, "feet")
  51358. },
  51359. {
  51360. name: "Cosmic",
  51361. height: math.unit(3, "universes")
  51362. },
  51363. ]
  51364. ))
  51365. characterMakers.push(() => makeCharacter(
  51366. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51367. {
  51368. front: {
  51369. height: math.unit(3, "meters"),
  51370. weight: math.unit(7000, "lb"),
  51371. name: "Front",
  51372. image: {
  51373. source: "./media/characters/core-t/front.svg",
  51374. extra: 5729/4941,
  51375. bottom: 1129/6858
  51376. }
  51377. },
  51378. },
  51379. [
  51380. {
  51381. name: "Big",
  51382. height: math.unit(3, "meters"),
  51383. default: true
  51384. },
  51385. ]
  51386. ))
  51387. characterMakers.push(() => makeCharacter(
  51388. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51389. {
  51390. normal: {
  51391. height: math.unit(6 + 6/12, "feet"),
  51392. weight: math.unit(275, "lb"),
  51393. name: "Front",
  51394. image: {
  51395. source: "./media/characters/cadbunny/normal.svg",
  51396. extra: 1129/947,
  51397. bottom: 93/1222
  51398. },
  51399. default: true,
  51400. form: "normal"
  51401. },
  51402. gigantamax: {
  51403. height: math.unit(26, "feet"),
  51404. weight: math.unit(16000, "lb"),
  51405. name: "Front",
  51406. image: {
  51407. source: "./media/characters/cadbunny/gigantamax.svg",
  51408. extra: 1133/944,
  51409. bottom: 90/1223
  51410. },
  51411. default: true,
  51412. form: "gigantamax"
  51413. },
  51414. },
  51415. [
  51416. {
  51417. name: "Normal",
  51418. height: math.unit(6 + 6/12, "feet"),
  51419. default: true,
  51420. form: "normal"
  51421. },
  51422. {
  51423. name: "Small",
  51424. height: math.unit(26, "feet"),
  51425. default: true,
  51426. form: "gigantamax"
  51427. },
  51428. {
  51429. name: "Large",
  51430. height: math.unit(78, "feet"),
  51431. form: "gigantamax"
  51432. },
  51433. ],
  51434. {
  51435. "normal": {
  51436. name: "Normal",
  51437. default: true
  51438. },
  51439. "gigantamax": {
  51440. name: "Gigantamax"
  51441. }
  51442. }
  51443. ))
  51444. characterMakers.push(() => makeCharacter(
  51445. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51446. {
  51447. anthroFront: {
  51448. height: math.unit(8, "feet"),
  51449. weight: math.unit(300, "lb"),
  51450. name: "Front",
  51451. image: {
  51452. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51453. extra: 1272/1176,
  51454. bottom: 53/1325
  51455. },
  51456. form: "anthro",
  51457. default: true
  51458. },
  51459. feralSide: {
  51460. height: math.unit(4, "feet"),
  51461. weight: math.unit(250, "lb"),
  51462. name: "Side",
  51463. image: {
  51464. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51465. extra: 731/621,
  51466. bottom: 0/731
  51467. },
  51468. form: "feral",
  51469. default: true
  51470. },
  51471. },
  51472. [
  51473. {
  51474. name: "Regular",
  51475. height: math.unit(8, "feet"),
  51476. form: "anthro"
  51477. },
  51478. {
  51479. name: "Macro",
  51480. height: math.unit(250, "feet"),
  51481. form: "anthro",
  51482. default: true
  51483. },
  51484. {
  51485. name: "Regular",
  51486. height: math.unit(4, "feet"),
  51487. form: "feral"
  51488. },
  51489. {
  51490. name: "Macro",
  51491. height: math.unit(125, "feet"),
  51492. form: "feral",
  51493. default: true
  51494. },
  51495. ],
  51496. {
  51497. "anthro": {
  51498. name: "Anthro",
  51499. default: true
  51500. },
  51501. "feral": {
  51502. name: "Feral",
  51503. },
  51504. }
  51505. ))
  51506. characterMakers.push(() => makeCharacter(
  51507. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51508. {
  51509. front: {
  51510. height: math.unit(11 + 10/12, "feet"),
  51511. weight: math.unit(1587, "kg"),
  51512. name: "Front",
  51513. image: {
  51514. source: "./media/characters/maple-javira-dragon/front.svg",
  51515. extra: 1136/744,
  51516. bottom: 73/1209
  51517. }
  51518. },
  51519. side: {
  51520. height: math.unit(11 + 10/12, "feet"),
  51521. weight: math.unit(1587, "kg"),
  51522. name: "Side",
  51523. image: {
  51524. source: "./media/characters/maple-javira-dragon/side.svg",
  51525. extra: 712/505,
  51526. bottom: 17/729
  51527. }
  51528. },
  51529. head: {
  51530. height: math.unit(8.05, "feet"),
  51531. name: "Head",
  51532. image: {
  51533. source: "./media/characters/maple-javira-dragon/head.svg",
  51534. extra: 1420/1344,
  51535. bottom: 0/1420
  51536. }
  51537. },
  51538. },
  51539. [
  51540. {
  51541. name: "Normal",
  51542. height: math.unit(11 + 10/12, "feet"),
  51543. default: true
  51544. },
  51545. ]
  51546. ))
  51547. characterMakers.push(() => makeCharacter(
  51548. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51549. {
  51550. front: {
  51551. height: math.unit(117, "cm"),
  51552. weight: math.unit(50, "kg"),
  51553. name: "Front",
  51554. image: {
  51555. source: "./media/characters/sonia-wyverntail/front.svg",
  51556. extra: 708/592,
  51557. bottom: 25/733
  51558. }
  51559. },
  51560. },
  51561. [
  51562. {
  51563. name: "Normal",
  51564. height: math.unit(117, "cm"),
  51565. default: true
  51566. },
  51567. ]
  51568. ))
  51569. characterMakers.push(() => makeCharacter(
  51570. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51571. {
  51572. front: {
  51573. height: math.unit(6 + 5/12, "feet"),
  51574. name: "Front",
  51575. image: {
  51576. source: "./media/characters/micah/front.svg",
  51577. extra: 1758/1546,
  51578. bottom: 214/1972
  51579. }
  51580. },
  51581. },
  51582. [
  51583. {
  51584. name: "Normal",
  51585. height: math.unit(6 + 5/12, "feet"),
  51586. default: true
  51587. },
  51588. ]
  51589. ))
  51590. characterMakers.push(() => makeCharacter(
  51591. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51592. {
  51593. front: {
  51594. height: math.unit(1.75, "meters"),
  51595. weight: math.unit(100, "kg"),
  51596. name: "Front",
  51597. image: {
  51598. source: "./media/characters/zarya/front.svg",
  51599. extra: 741/735,
  51600. bottom: 44/785
  51601. },
  51602. extraAttributes: {
  51603. "tailLength": {
  51604. name: "Tail Length",
  51605. power: 1,
  51606. type: "length",
  51607. base: math.unit(180, "cm")
  51608. },
  51609. "pawLength": {
  51610. name: "Paw Length",
  51611. power: 1,
  51612. type: "length",
  51613. base: math.unit(31, "cm")
  51614. },
  51615. }
  51616. },
  51617. side: {
  51618. height: math.unit(1.75, "meters"),
  51619. weight: math.unit(100, "kg"),
  51620. name: "Side",
  51621. image: {
  51622. source: "./media/characters/zarya/side.svg",
  51623. extra: 776/770,
  51624. bottom: 17/793
  51625. },
  51626. extraAttributes: {
  51627. "tailLength": {
  51628. name: "Tail Length",
  51629. power: 1,
  51630. type: "length",
  51631. base: math.unit(180, "cm")
  51632. },
  51633. "pawLength": {
  51634. name: "Paw Length",
  51635. power: 1,
  51636. type: "length",
  51637. base: math.unit(31, "cm")
  51638. },
  51639. }
  51640. },
  51641. back: {
  51642. height: math.unit(1.75, "meters"),
  51643. weight: math.unit(100, "kg"),
  51644. name: "Back",
  51645. image: {
  51646. source: "./media/characters/zarya/back.svg",
  51647. extra: 741/735,
  51648. bottom: 44/785
  51649. },
  51650. extraAttributes: {
  51651. "tailLength": {
  51652. name: "Tail Length",
  51653. power: 1,
  51654. type: "length",
  51655. base: math.unit(180, "cm")
  51656. },
  51657. "pawLength": {
  51658. name: "Paw Length",
  51659. power: 1,
  51660. type: "length",
  51661. base: math.unit(31, "cm")
  51662. },
  51663. }
  51664. },
  51665. frontNoTail: {
  51666. height: math.unit(1.75, "meters"),
  51667. weight: math.unit(100, "kg"),
  51668. name: "Front (No Tail)",
  51669. image: {
  51670. source: "./media/characters/zarya/front-no-tail.svg",
  51671. extra: 741/735,
  51672. bottom: 44/785
  51673. },
  51674. extraAttributes: {
  51675. "tailLength": {
  51676. name: "Tail Length",
  51677. power: 1,
  51678. type: "length",
  51679. base: math.unit(180, "cm")
  51680. },
  51681. "pawLength": {
  51682. name: "Paw Length",
  51683. power: 1,
  51684. type: "length",
  51685. base: math.unit(31, "cm")
  51686. },
  51687. }
  51688. },
  51689. dressed: {
  51690. height: math.unit(1.75, "meters"),
  51691. weight: math.unit(100, "kg"),
  51692. name: "Dressed",
  51693. image: {
  51694. source: "./media/characters/zarya/dressed.svg",
  51695. extra: 683/672,
  51696. bottom: 79/762
  51697. },
  51698. extraAttributes: {
  51699. "tailLength": {
  51700. name: "Tail Length",
  51701. power: 1,
  51702. type: "length",
  51703. base: math.unit(180, "cm")
  51704. },
  51705. "pawLength": {
  51706. name: "Paw Length",
  51707. power: 1,
  51708. type: "length",
  51709. base: math.unit(31, "cm")
  51710. },
  51711. }
  51712. },
  51713. },
  51714. [
  51715. {
  51716. name: "Micro",
  51717. height: math.unit(5, "cm")
  51718. },
  51719. {
  51720. name: "Normal",
  51721. height: math.unit(1.75, "meters"),
  51722. default: true
  51723. },
  51724. {
  51725. name: "Macro",
  51726. height: math.unit(122, "meters")
  51727. },
  51728. ]
  51729. ))
  51730. characterMakers.push(() => makeCharacter(
  51731. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51732. {
  51733. front: {
  51734. height: math.unit(7.5, "feet"),
  51735. name: "Front",
  51736. image: {
  51737. source: "./media/characters/sven-hatisson/front.svg",
  51738. extra: 917/857,
  51739. bottom: 42/959
  51740. }
  51741. },
  51742. back: {
  51743. height: math.unit(7.5, "feet"),
  51744. name: "Back",
  51745. image: {
  51746. source: "./media/characters/sven-hatisson/back.svg",
  51747. extra: 903/856,
  51748. bottom: 15/918
  51749. }
  51750. },
  51751. },
  51752. [
  51753. {
  51754. name: "Base Height",
  51755. height: math.unit(7.5, "feet")
  51756. },
  51757. {
  51758. name: "Usual Height",
  51759. height: math.unit(13.5, "feet"),
  51760. default: true
  51761. },
  51762. {
  51763. name: "Smaller Macro",
  51764. height: math.unit(85, "feet")
  51765. },
  51766. {
  51767. name: "Moderate Macro",
  51768. height: math.unit(320, "feet")
  51769. },
  51770. {
  51771. name: "Large Macro",
  51772. height: math.unit(1000, "feet")
  51773. },
  51774. {
  51775. name: "Largest Size",
  51776. height: math.unit(2, "miles")
  51777. },
  51778. ]
  51779. ))
  51780. characterMakers.push(() => makeCharacter(
  51781. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51782. {
  51783. side: {
  51784. height: math.unit(1.8, "meters"),
  51785. weight: math.unit(275, "kg"),
  51786. name: "Side",
  51787. image: {
  51788. source: "./media/characters/terra/side.svg",
  51789. extra: 1273/1147,
  51790. bottom: 0/1273
  51791. }
  51792. },
  51793. },
  51794. [
  51795. {
  51796. name: "Normal",
  51797. height: math.unit(16.2, "meters"),
  51798. default: true
  51799. },
  51800. ]
  51801. ))
  51802. characterMakers.push(() => makeCharacter(
  51803. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51804. {
  51805. borzoiFront: {
  51806. height: math.unit(6 + 9/12, "feet"),
  51807. name: "Front",
  51808. image: {
  51809. source: "./media/characters/rae/borzoi-front.svg",
  51810. extra: 1161/1098,
  51811. bottom: 31/1192
  51812. },
  51813. form: "borzoi",
  51814. default: true
  51815. },
  51816. werewolfFront: {
  51817. height: math.unit(8 + 7/12, "feet"),
  51818. name: "Front",
  51819. image: {
  51820. source: "./media/characters/rae/werewolf-front.svg",
  51821. extra: 1411/1334,
  51822. bottom: 127/1538
  51823. },
  51824. form: "werewolf",
  51825. default: true
  51826. },
  51827. },
  51828. [
  51829. {
  51830. name: "Normal",
  51831. height: math.unit(6 + 9/12, "feet"),
  51832. default: true,
  51833. form: "borzoi"
  51834. },
  51835. {
  51836. name: "Normal",
  51837. height: math.unit(8 + 7/12, "feet"),
  51838. default: true,
  51839. form: "werewolf"
  51840. },
  51841. ],
  51842. {
  51843. "borzoi": {
  51844. name: "Borzoi",
  51845. default: true
  51846. },
  51847. "werewolf": {
  51848. name: "Werewolf",
  51849. },
  51850. }
  51851. ))
  51852. characterMakers.push(() => makeCharacter(
  51853. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51854. {
  51855. front: {
  51856. height: math.unit(8 + 7/12, "feet"),
  51857. weight: math.unit(482, "lb"),
  51858. name: "Front",
  51859. image: {
  51860. source: "./media/characters/kit/front.svg",
  51861. extra: 1247/1103,
  51862. bottom: 41/1288
  51863. }
  51864. },
  51865. back: {
  51866. height: math.unit(8 + 7/12, "feet"),
  51867. weight: math.unit(482, "lb"),
  51868. name: "Back",
  51869. image: {
  51870. source: "./media/characters/kit/back.svg",
  51871. extra: 1252/1123,
  51872. bottom: 21/1273
  51873. }
  51874. },
  51875. paw: {
  51876. height: math.unit(1.46, "feet"),
  51877. name: "Paw",
  51878. image: {
  51879. source: "./media/characters/kit/paw.svg"
  51880. }
  51881. },
  51882. },
  51883. [
  51884. {
  51885. name: "Normal",
  51886. height: math.unit(2.61, "meters"),
  51887. default: true
  51888. },
  51889. {
  51890. name: "\"Tall\"",
  51891. height: math.unit(8.21, "meters")
  51892. },
  51893. {
  51894. name: "Tall",
  51895. height: math.unit(19.6, "meters")
  51896. },
  51897. {
  51898. name: "Very Tall",
  51899. height: math.unit(57.91, "meters")
  51900. },
  51901. {
  51902. name: "Semi-Macro",
  51903. height: math.unit(138.64, "meters")
  51904. },
  51905. {
  51906. name: "Macro",
  51907. height: math.unit(831.99, "meters")
  51908. },
  51909. {
  51910. name: "EX-Macro",
  51911. height: math.unit(96451121, "meters")
  51912. },
  51913. {
  51914. name: "S1-Omnipotent",
  51915. height: math.unit(4.42074e+9, "meters")
  51916. },
  51917. {
  51918. name: "S2-Omnipotent",
  51919. height: math.unit(9.42074e+17, "meters")
  51920. },
  51921. {
  51922. name: "Omnipotent",
  51923. height: math.unit(4.23112e+24, "meters")
  51924. },
  51925. {
  51926. name: "Hypergod",
  51927. height: math.unit(5.05176e+27, "meters")
  51928. },
  51929. {
  51930. name: "Hypergod-EX",
  51931. height: math.unit(9.45532e+49, "meters")
  51932. },
  51933. {
  51934. name: "Hypergod-SP",
  51935. height: math.unit(9.45532e+195, "meters")
  51936. },
  51937. ]
  51938. ))
  51939. characterMakers.push(() => makeCharacter(
  51940. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51941. {
  51942. side: {
  51943. height: math.unit(0.6, "meters"),
  51944. weight: math.unit(24, "kg"),
  51945. name: "Side",
  51946. image: {
  51947. source: "./media/characters/celeste/side.svg",
  51948. extra: 810/517,
  51949. bottom: 53/863
  51950. }
  51951. },
  51952. },
  51953. [
  51954. {
  51955. name: "Velociraptor",
  51956. height: math.unit(0.6, "meters"),
  51957. default: true
  51958. },
  51959. {
  51960. name: "Utahraptor",
  51961. height: math.unit(1.8, "meters")
  51962. },
  51963. {
  51964. name: "Gallimimus",
  51965. height: math.unit(4.0, "meters")
  51966. },
  51967. {
  51968. name: "Large",
  51969. height: math.unit(20, "meters")
  51970. },
  51971. {
  51972. name: "Planetary",
  51973. height: math.unit(50, "megameters")
  51974. },
  51975. {
  51976. name: "Stellar",
  51977. height: math.unit(1.5, "gigameters")
  51978. },
  51979. {
  51980. name: "Galactic",
  51981. height: math.unit(100, "exameters")
  51982. },
  51983. ]
  51984. ))
  51985. characterMakers.push(() => makeCharacter(
  51986. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51987. {
  51988. front: {
  51989. height: math.unit(6, "feet"),
  51990. weight: math.unit(210, "lb"),
  51991. name: "Front",
  51992. image: {
  51993. source: "./media/characters/glacia/front.svg",
  51994. extra: 958/901,
  51995. bottom: 45/1003
  51996. }
  51997. },
  51998. },
  51999. [
  52000. {
  52001. name: "Macro",
  52002. height: math.unit(1000, "meters"),
  52003. default: true
  52004. },
  52005. ]
  52006. ))
  52007. characterMakers.push(() => makeCharacter(
  52008. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52009. {
  52010. front: {
  52011. height: math.unit(4, "meters"),
  52012. name: "Front",
  52013. image: {
  52014. source: "./media/characters/giri/front.svg",
  52015. extra: 966/894,
  52016. bottom: 21/987
  52017. }
  52018. },
  52019. },
  52020. [
  52021. {
  52022. name: "Normal",
  52023. height: math.unit(4, "meters"),
  52024. default: true
  52025. },
  52026. ]
  52027. ))
  52028. characterMakers.push(() => makeCharacter(
  52029. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52030. {
  52031. back: {
  52032. height: math.unit(4, "feet"),
  52033. weight: math.unit(37, "lb"),
  52034. name: "Back",
  52035. image: {
  52036. source: "./media/characters/tin/back.svg",
  52037. extra: 845/780,
  52038. bottom: 28/873
  52039. }
  52040. },
  52041. },
  52042. [
  52043. {
  52044. name: "Normal",
  52045. height: math.unit(4, "feet"),
  52046. default: true
  52047. },
  52048. ]
  52049. ))
  52050. characterMakers.push(() => makeCharacter(
  52051. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52052. {
  52053. front: {
  52054. height: math.unit(25, "feet"),
  52055. name: "Front",
  52056. image: {
  52057. source: "./media/characters/cadenza-vivace/front.svg",
  52058. extra: 1842/1578,
  52059. bottom: 30/1872
  52060. }
  52061. },
  52062. },
  52063. [
  52064. {
  52065. name: "Macro",
  52066. height: math.unit(25, "feet"),
  52067. default: true
  52068. },
  52069. ]
  52070. ))
  52071. characterMakers.push(() => makeCharacter(
  52072. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52073. {
  52074. front: {
  52075. height: math.unit(10, "feet"),
  52076. weight: math.unit(625, "kg"),
  52077. name: "Front",
  52078. image: {
  52079. source: "./media/characters/zain/front.svg",
  52080. extra: 1682/1498,
  52081. bottom: 223/1905
  52082. }
  52083. },
  52084. back: {
  52085. height: math.unit(10, "feet"),
  52086. weight: math.unit(625, "kg"),
  52087. name: "Back",
  52088. image: {
  52089. source: "./media/characters/zain/back.svg",
  52090. extra: 1814/1657,
  52091. bottom: 152/1966
  52092. }
  52093. },
  52094. head: {
  52095. height: math.unit(10, "feet"),
  52096. weight: math.unit(625, "kg"),
  52097. name: "Head",
  52098. image: {
  52099. source: "./media/characters/zain/head.svg",
  52100. extra: 1059/762,
  52101. bottom: 0/1059
  52102. }
  52103. },
  52104. },
  52105. [
  52106. {
  52107. name: "Normal",
  52108. height: math.unit(10, "feet"),
  52109. default: true
  52110. },
  52111. ]
  52112. ))
  52113. characterMakers.push(() => makeCharacter(
  52114. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52115. {
  52116. front: {
  52117. height: math.unit(6 + 5/12, "feet"),
  52118. weight: math.unit(750, "lb"),
  52119. name: "Front",
  52120. image: {
  52121. source: "./media/characters/ruchex/front.svg",
  52122. extra: 877/820,
  52123. bottom: 17/894
  52124. },
  52125. extraAttributes: {
  52126. "width": {
  52127. name: "Width",
  52128. power: 1,
  52129. type: "length",
  52130. base: math.unit(4.757, "feet")
  52131. },
  52132. }
  52133. },
  52134. },
  52135. [
  52136. {
  52137. name: "Normal",
  52138. height: math.unit(6 + 5/12, "feet"),
  52139. default: true
  52140. },
  52141. ]
  52142. ))
  52143. characterMakers.push(() => makeCharacter(
  52144. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52145. {
  52146. dressedFront: {
  52147. height: math.unit(191, "cm"),
  52148. weight: math.unit(80, "kg"),
  52149. name: "Front",
  52150. image: {
  52151. source: "./media/characters/buster/dressed-front.svg",
  52152. extra: 1022/973,
  52153. bottom: 69/1091
  52154. }
  52155. },
  52156. dressedBack: {
  52157. height: math.unit(191, "cm"),
  52158. weight: math.unit(80, "kg"),
  52159. name: "Back",
  52160. image: {
  52161. source: "./media/characters/buster/dressed-back.svg",
  52162. extra: 1018/970,
  52163. bottom: 55/1073
  52164. }
  52165. },
  52166. nudeFront: {
  52167. height: math.unit(191, "cm"),
  52168. weight: math.unit(80, "kg"),
  52169. name: "Front (Nude)",
  52170. image: {
  52171. source: "./media/characters/buster/nude-front.svg",
  52172. extra: 1022/973,
  52173. bottom: 69/1091
  52174. }
  52175. },
  52176. nudeBack: {
  52177. height: math.unit(191, "cm"),
  52178. weight: math.unit(80, "kg"),
  52179. name: "Back (Nude)",
  52180. image: {
  52181. source: "./media/characters/buster/nude-back.svg",
  52182. extra: 1018/970,
  52183. bottom: 55/1073
  52184. }
  52185. },
  52186. dick: {
  52187. height: math.unit(2.59, "feet"),
  52188. name: "Dick",
  52189. image: {
  52190. source: "./media/characters/buster/dick.svg"
  52191. }
  52192. },
  52193. ass: {
  52194. height: math.unit(1.2, "feet"),
  52195. name: "Ass",
  52196. image: {
  52197. source: "./media/characters/buster/ass.svg"
  52198. }
  52199. },
  52200. },
  52201. [
  52202. {
  52203. name: "Normal",
  52204. height: math.unit(191, "cm"),
  52205. default: true
  52206. },
  52207. ]
  52208. ))
  52209. characterMakers.push(() => makeCharacter(
  52210. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52211. {
  52212. side: {
  52213. height: math.unit(8.1, "feet"),
  52214. weight: math.unit(3500, "lb"),
  52215. name: "Side",
  52216. image: {
  52217. source: "./media/characters/sonya/side.svg",
  52218. extra: 1730/1317,
  52219. bottom: 86/1816
  52220. }
  52221. },
  52222. },
  52223. [
  52224. {
  52225. name: "Normal",
  52226. height: math.unit(8.1, "feet"),
  52227. default: true
  52228. },
  52229. ]
  52230. ))
  52231. characterMakers.push(() => makeCharacter(
  52232. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52233. {
  52234. front: {
  52235. height: math.unit(6, "feet"),
  52236. weight: math.unit(150, "lb"),
  52237. name: "Front",
  52238. image: {
  52239. source: "./media/characters/cadence-andrysiak/front.svg",
  52240. extra: 1164/1121,
  52241. bottom: 60/1224
  52242. }
  52243. },
  52244. back: {
  52245. height: math.unit(6, "feet"),
  52246. weight: math.unit(150, "lb"),
  52247. name: "Back",
  52248. image: {
  52249. source: "./media/characters/cadence-andrysiak/back.svg",
  52250. extra: 1200/1165,
  52251. bottom: 9/1209
  52252. }
  52253. },
  52254. dressed: {
  52255. height: math.unit(6, "feet"),
  52256. weight: math.unit(150, "lb"),
  52257. name: "Dressed",
  52258. image: {
  52259. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52260. extra: 1164/1121,
  52261. bottom: 60/1224
  52262. }
  52263. },
  52264. },
  52265. [
  52266. {
  52267. name: "Micro",
  52268. height: math.unit(1, "mm")
  52269. },
  52270. {
  52271. name: "Normal",
  52272. height: math.unit(6, "feet"),
  52273. default: true
  52274. },
  52275. ]
  52276. ))
  52277. characterMakers.push(() => makeCharacter(
  52278. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52279. {
  52280. front: {
  52281. height: math.unit(60, "inches"),
  52282. weight: math.unit(16, "lb"),
  52283. preyCapacity: math.unit(80, "liters"),
  52284. name: "Front",
  52285. image: {
  52286. source: "./media/characters/penny-lynx/front.svg",
  52287. extra: 1959/1769,
  52288. bottom: 49/2008
  52289. }
  52290. },
  52291. },
  52292. [
  52293. {
  52294. name: "Nokia",
  52295. height: math.unit(2, "inches")
  52296. },
  52297. {
  52298. name: "Desktop",
  52299. height: math.unit(24, "inches")
  52300. },
  52301. {
  52302. name: "TV",
  52303. height: math.unit(60, "inches")
  52304. },
  52305. {
  52306. name: "Jumbotron",
  52307. height: math.unit(12, "feet")
  52308. },
  52309. {
  52310. name: "Billboard",
  52311. height: math.unit(48, "feet"),
  52312. default: true
  52313. },
  52314. {
  52315. name: "IMAX",
  52316. height: math.unit(96, "feet")
  52317. },
  52318. {
  52319. name: "SINGULARITY",
  52320. height: math.unit(864938, "miles")
  52321. },
  52322. ]
  52323. ))
  52324. characterMakers.push(() => makeCharacter(
  52325. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52326. {
  52327. front: {
  52328. height: math.unit(5 + 4/12, "feet"),
  52329. weight: math.unit(230, "lb"),
  52330. name: "Front",
  52331. image: {
  52332. source: "./media/characters/sukebe/front.svg",
  52333. extra: 2130/2038,
  52334. bottom: 90/2220
  52335. }
  52336. },
  52337. back: {
  52338. height: math.unit(3.48, "feet"),
  52339. weight: math.unit(230, "lb"),
  52340. name: "Back",
  52341. image: {
  52342. source: "./media/characters/sukebe/back.svg",
  52343. extra: 1670/1604,
  52344. bottom: 0/1670
  52345. }
  52346. },
  52347. },
  52348. [
  52349. {
  52350. name: "Normal",
  52351. height: math.unit(5 + 4/12, "feet"),
  52352. default: true
  52353. },
  52354. ]
  52355. ))
  52356. characterMakers.push(() => makeCharacter(
  52357. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52358. {
  52359. front: {
  52360. height: math.unit(6, "feet"),
  52361. name: "Front",
  52362. image: {
  52363. source: "./media/characters/nylla/front.svg",
  52364. extra: 1868/1699,
  52365. bottom: 97/1965
  52366. }
  52367. },
  52368. back: {
  52369. height: math.unit(6, "feet"),
  52370. name: "Back",
  52371. image: {
  52372. source: "./media/characters/nylla/back.svg",
  52373. extra: 1889/1712,
  52374. bottom: 93/1982
  52375. }
  52376. },
  52377. frontNsfw: {
  52378. height: math.unit(6, "feet"),
  52379. name: "Front (NSFW)",
  52380. image: {
  52381. source: "./media/characters/nylla/front-nsfw.svg",
  52382. extra: 1868/1699,
  52383. bottom: 97/1965
  52384. },
  52385. extraAttributes: {
  52386. "dickLength": {
  52387. name: "Dick Length",
  52388. power: 1,
  52389. type: "length",
  52390. base: math.unit(1.4, "feet")
  52391. },
  52392. "cumVolume": {
  52393. name: "Cum Volume",
  52394. power: 3,
  52395. type: "volume",
  52396. base: math.unit(100, "mL")
  52397. },
  52398. }
  52399. },
  52400. backNsfw: {
  52401. height: math.unit(6, "feet"),
  52402. name: "Back (NSFW)",
  52403. image: {
  52404. source: "./media/characters/nylla/back-nsfw.svg",
  52405. extra: 1889/1712,
  52406. bottom: 93/1982
  52407. }
  52408. },
  52409. maw: {
  52410. height: math.unit(2.10, "feet"),
  52411. name: "Maw",
  52412. image: {
  52413. source: "./media/characters/nylla/maw.svg"
  52414. }
  52415. },
  52416. paws: {
  52417. height: math.unit(2.06, "feet"),
  52418. name: "Paws",
  52419. image: {
  52420. source: "./media/characters/nylla/paws.svg"
  52421. }
  52422. },
  52423. muzzle: {
  52424. height: math.unit(0.61, "feet"),
  52425. name: "Muzzle",
  52426. image: {
  52427. source: "./media/characters/nylla/muzzle.svg"
  52428. }
  52429. },
  52430. sheath: {
  52431. height: math.unit(1.305, "feet"),
  52432. name: "Sheath",
  52433. image: {
  52434. source: "./media/characters/nylla/sheath.svg"
  52435. }
  52436. },
  52437. },
  52438. [
  52439. {
  52440. name: "Micro",
  52441. height: math.unit(7.5, "inches")
  52442. },
  52443. {
  52444. name: "Normal",
  52445. height: math.unit(7, "feet"),
  52446. default: true
  52447. },
  52448. {
  52449. name: "Macro",
  52450. height: math.unit(60, "feet")
  52451. },
  52452. {
  52453. name: "Mega",
  52454. height: math.unit(200, "feet")
  52455. },
  52456. ]
  52457. ))
  52458. characterMakers.push(() => makeCharacter(
  52459. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52460. {
  52461. front: {
  52462. height: math.unit(10, "feet"),
  52463. weight: math.unit(2300, "lb"),
  52464. name: "Front",
  52465. image: {
  52466. source: "./media/characters/hunt3r/front.svg",
  52467. extra: 1909/1742,
  52468. bottom: 46/1955
  52469. }
  52470. },
  52471. },
  52472. [
  52473. {
  52474. name: "Normal",
  52475. height: math.unit(10, "feet"),
  52476. default: true
  52477. },
  52478. ]
  52479. ))
  52480. characterMakers.push(() => makeCharacter(
  52481. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52482. {
  52483. dressed: {
  52484. height: math.unit(11, "feet"),
  52485. weight: math.unit(18500, "lb"),
  52486. preyCapacity: math.unit(9, "people"),
  52487. name: "Dressed",
  52488. image: {
  52489. source: "./media/characters/cylphis/dressed.svg",
  52490. extra: 1028/1003,
  52491. bottom: 75/1103
  52492. },
  52493. },
  52494. undressed: {
  52495. height: math.unit(11, "feet"),
  52496. weight: math.unit(18500, "lb"),
  52497. preyCapacity: math.unit(9, "people"),
  52498. name: "Undressed",
  52499. image: {
  52500. source: "./media/characters/cylphis/undressed.svg",
  52501. extra: 1028/1003,
  52502. bottom: 75/1103
  52503. }
  52504. },
  52505. full: {
  52506. height: math.unit(11, "feet"),
  52507. weight: math.unit(18500 + 150*9, "lb"),
  52508. preyCapacity: math.unit(9, "people"),
  52509. name: "Full",
  52510. image: {
  52511. source: "./media/characters/cylphis/full.svg",
  52512. extra: 1028/1003,
  52513. bottom: 75/1103
  52514. }
  52515. },
  52516. },
  52517. [
  52518. {
  52519. name: "Small",
  52520. height: math.unit(8, "feet")
  52521. },
  52522. {
  52523. name: "Normal",
  52524. height: math.unit(11, "feet"),
  52525. default: true
  52526. },
  52527. ]
  52528. ))
  52529. characterMakers.push(() => makeCharacter(
  52530. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52531. {
  52532. front: {
  52533. height: math.unit(2 + 7/12, "feet"),
  52534. name: "Front",
  52535. image: {
  52536. source: "./media/characters/orishan/front.svg",
  52537. extra: 1058/1023,
  52538. bottom: 23/1081
  52539. }
  52540. },
  52541. back: {
  52542. height: math.unit(2 + 7/12, "feet"),
  52543. name: "Back",
  52544. image: {
  52545. source: "./media/characters/orishan/back.svg",
  52546. extra: 1058/1023,
  52547. bottom: 23/1081
  52548. }
  52549. },
  52550. },
  52551. [
  52552. {
  52553. name: "Micro",
  52554. height: math.unit(2, "cm")
  52555. },
  52556. {
  52557. name: "Normal",
  52558. height: math.unit(2 + 7/12, "feet"),
  52559. default: true
  52560. },
  52561. ]
  52562. ))
  52563. characterMakers.push(() => makeCharacter(
  52564. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52565. {
  52566. front: {
  52567. height: math.unit(3, "meters"),
  52568. weight: math.unit(508, "kg"),
  52569. name: "Front",
  52570. image: {
  52571. source: "./media/characters/seranis/front.svg",
  52572. extra: 1478/1454,
  52573. bottom: 41/1519
  52574. }
  52575. },
  52576. },
  52577. [
  52578. {
  52579. name: "Normal",
  52580. height: math.unit(3, "meters"),
  52581. default: true
  52582. },
  52583. {
  52584. name: "Macro",
  52585. height: math.unit(108, "meters")
  52586. },
  52587. {
  52588. name: "Megamacro",
  52589. height: math.unit(1250, "meters")
  52590. },
  52591. ]
  52592. ))
  52593. characterMakers.push(() => makeCharacter(
  52594. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52595. {
  52596. undressed: {
  52597. height: math.unit(5 + 3/12, "feet"),
  52598. name: "Undressed",
  52599. image: {
  52600. source: "./media/characters/ankou/undressed.svg",
  52601. extra: 1301/1213,
  52602. bottom: 87/1388
  52603. }
  52604. },
  52605. dressed: {
  52606. height: math.unit(5 + 3/12, "feet"),
  52607. name: "Dressed",
  52608. image: {
  52609. source: "./media/characters/ankou/dressed.svg",
  52610. extra: 1301/1213,
  52611. bottom: 87/1388
  52612. }
  52613. },
  52614. head: {
  52615. height: math.unit(1.61, "feet"),
  52616. name: "Head",
  52617. image: {
  52618. source: "./media/characters/ankou/head.svg"
  52619. }
  52620. },
  52621. },
  52622. [
  52623. {
  52624. name: "Normal",
  52625. height: math.unit(5 + 3/12, "feet"),
  52626. default: true
  52627. },
  52628. ]
  52629. ))
  52630. characterMakers.push(() => makeCharacter(
  52631. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52632. {
  52633. side: {
  52634. height: math.unit(6 + 3/12, "feet"),
  52635. weight: math.unit(200, "kg"),
  52636. name: "Side",
  52637. image: {
  52638. source: "./media/characters/juniper-skunktaur/side.svg",
  52639. extra: 1574/1229,
  52640. bottom: 38/1612
  52641. }
  52642. },
  52643. front: {
  52644. height: math.unit(6 + 3/12, "feet"),
  52645. weight: math.unit(200, "kg"),
  52646. name: "Front",
  52647. image: {
  52648. source: "./media/characters/juniper-skunktaur/front.svg",
  52649. extra: 1337/1278,
  52650. bottom: 22/1359
  52651. }
  52652. },
  52653. back: {
  52654. height: math.unit(6 + 3/12, "feet"),
  52655. weight: math.unit(200, "kg"),
  52656. name: "Back",
  52657. image: {
  52658. source: "./media/characters/juniper-skunktaur/back.svg",
  52659. extra: 1618/1273,
  52660. bottom: 13/1631
  52661. }
  52662. },
  52663. top: {
  52664. height: math.unit(2.62, "feet"),
  52665. weight: math.unit(200, "kg"),
  52666. name: "Top",
  52667. image: {
  52668. source: "./media/characters/juniper-skunktaur/top.svg"
  52669. }
  52670. },
  52671. },
  52672. [
  52673. {
  52674. name: "Normal",
  52675. height: math.unit(6 + 3/12, "feet"),
  52676. default: true
  52677. },
  52678. ]
  52679. ))
  52680. characterMakers.push(() => makeCharacter(
  52681. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52682. {
  52683. front: {
  52684. height: math.unit(20.5, "feet"),
  52685. name: "Front",
  52686. image: {
  52687. source: "./media/characters/rei/front.svg",
  52688. extra: 1349/1195,
  52689. bottom: 31/1380
  52690. }
  52691. },
  52692. back: {
  52693. height: math.unit(20.5, "feet"),
  52694. name: "Back",
  52695. image: {
  52696. source: "./media/characters/rei/back.svg",
  52697. extra: 1358/1204,
  52698. bottom: 22/1380
  52699. }
  52700. },
  52701. pawsDigi: {
  52702. height: math.unit(3.45, "feet"),
  52703. name: "Paws (Digi)",
  52704. image: {
  52705. source: "./media/characters/rei/paws-digi.svg"
  52706. }
  52707. },
  52708. pawsPlanti: {
  52709. height: math.unit(3.45, "feet"),
  52710. name: "Paws (Planti)",
  52711. image: {
  52712. source: "./media/characters/rei/paws-planti.svg"
  52713. }
  52714. },
  52715. },
  52716. [
  52717. {
  52718. name: "Normal",
  52719. height: math.unit(20.5, "feet"),
  52720. default: true
  52721. },
  52722. ]
  52723. ))
  52724. characterMakers.push(() => makeCharacter(
  52725. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52726. {
  52727. front: {
  52728. height: math.unit(5 + 11/12, "feet"),
  52729. name: "Front",
  52730. image: {
  52731. source: "./media/characters/carina/front.svg",
  52732. extra: 1720/1449,
  52733. bottom: 14/1734
  52734. }
  52735. },
  52736. back: {
  52737. height: math.unit(5 + 11/12, "feet"),
  52738. name: "Back",
  52739. image: {
  52740. source: "./media/characters/carina/back.svg",
  52741. extra: 1493/1445,
  52742. bottom: 17/1510
  52743. }
  52744. },
  52745. paw: {
  52746. height: math.unit(0.92, "feet"),
  52747. name: "Paw",
  52748. image: {
  52749. source: "./media/characters/carina/paw.svg"
  52750. }
  52751. },
  52752. },
  52753. [
  52754. {
  52755. name: "Normal",
  52756. height: math.unit(5 + 11/12, "feet"),
  52757. default: true
  52758. },
  52759. ]
  52760. ))
  52761. characterMakers.push(() => makeCharacter(
  52762. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52763. {
  52764. normal_front: {
  52765. height: math.unit(4.88, "meters"),
  52766. name: "Front",
  52767. image: {
  52768. source: "./media/characters/maya/normal-front.svg",
  52769. extra: 1222/1145,
  52770. bottom: 57/1279
  52771. },
  52772. form: "normal",
  52773. default: true
  52774. },
  52775. monstrous_front: {
  52776. height: math.unit(10, "meters"),
  52777. name: "Front",
  52778. image: {
  52779. source: "./media/characters/maya/monstrous-front.svg",
  52780. extra: 1523/1109,
  52781. bottom: 113/1636
  52782. },
  52783. form: "monstrous",
  52784. extraAttributes: {
  52785. "swallowSize": {
  52786. name: "Tailmaw Bite Size",
  52787. power: 3,
  52788. type: "volume",
  52789. base: math.unit(43000, "liters")
  52790. },
  52791. }
  52792. },
  52793. taur_front: {
  52794. height: math.unit(10, "meters"),
  52795. name: "Front",
  52796. image: {
  52797. source: "./media/characters/maya/taur-front.svg",
  52798. extra: 743/506,
  52799. bottom: 101/844
  52800. },
  52801. form: "taur",
  52802. },
  52803. },
  52804. [
  52805. {
  52806. name: "Normal",
  52807. height: math.unit(4.88, "meters"),
  52808. default: true,
  52809. form: "normal"
  52810. },
  52811. {
  52812. name: "Macro",
  52813. height: math.unit(38.1, "meters"),
  52814. form: "normal"
  52815. },
  52816. {
  52817. name: "Macro+",
  52818. height: math.unit(152.4, "meters"),
  52819. form: "normal"
  52820. },
  52821. {
  52822. name: "Macro++",
  52823. height: math.unit(16.09, "km"),
  52824. form: "normal"
  52825. },
  52826. {
  52827. name: "Mega-macro",
  52828. height: math.unit(700, "megameters"),
  52829. form: "normal"
  52830. },
  52831. {
  52832. name: "Satiated",
  52833. height: math.unit(10, "meters"),
  52834. default: true,
  52835. form: "monstrous"
  52836. },
  52837. {
  52838. name: "Hungry",
  52839. height: math.unit(75, "meters"),
  52840. form: "monstrous"
  52841. },
  52842. {
  52843. name: "Ravenous",
  52844. height: math.unit(500, "meters"),
  52845. form: "monstrous"
  52846. },
  52847. {
  52848. name: "\"Normal\"",
  52849. height: math.unit(10, "meters"),
  52850. form: "taur"
  52851. },
  52852. {
  52853. name: "Macro",
  52854. height: math.unit(50, "meters"),
  52855. form: "taur"
  52856. },
  52857. ],
  52858. {
  52859. "normal": {
  52860. name: "Normal",
  52861. default: true
  52862. },
  52863. "monstrous": {
  52864. name: "Monstrous",
  52865. },
  52866. "taur": {
  52867. name: "Taur",
  52868. },
  52869. }
  52870. ))
  52871. characterMakers.push(() => makeCharacter(
  52872. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52873. {
  52874. front: {
  52875. height: math.unit(6 + 2/12, "feet"),
  52876. weight: math.unit(500, "lb"),
  52877. preyCapacity: math.unit(4, "people"),
  52878. name: "Front",
  52879. image: {
  52880. source: "./media/characters/yepir/front.svg"
  52881. }
  52882. },
  52883. side: {
  52884. height: math.unit(6 + 2/12, "feet"),
  52885. weight: math.unit(500, "lb"),
  52886. preyCapacity: math.unit(4, "people"),
  52887. name: "Side",
  52888. image: {
  52889. source: "./media/characters/yepir/side.svg"
  52890. }
  52891. },
  52892. paw: {
  52893. height: math.unit(1.05, "feet"),
  52894. name: "Paw",
  52895. image: {
  52896. source: "./media/characters/yepir/paw.svg"
  52897. }
  52898. },
  52899. },
  52900. [
  52901. {
  52902. name: "Normal",
  52903. height: math.unit(6 + 2/12, "feet"),
  52904. default: true
  52905. },
  52906. ]
  52907. ))
  52908. characterMakers.push(() => makeCharacter(
  52909. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52910. {
  52911. front: {
  52912. height: math.unit(5 + 4/12, "feet"),
  52913. name: "Front",
  52914. image: {
  52915. source: "./media/characters/russec/front.svg",
  52916. extra: 1926/1626,
  52917. bottom: 72/1998
  52918. }
  52919. },
  52920. back: {
  52921. height: math.unit(5 + 4/12, "feet"),
  52922. name: "Back",
  52923. image: {
  52924. source: "./media/characters/russec/back.svg",
  52925. extra: 1910/1591,
  52926. bottom: 48/1958
  52927. }
  52928. },
  52929. },
  52930. [
  52931. {
  52932. name: "Small",
  52933. height: math.unit(5 + 4/12, "feet")
  52934. },
  52935. {
  52936. name: "Normal",
  52937. height: math.unit(72, "feet"),
  52938. default: true
  52939. },
  52940. ]
  52941. ))
  52942. characterMakers.push(() => makeCharacter(
  52943. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52944. {
  52945. side: {
  52946. height: math.unit(12, "feet"),
  52947. name: "Side",
  52948. image: {
  52949. source: "./media/characters/cianus/side.svg",
  52950. extra: 808/526,
  52951. bottom: 61/869
  52952. }
  52953. },
  52954. },
  52955. [
  52956. {
  52957. name: "Normal",
  52958. height: math.unit(12, "feet"),
  52959. default: true
  52960. },
  52961. ]
  52962. ))
  52963. characterMakers.push(() => makeCharacter(
  52964. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52965. {
  52966. front: {
  52967. height: math.unit(9 + 6/12, "feet"),
  52968. weight: math.unit(300, "lb"),
  52969. name: "Front",
  52970. image: {
  52971. source: "./media/characters/ahab/front.svg",
  52972. extra: 1897/1868,
  52973. bottom: 121/2018
  52974. }
  52975. },
  52976. frontNsfw: {
  52977. height: math.unit(9 + 6/12, "feet"),
  52978. weight: math.unit(300, "lb"),
  52979. name: "Front-nsfw",
  52980. image: {
  52981. source: "./media/characters/ahab/front-nsfw.svg",
  52982. extra: 1897/1868,
  52983. bottom: 121/2018
  52984. }
  52985. },
  52986. },
  52987. [
  52988. {
  52989. name: "Normal",
  52990. height: math.unit(9 + 6/12, "feet")
  52991. },
  52992. {
  52993. name: "Macro",
  52994. height: math.unit(657, "feet"),
  52995. default: true
  52996. },
  52997. ]
  52998. ))
  52999. characterMakers.push(() => makeCharacter(
  53000. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53001. {
  53002. front: {
  53003. height: math.unit(2.69, "meters"),
  53004. weight: math.unit(132, "kg"),
  53005. name: "Front",
  53006. image: {
  53007. source: "./media/characters/aarkus/front.svg",
  53008. extra: 1400/1231,
  53009. bottom: 34/1434
  53010. }
  53011. },
  53012. back: {
  53013. height: math.unit(2.69, "meters"),
  53014. weight: math.unit(132, "kg"),
  53015. name: "Back",
  53016. image: {
  53017. source: "./media/characters/aarkus/back.svg",
  53018. extra: 1381/1218,
  53019. bottom: 30/1411
  53020. }
  53021. },
  53022. frontNsfw: {
  53023. height: math.unit(2.69, "meters"),
  53024. weight: math.unit(132, "kg"),
  53025. name: "Front (NSFW)",
  53026. image: {
  53027. source: "./media/characters/aarkus/front-nsfw.svg",
  53028. extra: 1400/1231,
  53029. bottom: 34/1434
  53030. }
  53031. },
  53032. foot: {
  53033. height: math.unit(1.45, "feet"),
  53034. name: "Foot",
  53035. image: {
  53036. source: "./media/characters/aarkus/foot.svg"
  53037. }
  53038. },
  53039. head: {
  53040. height: math.unit(2.85, "feet"),
  53041. name: "Head",
  53042. image: {
  53043. source: "./media/characters/aarkus/head.svg"
  53044. }
  53045. },
  53046. headAlt: {
  53047. height: math.unit(3.07, "feet"),
  53048. name: "Head (Alt)",
  53049. image: {
  53050. source: "./media/characters/aarkus/head-alt.svg"
  53051. }
  53052. },
  53053. mouth: {
  53054. height: math.unit(1.25, "feet"),
  53055. name: "Mouth",
  53056. image: {
  53057. source: "./media/characters/aarkus/mouth.svg"
  53058. }
  53059. },
  53060. dick: {
  53061. height: math.unit(1.77, "feet"),
  53062. name: "Dick",
  53063. image: {
  53064. source: "./media/characters/aarkus/dick.svg"
  53065. }
  53066. },
  53067. },
  53068. [
  53069. {
  53070. name: "Normal",
  53071. height: math.unit(2.69, "meters"),
  53072. default: true
  53073. },
  53074. {
  53075. name: "Macro",
  53076. height: math.unit(269, "meters")
  53077. },
  53078. {
  53079. name: "Macro+",
  53080. height: math.unit(672.5, "meters")
  53081. },
  53082. {
  53083. name: "Megamacro",
  53084. height: math.unit(2.017, "km")
  53085. },
  53086. ]
  53087. ))
  53088. characterMakers.push(() => makeCharacter(
  53089. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53090. {
  53091. front: {
  53092. height: math.unit(23.47, "cm"),
  53093. weight: math.unit(600, "grams"),
  53094. name: "Front",
  53095. image: {
  53096. source: "./media/characters/diode/front.svg",
  53097. extra: 1778/1396,
  53098. bottom: 95/1873
  53099. }
  53100. },
  53101. side: {
  53102. height: math.unit(23.47, "cm"),
  53103. weight: math.unit(600, "grams"),
  53104. name: "Side",
  53105. image: {
  53106. source: "./media/characters/diode/side.svg",
  53107. extra: 1831/1404,
  53108. bottom: 86/1917
  53109. }
  53110. },
  53111. wings: {
  53112. height: math.unit(0.683, "feet"),
  53113. name: "Wings",
  53114. image: {
  53115. source: "./media/characters/diode/wings.svg"
  53116. }
  53117. },
  53118. },
  53119. [
  53120. {
  53121. name: "Normal",
  53122. height: math.unit(23.47, "cm"),
  53123. default: true
  53124. },
  53125. ]
  53126. ))
  53127. characterMakers.push(() => makeCharacter(
  53128. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53129. {
  53130. front: {
  53131. height: math.unit(6 + 3/12, "feet"),
  53132. weight: math.unit(250, "lb"),
  53133. name: "Front",
  53134. image: {
  53135. source: "./media/characters/reika/front.svg",
  53136. extra: 1120/1078,
  53137. bottom: 86/1206
  53138. }
  53139. },
  53140. },
  53141. [
  53142. {
  53143. name: "Normal",
  53144. height: math.unit(6 + 3/12, "feet"),
  53145. default: true
  53146. },
  53147. ]
  53148. ))
  53149. characterMakers.push(() => makeCharacter(
  53150. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53151. {
  53152. front: {
  53153. height: math.unit(16 + 8/12, "feet"),
  53154. weight: math.unit(9000, "lb"),
  53155. name: "Front",
  53156. image: {
  53157. source: "./media/characters/lokuto-takama/front.svg",
  53158. extra: 1774/1632,
  53159. bottom: 147/1921
  53160. },
  53161. extraAttributes: {
  53162. "bustWidth": {
  53163. name: "Bust Width",
  53164. power: 1,
  53165. type: "length",
  53166. base: math.unit(2.4, "meters")
  53167. },
  53168. "breastWeight": {
  53169. name: "Breast Weight",
  53170. power: 3,
  53171. type: "mass",
  53172. base: math.unit(1000, "kg")
  53173. },
  53174. }
  53175. },
  53176. },
  53177. [
  53178. {
  53179. name: "Normal",
  53180. height: math.unit(16 + 8/12, "feet"),
  53181. default: true
  53182. },
  53183. ]
  53184. ))
  53185. characterMakers.push(() => makeCharacter(
  53186. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53187. {
  53188. front: {
  53189. height: math.unit(10, "cm"),
  53190. weight: math.unit(850, "grams"),
  53191. name: "Front",
  53192. image: {
  53193. source: "./media/characters/owak-bone/front.svg",
  53194. extra: 1965/1801,
  53195. bottom: 31/1996
  53196. }
  53197. },
  53198. },
  53199. [
  53200. {
  53201. name: "Normal",
  53202. height: math.unit(10, "cm"),
  53203. default: true
  53204. },
  53205. ]
  53206. ))
  53207. characterMakers.push(() => makeCharacter(
  53208. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53209. {
  53210. front: {
  53211. height: math.unit(2 + 6/12, "feet"),
  53212. weight: math.unit(9, "lb"),
  53213. name: "Front",
  53214. image: {
  53215. source: "./media/characters/muffin/front.svg",
  53216. extra: 1220/1195,
  53217. bottom: 84/1304
  53218. }
  53219. },
  53220. },
  53221. [
  53222. {
  53223. name: "Normal",
  53224. height: math.unit(2 + 6/12, "feet"),
  53225. default: true
  53226. },
  53227. ]
  53228. ))
  53229. characterMakers.push(() => makeCharacter(
  53230. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53231. {
  53232. front: {
  53233. height: math.unit(7, "feet"),
  53234. name: "Front",
  53235. image: {
  53236. source: "./media/characters/chimera/front.svg",
  53237. extra: 1752/1614,
  53238. bottom: 68/1820
  53239. }
  53240. },
  53241. },
  53242. [
  53243. {
  53244. name: "Normal",
  53245. height: math.unit(7, "feet")
  53246. },
  53247. {
  53248. name: "Gigamacro",
  53249. height: math.unit(2.9, "gigameters"),
  53250. default: true
  53251. },
  53252. {
  53253. name: "Universal",
  53254. height: math.unit(1.56e26, "yottameters")
  53255. },
  53256. ]
  53257. ))
  53258. characterMakers.push(() => makeCharacter(
  53259. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53260. {
  53261. front: {
  53262. height: math.unit(3, "feet"),
  53263. weight: math.unit(20, "lb"),
  53264. name: "Front",
  53265. image: {
  53266. source: "./media/characters/kit-fennec-fox/front.svg",
  53267. extra: 1027/932,
  53268. bottom: 16/1043
  53269. }
  53270. },
  53271. back: {
  53272. height: math.unit(3, "feet"),
  53273. weight: math.unit(20, "lb"),
  53274. name: "Back",
  53275. image: {
  53276. source: "./media/characters/kit-fennec-fox/back.svg",
  53277. extra: 1027/932,
  53278. bottom: 16/1043
  53279. }
  53280. },
  53281. },
  53282. [
  53283. {
  53284. name: "Normal",
  53285. height: math.unit(3, "feet"),
  53286. default: true
  53287. },
  53288. ]
  53289. ))
  53290. characterMakers.push(() => makeCharacter(
  53291. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53292. {
  53293. front: {
  53294. height: math.unit(167, "cm"),
  53295. name: "Front",
  53296. image: {
  53297. source: "./media/characters/blue-otter/front.svg",
  53298. extra: 1951/1920,
  53299. bottom: 31/1982
  53300. }
  53301. },
  53302. },
  53303. [
  53304. {
  53305. name: "Otter-Sized",
  53306. height: math.unit(100, "cm")
  53307. },
  53308. {
  53309. name: "Normal",
  53310. height: math.unit(167, "cm"),
  53311. default: true
  53312. },
  53313. ]
  53314. ))
  53315. characterMakers.push(() => makeCharacter(
  53316. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53317. {
  53318. front: {
  53319. height: math.unit(4 + 4/12, "feet"),
  53320. name: "Front",
  53321. image: {
  53322. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53323. extra: 1072/1067,
  53324. bottom: 117/1189
  53325. }
  53326. },
  53327. back: {
  53328. height: math.unit(4 + 4/12, "feet"),
  53329. name: "Back",
  53330. image: {
  53331. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53332. extra: 1135/1129,
  53333. bottom: 57/1192
  53334. }
  53335. },
  53336. head: {
  53337. height: math.unit(1.77, "feet"),
  53338. name: "Head",
  53339. image: {
  53340. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53341. }
  53342. },
  53343. },
  53344. [
  53345. {
  53346. name: "Normal",
  53347. height: math.unit(4 + 4/12, "feet"),
  53348. default: true
  53349. },
  53350. ]
  53351. ))
  53352. characterMakers.push(() => makeCharacter(
  53353. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53354. {
  53355. front: {
  53356. height: math.unit(2, "inches"),
  53357. name: "Front",
  53358. image: {
  53359. source: "./media/characters/carley-hartford/front.svg",
  53360. extra: 1035/988,
  53361. bottom: 23/1058
  53362. }
  53363. },
  53364. back: {
  53365. height: math.unit(2, "inches"),
  53366. name: "Back",
  53367. image: {
  53368. source: "./media/characters/carley-hartford/back.svg",
  53369. extra: 1035/988,
  53370. bottom: 23/1058
  53371. }
  53372. },
  53373. dressed: {
  53374. height: math.unit(2, "inches"),
  53375. name: "Dressed",
  53376. image: {
  53377. source: "./media/characters/carley-hartford/dressed.svg",
  53378. extra: 651/620,
  53379. bottom: 0/651
  53380. }
  53381. },
  53382. },
  53383. [
  53384. {
  53385. name: "Micro",
  53386. height: math.unit(2, "inches"),
  53387. default: true
  53388. },
  53389. {
  53390. name: "Macro",
  53391. height: math.unit(6 + 3/12, "feet")
  53392. },
  53393. ]
  53394. ))
  53395. characterMakers.push(() => makeCharacter(
  53396. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53397. {
  53398. front: {
  53399. height: math.unit(2 + 3/12, "feet"),
  53400. weight: math.unit(15 + 7/16, "lb"),
  53401. name: "Front",
  53402. image: {
  53403. source: "./media/characters/duke/front.svg",
  53404. extra: 910/815,
  53405. bottom: 30/940
  53406. }
  53407. },
  53408. },
  53409. [
  53410. {
  53411. name: "Normal",
  53412. height: math.unit(2 + 3/12, "feet"),
  53413. default: true
  53414. },
  53415. ]
  53416. ))
  53417. characterMakers.push(() => makeCharacter(
  53418. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53419. {
  53420. front: {
  53421. height: math.unit(5 + 4/12, "feet"),
  53422. weight: math.unit(156, "lb"),
  53423. name: "Front",
  53424. image: {
  53425. source: "./media/characters/dein/front.svg",
  53426. extra: 855/815,
  53427. bottom: 48/903
  53428. }
  53429. },
  53430. side: {
  53431. height: math.unit(5 + 4/12, "feet"),
  53432. weight: math.unit(156, "lb"),
  53433. name: "side",
  53434. image: {
  53435. source: "./media/characters/dein/side.svg",
  53436. extra: 846/803,
  53437. bottom: 25/871
  53438. }
  53439. },
  53440. maw: {
  53441. height: math.unit(1.45, "feet"),
  53442. name: "Maw",
  53443. image: {
  53444. source: "./media/characters/dein/maw.svg"
  53445. }
  53446. },
  53447. },
  53448. [
  53449. {
  53450. name: "Ferret Sized",
  53451. height: math.unit(2 + 5/12, "feet")
  53452. },
  53453. {
  53454. name: "Normal",
  53455. height: math.unit(5 + 4/12, "feet"),
  53456. default: true
  53457. },
  53458. ]
  53459. ))
  53460. characterMakers.push(() => makeCharacter(
  53461. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53462. {
  53463. front: {
  53464. height: math.unit(84 + 8/12, "feet"),
  53465. weight: math.unit(942180, "lb"),
  53466. name: "Front",
  53467. image: {
  53468. source: "./media/characters/daurine-arima/front.svg",
  53469. extra: 1989/1782,
  53470. bottom: 37/2026
  53471. }
  53472. },
  53473. side: {
  53474. height: math.unit(84 + 8/12, "feet"),
  53475. weight: math.unit(942180, "lb"),
  53476. name: "Side",
  53477. image: {
  53478. source: "./media/characters/daurine-arima/side.svg",
  53479. extra: 1997/1790,
  53480. bottom: 21/2018
  53481. }
  53482. },
  53483. back: {
  53484. height: math.unit(84 + 8/12, "feet"),
  53485. weight: math.unit(942180, "lb"),
  53486. name: "Back",
  53487. image: {
  53488. source: "./media/characters/daurine-arima/back.svg",
  53489. extra: 1992/1800,
  53490. bottom: 12/2004
  53491. }
  53492. },
  53493. head: {
  53494. height: math.unit(15.5, "feet"),
  53495. name: "Head",
  53496. image: {
  53497. source: "./media/characters/daurine-arima/head.svg"
  53498. }
  53499. },
  53500. headAlt: {
  53501. height: math.unit(19.19, "feet"),
  53502. name: "Head (Alt)",
  53503. image: {
  53504. source: "./media/characters/daurine-arima/head-alt.svg"
  53505. }
  53506. },
  53507. },
  53508. [
  53509. {
  53510. name: "Minimum height",
  53511. height: math.unit(8 + 10/12, "feet")
  53512. },
  53513. {
  53514. name: "Comfort height",
  53515. height: math.unit(19 + 6 /12, "feet")
  53516. },
  53517. {
  53518. name: "\"Normal\" height",
  53519. height: math.unit(28 + 10/12, "feet")
  53520. },
  53521. {
  53522. name: "Base height",
  53523. height: math.unit(84 + 8/12, "feet"),
  53524. default: true
  53525. },
  53526. {
  53527. name: "Mini-macro",
  53528. height: math.unit(2360, "feet")
  53529. },
  53530. {
  53531. name: "Macro",
  53532. height: math.unit(10, "miles")
  53533. },
  53534. {
  53535. name: "Goddess",
  53536. height: math.unit(9.99e40, "yottameters")
  53537. },
  53538. ]
  53539. ))
  53540. characterMakers.push(() => makeCharacter(
  53541. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53542. {
  53543. front: {
  53544. height: math.unit(2.3, "meters"),
  53545. name: "Front",
  53546. image: {
  53547. source: "./media/characters/cilenomon/front.svg",
  53548. extra: 1963/1778,
  53549. bottom: 54/2017
  53550. }
  53551. },
  53552. },
  53553. [
  53554. {
  53555. name: "Normal",
  53556. height: math.unit(2.3, "meters"),
  53557. default: true
  53558. },
  53559. {
  53560. name: "Big",
  53561. height: math.unit(5, "meters")
  53562. },
  53563. {
  53564. name: "Macro",
  53565. height: math.unit(30, "meters")
  53566. },
  53567. {
  53568. name: "True",
  53569. height: math.unit(1, "universe")
  53570. },
  53571. ]
  53572. ))
  53573. characterMakers.push(() => makeCharacter(
  53574. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53575. {
  53576. front: {
  53577. height: math.unit(5, "feet"),
  53578. name: "Front",
  53579. image: {
  53580. source: "./media/characters/sen-mink/front.svg",
  53581. extra: 1727/1675,
  53582. bottom: 35/1762
  53583. }
  53584. },
  53585. },
  53586. [
  53587. {
  53588. name: "Normal",
  53589. height: math.unit(5, "feet"),
  53590. default: true
  53591. },
  53592. ]
  53593. ))
  53594. characterMakers.push(() => makeCharacter(
  53595. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53596. {
  53597. front: {
  53598. height: math.unit(5.42999, "feet"),
  53599. weight: math.unit(100, "lb"),
  53600. name: "Front",
  53601. image: {
  53602. source: "./media/characters/ophois/front.svg",
  53603. extra: 1429/1286,
  53604. bottom: 60/1489
  53605. }
  53606. },
  53607. },
  53608. [
  53609. {
  53610. name: "Normal",
  53611. height: math.unit(5.42999, "feet"),
  53612. default: true
  53613. },
  53614. ]
  53615. ))
  53616. characterMakers.push(() => makeCharacter(
  53617. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53618. {
  53619. front: {
  53620. height: math.unit(2, "meters"),
  53621. name: "Front",
  53622. image: {
  53623. source: "./media/characters/riley/front.svg",
  53624. extra: 1779/1754,
  53625. bottom: 139/1918
  53626. }
  53627. },
  53628. },
  53629. [
  53630. {
  53631. name: "Normal",
  53632. height: math.unit(2, "meters"),
  53633. default: true
  53634. },
  53635. ]
  53636. ))
  53637. characterMakers.push(() => makeCharacter(
  53638. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53639. {
  53640. front: {
  53641. height: math.unit(6 + 2/12, "feet"),
  53642. weight: math.unit(195, "lb"),
  53643. preyCapacity: math.unit(6, "people"),
  53644. name: "Front",
  53645. image: {
  53646. source: "./media/characters/shuken-flash/front.svg",
  53647. extra: 1905/1739,
  53648. bottom: 65/1970
  53649. }
  53650. },
  53651. back: {
  53652. height: math.unit(6 + 2/12, "feet"),
  53653. weight: math.unit(195, "lb"),
  53654. preyCapacity: math.unit(6, "people"),
  53655. name: "Back",
  53656. image: {
  53657. source: "./media/characters/shuken-flash/back.svg",
  53658. extra: 1912/1751,
  53659. bottom: 13/1925
  53660. }
  53661. },
  53662. },
  53663. [
  53664. {
  53665. name: "Normal",
  53666. height: math.unit(6 + 2/12, "feet"),
  53667. default: true
  53668. },
  53669. ]
  53670. ))
  53671. characterMakers.push(() => makeCharacter(
  53672. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53673. {
  53674. front: {
  53675. height: math.unit(5 + 9/12, "feet"),
  53676. weight: math.unit(150, "lb"),
  53677. name: "Front",
  53678. image: {
  53679. source: "./media/characters/plat/front.svg",
  53680. extra: 1816/1703,
  53681. bottom: 43/1859
  53682. }
  53683. },
  53684. side: {
  53685. height: math.unit(5 + 9/12, "feet"),
  53686. weight: math.unit(300, "lb"),
  53687. name: "Side",
  53688. image: {
  53689. source: "./media/characters/plat/side.svg",
  53690. extra: 1824/1699,
  53691. bottom: 18/1842
  53692. }
  53693. },
  53694. },
  53695. [
  53696. {
  53697. name: "Normal",
  53698. height: math.unit(5 + 9/12, "feet"),
  53699. default: true
  53700. },
  53701. ]
  53702. ))
  53703. characterMakers.push(() => makeCharacter(
  53704. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53705. {
  53706. front: {
  53707. height: math.unit(9, "feet"),
  53708. weight: math.unit(1800, "lb"),
  53709. name: "Front",
  53710. image: {
  53711. source: "./media/characters/elaine/front.svg",
  53712. extra: 1833/1354,
  53713. bottom: 25/1858
  53714. }
  53715. },
  53716. back: {
  53717. height: math.unit(8.8, "feet"),
  53718. weight: math.unit(1800, "lb"),
  53719. name: "Back",
  53720. image: {
  53721. source: "./media/characters/elaine/back.svg",
  53722. extra: 1641/1233,
  53723. bottom: 53/1694
  53724. }
  53725. },
  53726. },
  53727. [
  53728. {
  53729. name: "Normal",
  53730. height: math.unit(9, "feet"),
  53731. default: true
  53732. },
  53733. ]
  53734. ))
  53735. characterMakers.push(() => makeCharacter(
  53736. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53737. {
  53738. front: {
  53739. height: math.unit(17 + 9/12, "feet"),
  53740. weight: math.unit(8000, "lb"),
  53741. name: "Front",
  53742. image: {
  53743. source: "./media/characters/vera-raven/front.svg",
  53744. extra: 1457/1412,
  53745. bottom: 121/1578
  53746. }
  53747. },
  53748. side: {
  53749. height: math.unit(17 + 9/12, "feet"),
  53750. weight: math.unit(8000, "lb"),
  53751. name: "Side",
  53752. image: {
  53753. source: "./media/characters/vera-raven/side.svg",
  53754. extra: 1510/1464,
  53755. bottom: 54/1564
  53756. }
  53757. },
  53758. },
  53759. [
  53760. {
  53761. name: "Normal",
  53762. height: math.unit(17 + 9/12, "feet"),
  53763. default: true
  53764. },
  53765. ]
  53766. ))
  53767. characterMakers.push(() => makeCharacter(
  53768. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53769. {
  53770. dressed: {
  53771. height: math.unit(6 + 9/12, "feet"),
  53772. name: "Dressed",
  53773. image: {
  53774. source: "./media/characters/nakisha/dressed.svg",
  53775. extra: 1909/1757,
  53776. bottom: 48/1957
  53777. }
  53778. },
  53779. nude: {
  53780. height: math.unit(6 + 9/12, "feet"),
  53781. name: "Nude",
  53782. image: {
  53783. source: "./media/characters/nakisha/nude.svg",
  53784. extra: 1917/1765,
  53785. bottom: 34/1951
  53786. }
  53787. },
  53788. },
  53789. [
  53790. {
  53791. name: "Normal",
  53792. height: math.unit(6 + 9/12, "feet"),
  53793. default: true
  53794. },
  53795. ]
  53796. ))
  53797. characterMakers.push(() => makeCharacter(
  53798. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53799. {
  53800. front: {
  53801. height: math.unit(87, "meters"),
  53802. name: "Front",
  53803. image: {
  53804. source: "./media/characters/serafin/front.svg",
  53805. extra: 1919/1776,
  53806. bottom: 65/1984
  53807. }
  53808. },
  53809. },
  53810. [
  53811. {
  53812. name: "Normal",
  53813. height: math.unit(87, "meters"),
  53814. default: true
  53815. },
  53816. ]
  53817. ))
  53818. characterMakers.push(() => makeCharacter(
  53819. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53820. {
  53821. front: {
  53822. height: math.unit(6, "feet"),
  53823. weight: math.unit(200, "lb"),
  53824. name: "Front",
  53825. image: {
  53826. source: "./media/characters/poptart/front.svg",
  53827. extra: 615/583,
  53828. bottom: 23/638
  53829. }
  53830. },
  53831. back: {
  53832. height: math.unit(6, "feet"),
  53833. weight: math.unit(200, "lb"),
  53834. name: "Back",
  53835. image: {
  53836. source: "./media/characters/poptart/back.svg",
  53837. extra: 617/584,
  53838. bottom: 22/639
  53839. }
  53840. },
  53841. frontNsfw: {
  53842. height: math.unit(6, "feet"),
  53843. weight: math.unit(200, "lb"),
  53844. name: "Front (NSFW)",
  53845. image: {
  53846. source: "./media/characters/poptart/front-nsfw.svg",
  53847. extra: 615/583,
  53848. bottom: 23/638
  53849. }
  53850. },
  53851. backNsfw: {
  53852. height: math.unit(6, "feet"),
  53853. weight: math.unit(200, "lb"),
  53854. name: "Back (NSFW)",
  53855. image: {
  53856. source: "./media/characters/poptart/back-nsfw.svg",
  53857. extra: 617/584,
  53858. bottom: 22/639
  53859. }
  53860. },
  53861. hand: {
  53862. height: math.unit(1.14, "feet"),
  53863. name: "Hand",
  53864. image: {
  53865. source: "./media/characters/poptart/hand.svg"
  53866. }
  53867. },
  53868. foot: {
  53869. height: math.unit(1.5, "feet"),
  53870. name: "Foot",
  53871. image: {
  53872. source: "./media/characters/poptart/foot.svg"
  53873. }
  53874. },
  53875. },
  53876. [
  53877. {
  53878. name: "Normal",
  53879. height: math.unit(6, "feet"),
  53880. default: true
  53881. },
  53882. {
  53883. name: "Grande",
  53884. height: math.unit(350, "feet")
  53885. },
  53886. {
  53887. name: "Massif",
  53888. height: math.unit(967, "feet")
  53889. },
  53890. ]
  53891. ))
  53892. characterMakers.push(() => makeCharacter(
  53893. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53894. {
  53895. hyenaSide: {
  53896. height: math.unit(120, "cm"),
  53897. weight: math.unit(120, "lb"),
  53898. name: "Side",
  53899. image: {
  53900. source: "./media/characters/trance/hyena-side.svg",
  53901. extra: 998/904,
  53902. bottom: 76/1074
  53903. }
  53904. },
  53905. },
  53906. [
  53907. {
  53908. name: "Normal",
  53909. height: math.unit(120, "cm"),
  53910. default: true
  53911. },
  53912. {
  53913. name: "Dire",
  53914. height: math.unit(230, "cm")
  53915. },
  53916. {
  53917. name: "Macro",
  53918. height: math.unit(37, "feet")
  53919. },
  53920. ]
  53921. ))
  53922. characterMakers.push(() => makeCharacter(
  53923. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53924. {
  53925. front: {
  53926. height: math.unit(6 + 3/12, "feet"),
  53927. name: "Front",
  53928. image: {
  53929. source: "./media/characters/michael-berretta/front.svg",
  53930. extra: 515/494,
  53931. bottom: 20/535
  53932. }
  53933. },
  53934. back: {
  53935. height: math.unit(6 + 3/12, "feet"),
  53936. name: "Back",
  53937. image: {
  53938. source: "./media/characters/michael-berretta/back.svg",
  53939. extra: 520/497,
  53940. bottom: 21/541
  53941. }
  53942. },
  53943. frontNsfw: {
  53944. height: math.unit(6 + 3/12, "feet"),
  53945. name: "Front (NSFW)",
  53946. image: {
  53947. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53948. extra: 515/494,
  53949. bottom: 20/535
  53950. }
  53951. },
  53952. dick: {
  53953. height: math.unit(1, "feet"),
  53954. name: "Dick",
  53955. image: {
  53956. source: "./media/characters/michael-berretta/dick.svg"
  53957. }
  53958. },
  53959. },
  53960. [
  53961. {
  53962. name: "Normal",
  53963. height: math.unit(6 + 3/12, "feet"),
  53964. default: true
  53965. },
  53966. {
  53967. name: "Big",
  53968. height: math.unit(12, "feet")
  53969. },
  53970. {
  53971. name: "Macro",
  53972. height: math.unit(187.5, "feet")
  53973. },
  53974. ]
  53975. ))
  53976. characterMakers.push(() => makeCharacter(
  53977. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53978. {
  53979. front: {
  53980. height: math.unit(9 + 9/12, "feet"),
  53981. weight: math.unit(1244, "lb"),
  53982. name: "Front",
  53983. image: {
  53984. source: "./media/characters/stella-edgecomb/front.svg",
  53985. extra: 1835/1706,
  53986. bottom: 49/1884
  53987. }
  53988. },
  53989. pen: {
  53990. height: math.unit(0.95, "feet"),
  53991. name: "Pen",
  53992. image: {
  53993. source: "./media/characters/stella-edgecomb/pen.svg"
  53994. }
  53995. },
  53996. },
  53997. [
  53998. {
  53999. name: "Cozy Bear",
  54000. height: math.unit(0.5, "inches")
  54001. },
  54002. {
  54003. name: "Normal",
  54004. height: math.unit(9 + 9/12, "feet"),
  54005. default: true
  54006. },
  54007. {
  54008. name: "Giga Bear",
  54009. height: math.unit(1, "mile")
  54010. },
  54011. {
  54012. name: "Great Bear",
  54013. height: math.unit(53, "miles")
  54014. },
  54015. {
  54016. name: "Goddess Bear",
  54017. height: math.unit(40000, "miles")
  54018. },
  54019. {
  54020. name: "Sun Bear",
  54021. height: math.unit(900000, "miles")
  54022. },
  54023. ]
  54024. ))
  54025. characterMakers.push(() => makeCharacter(
  54026. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54027. {
  54028. anthroFront: {
  54029. height: math.unit(556, "cm"),
  54030. weight: math.unit(2650, "kg"),
  54031. preyCapacity: math.unit(3, "people"),
  54032. name: "Front",
  54033. image: {
  54034. source: "./media/characters/ash´iika/front.svg",
  54035. extra: 710/673,
  54036. bottom: 15/725
  54037. },
  54038. form: "anthro",
  54039. default: true
  54040. },
  54041. anthroSide: {
  54042. height: math.unit(556, "cm"),
  54043. weight: math.unit(2650, "kg"),
  54044. preyCapacity: math.unit(3, "people"),
  54045. name: "Side",
  54046. image: {
  54047. source: "./media/characters/ash´iika/side.svg",
  54048. extra: 696/676,
  54049. bottom: 13/709
  54050. },
  54051. form: "anthro"
  54052. },
  54053. anthroDressed: {
  54054. height: math.unit(556, "cm"),
  54055. weight: math.unit(2650, "kg"),
  54056. preyCapacity: math.unit(3, "people"),
  54057. name: "Dressed",
  54058. image: {
  54059. source: "./media/characters/ash´iika/dressed.svg",
  54060. extra: 710/673,
  54061. bottom: 15/725
  54062. },
  54063. form: "anthro"
  54064. },
  54065. anthroHead: {
  54066. height: math.unit(3.5, "feet"),
  54067. name: "Head",
  54068. image: {
  54069. source: "./media/characters/ash´iika/head.svg",
  54070. extra: 348/291,
  54071. bottom: 45/393
  54072. },
  54073. form: "anthro"
  54074. },
  54075. feralSide: {
  54076. height: math.unit(870, "cm"),
  54077. weight: math.unit(17500, "kg"),
  54078. preyCapacity: math.unit(15, "people"),
  54079. name: "Side",
  54080. image: {
  54081. source: "./media/characters/ash´iika/feral.svg",
  54082. extra: 595/199,
  54083. bottom: 7/602
  54084. },
  54085. form: "feral",
  54086. default: true,
  54087. },
  54088. },
  54089. [
  54090. {
  54091. name: "Normal",
  54092. height: math.unit(556, "cm"),
  54093. default: true,
  54094. form: "anthro"
  54095. },
  54096. {
  54097. name: "Macro",
  54098. height: math.unit(88, "meters"),
  54099. form: "anthro"
  54100. },
  54101. {
  54102. name: "Normal",
  54103. height: math.unit(870, "cm"),
  54104. default: true,
  54105. form: "feral"
  54106. },
  54107. {
  54108. name: "Large",
  54109. height: math.unit(25, "meters"),
  54110. form: "feral"
  54111. },
  54112. ],
  54113. {
  54114. "anthro": {
  54115. name: "Anthro",
  54116. default: true
  54117. },
  54118. "feral": {
  54119. name: "Feral",
  54120. },
  54121. }
  54122. ))
  54123. characterMakers.push(() => makeCharacter(
  54124. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54125. {
  54126. front: {
  54127. height: math.unit(10, "feet"),
  54128. weight: math.unit(800, "lb"),
  54129. name: "Front",
  54130. image: {
  54131. source: "./media/characters/yen/front.svg",
  54132. extra: 443/411,
  54133. bottom: 6/449
  54134. }
  54135. },
  54136. sleeping: {
  54137. height: math.unit(10, "feet"),
  54138. weight: math.unit(800, "lb"),
  54139. name: "Sleeping",
  54140. image: {
  54141. source: "./media/characters/yen/sleeping.svg",
  54142. extra: 470/422,
  54143. bottom: 0/470
  54144. }
  54145. },
  54146. head: {
  54147. height: math.unit(2.2, "feet"),
  54148. name: "Head",
  54149. image: {
  54150. source: "./media/characters/yen/head.svg"
  54151. }
  54152. },
  54153. headAlt: {
  54154. height: math.unit(2.1, "feet"),
  54155. name: "Head (Alt)",
  54156. image: {
  54157. source: "./media/characters/yen/head-alt.svg"
  54158. }
  54159. },
  54160. },
  54161. [
  54162. {
  54163. name: "Normal",
  54164. height: math.unit(10, "feet"),
  54165. default: true
  54166. },
  54167. ]
  54168. ))
  54169. characterMakers.push(() => makeCharacter(
  54170. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54171. {
  54172. front: {
  54173. height: math.unit(12, "feet"),
  54174. name: "Front",
  54175. image: {
  54176. source: "./media/characters/citra/front.svg",
  54177. extra: 1950/1710,
  54178. bottom: 47/1997
  54179. }
  54180. },
  54181. },
  54182. [
  54183. {
  54184. name: "Normal",
  54185. height: math.unit(12, "feet"),
  54186. default: true
  54187. },
  54188. ]
  54189. ))
  54190. characterMakers.push(() => makeCharacter(
  54191. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54192. {
  54193. side: {
  54194. height: math.unit(7 + 10/12, "feet"),
  54195. name: "Side",
  54196. image: {
  54197. source: "./media/characters/sholstim/side.svg",
  54198. extra: 786/682,
  54199. bottom: 40/826
  54200. }
  54201. },
  54202. },
  54203. [
  54204. {
  54205. name: "Normal",
  54206. height: math.unit(7 + 10/12, "feet"),
  54207. default: true
  54208. },
  54209. ]
  54210. ))
  54211. characterMakers.push(() => makeCharacter(
  54212. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54213. {
  54214. front: {
  54215. height: math.unit(3.10, "meters"),
  54216. name: "Front",
  54217. image: {
  54218. source: "./media/characters/aggyn/front.svg",
  54219. extra: 1188/963,
  54220. bottom: 24/1212
  54221. }
  54222. },
  54223. },
  54224. [
  54225. {
  54226. name: "Normal",
  54227. height: math.unit(3.10, "meters"),
  54228. default: true
  54229. },
  54230. ]
  54231. ))
  54232. characterMakers.push(() => makeCharacter(
  54233. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54234. {
  54235. front: {
  54236. height: math.unit(7 + 5/12, "feet"),
  54237. weight: math.unit(687, "lb"),
  54238. name: "Front",
  54239. image: {
  54240. source: "./media/characters/alsandair-hergenroether/front.svg",
  54241. extra: 1251/1186,
  54242. bottom: 75/1326
  54243. }
  54244. },
  54245. back: {
  54246. height: math.unit(7 + 5/12, "feet"),
  54247. weight: math.unit(687, "lb"),
  54248. name: "Back",
  54249. image: {
  54250. source: "./media/characters/alsandair-hergenroether/back.svg",
  54251. extra: 1290/1229,
  54252. bottom: 17/1307
  54253. }
  54254. },
  54255. },
  54256. [
  54257. {
  54258. name: "Max Compression",
  54259. height: math.unit(7 + 5/12, "feet"),
  54260. default: true
  54261. },
  54262. {
  54263. name: "\"Normal\"",
  54264. height: math.unit(2, "universes")
  54265. },
  54266. ]
  54267. ))
  54268. characterMakers.push(() => makeCharacter(
  54269. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54270. {
  54271. front: {
  54272. height: math.unit(4 + 1/12, "feet"),
  54273. weight: math.unit(92, "lb"),
  54274. name: "Front",
  54275. image: {
  54276. source: "./media/characters/ie/front.svg",
  54277. extra: 1585/1352,
  54278. bottom: 91/1676
  54279. }
  54280. },
  54281. },
  54282. [
  54283. {
  54284. name: "Normal",
  54285. height: math.unit(4 + 1/12, "feet"),
  54286. default: true
  54287. },
  54288. ]
  54289. ))
  54290. characterMakers.push(() => makeCharacter(
  54291. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54292. {
  54293. anthro: {
  54294. height: math.unit(6, "feet"),
  54295. weight: math.unit(150, "lb"),
  54296. name: "Front",
  54297. image: {
  54298. source: "./media/characters/willow/anthro.svg",
  54299. extra: 1073/986,
  54300. bottom: 34/1107
  54301. },
  54302. form: "anthro",
  54303. default: true
  54304. },
  54305. taur: {
  54306. height: math.unit(6, "feet"),
  54307. weight: math.unit(150, "lb"),
  54308. name: "Side",
  54309. image: {
  54310. source: "./media/characters/willow/taur.svg",
  54311. extra: 647/512,
  54312. bottom: 136/783
  54313. },
  54314. form: "taur",
  54315. default: true
  54316. },
  54317. },
  54318. [
  54319. {
  54320. name: "Humanoid",
  54321. height: math.unit(2.7, "meters"),
  54322. form: "anthro"
  54323. },
  54324. {
  54325. name: "Normal",
  54326. height: math.unit(9, "meters"),
  54327. form: "anthro",
  54328. default: true
  54329. },
  54330. {
  54331. name: "Humanoid",
  54332. height: math.unit(2.1, "meters"),
  54333. form: "taur"
  54334. },
  54335. {
  54336. name: "Normal",
  54337. height: math.unit(7, "meters"),
  54338. form: "taur",
  54339. default: true
  54340. },
  54341. ],
  54342. {
  54343. "anthro": {
  54344. name: "Anthro",
  54345. default: true
  54346. },
  54347. "taur": {
  54348. name: "Taur",
  54349. },
  54350. }
  54351. ))
  54352. characterMakers.push(() => makeCharacter(
  54353. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54354. {
  54355. front: {
  54356. height: math.unit(2 + 5/12, "feet"),
  54357. name: "Front",
  54358. image: {
  54359. source: "./media/characters/kyan/front.svg",
  54360. extra: 460/334,
  54361. bottom: 23/483
  54362. },
  54363. extraAttributes: {
  54364. "toeLength": {
  54365. name: "Toe Length",
  54366. power: 1,
  54367. type: "length",
  54368. base: math.unit(7, "cm")
  54369. },
  54370. "toeclawLength": {
  54371. name: "Toeclaw Length",
  54372. power: 1,
  54373. type: "length",
  54374. base: math.unit(4.7, "cm")
  54375. },
  54376. "earHeight": {
  54377. name: "Ear Height",
  54378. power: 1,
  54379. type: "length",
  54380. base: math.unit(14.1, "cm")
  54381. },
  54382. }
  54383. },
  54384. paws: {
  54385. height: math.unit(0.45, "feet"),
  54386. name: "Paws",
  54387. image: {
  54388. source: "./media/characters/kyan/paws.svg",
  54389. extra: 581/581,
  54390. bottom: 114/695
  54391. }
  54392. },
  54393. },
  54394. [
  54395. {
  54396. name: "Normal",
  54397. height: math.unit(2 + 5/12, "feet"),
  54398. default: true
  54399. },
  54400. ]
  54401. ))
  54402. characterMakers.push(() => makeCharacter(
  54403. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54404. {
  54405. front: {
  54406. height: math.unit(2 + 2/3, "feet"),
  54407. name: "Front",
  54408. image: {
  54409. source: "./media/characters/xazzon/front.svg",
  54410. extra: 1109/984,
  54411. bottom: 42/1151
  54412. }
  54413. },
  54414. back: {
  54415. height: math.unit(2 + 2/3, "feet"),
  54416. name: "Back",
  54417. image: {
  54418. source: "./media/characters/xazzon/back.svg",
  54419. extra: 1095/971,
  54420. bottom: 23/1118
  54421. }
  54422. },
  54423. },
  54424. [
  54425. {
  54426. name: "Normal",
  54427. height: math.unit(2 + 2/3, "feet"),
  54428. default: true
  54429. },
  54430. ]
  54431. ))
  54432. characterMakers.push(() => makeCharacter(
  54433. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54434. {
  54435. dressed: {
  54436. height: math.unit(5 + 7/12, "feet"),
  54437. weight: math.unit(173, "lb"),
  54438. name: "Dressed",
  54439. image: {
  54440. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54441. extra: 3262/2862,
  54442. bottom: 188/3450
  54443. }
  54444. },
  54445. undressed: {
  54446. height: math.unit(5 + 7/12, "feet"),
  54447. weight: math.unit(173, "lb"),
  54448. name: "Undressed",
  54449. image: {
  54450. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54451. extra: 3262/2862,
  54452. bottom: 188/3450
  54453. }
  54454. },
  54455. },
  54456. [
  54457. {
  54458. name: "The void",
  54459. height: math.unit(7.29193e-34, "angstroms")
  54460. },
  54461. {
  54462. name: "Uh-Oh.",
  54463. height: math.unit(5.734e-7, "angstroms")
  54464. },
  54465. {
  54466. name: "Pico",
  54467. height: math.unit(0.876, "angstroms")
  54468. },
  54469. {
  54470. name: "Nano",
  54471. height: math.unit(0.000134200, "mm")
  54472. },
  54473. {
  54474. name: "Micro",
  54475. height: math.unit(0.0673020, "mm")
  54476. },
  54477. {
  54478. name: "Tiny",
  54479. height: math.unit(2.4, "mm")
  54480. },
  54481. {
  54482. name: "Actual Normal",
  54483. height: math.unit(3, "inches"),
  54484. default: true
  54485. },
  54486. {
  54487. name: "Normal",
  54488. height: math.unit(5 + 8/12, "feet")
  54489. },
  54490. {
  54491. name: "Giant",
  54492. height: math.unit(12, "feet")
  54493. },
  54494. {
  54495. name: "City Ruler",
  54496. height: math.unit(270, "meters")
  54497. },
  54498. {
  54499. name: "Giga",
  54500. height: math.unit(1117.6, "km")
  54501. },
  54502. {
  54503. name: "All-Powerful Queen",
  54504. height: math.unit(70.8, "gigameters")
  54505. },
  54506. {
  54507. name: "'Goddess'",
  54508. height: math.unit(600, "yottameters")
  54509. },
  54510. {
  54511. name: "Biggest!",
  54512. height: math.unit(4.23e5, "yottameters")
  54513. },
  54514. ]
  54515. ))
  54516. characterMakers.push(() => makeCharacter(
  54517. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54518. {
  54519. front: {
  54520. height: math.unit(8, "feet"),
  54521. weight: math.unit(300, "lb"),
  54522. name: "Front",
  54523. image: {
  54524. source: "./media/characters/khyla-shadowsong/front.svg",
  54525. extra: 861/798,
  54526. bottom: 32/893
  54527. }
  54528. },
  54529. side: {
  54530. height: math.unit(8, "feet"),
  54531. weight: math.unit(300, "lb"),
  54532. name: "Side",
  54533. image: {
  54534. source: "./media/characters/khyla-shadowsong/side.svg",
  54535. extra: 790/750,
  54536. bottom: 87/877
  54537. }
  54538. },
  54539. back: {
  54540. height: math.unit(8, "feet"),
  54541. weight: math.unit(300, "lb"),
  54542. name: "Back",
  54543. image: {
  54544. source: "./media/characters/khyla-shadowsong/back.svg",
  54545. extra: 855/808,
  54546. bottom: 14/869
  54547. }
  54548. },
  54549. head: {
  54550. height: math.unit(2.7, "feet"),
  54551. name: "Head",
  54552. image: {
  54553. source: "./media/characters/khyla-shadowsong/head.svg"
  54554. }
  54555. },
  54556. },
  54557. [
  54558. {
  54559. name: "Micro",
  54560. height: math.unit(6, "inches")
  54561. },
  54562. {
  54563. name: "Normal",
  54564. height: math.unit(8, "feet"),
  54565. default: true
  54566. },
  54567. ]
  54568. ))
  54569. characterMakers.push(() => makeCharacter(
  54570. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54571. {
  54572. hyperFront: {
  54573. height: math.unit(9 + 4/12, "feet"),
  54574. weight: math.unit(2000, "lb"),
  54575. name: "Front",
  54576. image: {
  54577. source: "./media/characters/tiden/hyper-front.svg",
  54578. extra: 400/382,
  54579. bottom: 6/406
  54580. },
  54581. form: "hyper",
  54582. },
  54583. regularFront: {
  54584. height: math.unit(7 + 10/12, "feet"),
  54585. weight: math.unit(470, "lb"),
  54586. name: "Front",
  54587. image: {
  54588. source: "./media/characters/tiden/regular-front.svg",
  54589. extra: 468/442,
  54590. bottom: 6/474
  54591. },
  54592. form: "regular",
  54593. },
  54594. },
  54595. [
  54596. {
  54597. name: "Normal",
  54598. height: math.unit(9 + 4/12, "feet"),
  54599. default: true,
  54600. form: "hyper"
  54601. },
  54602. {
  54603. name: "Normal",
  54604. height: math.unit(7 + 10/12, "feet"),
  54605. default: true,
  54606. form: "regular"
  54607. },
  54608. ],
  54609. {
  54610. "hyper": {
  54611. name: "Hyper",
  54612. default: true
  54613. },
  54614. "regular": {
  54615. name: "Regular",
  54616. },
  54617. }
  54618. ))
  54619. characterMakers.push(() => makeCharacter(
  54620. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54621. {
  54622. side: {
  54623. height: math.unit(6, "feet"),
  54624. weight: math.unit(150, "lb"),
  54625. name: "Side",
  54626. image: {
  54627. source: "./media/characters/jason-crowe/side.svg",
  54628. extra: 1771/766,
  54629. bottom: 219/1990
  54630. }
  54631. },
  54632. },
  54633. [
  54634. {
  54635. name: "Pocket Gryphon",
  54636. height: math.unit(6, "cm")
  54637. },
  54638. {
  54639. name: "Raven",
  54640. height: math.unit(60, "cm")
  54641. },
  54642. {
  54643. name: "Normal",
  54644. height: math.unit(1, "meter"),
  54645. default: true
  54646. },
  54647. ]
  54648. ))
  54649. characterMakers.push(() => makeCharacter(
  54650. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54651. {
  54652. front: {
  54653. height: math.unit(9 + 6/12, "feet"),
  54654. weight: math.unit(1100, "lb"),
  54655. name: "Front",
  54656. image: {
  54657. source: "./media/characters/django/front.svg",
  54658. extra: 1231/1136,
  54659. bottom: 34/1265
  54660. }
  54661. },
  54662. side: {
  54663. height: math.unit(9 + 6/12, "feet"),
  54664. weight: math.unit(1100, "lb"),
  54665. name: "Side",
  54666. image: {
  54667. source: "./media/characters/django/side.svg",
  54668. extra: 1267/1174,
  54669. bottom: 9/1276
  54670. }
  54671. },
  54672. },
  54673. [
  54674. {
  54675. name: "Normal",
  54676. height: math.unit(9 + 6/12, "feet"),
  54677. default: true
  54678. },
  54679. {
  54680. name: "Macro 1",
  54681. height: math.unit(50, "feet")
  54682. },
  54683. {
  54684. name: "Macro 2",
  54685. height: math.unit(500, "feet")
  54686. },
  54687. {
  54688. name: "Mega Macro",
  54689. height: math.unit(5300, "feet")
  54690. },
  54691. ]
  54692. ))
  54693. characterMakers.push(() => makeCharacter(
  54694. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54695. {
  54696. frontSfw: {
  54697. height: math.unit(120, "cm"),
  54698. weight: math.unit(15, "kg"),
  54699. name: "Front (SFW)",
  54700. image: {
  54701. source: "./media/characters/eri/front-sfw.svg",
  54702. extra: 1014/939,
  54703. bottom: 37/1051
  54704. },
  54705. form: "moth",
  54706. },
  54707. frontNsfw: {
  54708. height: math.unit(120, "cm"),
  54709. weight: math.unit(15, "kg"),
  54710. name: "Front (NSFW)",
  54711. image: {
  54712. source: "./media/characters/eri/front-nsfw.svg",
  54713. extra: 1014/939,
  54714. bottom: 37/1051
  54715. },
  54716. form: "moth",
  54717. default: true
  54718. },
  54719. egg: {
  54720. height: math.unit(10, "cm"),
  54721. name: "Egg",
  54722. image: {
  54723. source: "./media/characters/eri/egg.svg"
  54724. },
  54725. form: "egg",
  54726. default: true
  54727. },
  54728. },
  54729. [
  54730. {
  54731. name: "Normal",
  54732. height: math.unit(120, "cm"),
  54733. default: true,
  54734. form: "moth"
  54735. },
  54736. {
  54737. name: "Normal",
  54738. height: math.unit(10, "cm"),
  54739. default: true,
  54740. form: "egg"
  54741. },
  54742. ],
  54743. {
  54744. "moth": {
  54745. name: "Moth",
  54746. default: true
  54747. },
  54748. "egg": {
  54749. name: "Egg",
  54750. },
  54751. }
  54752. ))
  54753. characterMakers.push(() => makeCharacter(
  54754. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54755. {
  54756. front: {
  54757. height: math.unit(200, "feet"),
  54758. name: "Front",
  54759. image: {
  54760. source: "./media/characters/bishop-dowser/front.svg",
  54761. extra: 933/868,
  54762. bottom: 106/1039
  54763. }
  54764. },
  54765. },
  54766. [
  54767. {
  54768. name: "Giant",
  54769. height: math.unit(200, "feet"),
  54770. default: true
  54771. },
  54772. ]
  54773. ))
  54774. characterMakers.push(() => makeCharacter(
  54775. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54776. {
  54777. front: {
  54778. height: math.unit(2, "meters"),
  54779. preyCapacity: math.unit(3, "people"),
  54780. name: "Front",
  54781. image: {
  54782. source: "./media/characters/fryra/front.svg",
  54783. extra: 1025/948,
  54784. bottom: 30/1055
  54785. },
  54786. extraAttributes: {
  54787. "breastVolume": {
  54788. name: "Breast Volume",
  54789. power: 3,
  54790. type: "volume",
  54791. base: math.unit(8, "liters")
  54792. },
  54793. }
  54794. },
  54795. back: {
  54796. height: math.unit(2, "meters"),
  54797. preyCapacity: math.unit(3, "people"),
  54798. name: "Back",
  54799. image: {
  54800. source: "./media/characters/fryra/back.svg",
  54801. extra: 993/938,
  54802. bottom: 38/1031
  54803. },
  54804. extraAttributes: {
  54805. "breastVolume": {
  54806. name: "Breast Volume",
  54807. power: 3,
  54808. type: "volume",
  54809. base: math.unit(8, "liters")
  54810. },
  54811. }
  54812. },
  54813. head: {
  54814. height: math.unit(1.33, "feet"),
  54815. name: "Head",
  54816. image: {
  54817. source: "./media/characters/fryra/head.svg"
  54818. }
  54819. },
  54820. maw: {
  54821. height: math.unit(0.56, "feet"),
  54822. name: "Maw",
  54823. image: {
  54824. source: "./media/characters/fryra/maw.svg"
  54825. }
  54826. },
  54827. },
  54828. [
  54829. {
  54830. name: "Micro",
  54831. height: math.unit(5, "cm")
  54832. },
  54833. {
  54834. name: "Normal",
  54835. height: math.unit(2, "meters"),
  54836. default: true
  54837. },
  54838. {
  54839. name: "Small Macro",
  54840. height: math.unit(8, "meters")
  54841. },
  54842. {
  54843. name: "Macro",
  54844. height: math.unit(50, "meters")
  54845. },
  54846. {
  54847. name: "Megamacro",
  54848. height: math.unit(1, "km")
  54849. },
  54850. {
  54851. name: "Planetary",
  54852. height: math.unit(300000, "km")
  54853. },
  54854. {
  54855. name: "Universal",
  54856. height: math.unit(250, "lightyears")
  54857. },
  54858. {
  54859. name: "Fabric of Reality",
  54860. height: math.unit(1000, "multiverses")
  54861. },
  54862. ]
  54863. ))
  54864. characterMakers.push(() => makeCharacter(
  54865. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54866. {
  54867. frontDressed: {
  54868. height: math.unit(6 + 2/12, "feet"),
  54869. name: "Front (Dressed)",
  54870. image: {
  54871. source: "./media/characters/fiera/front-dressed.svg",
  54872. extra: 1883/1793,
  54873. bottom: 70/1953
  54874. }
  54875. },
  54876. backDressed: {
  54877. height: math.unit(6 + 2/12, "feet"),
  54878. name: "Back (Dressed)",
  54879. image: {
  54880. source: "./media/characters/fiera/back-dressed.svg",
  54881. extra: 1847/1780,
  54882. bottom: 70/1917
  54883. }
  54884. },
  54885. frontNude: {
  54886. height: math.unit(6 + 2/12, "feet"),
  54887. name: "Front (Nude)",
  54888. image: {
  54889. source: "./media/characters/fiera/front-nude.svg",
  54890. extra: 1875/1785,
  54891. bottom: 66/1941
  54892. }
  54893. },
  54894. backNude: {
  54895. height: math.unit(6 + 2/12, "feet"),
  54896. name: "Back (Nude)",
  54897. image: {
  54898. source: "./media/characters/fiera/back-nude.svg",
  54899. extra: 1855/1788,
  54900. bottom: 44/1899
  54901. }
  54902. },
  54903. maw: {
  54904. height: math.unit(1.3, "feet"),
  54905. name: "Maw",
  54906. image: {
  54907. source: "./media/characters/fiera/maw.svg"
  54908. }
  54909. },
  54910. paw: {
  54911. height: math.unit(1, "feet"),
  54912. name: "Paw",
  54913. image: {
  54914. source: "./media/characters/fiera/paw.svg"
  54915. }
  54916. },
  54917. shoe: {
  54918. height: math.unit(1.05, "feet"),
  54919. name: "Shoe",
  54920. image: {
  54921. source: "./media/characters/fiera/shoe.svg"
  54922. }
  54923. },
  54924. },
  54925. [
  54926. {
  54927. name: "Normal",
  54928. height: math.unit(6 + 2/12, "feet"),
  54929. default: true
  54930. },
  54931. {
  54932. name: "Size Difference",
  54933. height: math.unit(13, "feet")
  54934. },
  54935. {
  54936. name: "Macro",
  54937. height: math.unit(60, "feet")
  54938. },
  54939. {
  54940. name: "Mega Macro",
  54941. height: math.unit(200, "feet")
  54942. },
  54943. ]
  54944. ))
  54945. characterMakers.push(() => makeCharacter(
  54946. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54947. {
  54948. back: {
  54949. height: math.unit(6, "feet"),
  54950. name: "Back",
  54951. image: {
  54952. source: "./media/characters/flare/back.svg",
  54953. extra: 1883/1765,
  54954. bottom: 32/1915
  54955. }
  54956. },
  54957. },
  54958. [
  54959. {
  54960. name: "Normal",
  54961. height: math.unit(6 + 2/12, "feet"),
  54962. default: true
  54963. },
  54964. {
  54965. name: "Size Difference",
  54966. height: math.unit(13, "feet")
  54967. },
  54968. {
  54969. name: "Macro",
  54970. height: math.unit(60, "feet")
  54971. },
  54972. {
  54973. name: "Macro 2",
  54974. height: math.unit(100, "feet")
  54975. },
  54976. {
  54977. name: "Mega Macro",
  54978. height: math.unit(200, "feet")
  54979. },
  54980. ]
  54981. ))
  54982. characterMakers.push(() => makeCharacter(
  54983. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54984. {
  54985. front: {
  54986. height: math.unit(2.2, "m"),
  54987. weight: math.unit(300, "kg"),
  54988. name: "Front",
  54989. image: {
  54990. source: "./media/characters/hanna/front.svg",
  54991. extra: 1696/1502,
  54992. bottom: 206/1902
  54993. }
  54994. },
  54995. },
  54996. [
  54997. {
  54998. name: "Humanoid",
  54999. height: math.unit(2.2, "meters")
  55000. },
  55001. {
  55002. name: "Normal",
  55003. height: math.unit(4.8, "meters"),
  55004. default: true
  55005. },
  55006. ]
  55007. ))
  55008. characterMakers.push(() => makeCharacter(
  55009. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55010. {
  55011. front: {
  55012. height: math.unit(2.8, "meters"),
  55013. name: "Front",
  55014. image: {
  55015. source: "./media/characters/argo/front.svg",
  55016. extra: 731/518,
  55017. bottom: 84/815
  55018. }
  55019. },
  55020. },
  55021. [
  55022. {
  55023. name: "Normal",
  55024. height: math.unit(3, "meters"),
  55025. default: true
  55026. },
  55027. ]
  55028. ))
  55029. characterMakers.push(() => makeCharacter(
  55030. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55031. {
  55032. side: {
  55033. height: math.unit(3.8, "meters"),
  55034. name: "Side",
  55035. image: {
  55036. source: "./media/characters/sybil/side.svg",
  55037. extra: 382/361,
  55038. bottom: 25/407
  55039. }
  55040. },
  55041. },
  55042. [
  55043. {
  55044. name: "Normal",
  55045. height: math.unit(3.8, "meters"),
  55046. default: true
  55047. },
  55048. ]
  55049. ))
  55050. characterMakers.push(() => makeCharacter(
  55051. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55052. {
  55053. side: {
  55054. height: math.unit(6, "meters"),
  55055. name: "Side",
  55056. image: {
  55057. source: "./media/characters/plum/side.svg",
  55058. extra: 858/755,
  55059. bottom: 45/903
  55060. },
  55061. form: "taur",
  55062. default: true
  55063. },
  55064. back: {
  55065. height: math.unit(6.3, "meters"),
  55066. name: "Back",
  55067. image: {
  55068. source: "./media/characters/plum/back.svg",
  55069. extra: 887/813,
  55070. bottom: 32/919
  55071. },
  55072. form: "taur",
  55073. },
  55074. feral: {
  55075. height: math.unit(5.5, "meter"),
  55076. name: "Front",
  55077. image: {
  55078. source: "./media/characters/plum/feral.svg",
  55079. extra: 568/403,
  55080. bottom: 51/619
  55081. },
  55082. form: "feral",
  55083. default: true
  55084. },
  55085. head: {
  55086. height: math.unit(1.46, "meter"),
  55087. name: "Head",
  55088. image: {
  55089. source: "./media/characters/plum/head.svg"
  55090. },
  55091. form: "taur"
  55092. },
  55093. tailTop: {
  55094. height: math.unit(5.6, "meter"),
  55095. name: "Tail (Top)",
  55096. image: {
  55097. source: "./media/characters/plum/tail-top.svg"
  55098. },
  55099. form: "taur",
  55100. },
  55101. tailBottom: {
  55102. height: math.unit(5.6, "meter"),
  55103. name: "Tail (Bottom)",
  55104. image: {
  55105. source: "./media/characters/plum/tail-bottom.svg"
  55106. },
  55107. form: "taur",
  55108. },
  55109. feralHead: {
  55110. height: math.unit(2.56549521, "meter"),
  55111. name: "Head",
  55112. image: {
  55113. source: "./media/characters/plum/head.svg"
  55114. },
  55115. form: "feral"
  55116. },
  55117. feralTailTop: {
  55118. height: math.unit(5.44728435, "meter"),
  55119. name: "Tail (Top)",
  55120. image: {
  55121. source: "./media/characters/plum/tail-top.svg"
  55122. },
  55123. form: "feral",
  55124. },
  55125. feralTailBottom: {
  55126. height: math.unit(5.44728435, "meter"),
  55127. name: "Tail (Bottom)",
  55128. image: {
  55129. source: "./media/characters/plum/tail-bottom.svg"
  55130. },
  55131. form: "feral",
  55132. },
  55133. },
  55134. [
  55135. {
  55136. name: "Normal",
  55137. height: math.unit(6, "meters"),
  55138. default: true,
  55139. form: "taur"
  55140. },
  55141. {
  55142. name: "Normal",
  55143. height: math.unit(5.5, "meters"),
  55144. default: true,
  55145. form: "feral"
  55146. },
  55147. ],
  55148. {
  55149. "taur": {
  55150. name: "Taur",
  55151. default: true
  55152. },
  55153. "feral": {
  55154. name: "Feral",
  55155. },
  55156. }
  55157. ))
  55158. characterMakers.push(() => makeCharacter(
  55159. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55160. {
  55161. front: {
  55162. height: math.unit(6, "feet"),
  55163. weight: math.unit(115, "lb"),
  55164. name: "Front",
  55165. image: {
  55166. source: "./media/characters/celeste-kitsune/front.svg",
  55167. extra: 393/366,
  55168. bottom: 7/400
  55169. }
  55170. },
  55171. side: {
  55172. height: math.unit(6, "feet"),
  55173. weight: math.unit(115, "lb"),
  55174. name: "Side",
  55175. image: {
  55176. source: "./media/characters/celeste-kitsune/side.svg",
  55177. extra: 818/765,
  55178. bottom: 40/858
  55179. }
  55180. },
  55181. },
  55182. [
  55183. {
  55184. name: "Megamacro",
  55185. height: math.unit(1500, "miles"),
  55186. default: true
  55187. },
  55188. ]
  55189. ))
  55190. characterMakers.push(() => makeCharacter(
  55191. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55192. {
  55193. front: {
  55194. height: math.unit(8, "meters"),
  55195. name: "Front",
  55196. image: {
  55197. source: "./media/characters/io/front.svg",
  55198. extra: 865/722,
  55199. bottom: 58/923
  55200. }
  55201. },
  55202. back: {
  55203. height: math.unit(8, "meters"),
  55204. name: "Back",
  55205. image: {
  55206. source: "./media/characters/io/back.svg",
  55207. extra: 920/776,
  55208. bottom: 42/962
  55209. }
  55210. },
  55211. head: {
  55212. height: math.unit(5.09, "meters"),
  55213. name: "Head",
  55214. image: {
  55215. source: "./media/characters/io/head.svg"
  55216. }
  55217. },
  55218. hand: {
  55219. height: math.unit(1.6, "meters"),
  55220. name: "Hand",
  55221. image: {
  55222. source: "./media/characters/io/hand.svg"
  55223. }
  55224. },
  55225. foot: {
  55226. height: math.unit(2.4, "meters"),
  55227. name: "Foot",
  55228. image: {
  55229. source: "./media/characters/io/foot.svg"
  55230. }
  55231. },
  55232. },
  55233. [
  55234. {
  55235. name: "Normal",
  55236. height: math.unit(8, "meters"),
  55237. default: true
  55238. },
  55239. ]
  55240. ))
  55241. characterMakers.push(() => makeCharacter(
  55242. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55243. {
  55244. side: {
  55245. height: math.unit(6 + 3/12, "feet"),
  55246. weight: math.unit(225, "lb"),
  55247. name: "Side",
  55248. image: {
  55249. source: "./media/characters/silas/side.svg",
  55250. extra: 703/653,
  55251. bottom: 23/726
  55252. },
  55253. extraAttributes: {
  55254. "pawLength": {
  55255. name: "Paw Length",
  55256. power: 1,
  55257. type: "length",
  55258. base: math.unit(12, "inches")
  55259. },
  55260. "pawWidth": {
  55261. name: "Paw Width",
  55262. power: 1,
  55263. type: "length",
  55264. base: math.unit(4.5, "inches")
  55265. },
  55266. "pawArea": {
  55267. name: "Paw Area",
  55268. power: 2,
  55269. type: "area",
  55270. base: math.unit(12 * 4.5, "inches^2")
  55271. },
  55272. }
  55273. },
  55274. },
  55275. [
  55276. {
  55277. name: "Normal",
  55278. height: math.unit(6 + 3/12, "feet"),
  55279. default: true
  55280. },
  55281. ]
  55282. ))
  55283. characterMakers.push(() => makeCharacter(
  55284. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55285. {
  55286. back: {
  55287. height: math.unit(1.6, "meters"),
  55288. weight: math.unit(150, "lb"),
  55289. name: "Back",
  55290. image: {
  55291. source: "./media/characters/zari/back.svg",
  55292. extra: 424/411,
  55293. bottom: 32/456
  55294. },
  55295. extraAttributes: {
  55296. "bladderCapacity": {
  55297. name: "Bladder Size",
  55298. power: 3,
  55299. type: "volume",
  55300. base: math.unit(500, "mL")
  55301. },
  55302. "bladderFlow": {
  55303. name: "Flow Rate",
  55304. power: 3,
  55305. type: "volume",
  55306. base: math.unit(25, "mL")
  55307. },
  55308. }
  55309. },
  55310. },
  55311. [
  55312. {
  55313. name: "Normal",
  55314. height: math.unit(1.6, "meters"),
  55315. default: true
  55316. },
  55317. ]
  55318. ))
  55319. characterMakers.push(() => makeCharacter(
  55320. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55321. {
  55322. front: {
  55323. height: math.unit(25, "feet"),
  55324. weight: math.unit(5, "tons"),
  55325. name: "Front",
  55326. image: {
  55327. source: "./media/characters/charlie-human/front.svg",
  55328. extra: 1870/1740,
  55329. bottom: 102/1972
  55330. },
  55331. extraAttributes: {
  55332. "dickLength": {
  55333. name: "Dick Length",
  55334. power: 1,
  55335. type: "length",
  55336. base: math.unit(9, "feet")
  55337. },
  55338. }
  55339. },
  55340. back: {
  55341. height: math.unit(25, "feet"),
  55342. weight: math.unit(5, "tons"),
  55343. name: "Back",
  55344. image: {
  55345. source: "./media/characters/charlie-human/back.svg",
  55346. extra: 1858/1733,
  55347. bottom: 105/1963
  55348. },
  55349. extraAttributes: {
  55350. "dickLength": {
  55351. name: "Dick Length",
  55352. power: 1,
  55353. type: "length",
  55354. base: math.unit(9, "feet")
  55355. },
  55356. }
  55357. },
  55358. },
  55359. [
  55360. {
  55361. name: "\"Normal\"",
  55362. height: math.unit(6 + 4/12, "feet")
  55363. },
  55364. {
  55365. name: "Big",
  55366. height: math.unit(25, "feet"),
  55367. default: true
  55368. },
  55369. ]
  55370. ))
  55371. characterMakers.push(() => makeCharacter(
  55372. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55373. {
  55374. front: {
  55375. height: math.unit(6 + 4/12, "feet"),
  55376. weight: math.unit(320, "lb"),
  55377. name: "Front",
  55378. image: {
  55379. source: "./media/characters/ookitsu/front.svg",
  55380. extra: 1160/976,
  55381. bottom: 38/1198
  55382. }
  55383. },
  55384. frontNsfw: {
  55385. height: math.unit(6 + 4/12, "feet"),
  55386. weight: math.unit(320, "lb"),
  55387. name: "Front (NSFW)",
  55388. image: {
  55389. source: "./media/characters/ookitsu/front-nsfw.svg",
  55390. extra: 1160/976,
  55391. bottom: 38/1198
  55392. }
  55393. },
  55394. back: {
  55395. height: math.unit(6 + 4/12, "feet"),
  55396. weight: math.unit(320, "lb"),
  55397. name: "Back",
  55398. image: {
  55399. source: "./media/characters/ookitsu/back.svg",
  55400. extra: 1030/975,
  55401. bottom: 70/1100
  55402. }
  55403. },
  55404. head: {
  55405. height: math.unit(1.79, "feet"),
  55406. name: "Head",
  55407. image: {
  55408. source: "./media/characters/ookitsu/head.svg"
  55409. }
  55410. },
  55411. hand: {
  55412. height: math.unit(0.92, "feet"),
  55413. name: "Hand",
  55414. image: {
  55415. source: "./media/characters/ookitsu/hand.svg"
  55416. }
  55417. },
  55418. tails: {
  55419. height: math.unit(3.3, "feet"),
  55420. name: "Tails",
  55421. image: {
  55422. source: "./media/characters/ookitsu/tails.svg"
  55423. }
  55424. },
  55425. dick: {
  55426. height: math.unit(1.10833, "feet"),
  55427. name: "Dick",
  55428. image: {
  55429. source: "./media/characters/ookitsu/dick.svg"
  55430. }
  55431. },
  55432. },
  55433. [
  55434. {
  55435. name: "Normal",
  55436. height: math.unit(6 + 4/12, "feet"),
  55437. default: true
  55438. },
  55439. {
  55440. name: "Macro",
  55441. height: math.unit(30, "feet")
  55442. },
  55443. ]
  55444. ))
  55445. characterMakers.push(() => makeCharacter(
  55446. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55447. {
  55448. anthroFront: {
  55449. height: math.unit(6, "feet"),
  55450. weight: math.unit(250, "lb"),
  55451. name: "Front",
  55452. image: {
  55453. source: "./media/characters/jhusky/anthro-front.svg",
  55454. extra: 474/439,
  55455. bottom: 7/481
  55456. },
  55457. form: "anthro",
  55458. default: true
  55459. },
  55460. taurSideSfw: {
  55461. height: math.unit(6 + 4/12, "feet"),
  55462. weight: math.unit(500, "lb"),
  55463. name: "Side (SFW)",
  55464. image: {
  55465. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55466. extra: 1741/1629,
  55467. bottom: 196/1937
  55468. },
  55469. form: "taur",
  55470. default: true
  55471. },
  55472. taurSideNsfw: {
  55473. height: math.unit(6 + 4/12, "feet"),
  55474. weight: math.unit(500, "lb"),
  55475. name: "Taur (NSFW)",
  55476. image: {
  55477. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55478. extra: 1741/1629,
  55479. bottom: 196/1937
  55480. },
  55481. form: "taur",
  55482. },
  55483. },
  55484. [
  55485. {
  55486. name: "Huge",
  55487. height: math.unit(500, "feet"),
  55488. form: "anthro"
  55489. },
  55490. {
  55491. name: "Macro",
  55492. height: math.unit(1000, "feet"),
  55493. default: true,
  55494. form: "anthro"
  55495. },
  55496. {
  55497. name: "Megamacro",
  55498. height: math.unit(10000, "feet"),
  55499. form: "anthro"
  55500. },
  55501. {
  55502. name: "Huge",
  55503. height: math.unit(528, "feet"),
  55504. form: "taur"
  55505. },
  55506. {
  55507. name: "Macro",
  55508. height: math.unit(1056, "feet"),
  55509. default: true,
  55510. form: "taur"
  55511. },
  55512. {
  55513. name: "Megamacro",
  55514. height: math.unit(10556, "feet"),
  55515. form: "taur"
  55516. },
  55517. ],
  55518. {
  55519. "anthro": {
  55520. name: "Anthro",
  55521. default: true
  55522. },
  55523. "taur": {
  55524. name: "Taur",
  55525. },
  55526. }
  55527. ))
  55528. characterMakers.push(() => makeCharacter(
  55529. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55530. {
  55531. front: {
  55532. height: math.unit(8, "feet"),
  55533. weight: math.unit(500, "lb"),
  55534. name: "Front",
  55535. image: {
  55536. source: "./media/characters/armail/front.svg",
  55537. extra: 1753/1669,
  55538. bottom: 155/1908
  55539. }
  55540. },
  55541. back: {
  55542. height: math.unit(8, "feet"),
  55543. weight: math.unit(500, "lb"),
  55544. name: "Back",
  55545. image: {
  55546. source: "./media/characters/armail/back.svg",
  55547. extra: 1872/1803,
  55548. bottom: 63/1935
  55549. }
  55550. },
  55551. },
  55552. [
  55553. {
  55554. name: "Micro",
  55555. height: math.unit(0.25, "feet")
  55556. },
  55557. {
  55558. name: "Normal",
  55559. height: math.unit(8, "feet"),
  55560. default: true
  55561. },
  55562. {
  55563. name: "Mini-macro",
  55564. height: math.unit(30, "feet")
  55565. },
  55566. {
  55567. name: "Macro",
  55568. height: math.unit(400, "feet")
  55569. },
  55570. {
  55571. name: "Mega-macro",
  55572. height: math.unit(6000, "feet")
  55573. },
  55574. ]
  55575. ))
  55576. characterMakers.push(() => makeCharacter(
  55577. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55578. {
  55579. front: {
  55580. height: math.unit(6 + 7/12, "feet"),
  55581. weight: math.unit(210, "lb"),
  55582. name: "Front",
  55583. image: {
  55584. source: "./media/characters/wilfred-t-buxton/front.svg",
  55585. extra: 1068/882,
  55586. bottom: 28/1096
  55587. }
  55588. },
  55589. },
  55590. [
  55591. {
  55592. name: "Normal",
  55593. height: math.unit(6 + 7/12, "feet"),
  55594. default: true
  55595. },
  55596. ]
  55597. ))
  55598. characterMakers.push(() => makeCharacter(
  55599. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55600. {
  55601. front: {
  55602. height: math.unit(5 + 2/12, "feet"),
  55603. weight: math.unit(120, "lb"),
  55604. name: "Front",
  55605. image: {
  55606. source: "./media/characters/leighton-marrow/front.svg",
  55607. extra: 441/409,
  55608. bottom: 37/478
  55609. }
  55610. },
  55611. },
  55612. [
  55613. {
  55614. name: "Normal",
  55615. height: math.unit(5 + 2/12, "feet"),
  55616. default: true
  55617. },
  55618. ]
  55619. ))
  55620. characterMakers.push(() => makeCharacter(
  55621. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55622. {
  55623. front: {
  55624. height: math.unit(4, "meters"),
  55625. weight: math.unit(1200, "kg"),
  55626. name: "Front",
  55627. image: {
  55628. source: "./media/characters/licos/front.svg",
  55629. extra: 1727/1604,
  55630. bottom: 101/1828
  55631. },
  55632. form: "anthro",
  55633. default: true
  55634. },
  55635. taur_side: {
  55636. height: math.unit(20, "meters"),
  55637. weight: math.unit(1100000, "kg"),
  55638. name: "Side",
  55639. image: {
  55640. source: "./media/characters/licos/taur.svg",
  55641. extra: 1158/1091,
  55642. bottom: 80/1238
  55643. },
  55644. form: "taur",
  55645. default: true
  55646. },
  55647. },
  55648. [
  55649. {
  55650. name: "Normal",
  55651. height: math.unit(4, "meters"),
  55652. default: true,
  55653. form: "anthro"
  55654. },
  55655. {
  55656. name: "Normal",
  55657. height: math.unit(20, "meters"),
  55658. default: true,
  55659. form: "taur"
  55660. },
  55661. ],
  55662. {
  55663. "anthro": {
  55664. name: "Anthro",
  55665. default: true
  55666. },
  55667. "taur": {
  55668. name: "Taur",
  55669. },
  55670. }
  55671. ))
  55672. characterMakers.push(() => makeCharacter(
  55673. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55674. {
  55675. front: {
  55676. height: math.unit(10 + 3/12, "feet"),
  55677. name: "Front",
  55678. image: {
  55679. source: "./media/characters/theo-monkey/front.svg",
  55680. extra: 1735/1658,
  55681. bottom: 73/1808
  55682. }
  55683. },
  55684. back: {
  55685. height: math.unit(10 + 3/12, "feet"),
  55686. name: "Back",
  55687. image: {
  55688. source: "./media/characters/theo-monkey/back.svg",
  55689. extra: 1742/1664,
  55690. bottom: 33/1775
  55691. }
  55692. },
  55693. head: {
  55694. height: math.unit(2.29, "feet"),
  55695. name: "Head",
  55696. image: {
  55697. source: "./media/characters/theo-monkey/head.svg"
  55698. }
  55699. },
  55700. handPalm: {
  55701. height: math.unit(1.73, "feet"),
  55702. name: "Hand (Palm)",
  55703. image: {
  55704. source: "./media/characters/theo-monkey/hand-palm.svg"
  55705. }
  55706. },
  55707. handBack: {
  55708. height: math.unit(1.63, "feet"),
  55709. name: "Hand (Back)",
  55710. image: {
  55711. source: "./media/characters/theo-monkey/hand-back.svg"
  55712. }
  55713. },
  55714. footSole: {
  55715. height: math.unit(2.15, "feet"),
  55716. name: "Foot (Sole)",
  55717. image: {
  55718. source: "./media/characters/theo-monkey/foot-sole.svg"
  55719. }
  55720. },
  55721. footSide: {
  55722. height: math.unit(1.6, "feet"),
  55723. name: "Foot (Side)",
  55724. image: {
  55725. source: "./media/characters/theo-monkey/foot-side.svg"
  55726. }
  55727. },
  55728. },
  55729. [
  55730. {
  55731. name: "Normal",
  55732. height: math.unit(10 + 3/12, "feet"),
  55733. default: true
  55734. },
  55735. ]
  55736. ))
  55737. characterMakers.push(() => makeCharacter(
  55738. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55739. {
  55740. front: {
  55741. height: math.unit(11, "feet"),
  55742. weight: math.unit(3000, "lb"),
  55743. preyCapacity: math.unit(10, "people"),
  55744. name: "Front",
  55745. image: {
  55746. source: "./media/characters/brook/front.svg",
  55747. extra: 909/835,
  55748. bottom: 108/1017
  55749. }
  55750. },
  55751. back: {
  55752. height: math.unit(11, "feet"),
  55753. weight: math.unit(3000, "lb"),
  55754. preyCapacity: math.unit(10, "people"),
  55755. name: "Back",
  55756. image: {
  55757. source: "./media/characters/brook/back.svg",
  55758. extra: 976/916,
  55759. bottom: 34/1010
  55760. }
  55761. },
  55762. backAlt: {
  55763. height: math.unit(11, "feet"),
  55764. weight: math.unit(3000, "lb"),
  55765. preyCapacity: math.unit(10, "people"),
  55766. name: "Back (Alt)",
  55767. image: {
  55768. source: "./media/characters/brook/back-alt.svg",
  55769. extra: 1283/1213,
  55770. bottom: 35/1318
  55771. }
  55772. },
  55773. bust: {
  55774. height: math.unit(9.0859030837, "feet"),
  55775. weight: math.unit(3000, "lb"),
  55776. preyCapacity: math.unit(10, "people"),
  55777. name: "Bust",
  55778. image: {
  55779. source: "./media/characters/brook/bust.svg",
  55780. extra: 2043/1923,
  55781. bottom: 0/2043
  55782. }
  55783. },
  55784. },
  55785. [
  55786. {
  55787. name: "Small",
  55788. height: math.unit(11, "feet"),
  55789. default: true
  55790. },
  55791. {
  55792. name: "Towering",
  55793. height: math.unit(5, "km")
  55794. },
  55795. {
  55796. name: "Enormous",
  55797. height: math.unit(25, "earths")
  55798. },
  55799. ]
  55800. ))
  55801. characterMakers.push(() => makeCharacter(
  55802. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55803. {
  55804. front: {
  55805. height: math.unit(4, "feet"),
  55806. weight: math.unit(150, "lb"),
  55807. name: "Front",
  55808. image: {
  55809. source: "./media/characters/squishi/front.svg",
  55810. extra: 1428/1271,
  55811. bottom: 30/1458
  55812. },
  55813. extraAttributes: {
  55814. "pawSize": {
  55815. name: "Paw Size",
  55816. power: 1,
  55817. type: "length",
  55818. base: math.unit(14, "ShoeSizeMensUS"),
  55819. defaultUnit: "ShoeSizeMensUS"
  55820. },
  55821. }
  55822. },
  55823. side: {
  55824. height: math.unit(4, "feet"),
  55825. weight: math.unit(150, "lb"),
  55826. name: "Side",
  55827. image: {
  55828. source: "./media/characters/squishi/side.svg",
  55829. extra: 1428/1271,
  55830. bottom: 30/1458
  55831. },
  55832. extraAttributes: {
  55833. "pawSize": {
  55834. name: "Paw Size",
  55835. power: 1,
  55836. type: "length",
  55837. base: math.unit(14, "ShoeSizeMensUS"),
  55838. defaultUnit: "ShoeSizeMensUS"
  55839. },
  55840. }
  55841. },
  55842. back: {
  55843. height: math.unit(4, "feet"),
  55844. weight: math.unit(150, "lb"),
  55845. name: "Back",
  55846. image: {
  55847. source: "./media/characters/squishi/back.svg",
  55848. extra: 1428/1271,
  55849. bottom: 30/1458
  55850. },
  55851. extraAttributes: {
  55852. "pawSize": {
  55853. name: "Paw Size",
  55854. power: 1,
  55855. type: "length",
  55856. base: math.unit(14, "ShoeSizeMensUS"),
  55857. defaultUnit: "ShoeSizeMensUS"
  55858. },
  55859. }
  55860. },
  55861. },
  55862. [
  55863. {
  55864. name: "Normal",
  55865. height: math.unit(4, "feet"),
  55866. default: true
  55867. },
  55868. ]
  55869. ))
  55870. characterMakers.push(() => makeCharacter(
  55871. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55872. {
  55873. front: {
  55874. height: math.unit(7 + 8/12, "feet"),
  55875. weight: math.unit(333, "lb"),
  55876. name: "Front",
  55877. image: {
  55878. source: "./media/characters/vincent-vasroc/front.svg",
  55879. extra: 1962/1860,
  55880. bottom: 41/2003
  55881. }
  55882. },
  55883. back: {
  55884. height: math.unit(7 + 8/12, "feet"),
  55885. weight: math.unit(333, "lb"),
  55886. name: "Back",
  55887. image: {
  55888. source: "./media/characters/vincent-vasroc/back.svg",
  55889. extra: 1952/1815,
  55890. bottom: 33/1985
  55891. }
  55892. },
  55893. paw: {
  55894. height: math.unit(1.24, "feet"),
  55895. name: "Paw",
  55896. image: {
  55897. source: "./media/characters/vincent-vasroc/paw.svg"
  55898. }
  55899. },
  55900. ear: {
  55901. height: math.unit(0.75, "feet"),
  55902. name: "Ear",
  55903. image: {
  55904. source: "./media/characters/vincent-vasroc/ear.svg"
  55905. }
  55906. },
  55907. },
  55908. [
  55909. {
  55910. name: "Nano",
  55911. height: math.unit(92, "micrometers")
  55912. },
  55913. {
  55914. name: "Normal",
  55915. height: math.unit(7 + 8/12, "feet"),
  55916. default: true
  55917. },
  55918. ]
  55919. ))
  55920. characterMakers.push(() => makeCharacter(
  55921. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55922. {
  55923. frontNsfw: {
  55924. height: math.unit(40, "feet"),
  55925. weight: math.unit(58, "tons"),
  55926. name: "Front (NSFW)",
  55927. image: {
  55928. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55929. extra: 1265/965,
  55930. bottom: 155/1420
  55931. }
  55932. },
  55933. frontSfw: {
  55934. height: math.unit(40, "feet"),
  55935. weight: math.unit(58, "tons"),
  55936. name: "Front (SFW)",
  55937. image: {
  55938. source: "./media/characters/ru-kahn/front-sfw.svg",
  55939. extra: 1265/965,
  55940. bottom: 80/1345
  55941. }
  55942. },
  55943. },
  55944. [
  55945. {
  55946. name: "Small",
  55947. height: math.unit(4, "feet")
  55948. },
  55949. {
  55950. name: "Normal",
  55951. height: math.unit(40, "feet"),
  55952. default: true
  55953. },
  55954. {
  55955. name: "Macro",
  55956. height: math.unit(400, "feet")
  55957. },
  55958. ]
  55959. ))
  55960. characterMakers.push(() => makeCharacter(
  55961. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55962. {
  55963. frontNude: {
  55964. height: math.unit(6 + 5/12, "feet"),
  55965. name: "Front (Nude)",
  55966. image: {
  55967. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55968. extra: 1369/1366,
  55969. bottom: 68/1437
  55970. }
  55971. },
  55972. frontDressed: {
  55973. height: math.unit(6 + 5/12, "feet"),
  55974. name: "Front (Dressed)",
  55975. image: {
  55976. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55977. extra: 1369/1366,
  55978. bottom: 68/1437
  55979. }
  55980. },
  55981. },
  55982. [
  55983. {
  55984. name: "Normal",
  55985. height: math.unit(6 + 5/12, "feet"),
  55986. default: true
  55987. },
  55988. {
  55989. name: "Maximum",
  55990. height: math.unit(1930, "feet")
  55991. },
  55992. ]
  55993. ))
  55994. characterMakers.push(() => makeCharacter(
  55995. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55996. {
  55997. front: {
  55998. height: math.unit(5 + 6/12, "feet"),
  55999. name: "Front",
  56000. image: {
  56001. source: "./media/characters/kaja/front.svg",
  56002. extra: 1874/1514,
  56003. bottom: 117/1991
  56004. }
  56005. },
  56006. },
  56007. [
  56008. {
  56009. name: "Normal",
  56010. height: math.unit(5 + 6/12, "feet"),
  56011. default: true
  56012. },
  56013. ]
  56014. ))
  56015. characterMakers.push(() => makeCharacter(
  56016. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56017. {
  56018. front: {
  56019. height: math.unit(5 + 9/12, "feet"),
  56020. weight: math.unit(200, "lb"),
  56021. name: "Front",
  56022. image: {
  56023. source: "./media/characters/mark-smith/front.svg",
  56024. extra: 1004/943,
  56025. bottom: 58/1062
  56026. }
  56027. },
  56028. back: {
  56029. height: math.unit(5 + 9/12, "feet"),
  56030. weight: math.unit(200, "lb"),
  56031. name: "Back",
  56032. image: {
  56033. source: "./media/characters/mark-smith/back.svg",
  56034. extra: 1023/953,
  56035. bottom: 24/1047
  56036. }
  56037. },
  56038. head: {
  56039. height: math.unit(1.82, "feet"),
  56040. name: "Head",
  56041. image: {
  56042. source: "./media/characters/mark-smith/head.svg"
  56043. }
  56044. },
  56045. hand: {
  56046. height: math.unit(1.4, "feet"),
  56047. name: "Hand",
  56048. image: {
  56049. source: "./media/characters/mark-smith/hand.svg"
  56050. }
  56051. },
  56052. paw: {
  56053. height: math.unit(1.69, "feet"),
  56054. name: "Paw",
  56055. image: {
  56056. source: "./media/characters/mark-smith/paw.svg"
  56057. }
  56058. },
  56059. },
  56060. [
  56061. {
  56062. name: "Micro",
  56063. height: math.unit(0.25, "inches")
  56064. },
  56065. {
  56066. name: "Normal",
  56067. height: math.unit(5 + 9/12, "feet"),
  56068. default: true
  56069. },
  56070. {
  56071. name: "Macro",
  56072. height: math.unit(500, "feet")
  56073. },
  56074. ]
  56075. ))
  56076. characterMakers.push(() => makeCharacter(
  56077. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56078. {
  56079. frontNude: {
  56080. height: math.unit(6, "feet"),
  56081. name: "Front (Nude)",
  56082. image: {
  56083. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56084. extra: 1384/1321,
  56085. bottom: 57/1441
  56086. }
  56087. },
  56088. frontDressed: {
  56089. height: math.unit(6, "feet"),
  56090. name: "Front (Dressed)",
  56091. image: {
  56092. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56093. extra: 1384/1321,
  56094. bottom: 57/1441
  56095. }
  56096. },
  56097. },
  56098. [
  56099. {
  56100. name: "Normal",
  56101. height: math.unit(6, "feet"),
  56102. default: true
  56103. },
  56104. {
  56105. name: "Maximum",
  56106. height: math.unit(1776, "feet")
  56107. },
  56108. ]
  56109. ))
  56110. characterMakers.push(() => makeCharacter(
  56111. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56112. {
  56113. front: {
  56114. height: math.unit(2 + 4/12, "feet"),
  56115. weight: math.unit(350, "lb"),
  56116. name: "Front",
  56117. image: {
  56118. source: "./media/characters/devos/front.svg",
  56119. extra: 958/852,
  56120. bottom: 143/1101
  56121. }
  56122. },
  56123. },
  56124. [
  56125. {
  56126. name: "Base",
  56127. height: math.unit(2 + 4/12, "feet"),
  56128. default: true
  56129. },
  56130. ]
  56131. ))
  56132. characterMakers.push(() => makeCharacter(
  56133. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56134. {
  56135. front: {
  56136. height: math.unit(9 + 2/12, "feet"),
  56137. name: "Front",
  56138. image: {
  56139. source: "./media/characters/hiveheart/front.svg",
  56140. extra: 394/364,
  56141. bottom: 65/459
  56142. }
  56143. },
  56144. back: {
  56145. height: math.unit(9 + 2/12, "feet"),
  56146. name: "Back",
  56147. image: {
  56148. source: "./media/characters/hiveheart/back.svg",
  56149. extra: 374/357,
  56150. bottom: 63/437
  56151. }
  56152. },
  56153. },
  56154. [
  56155. {
  56156. name: "Base",
  56157. height: math.unit(9 + 2/12, "feet"),
  56158. default: true
  56159. },
  56160. ]
  56161. ))
  56162. characterMakers.push(() => makeCharacter(
  56163. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56164. {
  56165. front: {
  56166. height: math.unit(2.5, "inches"),
  56167. weight: math.unit(0.6, "oz"),
  56168. name: "Front",
  56169. image: {
  56170. source: "./media/characters/bryn/front.svg",
  56171. extra: 1480/1205,
  56172. bottom: 27/1507
  56173. }
  56174. },
  56175. back: {
  56176. height: math.unit(2.5, "inches"),
  56177. weight: math.unit(0.6, "oz"),
  56178. name: "Back",
  56179. image: {
  56180. source: "./media/characters/bryn/back.svg",
  56181. extra: 1475/1201,
  56182. bottom: 39/1514
  56183. }
  56184. },
  56185. foot: {
  56186. height: math.unit(0.4, "inches"),
  56187. name: "Foot",
  56188. image: {
  56189. source: "./media/characters/bryn/foot.svg"
  56190. }
  56191. },
  56192. },
  56193. [
  56194. {
  56195. name: "Normal",
  56196. height: math.unit(2.5, "inches"),
  56197. default: true
  56198. },
  56199. ]
  56200. ))
  56201. characterMakers.push(() => makeCharacter(
  56202. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56203. {
  56204. side: {
  56205. height: math.unit(7, "feet"),
  56206. weight: math.unit(657, "kg"),
  56207. name: "Side",
  56208. image: {
  56209. source: "./media/characters/delta/side.svg",
  56210. extra: 781/212,
  56211. bottom: 7/788
  56212. },
  56213. extraAttributes: {
  56214. "wingspan": {
  56215. name: "Wingspan",
  56216. power: 1,
  56217. type: "length",
  56218. base: math.unit(48, "feet")
  56219. },
  56220. "length": {
  56221. name: "Length",
  56222. power: 1,
  56223. type: "length",
  56224. base: math.unit(21, "feet")
  56225. },
  56226. "pawSize": {
  56227. name: "Paw Size",
  56228. power: 2,
  56229. type: "area",
  56230. base: math.unit(1.5*1.4, "feet^2")
  56231. },
  56232. }
  56233. },
  56234. },
  56235. [
  56236. {
  56237. name: "Normal",
  56238. height: math.unit(6, "feet"),
  56239. default: true
  56240. },
  56241. ]
  56242. ))
  56243. characterMakers.push(() => makeCharacter(
  56244. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56245. {
  56246. front: {
  56247. height: math.unit(6, "feet"),
  56248. name: "Front",
  56249. image: {
  56250. source: "./media/characters/pyrow/front.svg",
  56251. extra: 513/486,
  56252. bottom: 14/527
  56253. }
  56254. },
  56255. frontWing: {
  56256. height: math.unit(6, "feet"),
  56257. name: "Front (Wing)",
  56258. image: {
  56259. source: "./media/characters/pyrow/front-wing.svg",
  56260. extra: 539/383,
  56261. bottom: 20/559
  56262. }
  56263. },
  56264. back: {
  56265. height: math.unit(6, "feet"),
  56266. name: "Back",
  56267. image: {
  56268. source: "./media/characters/pyrow/back.svg",
  56269. extra: 500/473,
  56270. bottom: 9/509
  56271. }
  56272. },
  56273. },
  56274. [
  56275. {
  56276. name: "Normal",
  56277. height: math.unit(6, "feet"),
  56278. default: true
  56279. },
  56280. ]
  56281. ))
  56282. characterMakers.push(() => makeCharacter(
  56283. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56284. {
  56285. front: {
  56286. height: math.unit(5, "meters"),
  56287. weight: math.unit(3, "tonnes"),
  56288. name: "Front",
  56289. image: {
  56290. source: "./media/characters/velikan/front.svg",
  56291. extra: 867/744,
  56292. bottom: 71/938
  56293. },
  56294. extraAttributes: {
  56295. "shoeSize": {
  56296. name: "Shoe Size",
  56297. power: 1,
  56298. type: "length",
  56299. base: math.unit(135, "ShoeSizeUK"),
  56300. defaultUnit: "ShoeSizeUK"
  56301. },
  56302. }
  56303. },
  56304. },
  56305. [
  56306. {
  56307. name: "Normal",
  56308. height: math.unit(5, "meters"),
  56309. default: true
  56310. },
  56311. {
  56312. name: "Macro",
  56313. height: math.unit(1, "km")
  56314. },
  56315. {
  56316. name: "Mega Macro",
  56317. height: math.unit(100, "km")
  56318. },
  56319. {
  56320. name: "Giga Macro",
  56321. height: math.unit(2, "megameters")
  56322. },
  56323. {
  56324. name: "Planetary",
  56325. height: math.unit(22, "megameters")
  56326. },
  56327. {
  56328. name: "Solar",
  56329. height: math.unit(8, "gigameters")
  56330. },
  56331. {
  56332. name: "Cosmic",
  56333. height: math.unit(10, "zettameters")
  56334. },
  56335. {
  56336. name: "Omni",
  56337. height: math.unit(9e260, "multiverses")
  56338. },
  56339. ]
  56340. ))
  56341. characterMakers.push(() => makeCharacter(
  56342. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56343. {
  56344. front: {
  56345. height: math.unit(4 + 3/12, "feet"),
  56346. weight: math.unit(90, "lb"),
  56347. name: "Front",
  56348. image: {
  56349. source: "./media/characters/sabiki/front.svg",
  56350. extra: 1662/1423,
  56351. bottom: 65/1727
  56352. }
  56353. },
  56354. },
  56355. [
  56356. {
  56357. name: "Normal",
  56358. height: math.unit(4 + 3/12, "feet"),
  56359. default: true
  56360. },
  56361. ]
  56362. ))
  56363. characterMakers.push(() => makeCharacter(
  56364. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56365. {
  56366. frontSfw: {
  56367. height: math.unit(2, "mm"),
  56368. name: "Front (SFW)",
  56369. image: {
  56370. source: "./media/characters/carmel/front-sfw.svg",
  56371. extra: 1131/1006,
  56372. bottom: 66/1197
  56373. }
  56374. },
  56375. frontNsfw: {
  56376. height: math.unit(2, "mm"),
  56377. name: "Front (NSFW)",
  56378. image: {
  56379. source: "./media/characters/carmel/front-nsfw.svg",
  56380. extra: 1131/1006,
  56381. bottom: 66/1197
  56382. }
  56383. },
  56384. foot: {
  56385. height: math.unit(0.3, "mm"),
  56386. name: "Foot",
  56387. image: {
  56388. source: "./media/characters/carmel/foot.svg"
  56389. }
  56390. },
  56391. tongue: {
  56392. height: math.unit(0.71, "mm"),
  56393. name: "Tongue",
  56394. image: {
  56395. source: "./media/characters/carmel/tongue.svg"
  56396. }
  56397. },
  56398. dick: {
  56399. height: math.unit(0.085, "mm"),
  56400. name: "Dick",
  56401. image: {
  56402. source: "./media/characters/carmel/dick.svg"
  56403. }
  56404. },
  56405. },
  56406. [
  56407. {
  56408. name: "Micro",
  56409. height: math.unit(2, "mm"),
  56410. default: true
  56411. },
  56412. {
  56413. name: "Normal",
  56414. height: math.unit(4 + 8/12, "feet")
  56415. },
  56416. {
  56417. name: "Mega Macro",
  56418. height: math.unit(250, "feet")
  56419. },
  56420. {
  56421. name: "BIGGER",
  56422. height: math.unit(1000, "feet")
  56423. },
  56424. {
  56425. name: "BIGGEST",
  56426. height: math.unit(2, "miles")
  56427. },
  56428. ]
  56429. ))
  56430. characterMakers.push(() => makeCharacter(
  56431. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56432. {
  56433. front: {
  56434. height: math.unit(6.5, "feet"),
  56435. weight: math.unit(198, "lb"),
  56436. name: "Front",
  56437. image: {
  56438. source: "./media/characters/tamani/anthro.svg",
  56439. extra: 930/890,
  56440. bottom: 34/964
  56441. },
  56442. form: "anthro",
  56443. default: true
  56444. },
  56445. side: {
  56446. height: math.unit(6, "feet"),
  56447. weight: math.unit(198*2, "lb"),
  56448. name: "Side",
  56449. image: {
  56450. source: "./media/characters/tamani/feral.svg",
  56451. extra: 559/519,
  56452. bottom: 43/602
  56453. },
  56454. form: "feral"
  56455. },
  56456. },
  56457. [
  56458. {
  56459. name: "Normal",
  56460. height: math.unit(6.5, "feet"),
  56461. default: true,
  56462. form: "anthro"
  56463. },
  56464. {
  56465. name: "Normal",
  56466. height: math.unit(6, "feet"),
  56467. default: true,
  56468. form: "feral"
  56469. },
  56470. ],
  56471. {
  56472. "anthro": {
  56473. name: "Anthro",
  56474. default: true
  56475. },
  56476. "feral": {
  56477. name: "Feral",
  56478. },
  56479. }
  56480. ))
  56481. characterMakers.push(() => makeCharacter(
  56482. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56483. {
  56484. front: {
  56485. height: math.unit(4 + 1/12, "feet"),
  56486. weight: math.unit(114, "lb"),
  56487. name: "Front",
  56488. image: {
  56489. source: "./media/characters/dex/front.svg",
  56490. extra: 787/680,
  56491. bottom: 18/805
  56492. }
  56493. },
  56494. side: {
  56495. height: math.unit(4 + 1/12, "feet"),
  56496. weight: math.unit(114, "lb"),
  56497. name: "Side",
  56498. image: {
  56499. source: "./media/characters/dex/side.svg",
  56500. extra: 785/680,
  56501. bottom: 12/797
  56502. }
  56503. },
  56504. back: {
  56505. height: math.unit(4 + 1/12, "feet"),
  56506. weight: math.unit(114, "lb"),
  56507. name: "Back",
  56508. image: {
  56509. source: "./media/characters/dex/back.svg",
  56510. extra: 785/681,
  56511. bottom: 17/802
  56512. }
  56513. },
  56514. loungewear: {
  56515. height: math.unit(4 + 1/12, "feet"),
  56516. weight: math.unit(114, "lb"),
  56517. name: "Loungewear",
  56518. image: {
  56519. source: "./media/characters/dex/loungewear.svg",
  56520. extra: 787/680,
  56521. bottom: 18/805
  56522. }
  56523. },
  56524. workout: {
  56525. height: math.unit(4 + 1/12, "feet"),
  56526. weight: math.unit(114, "lb"),
  56527. name: "Workout",
  56528. image: {
  56529. source: "./media/characters/dex/workout.svg",
  56530. extra: 787/680,
  56531. bottom: 18/805
  56532. }
  56533. },
  56534. schoolUniform: {
  56535. height: math.unit(4 + 1/12, "feet"),
  56536. weight: math.unit(114, "lb"),
  56537. name: "School-uniform",
  56538. image: {
  56539. source: "./media/characters/dex/school-uniform.svg",
  56540. extra: 787/680,
  56541. bottom: 18/805
  56542. }
  56543. },
  56544. maw: {
  56545. height: math.unit(0.55, "feet"),
  56546. name: "Maw",
  56547. image: {
  56548. source: "./media/characters/dex/maw.svg"
  56549. }
  56550. },
  56551. paw: {
  56552. height: math.unit(0.87, "feet"),
  56553. name: "Paw",
  56554. image: {
  56555. source: "./media/characters/dex/paw.svg"
  56556. }
  56557. },
  56558. bust: {
  56559. height: math.unit(1.67, "feet"),
  56560. name: "Bust",
  56561. image: {
  56562. source: "./media/characters/dex/bust.svg"
  56563. }
  56564. },
  56565. },
  56566. [
  56567. {
  56568. name: "Normal",
  56569. height: math.unit(4 + 1/12, "feet"),
  56570. default: true
  56571. },
  56572. ]
  56573. ))
  56574. characterMakers.push(() => makeCharacter(
  56575. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56576. {
  56577. front: {
  56578. height: math.unit(4 + 3/12, "feet"),
  56579. weight: math.unit(60, "lb"),
  56580. name: "Front",
  56581. image: {
  56582. source: "./media/characters/silke/front.svg",
  56583. extra: 1334/1122,
  56584. bottom: 21/1355
  56585. }
  56586. },
  56587. back: {
  56588. height: math.unit(4 + 3/12, "feet"),
  56589. weight: math.unit(60, "lb"),
  56590. name: "Back",
  56591. image: {
  56592. source: "./media/characters/silke/back.svg",
  56593. extra: 1328/1092,
  56594. bottom: 16/1344
  56595. }
  56596. },
  56597. dressed: {
  56598. height: math.unit(4 + 3/12, "feet"),
  56599. weight: math.unit(60, "lb"),
  56600. name: "Dressed",
  56601. image: {
  56602. source: "./media/characters/silke/dressed.svg",
  56603. extra: 1334/1122,
  56604. bottom: 43/1377
  56605. }
  56606. },
  56607. },
  56608. [
  56609. {
  56610. name: "Normal",
  56611. height: math.unit(4 + 3/12, "feet"),
  56612. default: true
  56613. },
  56614. ]
  56615. ))
  56616. characterMakers.push(() => makeCharacter(
  56617. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56618. {
  56619. front: {
  56620. height: math.unit(1.58, "meters"),
  56621. weight: math.unit(47, "kg"),
  56622. name: "Front",
  56623. image: {
  56624. source: "./media/characters/wireshark/front.svg",
  56625. extra: 883/838,
  56626. bottom: 66/949
  56627. }
  56628. },
  56629. },
  56630. [
  56631. {
  56632. name: "Normal",
  56633. height: math.unit(1.58, "meters"),
  56634. default: true
  56635. },
  56636. ]
  56637. ))
  56638. characterMakers.push(() => makeCharacter(
  56639. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56640. {
  56641. front: {
  56642. height: math.unit(6, "meters"),
  56643. weight: math.unit(15000, "kg"),
  56644. name: "Front",
  56645. image: {
  56646. source: "./media/characters/gallagher/front.svg",
  56647. extra: 532/493,
  56648. bottom: 0/532
  56649. }
  56650. },
  56651. },
  56652. [
  56653. {
  56654. name: "Normal",
  56655. height: math.unit(6, "meters"),
  56656. default: true
  56657. },
  56658. ]
  56659. ))
  56660. characterMakers.push(() => makeCharacter(
  56661. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56662. {
  56663. front: {
  56664. height: math.unit(2.4, "meters"),
  56665. weight: math.unit(270, "kg"),
  56666. name: "Front",
  56667. image: {
  56668. source: "./media/characters/alice/front.svg",
  56669. extra: 950/900,
  56670. bottom: 36/986
  56671. }
  56672. },
  56673. side: {
  56674. height: math.unit(2.4, "meters"),
  56675. weight: math.unit(270, "kg"),
  56676. name: "Side",
  56677. image: {
  56678. source: "./media/characters/alice/side.svg",
  56679. extra: 921/876,
  56680. bottom: 19/940
  56681. }
  56682. },
  56683. dressed: {
  56684. height: math.unit(2.4, "meters"),
  56685. weight: math.unit(270, "kg"),
  56686. name: "Dressed",
  56687. image: {
  56688. source: "./media/characters/alice/dressed.svg",
  56689. extra: 905/850,
  56690. bottom: 81/986
  56691. }
  56692. },
  56693. fishnet: {
  56694. height: math.unit(2.4, "meters"),
  56695. weight: math.unit(270, "kg"),
  56696. name: "Fishnet",
  56697. image: {
  56698. source: "./media/characters/alice/fishnet.svg",
  56699. extra: 905/850,
  56700. bottom: 81/986
  56701. }
  56702. },
  56703. },
  56704. [
  56705. {
  56706. name: "Normal",
  56707. height: math.unit(2.4, "meters"),
  56708. default: true
  56709. },
  56710. ]
  56711. ))
  56712. characterMakers.push(() => makeCharacter(
  56713. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56714. {
  56715. front: {
  56716. height: math.unit(175.25, "feet"),
  56717. name: "Front",
  56718. image: {
  56719. source: "./media/characters/fio/front.svg",
  56720. extra: 1883/1591,
  56721. bottom: 34/1917
  56722. }
  56723. },
  56724. },
  56725. [
  56726. {
  56727. name: "Normal",
  56728. height: math.unit(175.25, "cm"),
  56729. default: true
  56730. },
  56731. ]
  56732. ))
  56733. characterMakers.push(() => makeCharacter(
  56734. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56735. {
  56736. side: {
  56737. height: math.unit(6, "meters"),
  56738. weight: math.unit(3400, "kg"),
  56739. preyCapacity: math.unit(1700, "liters"),
  56740. name: "Side",
  56741. image: {
  56742. source: "./media/characters/hass/side.svg",
  56743. extra: 1058/997,
  56744. bottom: 177/1235
  56745. }
  56746. },
  56747. feeding: {
  56748. height: math.unit(6*0.63, "meters"),
  56749. weight: math.unit(3400, "kg"),
  56750. preyCapacity: math.unit(1700, "liters"),
  56751. name: "Feeding",
  56752. image: {
  56753. source: "./media/characters/hass/feeding.svg",
  56754. extra: 689/579,
  56755. bottom: 146/835
  56756. }
  56757. },
  56758. guts: {
  56759. height: math.unit(6, "meters"),
  56760. weight: math.unit(3400, "kg"),
  56761. name: "Guts",
  56762. image: {
  56763. source: "./media/characters/hass/guts.svg",
  56764. extra: 1223/1198,
  56765. bottom: 182/1405
  56766. }
  56767. },
  56768. dickFront: {
  56769. height: math.unit(1.4, "meters"),
  56770. name: "Dick (Front)",
  56771. image: {
  56772. source: "./media/characters/hass/dick-front.svg"
  56773. }
  56774. },
  56775. dickSide: {
  56776. height: math.unit(1.3, "meters"),
  56777. name: "Dick (Side)",
  56778. image: {
  56779. source: "./media/characters/hass/dick-side.svg"
  56780. }
  56781. },
  56782. dickBack: {
  56783. height: math.unit(1.4, "meters"),
  56784. name: "Dick (Back)",
  56785. image: {
  56786. source: "./media/characters/hass/dick-back.svg"
  56787. }
  56788. },
  56789. },
  56790. [
  56791. {
  56792. name: "Normal",
  56793. height: math.unit(6, "meters"),
  56794. default: true
  56795. },
  56796. ]
  56797. ))
  56798. characterMakers.push(() => makeCharacter(
  56799. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56800. {
  56801. front: {
  56802. height: math.unit(4, "feet"),
  56803. weight: math.unit(60, "lb"),
  56804. name: "Front",
  56805. image: {
  56806. source: "./media/characters/hickory-finnegan/front.svg",
  56807. extra: 444/411,
  56808. bottom: 10/454
  56809. }
  56810. },
  56811. side: {
  56812. height: math.unit(4, "feet"),
  56813. weight: math.unit(60, "lb"),
  56814. name: "Side",
  56815. image: {
  56816. source: "./media/characters/hickory-finnegan/side.svg",
  56817. extra: 444/411,
  56818. bottom: 10/454
  56819. }
  56820. },
  56821. back: {
  56822. height: math.unit(4, "feet"),
  56823. weight: math.unit(60, "lb"),
  56824. name: "Back",
  56825. image: {
  56826. source: "./media/characters/hickory-finnegan/back.svg",
  56827. extra: 444/411,
  56828. bottom: 10/454
  56829. }
  56830. },
  56831. },
  56832. [
  56833. {
  56834. name: "Normal",
  56835. height: math.unit(4, "feet"),
  56836. default: true
  56837. },
  56838. ]
  56839. ))
  56840. characterMakers.push(() => makeCharacter(
  56841. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56842. {
  56843. snivy_front: {
  56844. height: math.unit(2, "feet"),
  56845. weight: math.unit(17.9, "lb"),
  56846. name: "Front",
  56847. image: {
  56848. source: "./media/characters/robin-phox/snivy-front.svg",
  56849. extra: 569/504,
  56850. bottom: 33/602
  56851. },
  56852. form: "snivy",
  56853. default: true
  56854. },
  56855. snivy_frontNsfw: {
  56856. height: math.unit(2, "feet"),
  56857. weight: math.unit(17.9, "lb"),
  56858. name: "Front (NSFW)",
  56859. image: {
  56860. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56861. extra: 569/504,
  56862. bottom: 33/602
  56863. },
  56864. form: "snivy",
  56865. },
  56866. snivy_back: {
  56867. height: math.unit(2, "feet"),
  56868. weight: math.unit(17.9, "lb"),
  56869. name: "Back",
  56870. image: {
  56871. source: "./media/characters/robin-phox/snivy-back.svg",
  56872. extra: 577/508,
  56873. bottom: 21/598
  56874. },
  56875. form: "snivy",
  56876. },
  56877. snivy_foot: {
  56878. height: math.unit(0.68, "feet"),
  56879. name: "Foot",
  56880. image: {
  56881. source: "./media/characters/robin-phox/snivy-foot.svg"
  56882. },
  56883. form: "snivy",
  56884. },
  56885. snivy_sole: {
  56886. height: math.unit(0.68, "feet"),
  56887. name: "Sole",
  56888. image: {
  56889. source: "./media/characters/robin-phox/snivy-sole.svg"
  56890. },
  56891. form: "snivy",
  56892. },
  56893. yoshi_front: {
  56894. height: math.unit(6, "feet"),
  56895. weight: math.unit(150, "lb"),
  56896. name: "Front",
  56897. image: {
  56898. source: "./media/characters/robin-phox/yoshi-front.svg",
  56899. extra: 890/792,
  56900. bottom: 29/919
  56901. },
  56902. form: "yoshi",
  56903. default: true
  56904. },
  56905. yoshi_frontNsfw: {
  56906. height: math.unit(6, "feet"),
  56907. weight: math.unit(150, "lb"),
  56908. name: "Front (NSFW)",
  56909. image: {
  56910. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56911. extra: 890/792,
  56912. bottom: 29/919
  56913. },
  56914. form: "yoshi",
  56915. },
  56916. yoshi_back: {
  56917. height: math.unit(6, "feet"),
  56918. weight: math.unit(150, "lb"),
  56919. name: "Back",
  56920. image: {
  56921. source: "./media/characters/robin-phox/yoshi-back.svg",
  56922. extra: 890/792,
  56923. bottom: 29/919
  56924. },
  56925. form: "yoshi",
  56926. },
  56927. yoshi_foot: {
  56928. height: math.unit(1.5, "feet"),
  56929. name: "Foot",
  56930. image: {
  56931. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56932. },
  56933. form: "yoshi",
  56934. },
  56935. delphox_front: {
  56936. height: math.unit(4 + 11/12, "feet"),
  56937. weight: math.unit(86, "lb"),
  56938. name: "Front",
  56939. image: {
  56940. source: "./media/characters/robin-phox/delphox-front.svg",
  56941. extra: 1266/1069,
  56942. bottom: 32/1298
  56943. },
  56944. form: "delphox",
  56945. default: true
  56946. },
  56947. delphox_frontNsfw: {
  56948. height: math.unit(4 + 11/12, "feet"),
  56949. weight: math.unit(86, "lb"),
  56950. name: "Front (NSFW)",
  56951. image: {
  56952. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56953. extra: 1266/1069,
  56954. bottom: 32/1298
  56955. },
  56956. form: "delphox",
  56957. },
  56958. delphox_back: {
  56959. height: math.unit(4 + 11/12, "feet"),
  56960. weight: math.unit(86, "lb"),
  56961. name: "Back",
  56962. image: {
  56963. source: "./media/characters/robin-phox/delphox-back.svg",
  56964. extra: 1269/1083,
  56965. bottom: 15/1284
  56966. },
  56967. form: "delphox",
  56968. },
  56969. mienshao_front: {
  56970. height: math.unit(4 + 7/12, "feet"),
  56971. weight: math.unit(78.3, "lb"),
  56972. name: "Front",
  56973. image: {
  56974. source: "./media/characters/robin-phox/mienshao-front.svg",
  56975. extra: 1052/970,
  56976. bottom: 108/1160
  56977. },
  56978. form: "mienshao",
  56979. default: true
  56980. },
  56981. mienshao_frontNsfw: {
  56982. height: math.unit(4 + 7/12, "feet"),
  56983. weight: math.unit(78.3, "lb"),
  56984. name: "Front (NSFW)",
  56985. image: {
  56986. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56987. extra: 1052/970,
  56988. bottom: 108/1160
  56989. },
  56990. form: "mienshao",
  56991. },
  56992. mienshao_back: {
  56993. height: math.unit(4 + 7/12, "feet"),
  56994. weight: math.unit(78.3, "lb"),
  56995. name: "Back",
  56996. image: {
  56997. source: "./media/characters/robin-phox/mienshao-back.svg",
  56998. extra: 1102/982,
  56999. bottom: 32/1134
  57000. },
  57001. form: "mienshao",
  57002. },
  57003. inteleon_front: {
  57004. height: math.unit(6 + 3/12, "feet"),
  57005. weight: math.unit(99.6, "lb"),
  57006. name: "Front",
  57007. image: {
  57008. source: "./media/characters/robin-phox/inteleon-front.svg",
  57009. extra: 910/799,
  57010. bottom: 76/986
  57011. },
  57012. form: "inteleon",
  57013. default: true
  57014. },
  57015. inteleon_frontNsfw: {
  57016. height: math.unit(6 + 3/12, "feet"),
  57017. weight: math.unit(99.6, "lb"),
  57018. name: "Front (NSFW)",
  57019. image: {
  57020. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57021. extra: 910/799,
  57022. bottom: 76/986
  57023. },
  57024. form: "inteleon",
  57025. },
  57026. inteleon_back: {
  57027. height: math.unit(6 + 3/12, "feet"),
  57028. weight: math.unit(99.6, "lb"),
  57029. name: "Back",
  57030. image: {
  57031. source: "./media/characters/robin-phox/inteleon-back.svg",
  57032. extra: 907/796,
  57033. bottom: 25/932
  57034. },
  57035. form: "inteleon",
  57036. },
  57037. reshiram_front: {
  57038. height: math.unit(10 + 6/12, "feet"),
  57039. weight: math.unit(727.5, "lb"),
  57040. name: "Front",
  57041. image: {
  57042. source: "./media/characters/robin-phox/reshiram-front.svg",
  57043. extra: 1198/940,
  57044. bottom: 123/1321
  57045. },
  57046. form: "reshiram",
  57047. },
  57048. reshiram_frontNsfw: {
  57049. height: math.unit(10 + 6/12, "feet"),
  57050. weight: math.unit(727.5, "lb"),
  57051. name: "Front-nsfw",
  57052. image: {
  57053. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57054. extra: 1198/940,
  57055. bottom: 123/1321
  57056. },
  57057. form: "reshiram",
  57058. },
  57059. reshiram_back: {
  57060. height: math.unit(10 + 6/12, "feet"),
  57061. weight: math.unit(727.5, "lb"),
  57062. name: "Back",
  57063. image: {
  57064. source: "./media/characters/robin-phox/reshiram-back.svg",
  57065. extra: 1024/904,
  57066. bottom: 85/1109
  57067. },
  57068. form: "reshiram",
  57069. },
  57070. samurott_front: {
  57071. height: math.unit(8, "feet"),
  57072. weight: math.unit(208.6, "lb"),
  57073. name: "Front",
  57074. image: {
  57075. source: "./media/characters/robin-phox/samurott-front.svg",
  57076. extra: 1048/984,
  57077. bottom: 100/1148
  57078. },
  57079. form: "samurott",
  57080. },
  57081. samurott_frontNsfw: {
  57082. height: math.unit(8, "feet"),
  57083. weight: math.unit(208.6, "lb"),
  57084. name: "Front-nsfw",
  57085. image: {
  57086. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57087. extra: 1048/984,
  57088. bottom: 100/1148
  57089. },
  57090. form: "samurott",
  57091. },
  57092. samurott_back: {
  57093. height: math.unit(8, "feet"),
  57094. weight: math.unit(208.6, "lb"),
  57095. name: "Back",
  57096. image: {
  57097. source: "./media/characters/robin-phox/samurott-back.svg",
  57098. extra: 1110/1042,
  57099. bottom: 12/1122
  57100. },
  57101. form: "samurott",
  57102. },
  57103. samurott_feral: {
  57104. height: math.unit(4 + 11/12, "feet"),
  57105. weight: math.unit(208.6, "lb"),
  57106. name: "Feral",
  57107. image: {
  57108. source: "./media/characters/robin-phox/samurott-feral.svg",
  57109. extra: 766/681,
  57110. bottom: 108/874
  57111. },
  57112. form: "samurott",
  57113. },
  57114. },
  57115. [
  57116. {
  57117. name: "Normal",
  57118. height: math.unit(2, "feet"),
  57119. default: true,
  57120. form: "snivy"
  57121. },
  57122. {
  57123. name: "Normal",
  57124. height: math.unit(6, "feet"),
  57125. default: true,
  57126. form: "yoshi"
  57127. },
  57128. {
  57129. name: "Normal",
  57130. height: math.unit(4 + 11/12, "feet"),
  57131. default: true,
  57132. form: "delphox"
  57133. },
  57134. {
  57135. name: "Normal",
  57136. height: math.unit(4 + 7/12, "feet"),
  57137. default: true,
  57138. form: "mienshao"
  57139. },
  57140. {
  57141. name: "Normal",
  57142. height: math.unit(6 + 3/12, "feet"),
  57143. default: true,
  57144. form: "inteleon"
  57145. },
  57146. {
  57147. name: "Normal",
  57148. height: math.unit(10 + 6/12, "feet"),
  57149. default: true,
  57150. form: "reshiram"
  57151. },
  57152. {
  57153. name: "Normal",
  57154. height: math.unit(8, "feet"),
  57155. default: true,
  57156. form: "samurott"
  57157. },
  57158. {
  57159. name: "Macro",
  57160. height: math.unit(500, "feet"),
  57161. allForms: true
  57162. },
  57163. {
  57164. name: "Mega Macro",
  57165. height: math.unit(10, "earths"),
  57166. allForms: true
  57167. },
  57168. {
  57169. name: "Giga Macro",
  57170. height: math.unit(1, "galaxy"),
  57171. allForms: true
  57172. },
  57173. {
  57174. name: "Godly Macro",
  57175. height: math.unit(1e10, "multiverses"),
  57176. allForms: true
  57177. },
  57178. ],
  57179. {
  57180. "snivy": {
  57181. name: "Snivy",
  57182. default: true
  57183. },
  57184. "yoshi": {
  57185. name: "Yoshi",
  57186. },
  57187. "delphox": {
  57188. name: "Delphox",
  57189. },
  57190. "mienshao": {
  57191. name: "Mienshao",
  57192. },
  57193. "inteleon": {
  57194. name: "Inteleon",
  57195. },
  57196. "reshiram": {
  57197. name: "Reshiram",
  57198. },
  57199. "samurott": {
  57200. name: "Samurott",
  57201. },
  57202. }
  57203. ))
  57204. characterMakers.push(() => makeCharacter(
  57205. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57206. {
  57207. front: {
  57208. height: math.unit(4, "feet"),
  57209. name: "Front",
  57210. image: {
  57211. source: "./media/characters/ash-leung/front.svg",
  57212. extra: 1916/1792,
  57213. bottom: 50/1966
  57214. }
  57215. },
  57216. },
  57217. [
  57218. {
  57219. name: "Atomic",
  57220. height: math.unit(1, "angstrom")
  57221. },
  57222. {
  57223. name: "Microscopic",
  57224. height: math.unit(4000, "angstroms")
  57225. },
  57226. {
  57227. name: "Speck",
  57228. height: math.unit(1, "mm")
  57229. },
  57230. {
  57231. name: "Small",
  57232. height: math.unit(1, "inch")
  57233. },
  57234. {
  57235. name: "Normal",
  57236. height: math.unit(4, "feet"),
  57237. default: true
  57238. },
  57239. ]
  57240. ))
  57241. characterMakers.push(() => makeCharacter(
  57242. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57243. {
  57244. frontDressed: {
  57245. height: math.unit(2.08, "meters"),
  57246. weight: math.unit(175, "lb"),
  57247. name: "Front (Dressed)",
  57248. image: {
  57249. source: "./media/characters/carie/front-dressed.svg",
  57250. extra: 456/417,
  57251. bottom: 7/463
  57252. }
  57253. },
  57254. backDressed: {
  57255. height: math.unit(2.08, "meters"),
  57256. weight: math.unit(175, "lb"),
  57257. name: "Back (Dressed)",
  57258. image: {
  57259. source: "./media/characters/carie/back-dressed.svg",
  57260. extra: 455/414,
  57261. bottom: 11/466
  57262. }
  57263. },
  57264. front: {
  57265. height: math.unit(2, "meters"),
  57266. weight: math.unit(175, "lb"),
  57267. name: "Front",
  57268. image: {
  57269. source: "./media/characters/carie/front.svg",
  57270. extra: 438/399,
  57271. bottom: 12/450
  57272. }
  57273. },
  57274. back: {
  57275. height: math.unit(2, "meters"),
  57276. weight: math.unit(175, "lb"),
  57277. name: "Back",
  57278. image: {
  57279. source: "./media/characters/carie/back.svg",
  57280. extra: 438/397,
  57281. bottom: 7/445
  57282. }
  57283. },
  57284. },
  57285. [
  57286. {
  57287. name: "Normal",
  57288. height: math.unit(2.08, "meters"),
  57289. default: true
  57290. },
  57291. {
  57292. name: "Macro",
  57293. height: math.unit(2.08e3, "meters")
  57294. },
  57295. {
  57296. name: "Mega Macro",
  57297. height: math.unit(2.08e6, "meters")
  57298. },
  57299. {
  57300. name: "Giga Macro",
  57301. height: math.unit(2.08e9, "meters")
  57302. },
  57303. {
  57304. name: "Tera Macro",
  57305. height: math.unit(2.08e12, "meters")
  57306. },
  57307. {
  57308. name: "Peta Macro",
  57309. height: math.unit(2.08e15, "meters")
  57310. },
  57311. {
  57312. name: "Exa Macro",
  57313. height: math.unit(2.08e18, "meters")
  57314. },
  57315. {
  57316. name: "Zetta Macro",
  57317. height: math.unit(2.08e21, "meters")
  57318. },
  57319. {
  57320. name: "Yotta Macro",
  57321. height: math.unit(2.08e24, "meters")
  57322. },
  57323. ]
  57324. ))
  57325. characterMakers.push(() => makeCharacter(
  57326. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57327. {
  57328. front: {
  57329. height: math.unit(5 + 2/12, "feet"),
  57330. weight: math.unit(120, "lb"),
  57331. name: "Front",
  57332. image: {
  57333. source: "./media/characters/sai-bree/front.svg",
  57334. extra: 1843/1702,
  57335. bottom: 91/1934
  57336. }
  57337. },
  57338. back: {
  57339. height: math.unit(5 + 2/12, "feet"),
  57340. weight: math.unit(120, "lb"),
  57341. name: "Back",
  57342. image: {
  57343. source: "./media/characters/sai-bree/back.svg",
  57344. extra: 1809/1637,
  57345. bottom: 56/1865
  57346. }
  57347. },
  57348. },
  57349. [
  57350. {
  57351. name: "Normal",
  57352. height: math.unit(5 + 2/12, "feet"),
  57353. default: true
  57354. },
  57355. {
  57356. name: "Macro",
  57357. height: math.unit(500, "feet")
  57358. },
  57359. ]
  57360. ))
  57361. characterMakers.push(() => makeCharacter(
  57362. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57363. {
  57364. side: {
  57365. height: math.unit(0.77, "meters"),
  57366. weight: math.unit(120, "lb"),
  57367. name: "Side",
  57368. image: {
  57369. source: "./media/characters/davwyn/side.svg",
  57370. extra: 1557/1225,
  57371. bottom: 131/1688
  57372. }
  57373. },
  57374. front: {
  57375. height: math.unit(0.835410, "meters"),
  57376. weight: math.unit(120, "lb"),
  57377. name: "Front",
  57378. image: {
  57379. source: "./media/characters/davwyn/front.svg",
  57380. extra: 870/843,
  57381. bottom: 175/1045
  57382. }
  57383. },
  57384. },
  57385. [
  57386. {
  57387. name: "Minidrake",
  57388. height: math.unit(0.77/4, "meters")
  57389. },
  57390. {
  57391. name: "Normal",
  57392. height: math.unit(0.77, "meters"),
  57393. default: true
  57394. },
  57395. ]
  57396. ))
  57397. characterMakers.push(() => makeCharacter(
  57398. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57399. {
  57400. front: {
  57401. height: math.unit(10 + 3/12, "feet"),
  57402. weight: math.unit(2857, "lb"),
  57403. name: "Front",
  57404. image: {
  57405. source: "./media/characters/balans/front.svg",
  57406. extra: 427/402,
  57407. bottom: 26/453
  57408. }
  57409. },
  57410. side: {
  57411. height: math.unit(10 + 3/12, "feet"),
  57412. weight: math.unit(2857, "lb"),
  57413. name: "Side",
  57414. image: {
  57415. source: "./media/characters/balans/side.svg",
  57416. extra: 397/371,
  57417. bottom: 17/414
  57418. }
  57419. },
  57420. back: {
  57421. height: math.unit(10 + 3/12, "feet"),
  57422. weight: math.unit(2857, "lb"),
  57423. name: "Back",
  57424. image: {
  57425. source: "./media/characters/balans/back.svg",
  57426. extra: 408/381,
  57427. bottom: 14/422
  57428. }
  57429. },
  57430. hand: {
  57431. height: math.unit(1.15, "feet"),
  57432. name: "Hand",
  57433. image: {
  57434. source: "./media/characters/balans/hand.svg"
  57435. }
  57436. },
  57437. footRest: {
  57438. height: math.unit(3.1, "feet"),
  57439. name: "Foot (Rest)",
  57440. image: {
  57441. source: "./media/characters/balans/foot-rest.svg"
  57442. }
  57443. },
  57444. footActive: {
  57445. height: math.unit(3.5, "feet"),
  57446. name: "Foot (Active)",
  57447. image: {
  57448. source: "./media/characters/balans/foot-active.svg"
  57449. }
  57450. },
  57451. },
  57452. [
  57453. {
  57454. name: "Normal",
  57455. height: math.unit(10 + 3/12, "feet"),
  57456. default: true
  57457. },
  57458. ]
  57459. ))
  57460. characterMakers.push(() => makeCharacter(
  57461. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57462. {
  57463. side: {
  57464. height: math.unit(9, "meters"),
  57465. weight: math.unit(114, "tonnes"),
  57466. name: "Side",
  57467. image: {
  57468. source: "./media/characters/eldkveikir/side.svg",
  57469. extra: 1927/338,
  57470. bottom: 42/1969
  57471. }
  57472. },
  57473. sitting: {
  57474. height: math.unit(13.4, "meters"),
  57475. weight: math.unit(114, "tonnes"),
  57476. name: "Sitting",
  57477. image: {
  57478. source: "./media/characters/eldkveikir/sitting.svg",
  57479. extra: 1108/963,
  57480. bottom: 610/1718
  57481. }
  57482. },
  57483. maw: {
  57484. height: math.unit(8.36, "meters"),
  57485. name: "Maw",
  57486. image: {
  57487. source: "./media/characters/eldkveikir/maw.svg"
  57488. }
  57489. },
  57490. hand: {
  57491. height: math.unit(4.84, "meters"),
  57492. name: "Hand",
  57493. image: {
  57494. source: "./media/characters/eldkveikir/hand.svg"
  57495. }
  57496. },
  57497. foot: {
  57498. height: math.unit(6.9, "meters"),
  57499. name: "Foot",
  57500. image: {
  57501. source: "./media/characters/eldkveikir/foot.svg"
  57502. }
  57503. },
  57504. genitals: {
  57505. height: math.unit(9.6, "meters"),
  57506. name: "Genitals",
  57507. image: {
  57508. source: "./media/characters/eldkveikir/genitals.svg"
  57509. }
  57510. },
  57511. },
  57512. [
  57513. {
  57514. name: "Normal",
  57515. height: math.unit(9, "meters"),
  57516. default: true
  57517. },
  57518. ]
  57519. ))
  57520. characterMakers.push(() => makeCharacter(
  57521. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57522. {
  57523. front: {
  57524. height: math.unit(14, "feet"),
  57525. weight: math.unit(4100, "lb"),
  57526. name: "Front",
  57527. image: {
  57528. source: "./media/characters/arrow/front.svg",
  57529. extra: 330/318,
  57530. bottom: 56/386
  57531. }
  57532. },
  57533. },
  57534. [
  57535. {
  57536. name: "Normal",
  57537. height: math.unit(14, "feet"),
  57538. default: true
  57539. },
  57540. {
  57541. name: "Minimacro",
  57542. height: math.unit(63, "feet")
  57543. },
  57544. {
  57545. name: "Macro",
  57546. height: math.unit(630, "feet")
  57547. },
  57548. {
  57549. name: "Megamacro",
  57550. height: math.unit(12600, "feet")
  57551. },
  57552. {
  57553. name: "Gigamacro",
  57554. height: math.unit(18000, "miles")
  57555. },
  57556. ]
  57557. ))
  57558. characterMakers.push(() => makeCharacter(
  57559. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57560. {
  57561. front: {
  57562. height: math.unit(10, "feet"),
  57563. weight: math.unit(2.4, "tons"),
  57564. name: "Front",
  57565. image: {
  57566. source: "./media/characters/3yk-k0-unit/front.svg",
  57567. extra: 573/561,
  57568. bottom: 33/606
  57569. }
  57570. },
  57571. back: {
  57572. height: math.unit(10, "feet"),
  57573. weight: math.unit(2.4, "tons"),
  57574. name: "Back",
  57575. image: {
  57576. source: "./media/characters/3yk-k0-unit/back.svg",
  57577. extra: 614/573,
  57578. bottom: 32/646
  57579. }
  57580. },
  57581. maw: {
  57582. height: math.unit(2.15, "feet"),
  57583. name: "Maw",
  57584. image: {
  57585. source: "./media/characters/3yk-k0-unit/maw.svg"
  57586. }
  57587. },
  57588. },
  57589. [
  57590. {
  57591. name: "Normal",
  57592. height: math.unit(10, "feet"),
  57593. default: true
  57594. },
  57595. ]
  57596. ))
  57597. characterMakers.push(() => makeCharacter(
  57598. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57599. {
  57600. front: {
  57601. height: math.unit(8 + 8/12, "feet"),
  57602. name: "Front",
  57603. image: {
  57604. source: "./media/characters/nemo/front.svg",
  57605. extra: 1308/1217,
  57606. bottom: 57/1365
  57607. }
  57608. },
  57609. },
  57610. [
  57611. {
  57612. name: "Normal",
  57613. height: math.unit(8 + 8/12, "feet"),
  57614. default: true
  57615. },
  57616. ]
  57617. ))
  57618. characterMakers.push(() => makeCharacter(
  57619. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57620. {
  57621. front: {
  57622. height: math.unit(8, "feet"),
  57623. weight: math.unit(760, "lb"),
  57624. name: "Front",
  57625. image: {
  57626. source: "./media/characters/rexx/front.svg",
  57627. extra: 786/750,
  57628. bottom: 17/803
  57629. },
  57630. extraAttributes: {
  57631. "pawLength": {
  57632. name: "Paw Length",
  57633. power: 1,
  57634. type: "length",
  57635. base: math.unit(27, "inches")
  57636. },
  57637. }
  57638. },
  57639. },
  57640. [
  57641. {
  57642. name: "Micro",
  57643. height: math.unit(2, "inches")
  57644. },
  57645. {
  57646. name: "Normal",
  57647. height: math.unit(8, "feet"),
  57648. default: true
  57649. },
  57650. {
  57651. name: "Macro",
  57652. height: math.unit(150, "feet")
  57653. },
  57654. ]
  57655. ))
  57656. characterMakers.push(() => makeCharacter(
  57657. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57658. {
  57659. front: {
  57660. height: math.unit(18, "feet"),
  57661. weight: math.unit(1975, "lb"),
  57662. name: "Front",
  57663. image: {
  57664. source: "./media/characters/draco/front.svg",
  57665. extra: 1325/1241,
  57666. bottom: 83/1408
  57667. }
  57668. },
  57669. back: {
  57670. height: math.unit(18, "feet"),
  57671. weight: math.unit(1975, "lb"),
  57672. name: "Back",
  57673. image: {
  57674. source: "./media/characters/draco/back.svg",
  57675. extra: 1332/1250,
  57676. bottom: 43/1375
  57677. }
  57678. },
  57679. dick: {
  57680. height: math.unit(7.5, "feet"),
  57681. name: "Dick",
  57682. image: {
  57683. source: "./media/characters/draco/dick.svg"
  57684. }
  57685. },
  57686. },
  57687. [
  57688. {
  57689. name: "Normal",
  57690. height: math.unit(18, "feet"),
  57691. default: true
  57692. },
  57693. ]
  57694. ))
  57695. characterMakers.push(() => makeCharacter(
  57696. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57697. {
  57698. front: {
  57699. height: math.unit(3.2, "meters"),
  57700. name: "Front",
  57701. image: {
  57702. source: "./media/characters/harriett/front.svg",
  57703. extra: 1966/1915,
  57704. bottom: 9/1975
  57705. }
  57706. },
  57707. },
  57708. [
  57709. {
  57710. name: "Normal",
  57711. height: math.unit(3.2, "meters"),
  57712. default: true
  57713. },
  57714. ]
  57715. ))
  57716. characterMakers.push(() => makeCharacter(
  57717. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57718. {
  57719. sitting: {
  57720. height: math.unit(0.8, "meter"),
  57721. name: "Sitting",
  57722. image: {
  57723. source: "./media/characters/serpentus/sitting.svg",
  57724. extra: 293/290,
  57725. bottom: 140/433
  57726. }
  57727. },
  57728. },
  57729. [
  57730. {
  57731. name: "Normal",
  57732. height: math.unit(0.8, "meter"),
  57733. default: true
  57734. },
  57735. ]
  57736. ))
  57737. characterMakers.push(() => makeCharacter(
  57738. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57739. {
  57740. front: {
  57741. height: math.unit(5.7174385736, "feet"),
  57742. name: "Front",
  57743. image: {
  57744. source: "./media/characters/nova-polecat/front.svg",
  57745. extra: 1317/1216,
  57746. bottom: 92/1409
  57747. }
  57748. },
  57749. },
  57750. [
  57751. {
  57752. name: "Normal",
  57753. height: math.unit(5.7174385736, "feet"),
  57754. default: true
  57755. },
  57756. ]
  57757. ))
  57758. characterMakers.push(() => makeCharacter(
  57759. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57760. {
  57761. front: {
  57762. height: math.unit(5 + 4/12, "feet"),
  57763. weight: math.unit(250, "lb"),
  57764. name: "Front",
  57765. image: {
  57766. source: "./media/characters/mook/front.svg",
  57767. extra: 1088/1037,
  57768. bottom: 132/1220
  57769. }
  57770. },
  57771. back: {
  57772. height: math.unit(5 + 1/12, "feet"),
  57773. weight: math.unit(250, "lb"),
  57774. name: "Back",
  57775. image: {
  57776. source: "./media/characters/mook/back.svg",
  57777. extra: 1184/905,
  57778. bottom: 96/1280
  57779. }
  57780. },
  57781. head: {
  57782. height: math.unit(1.85, "feet"),
  57783. name: "Head",
  57784. image: {
  57785. source: "./media/characters/mook/head.svg"
  57786. }
  57787. },
  57788. hand: {
  57789. height: math.unit(1.9, "feet"),
  57790. name: "Hand",
  57791. image: {
  57792. source: "./media/characters/mook/hand.svg"
  57793. }
  57794. },
  57795. palm: {
  57796. height: math.unit(1.84, "feet"),
  57797. name: "Palm",
  57798. image: {
  57799. source: "./media/characters/mook/palm.svg"
  57800. }
  57801. },
  57802. foot: {
  57803. height: math.unit(1.44, "feet"),
  57804. name: "Foot",
  57805. image: {
  57806. source: "./media/characters/mook/foot.svg"
  57807. }
  57808. },
  57809. sole: {
  57810. height: math.unit(1.44, "feet"),
  57811. name: "Sole",
  57812. image: {
  57813. source: "./media/characters/mook/sole.svg"
  57814. }
  57815. },
  57816. },
  57817. [
  57818. {
  57819. name: "Normal",
  57820. height: math.unit(5 + 4/12, "feet"),
  57821. default: true
  57822. },
  57823. {
  57824. name: "Big",
  57825. height: math.unit(12, "feet")
  57826. },
  57827. ]
  57828. ))
  57829. characterMakers.push(() => makeCharacter(
  57830. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57831. {
  57832. front: {
  57833. height: math.unit(6 + 10/12, "feet"),
  57834. weight: math.unit(233, "lb"),
  57835. name: "Front",
  57836. image: {
  57837. source: "./media/characters/kayla/front.svg",
  57838. extra: 1850/1775,
  57839. bottom: 65/1915
  57840. }
  57841. },
  57842. },
  57843. [
  57844. {
  57845. name: "Normal",
  57846. height: math.unit(6 + 10/12, "feet"),
  57847. default: true
  57848. },
  57849. {
  57850. name: "Amazonian",
  57851. height: math.unit(12 + 5/12, "feet")
  57852. },
  57853. {
  57854. name: "Mini Giantess",
  57855. height: math.unit(26, "feet")
  57856. },
  57857. {
  57858. name: "Giantess",
  57859. height: math.unit(200, "feet")
  57860. },
  57861. {
  57862. name: "Mega Giantess",
  57863. height: math.unit(2500, "feet")
  57864. },
  57865. {
  57866. name: "City Sized",
  57867. height: math.unit(50, "miles")
  57868. },
  57869. {
  57870. name: "Country Sized",
  57871. height: math.unit(500, "miles")
  57872. },
  57873. {
  57874. name: "Continent Sized",
  57875. height: math.unit(2500, "miles")
  57876. },
  57877. {
  57878. name: "Planet Sized",
  57879. height: math.unit(10000, "miles")
  57880. },
  57881. {
  57882. name: "Star Sized",
  57883. height: math.unit(5e6, "miles")
  57884. },
  57885. {
  57886. name: "Solar System Sized",
  57887. height: math.unit(125, "AU")
  57888. },
  57889. {
  57890. name: "Galaxy Sized",
  57891. height: math.unit(300e3, "lightyears")
  57892. },
  57893. {
  57894. name: "Universe Sized",
  57895. height: math.unit(200e9, "lightyears")
  57896. },
  57897. {
  57898. name: "Multiverse Sized",
  57899. height: math.unit(20, "exauniverses")
  57900. },
  57901. {
  57902. name: "Mother of Existence",
  57903. height: math.unit(1e6, "yottauniverses")
  57904. },
  57905. ]
  57906. ))
  57907. characterMakers.push(() => makeCharacter(
  57908. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57909. {
  57910. side: {
  57911. height: math.unit(9.5, "meters"),
  57912. name: "Side",
  57913. image: {
  57914. source: "./media/characters/kulve-ragnarok/side.svg",
  57915. extra: 364/326,
  57916. bottom: 50/414
  57917. }
  57918. },
  57919. },
  57920. [
  57921. {
  57922. name: "Normal",
  57923. height: math.unit(9.5, "meters"),
  57924. default: true
  57925. },
  57926. ]
  57927. ))
  57928. characterMakers.push(() => makeCharacter(
  57929. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57930. {
  57931. front: {
  57932. height: math.unit(8 + 9/12, "feet"),
  57933. name: "Front",
  57934. image: {
  57935. source: "./media/characters/atlas-goat/front.svg",
  57936. extra: 1462/1323,
  57937. bottom: 12/1474
  57938. }
  57939. },
  57940. },
  57941. [
  57942. {
  57943. name: "Normal",
  57944. height: math.unit(8 + 9/12, "feet"),
  57945. default: true
  57946. },
  57947. {
  57948. name: "Skyline",
  57949. height: math.unit(845, "feet")
  57950. },
  57951. {
  57952. name: "Orbital",
  57953. height: math.unit(93000, "miles")
  57954. },
  57955. {
  57956. name: "Constellation",
  57957. height: math.unit(27000, "lightyears")
  57958. },
  57959. ]
  57960. ))
  57961. characterMakers.push(() => makeCharacter(
  57962. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57963. {
  57964. side: {
  57965. height: math.unit(1.8, "meters"),
  57966. weight: math.unit(120, "kg"),
  57967. name: "Side",
  57968. image: {
  57969. source: "./media/characters/xie-ling/side.svg",
  57970. extra: 646/574,
  57971. bottom: 44/690
  57972. }
  57973. },
  57974. },
  57975. [
  57976. {
  57977. name: "Tiny",
  57978. height: math.unit(1.80, "meters")
  57979. },
  57980. {
  57981. name: "Small",
  57982. height: math.unit(6, "meters")
  57983. },
  57984. {
  57985. name: "Medium",
  57986. height: math.unit(15, "meters")
  57987. },
  57988. {
  57989. name: "Normal",
  57990. height: math.unit(30, "meters"),
  57991. default: true
  57992. },
  57993. {
  57994. name: "Above Normal",
  57995. height: math.unit(60, "meters")
  57996. },
  57997. {
  57998. name: "Big",
  57999. height: math.unit(220, "meters")
  58000. },
  58001. {
  58002. name: "Giant",
  58003. height: math.unit(2.2, "km")
  58004. },
  58005. {
  58006. name: "Macro",
  58007. height: math.unit(25, "km")
  58008. },
  58009. {
  58010. name: "Mega Macro",
  58011. height: math.unit(350, "km")
  58012. },
  58013. {
  58014. name: "Mega Macro+",
  58015. height: math.unit(5000, "km")
  58016. },
  58017. {
  58018. name: "Goddess",
  58019. height: math.unit(3, "multiverses")
  58020. },
  58021. ]
  58022. ))
  58023. characterMakers.push(() => makeCharacter(
  58024. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58025. {
  58026. frontSfw: {
  58027. height: math.unit(5 + 11/12, "feet"),
  58028. weight: math.unit(210, "lb"),
  58029. name: "Front",
  58030. image: {
  58031. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58032. extra: 1928/1821,
  58033. bottom: 45/1973
  58034. }
  58035. },
  58036. backSfw: {
  58037. height: math.unit(5 + 11/12, "feet"),
  58038. weight: math.unit(210, "lb"),
  58039. name: "Back",
  58040. image: {
  58041. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58042. extra: 1920/1813,
  58043. bottom: 34/1954
  58044. }
  58045. },
  58046. frontNsfw: {
  58047. height: math.unit(5 + 11/12, "feet"),
  58048. weight: math.unit(210, "lb"),
  58049. name: "Front (NSFW)",
  58050. image: {
  58051. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58052. extra: 1928/1821,
  58053. bottom: 45/1973
  58054. }
  58055. },
  58056. backNsfw: {
  58057. height: math.unit(5 + 11/12, "feet"),
  58058. weight: math.unit(210, "lb"),
  58059. name: "Back (NSFW)",
  58060. image: {
  58061. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58062. extra: 1920/1813,
  58063. bottom: 34/1954
  58064. }
  58065. },
  58066. },
  58067. [
  58068. {
  58069. name: "Normal",
  58070. height: math.unit(5 + 11/12, "feet"),
  58071. default: true
  58072. },
  58073. {
  58074. name: "Goddess",
  58075. height: math.unit(20 + 3/12, "feet")
  58076. },
  58077. {
  58078. name: "Breaker of Man",
  58079. height: math.unit(329 + 9/12, "feet")
  58080. },
  58081. {
  58082. name: "Solar Justice",
  58083. height: math.unit(0.6, "solarradii")
  58084. },
  58085. {
  58086. name: "She Who Judges",
  58087. height: math.unit(1, "universe")
  58088. },
  58089. ]
  58090. ))
  58091. characterMakers.push(() => makeCharacter(
  58092. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58093. {
  58094. casual_front: {
  58095. height: math.unit(6 + 1/12, "feet"),
  58096. weight: math.unit(190, "lb"),
  58097. preyCapacity: math.unit(1, "people"),
  58098. name: "Front",
  58099. image: {
  58100. source: "./media/characters/managarmr/casual-front.svg",
  58101. extra: 411/381,
  58102. bottom: 15/426
  58103. },
  58104. extraAttributes: {
  58105. "pawSize": {
  58106. name: "Paw Size",
  58107. power: 1,
  58108. type: "length",
  58109. base: math.unit(0.2, "meters")
  58110. },
  58111. },
  58112. form: "casual",
  58113. },
  58114. casual_back: {
  58115. height: math.unit(6 + 1/12, "feet"),
  58116. weight: math.unit(190, "lb"),
  58117. preyCapacity: math.unit(1, "people"),
  58118. name: "Back",
  58119. image: {
  58120. source: "./media/characters/managarmr/casual-back.svg",
  58121. extra: 413/383,
  58122. bottom: 13/426
  58123. },
  58124. extraAttributes: {
  58125. "pawSize": {
  58126. name: "Paw Size",
  58127. power: 1,
  58128. type: "length",
  58129. base: math.unit(0.2, "meters")
  58130. },
  58131. },
  58132. form: "casual",
  58133. },
  58134. base_front: {
  58135. height: math.unit(7, "feet"),
  58136. weight: math.unit(210, "lb"),
  58137. preyCapacity: math.unit(2, "people"),
  58138. name: "Front",
  58139. image: {
  58140. source: "./media/characters/managarmr/base-front.svg",
  58141. extra: 580/485,
  58142. bottom: 32/612
  58143. },
  58144. extraAttributes: {
  58145. "wingspan": {
  58146. name: "Wingspan",
  58147. power: 1,
  58148. type: "length",
  58149. base: math.unit(4, "meters")
  58150. },
  58151. "pawSize": {
  58152. name: "Paw Size",
  58153. power: 1,
  58154. type: "length",
  58155. base: math.unit(0.2, "meters")
  58156. },
  58157. },
  58158. form: "base",
  58159. },
  58160. "true-divine_front": {
  58161. height: math.unit(40, "feet"),
  58162. weight: math.unit(39000, "lb"),
  58163. preyCapacity: math.unit(375, "people"),
  58164. name: "Front",
  58165. image: {
  58166. source: "./media/characters/managarmr/true-divine-front.svg",
  58167. extra: 725/573,
  58168. bottom: 120/845
  58169. },
  58170. extraAttributes: {
  58171. "wingspan": {
  58172. name: "Wingspan",
  58173. power: 1,
  58174. type: "length",
  58175. base: math.unit(20, "meters")
  58176. },
  58177. "pawSize": {
  58178. name: "Paw Size",
  58179. power: 1,
  58180. type: "length",
  58181. base: math.unit(1.5, "meters")
  58182. },
  58183. },
  58184. form: "true-divine",
  58185. },
  58186. },
  58187. [
  58188. {
  58189. name: "Normal",
  58190. height: math.unit(6 + 1/12, "feet"),
  58191. form: "casual",
  58192. default: true
  58193. },
  58194. {
  58195. name: "Normal",
  58196. height: math.unit(7, "feet"),
  58197. form: "base",
  58198. default: true
  58199. },
  58200. ],
  58201. {
  58202. "casual": {
  58203. name: "Casual",
  58204. default: true
  58205. },
  58206. "base": {
  58207. name: "Base",
  58208. },
  58209. "true-divine": {
  58210. name: "True Divine",
  58211. },
  58212. }
  58213. ))
  58214. characterMakers.push(() => makeCharacter(
  58215. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58216. {
  58217. front: {
  58218. height: math.unit(1.8, "meters"),
  58219. weight: math.unit(110, "kg"),
  58220. name: "Front",
  58221. image: {
  58222. source: "./media/characters/mystra/front.svg",
  58223. extra: 529/442,
  58224. bottom: 31/560
  58225. }
  58226. },
  58227. frontLewd: {
  58228. height: math.unit(1.8, "meters"),
  58229. weight: math.unit(110, "kg"),
  58230. name: "Front (Lewd)",
  58231. image: {
  58232. source: "./media/characters/mystra/front-lewd.svg",
  58233. extra: 529/442,
  58234. bottom: 31/560
  58235. }
  58236. },
  58237. head: {
  58238. height: math.unit(1.63, "feet"),
  58239. name: "Head",
  58240. image: {
  58241. source: "./media/characters/mystra/head.svg"
  58242. }
  58243. },
  58244. paw: {
  58245. height: math.unit(1.9, "feet"),
  58246. name: "Paw",
  58247. image: {
  58248. source: "./media/characters/mystra/paw.svg"
  58249. }
  58250. },
  58251. },
  58252. [
  58253. {
  58254. name: "Incognito",
  58255. height: math.unit(2.3, "meters")
  58256. },
  58257. {
  58258. name: "Small Macro",
  58259. height: math.unit(300, "meters")
  58260. },
  58261. {
  58262. name: "Small Mega",
  58263. height: math.unit(2, "km")
  58264. },
  58265. {
  58266. name: "Mega",
  58267. height: math.unit(30, "km")
  58268. },
  58269. {
  58270. name: "Small Giga",
  58271. height: math.unit(100, "km")
  58272. },
  58273. {
  58274. name: "Giga",
  58275. height: math.unit(1000, "km"),
  58276. default: true
  58277. },
  58278. {
  58279. name: "Continental",
  58280. height: math.unit(5000, "km")
  58281. },
  58282. {
  58283. name: "Terra",
  58284. height: math.unit(20000, "km")
  58285. },
  58286. {
  58287. name: "Solar",
  58288. height: math.unit(2e6, "km")
  58289. },
  58290. {
  58291. name: "Galactic",
  58292. height: math.unit(528502, "lightyears")
  58293. },
  58294. {
  58295. name: "Universal",
  58296. height: math.unit(20, "universes")
  58297. },
  58298. ]
  58299. ))
  58300. characterMakers.push(() => makeCharacter(
  58301. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58302. {
  58303. front: {
  58304. height: math.unit(2, "meters"),
  58305. weight: math.unit(140, "kg"),
  58306. name: "Front",
  58307. image: {
  58308. source: "./media/characters/caleb/front.svg",
  58309. extra: 873/817,
  58310. bottom: 47/920
  58311. }
  58312. },
  58313. back: {
  58314. height: math.unit(2, "meters"),
  58315. weight: math.unit(140, "kg"),
  58316. name: "Back",
  58317. image: {
  58318. source: "./media/characters/caleb/back.svg",
  58319. extra: 877/828,
  58320. bottom: 24/901
  58321. }
  58322. },
  58323. snakeTail: {
  58324. height: math.unit(1.44, "feet"),
  58325. name: "Snake Tail",
  58326. image: {
  58327. source: "./media/characters/caleb/snake-tail.svg"
  58328. }
  58329. },
  58330. dick: {
  58331. height: math.unit(2.6, "feet"),
  58332. name: "Dick",
  58333. image: {
  58334. source: "./media/characters/caleb/dick.svg"
  58335. }
  58336. },
  58337. },
  58338. [
  58339. {
  58340. name: "Incognito",
  58341. height: math.unit(3, "meters")
  58342. },
  58343. {
  58344. name: "Home Size",
  58345. height: math.unit(200, "meters"),
  58346. default: true
  58347. },
  58348. {
  58349. name: "Macro",
  58350. height: math.unit(500, "meters")
  58351. },
  58352. {
  58353. name: "Big Macro",
  58354. height: math.unit(5, "km")
  58355. },
  58356. {
  58357. name: "Giga",
  58358. height: math.unit(250, "km")
  58359. },
  58360. {
  58361. name: "Giga+",
  58362. height: math.unit(5000, "km")
  58363. },
  58364. {
  58365. name: "Small Terra",
  58366. height: math.unit(35e3, "km")
  58367. },
  58368. {
  58369. name: "Terra",
  58370. height: math.unit(2e6, "km")
  58371. },
  58372. {
  58373. name: "Terra+",
  58374. height: math.unit(1.5e6, "km")
  58375. },
  58376. ]
  58377. ))
  58378. characterMakers.push(() => makeCharacter(
  58379. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58380. {
  58381. front: {
  58382. height: math.unit(2, "meters"),
  58383. weight: math.unit(120, "kg"),
  58384. name: "Front",
  58385. image: {
  58386. source: "./media/characters/gilirian/front.svg",
  58387. extra: 805/737,
  58388. bottom: 13/818
  58389. }
  58390. },
  58391. side: {
  58392. height: math.unit(2, "meters"),
  58393. weight: math.unit(120, "kg"),
  58394. name: "Side",
  58395. image: {
  58396. source: "./media/characters/gilirian/side.svg",
  58397. extra: 810/746,
  58398. bottom: 6/816
  58399. }
  58400. },
  58401. back: {
  58402. height: math.unit(2, "meters"),
  58403. weight: math.unit(120, "kg"),
  58404. name: "Back",
  58405. image: {
  58406. source: "./media/characters/gilirian/back.svg",
  58407. extra: 815/745,
  58408. bottom: 15/830
  58409. }
  58410. },
  58411. frontNsfw: {
  58412. height: math.unit(2, "meters"),
  58413. weight: math.unit(120, "kg"),
  58414. name: "Front (NSFW)",
  58415. image: {
  58416. source: "./media/characters/gilirian/front-nsfw.svg",
  58417. extra: 805/737,
  58418. bottom: 13/818
  58419. }
  58420. },
  58421. sideNsfw: {
  58422. height: math.unit(2, "meters"),
  58423. weight: math.unit(120, "kg"),
  58424. name: "Side (NSFW)",
  58425. image: {
  58426. source: "./media/characters/gilirian/side-nsfw.svg",
  58427. extra: 810/746,
  58428. bottom: 6/816
  58429. }
  58430. },
  58431. },
  58432. [
  58433. {
  58434. name: "Incognito",
  58435. height: math.unit(2, "meters"),
  58436. default: true
  58437. },
  58438. {
  58439. name: "Macro",
  58440. height: math.unit(250, "meters")
  58441. },
  58442. {
  58443. name: "Big Macro",
  58444. height: math.unit(1500, "meters")
  58445. },
  58446. {
  58447. name: "Mega",
  58448. height: math.unit(40, "km")
  58449. },
  58450. {
  58451. name: "Giga",
  58452. height: math.unit(300, "km")
  58453. },
  58454. {
  58455. name: "Extra Giga",
  58456. height: math.unit(5000, "km")
  58457. },
  58458. {
  58459. name: "Small Terra",
  58460. height: math.unit(10e3, "km")
  58461. },
  58462. {
  58463. name: "Terra",
  58464. height: math.unit(3e5, "km")
  58465. },
  58466. {
  58467. name: "Galactic",
  58468. height: math.unit(369950, "lightyears")
  58469. },
  58470. ]
  58471. ))
  58472. characterMakers.push(() => makeCharacter(
  58473. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58474. {
  58475. front: {
  58476. height: math.unit(2.5, "meters"),
  58477. weight: math.unit(230, "lb"),
  58478. name: "Front",
  58479. image: {
  58480. source: "./media/characters/tarken/front.svg",
  58481. extra: 764/720,
  58482. bottom: 49/813
  58483. }
  58484. },
  58485. back: {
  58486. height: math.unit(2.5, "meters"),
  58487. weight: math.unit(230, "lb"),
  58488. name: "Back",
  58489. image: {
  58490. source: "./media/characters/tarken/back.svg",
  58491. extra: 756/720,
  58492. bottom: 35/791
  58493. }
  58494. },
  58495. frontNsfw: {
  58496. height: math.unit(2.5, "meters"),
  58497. weight: math.unit(230, "lb"),
  58498. name: "Front (NSFW)",
  58499. image: {
  58500. source: "./media/characters/tarken/front-nsfw.svg",
  58501. extra: 764/720,
  58502. bottom: 49/813
  58503. }
  58504. },
  58505. backNsfw: {
  58506. height: math.unit(2.5, "meters"),
  58507. weight: math.unit(230, "lb"),
  58508. name: "Back (NSFW)",
  58509. image: {
  58510. source: "./media/characters/tarken/back-nsfw.svg",
  58511. extra: 756/720,
  58512. bottom: 35/791
  58513. }
  58514. },
  58515. head: {
  58516. height: math.unit(2.22, "feet"),
  58517. name: "Head",
  58518. image: {
  58519. source: "./media/characters/tarken/head.svg"
  58520. }
  58521. },
  58522. tail: {
  58523. height: math.unit(5.25, "feet"),
  58524. name: "Tail",
  58525. image: {
  58526. source: "./media/characters/tarken/tail.svg"
  58527. }
  58528. },
  58529. dick: {
  58530. height: math.unit(1.95, "feet"),
  58531. name: "Dick",
  58532. image: {
  58533. source: "./media/characters/tarken/dick.svg"
  58534. }
  58535. },
  58536. hand: {
  58537. height: math.unit(1.78, "feet"),
  58538. name: "Hand",
  58539. image: {
  58540. source: "./media/characters/tarken/hand.svg"
  58541. }
  58542. },
  58543. beam: {
  58544. height: math.unit(1.5, "feet"),
  58545. name: "Beam",
  58546. image: {
  58547. source: "./media/characters/tarken/beam.svg"
  58548. }
  58549. },
  58550. },
  58551. [
  58552. {
  58553. name: "Original Size",
  58554. height: math.unit(2.5, "meters")
  58555. },
  58556. {
  58557. name: "Macro",
  58558. height: math.unit(150, "meters"),
  58559. default: true
  58560. },
  58561. {
  58562. name: "Macro+",
  58563. height: math.unit(300, "meters")
  58564. },
  58565. {
  58566. name: "Mega",
  58567. height: math.unit(2, "km")
  58568. },
  58569. {
  58570. name: "Mega+",
  58571. height: math.unit(35, "km")
  58572. },
  58573.  {
  58574. name: "Mega++",
  58575. height: math.unit(60, "km")
  58576. },
  58577. {
  58578. name: "Giga",
  58579. height: math.unit(200, "km")
  58580. },
  58581. {
  58582. name: "Giga+",
  58583. height: math.unit(2500, "km")
  58584. },
  58585. {
  58586. name: "Giga++",
  58587. height: math.unit(6600, "km")
  58588. },
  58589. {
  58590. name: "Terra",
  58591. height: math.unit(20000, "km")
  58592. },
  58593. {
  58594. name: "Terra+",
  58595. height: math.unit(300000, "km")
  58596. },
  58597. ]
  58598. ))
  58599. characterMakers.push(() => makeCharacter(
  58600. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58601. {
  58602. magpie_dressed: {
  58603. height: math.unit(1.7, "meters"),
  58604. weight: math.unit(70, "kg"),
  58605. name: "Dressed",
  58606. image: {
  58607. source: "./media/characters/otreus/magpie-dressed.svg",
  58608. extra: 691/672,
  58609. bottom: 116/807
  58610. },
  58611. form: "magpie",
  58612. default: true
  58613. },
  58614. magpie_nude: {
  58615. height: math.unit(1.7, "meters"),
  58616. weight: math.unit(70, "kg"),
  58617. name: "Nude",
  58618. image: {
  58619. source: "./media/characters/otreus/magpie-nude.svg",
  58620. extra: 691/672,
  58621. bottom: 116/807
  58622. },
  58623. form: "magpie",
  58624. },
  58625. magpie_dressedLewd: {
  58626. height: math.unit(1.7, "meters"),
  58627. weight: math.unit(70, "kg"),
  58628. name: "Dressed (Lewd)",
  58629. image: {
  58630. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58631. extra: 691/672,
  58632. bottom: 116/807
  58633. },
  58634. form: "magpie",
  58635. },
  58636. magpie_nudeLewd: {
  58637. height: math.unit(1.7, "meters"),
  58638. weight: math.unit(70, "kg"),
  58639. name: "Nude (Lewd)",
  58640. image: {
  58641. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58642. extra: 691/672,
  58643. bottom: 116/807
  58644. },
  58645. form: "magpie",
  58646. },
  58647. magpie_leftFoot: {
  58648. height: math.unit(1.58, "feet"),
  58649. name: "Left Foot",
  58650. image: {
  58651. source: "./media/characters/otreus/magpie-left-foot.svg"
  58652. },
  58653. form: "magpie",
  58654. },
  58655. magpie_rightFoot: {
  58656. height: math.unit(1.58, "feet"),
  58657. name: "Right Foot",
  58658. image: {
  58659. source: "./media/characters/otreus/magpie-right-foot.svg"
  58660. },
  58661. form: "magpie",
  58662. },
  58663. magpie_wingspan: {
  58664. height: math.unit(2, "meters"),
  58665. weight: math.unit(70, "kg"),
  58666. name: "Wingspan",
  58667. image: {
  58668. source: "./media/characters/otreus/magpie-wingspan.svg"
  58669. },
  58670. extraAttributes: {
  58671. "wingspan": {
  58672. name: "Wingspan",
  58673. power: 1,
  58674. type: "length",
  58675. base: math.unit(3.35, "meters")
  58676. },
  58677. },
  58678. form: "magpie",
  58679. },
  58680. hippogriff_dressed: {
  58681. height: math.unit(1.7, "meters"),
  58682. weight: math.unit(70, "kg"),
  58683. name: "Dressed",
  58684. image: {
  58685. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58686. extra: 710/689,
  58687. bottom: 67/777
  58688. },
  58689. form: "hippogriff",
  58690. default: true
  58691. },
  58692. hippogriff_nude: {
  58693. height: math.unit(1.7, "meters"),
  58694. weight: math.unit(70, "kg"),
  58695. name: "Nude",
  58696. image: {
  58697. source: "./media/characters/otreus/hippogriff-nude.svg",
  58698. extra: 710/689,
  58699. bottom: 67/777
  58700. },
  58701. form: "hippogriff",
  58702. },
  58703. hippogriff_dressedLewd: {
  58704. height: math.unit(1.7, "meters"),
  58705. weight: math.unit(70, "kg"),
  58706. name: "Dressed (Lewd)",
  58707. image: {
  58708. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58709. extra: 710/689,
  58710. bottom: 67/777
  58711. },
  58712. form: "hippogriff",
  58713. },
  58714. hippogriff_nudeLewd: {
  58715. height: math.unit(1.7, "meters"),
  58716. weight: math.unit(70, "kg"),
  58717. name: "Nude (Lewd)",
  58718. image: {
  58719. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58720. extra: 710/689,
  58721. bottom: 67/777
  58722. },
  58723. form: "hippogriff",
  58724. },
  58725. },
  58726. [
  58727. {
  58728. name: "Original Size",
  58729. height: math.unit(1.7, "meters"),
  58730. allForms: true
  58731. },
  58732. {
  58733. name: "Incognito Size",
  58734. height: math.unit(2, "meters"),
  58735. allForms: true
  58736. },
  58737. {
  58738. name: "Mega",
  58739. height: math.unit(2, "km"),
  58740. allForms: true
  58741. },
  58742. {
  58743. name: "Mega+",
  58744. height: math.unit(40, "km"),
  58745. allForms: true
  58746. },
  58747. {
  58748. name: "Giga",
  58749. height: math.unit(250, "km"),
  58750. allForms: true
  58751. },
  58752. {
  58753. name: "Giga+",
  58754. height: math.unit(3000, "km"),
  58755. allForms: true
  58756. },
  58757. {
  58758. name: "Terra",
  58759. height: math.unit(20000, "km"),
  58760. allForms: true
  58761. },
  58762. {
  58763. name: "Solar (Home Size)",
  58764. height: math.unit(3e6, "km"),
  58765. allForms: true,
  58766. default: true
  58767. },
  58768. ],
  58769. {
  58770. "magpie": {
  58771. name: "Magpie",
  58772. default: true
  58773. },
  58774. "hippogriff": {
  58775. name: "Hippogriff",
  58776. },
  58777. }
  58778. ))
  58779. characterMakers.push(() => makeCharacter(
  58780. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58781. {
  58782. frontDressed: {
  58783. height: math.unit(1.8, "meters"),
  58784. weight: math.unit(90, "kg"),
  58785. name: "Front (Dressed)",
  58786. image: {
  58787. source: "./media/characters/thalia/front-dressed.svg",
  58788. extra: 478/402,
  58789. bottom: 55/533
  58790. }
  58791. },
  58792. backDressed: {
  58793. height: math.unit(1.8, "meters"),
  58794. weight: math.unit(90, "kg"),
  58795. name: "Back (Dressed)",
  58796. image: {
  58797. source: "./media/characters/thalia/back-dressed.svg",
  58798. extra: 500/424,
  58799. bottom: 15/515
  58800. }
  58801. },
  58802. frontNude: {
  58803. height: math.unit(1.8, "meters"),
  58804. weight: math.unit(90, "kg"),
  58805. name: "Front (Nude)",
  58806. image: {
  58807. source: "./media/characters/thalia/front-nude.svg",
  58808. extra: 478/402,
  58809. bottom: 55/533
  58810. }
  58811. },
  58812. backNude: {
  58813. height: math.unit(1.8, "meters"),
  58814. weight: math.unit(90, "kg"),
  58815. name: "Back (Nude)",
  58816. image: {
  58817. source: "./media/characters/thalia/back-nude.svg",
  58818. extra: 500/424,
  58819. bottom: 15/515
  58820. }
  58821. },
  58822. },
  58823. [
  58824. {
  58825. name: "Incognito",
  58826. height: math.unit(3, "meters")
  58827. },
  58828. {
  58829. name: "Macro",
  58830. height: math.unit(500, "meters")
  58831. },
  58832. {
  58833. name: "Mega",
  58834. height: math.unit(5, "km")
  58835. },
  58836. {
  58837. name: "Mega+",
  58838. height: math.unit(30, "km")
  58839. },
  58840. {
  58841. name: "Giga",
  58842. height: math.unit(350, "km")
  58843. },
  58844. {
  58845. name: "Giga+",
  58846. height: math.unit(4000, "km")
  58847. },
  58848. {
  58849. name: "Terra",
  58850. height: math.unit(35000, "km")
  58851. },
  58852. {
  58853. name: "Original Size",
  58854. height: math.unit(130000, "km")
  58855. },
  58856. {
  58857. name: "Solar (Home Size)",
  58858. height: math.unit(4e6, "km"),
  58859. default: true
  58860. },
  58861. ]
  58862. ))
  58863. characterMakers.push(() => makeCharacter(
  58864. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58865. {
  58866. front: {
  58867. height: math.unit(1.8, "meters"),
  58868. weight: math.unit(95, "kg"),
  58869. name: "Front",
  58870. image: {
  58871. source: "./media/characters/shango/front.svg",
  58872. extra: 1925/1774,
  58873. bottom: 67/1992
  58874. }
  58875. },
  58876. back: {
  58877. height: math.unit(1.8, "meters"),
  58878. weight: math.unit(95, "kg"),
  58879. name: "Back",
  58880. image: {
  58881. source: "./media/characters/shango/back.svg",
  58882. extra: 1915/1766,
  58883. bottom: 52/1967
  58884. }
  58885. },
  58886. frontLewd: {
  58887. height: math.unit(1.8, "meters"),
  58888. weight: math.unit(95, "kg"),
  58889. name: "Front (Lewd)",
  58890. image: {
  58891. source: "./media/characters/shango/front-lewd.svg",
  58892. extra: 1925/1774,
  58893. bottom: 67/1992
  58894. }
  58895. },
  58896. backLewd: {
  58897. height: math.unit(1.8, "meters"),
  58898. weight: math.unit(95, "kg"),
  58899. name: "Back (Lewd)",
  58900. image: {
  58901. source: "./media/characters/shango/back-lewd.svg",
  58902. extra: 1915/1766,
  58903. bottom: 52/1967
  58904. }
  58905. },
  58906. maw: {
  58907. height: math.unit(1.64, "feet"),
  58908. name: "Maw",
  58909. image: {
  58910. source: "./media/characters/shango/maw.svg"
  58911. }
  58912. },
  58913. dick: {
  58914. height: math.unit(2.14, "feet"),
  58915. name: "Dick",
  58916. image: {
  58917. source: "./media/characters/shango/dick.svg"
  58918. }
  58919. },
  58920. },
  58921. [
  58922. {
  58923. name: "Incognito",
  58924. height: math.unit(1.8, "meters")
  58925. },
  58926. {
  58927. name: "Home Size",
  58928. height: math.unit(60, "meters"),
  58929. default: true
  58930. },
  58931. {
  58932. name: "Macro",
  58933. height: math.unit(450, "meters")
  58934. },
  58935. {
  58936. name: "Mega",
  58937. height: math.unit(6, "km")
  58938. },
  58939. {
  58940. name: "Mega+",
  58941. height: math.unit(35, "km")
  58942. },
  58943. {
  58944. name: "Giga",
  58945. height: math.unit(500, "km")
  58946. },
  58947. {
  58948. name: "Giga+",
  58949. height: math.unit(5000, "km")
  58950. },
  58951. {
  58952. name: "Terra",
  58953. height: math.unit(60000, "km")
  58954. },
  58955. {
  58956. name: "Terra+",
  58957. height: math.unit(400000, "km")
  58958. },
  58959. ]
  58960. ))
  58961. characterMakers.push(() => makeCharacter(
  58962. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58963. {
  58964. front: {
  58965. height: math.unit(2, "meters"),
  58966. weight: math.unit(95, "kg"),
  58967. name: "Front",
  58968. image: {
  58969. source: "./media/characters/osiris-gryphon/front.svg",
  58970. extra: 1508/1313,
  58971. bottom: 87/1595
  58972. }
  58973. },
  58974. back: {
  58975. height: math.unit(2, "meters"),
  58976. weight: math.unit(95, "kg"),
  58977. name: "Back",
  58978. image: {
  58979. source: "./media/characters/osiris-gryphon/back.svg",
  58980. extra: 1436/1309,
  58981. bottom: 64/1500
  58982. }
  58983. },
  58984. frontLewd: {
  58985. height: math.unit(2, "meters"),
  58986. weight: math.unit(95, "kg"),
  58987. name: "Front-lewd",
  58988. image: {
  58989. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58990. extra: 1508/1313,
  58991. bottom: 87/1595
  58992. }
  58993. },
  58994. wing: {
  58995. height: math.unit(6.3333, "feet"),
  58996. name: "Wing",
  58997. image: {
  58998. source: "./media/characters/osiris-gryphon/wing.svg"
  58999. }
  59000. },
  59001. },
  59002. [
  59003. {
  59004. name: "Incognito",
  59005. height: math.unit(2, "meters")
  59006. },
  59007. {
  59008. name: "Home Size",
  59009. height: math.unit(30, "meters"),
  59010. default: true
  59011. },
  59012. {
  59013. name: "Macro",
  59014. height: math.unit(100, "meters")
  59015. },
  59016. {
  59017. name: "Macro+",
  59018. height: math.unit(350, "meters")
  59019. },
  59020. {
  59021. name: "Mega",
  59022. height: math.unit(40, "km")
  59023. },
  59024. {
  59025. name: "Giga",
  59026. height: math.unit(300, "km")
  59027. },
  59028. {
  59029. name: "Giga+",
  59030. height: math.unit(2000, "km")
  59031. },
  59032. {
  59033. name: "Terra",
  59034. height: math.unit(30000, "km")
  59035. },
  59036. ]
  59037. ))
  59038. characterMakers.push(() => makeCharacter(
  59039. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59040. {
  59041. front: {
  59042. height: math.unit(2.5, "meters"),
  59043. weight: math.unit(200, "kg"),
  59044. name: "Front",
  59045. image: {
  59046. source: "./media/characters/atlas-dragon/front.svg",
  59047. extra: 745/462,
  59048. bottom: 36/781
  59049. }
  59050. },
  59051. back: {
  59052. height: math.unit(2.5, "meters"),
  59053. weight: math.unit(200, "kg"),
  59054. name: "Back",
  59055. image: {
  59056. source: "./media/characters/atlas-dragon/back.svg",
  59057. extra: 848/822,
  59058. bottom: 57/905
  59059. }
  59060. },
  59061. frontLewd: {
  59062. height: math.unit(2.5, "meters"),
  59063. weight: math.unit(200, "kg"),
  59064. name: "Front (Lewd)",
  59065. image: {
  59066. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59067. extra: 745/462,
  59068. bottom: 36/781
  59069. }
  59070. },
  59071. backLewd: {
  59072. height: math.unit(2.5, "meters"),
  59073. weight: math.unit(200, "kg"),
  59074. name: "Back (Lewd)",
  59075. image: {
  59076. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59077. extra: 848/822,
  59078. bottom: 57/905
  59079. }
  59080. },
  59081. },
  59082. [
  59083. {
  59084. name: "Incognito",
  59085. height: math.unit(2.5, "meters")
  59086. },
  59087. {
  59088. name: "Small Macro",
  59089. height: math.unit(50, "meters")
  59090. },
  59091. {
  59092. name: "Macro",
  59093. height: math.unit(350, "meters")
  59094. },
  59095. {
  59096. name: "Mega",
  59097. height: math.unit(5.5, "kilometers")
  59098. },
  59099. {
  59100. name: "Mega+",
  59101. height: math.unit(50, "km")
  59102. },
  59103. {
  59104. name: "Giga",
  59105. height: math.unit(350, "km")
  59106. },
  59107. {
  59108. name: "Giga+",
  59109. height: math.unit(2000, "km")
  59110. },
  59111. {
  59112. name: "Giga++",
  59113. height: math.unit(6500, "km")
  59114. },
  59115. {
  59116. name: "Terra",
  59117. height: math.unit(30000, "km")
  59118. },
  59119. {
  59120. name: "Terra+",
  59121. height: math.unit(250000, "km")
  59122. },
  59123. {
  59124. name: "True Size",
  59125. height: math.unit(100, "multiverses"),
  59126. default: true
  59127. },
  59128. ]
  59129. ))
  59130. characterMakers.push(() => makeCharacter(
  59131. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59132. {
  59133. front: {
  59134. height: math.unit(1.8, "m"),
  59135. weight: math.unit(120, "kg"),
  59136. name: "Front",
  59137. image: {
  59138. source: "./media/characters/chey/front.svg",
  59139. extra: 1359/1270,
  59140. bottom: 18/1377
  59141. }
  59142. },
  59143. arm: {
  59144. height: math.unit(2.05, "feet"),
  59145. name: "Arm",
  59146. image: {
  59147. source: "./media/characters/chey/arm.svg"
  59148. }
  59149. },
  59150. head: {
  59151. height: math.unit(1.89, "feet"),
  59152. name: "Head",
  59153. image: {
  59154. source: "./media/characters/chey/head.svg"
  59155. }
  59156. },
  59157. },
  59158. [
  59159. {
  59160. name: "Original Size",
  59161. height: math.unit(5, "cm")
  59162. },
  59163. {
  59164. name: "Incognito Size",
  59165. height: math.unit(2.4, "m")
  59166. },
  59167. {
  59168. name: "Home Size",
  59169. height: math.unit(200, "meters"),
  59170. default: true
  59171. },
  59172. {
  59173. name: "Mega",
  59174. height: math.unit(2, "km")
  59175. },
  59176. {
  59177. name: "Giga (Preferred Size)",
  59178. height: math.unit(2000, "km")
  59179. },
  59180. {
  59181. name: "Giga+",
  59182. height: math.unit(6000, "km")
  59183. },
  59184. {
  59185. name: "Terra",
  59186. height: math.unit(17000, "km")
  59187. },
  59188. {
  59189. name: "Terra+",
  59190. height: math.unit(75000, "km")
  59191. },
  59192. {
  59193. name: "Terra++",
  59194. height: math.unit(225000, "km")
  59195. },
  59196. ]
  59197. ))
  59198. characterMakers.push(() => makeCharacter(
  59199. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59200. {
  59201. side: {
  59202. height: math.unit(7.8, "meters"),
  59203. name: "Side",
  59204. image: {
  59205. source: "./media/characters/ragnarok/side.svg",
  59206. extra: 725/621,
  59207. bottom: 72/797
  59208. }
  59209. },
  59210. },
  59211. [
  59212. {
  59213. name: "Normal",
  59214. height: math.unit(7.8, "meters"),
  59215. default: true
  59216. },
  59217. ]
  59218. ))
  59219. characterMakers.push(() => makeCharacter(
  59220. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59221. {
  59222. hyena_front: {
  59223. height: math.unit(2.1, "meters"),
  59224. weight: math.unit(110, "kg"),
  59225. name: "Front",
  59226. image: {
  59227. source: "./media/characters/nima/hyena-front.svg",
  59228. extra: 1904/1796,
  59229. bottom: 67/1971
  59230. },
  59231. form: "hyena",
  59232. },
  59233. hyena_back: {
  59234. height: math.unit(2.1, "meters"),
  59235. weight: math.unit(110, "kg"),
  59236. name: "Back",
  59237. image: {
  59238. source: "./media/characters/nima/hyena-back.svg",
  59239. extra: 1964/1884,
  59240. bottom: 35/1999
  59241. },
  59242. form: "hyena",
  59243. },
  59244. shark_front: {
  59245. height: math.unit(1.95, "meters"),
  59246. weight: math.unit(110, "kg"),
  59247. name: "Front",
  59248. image: {
  59249. source: "./media/characters/nima/shark-front.svg",
  59250. extra: 2238/2013,
  59251. bottom: 0/223
  59252. },
  59253. form: "shark",
  59254. },
  59255. paw: {
  59256. height: math.unit(1, "feet"),
  59257. name: "Paw",
  59258. image: {
  59259. source: "./media/characters/nima/paw.svg"
  59260. }
  59261. },
  59262. circlet: {
  59263. height: math.unit(0.3, "feet"),
  59264. name: "Circlet",
  59265. image: {
  59266. source: "./media/characters/nima/circlet.svg"
  59267. }
  59268. },
  59269. necklace: {
  59270. height: math.unit(1.2, "feet"),
  59271. name: "Necklace",
  59272. image: {
  59273. source: "./media/characters/nima/necklace.svg"
  59274. }
  59275. },
  59276. bracelet: {
  59277. height: math.unit(0.51, "feet"),
  59278. name: "Bracelet",
  59279. image: {
  59280. source: "./media/characters/nima/bracelet.svg"
  59281. }
  59282. },
  59283. armband: {
  59284. height: math.unit(1.3, "feet"),
  59285. name: "Armband",
  59286. image: {
  59287. source: "./media/characters/nima/armband.svg"
  59288. }
  59289. },
  59290. },
  59291. [
  59292. {
  59293. name: "Incognito",
  59294. height: math.unit(2.1, "meters"),
  59295. allForms: true
  59296. },
  59297. {
  59298. name: "Small Macro",
  59299. height: math.unit(50, "meters"),
  59300. allForms: true
  59301. },
  59302. {
  59303. name: "Macro",
  59304. height: math.unit(200, "meters"),
  59305. allForms: true
  59306. },
  59307. {
  59308. name: "Mega",
  59309. height: math.unit(2.5, "km"),
  59310. allForms: true
  59311. },
  59312. {
  59313. name: "Mega+",
  59314. height: math.unit(30, "km"),
  59315. allForms: true
  59316. },
  59317. {
  59318. name: "Giga (Home Size)",
  59319. height: math.unit(400, "km"),
  59320. allForms: true,
  59321. default: true
  59322. },
  59323. {
  59324. name: "Giga+",
  59325. height: math.unit(2500, "km"),
  59326. allForms: true
  59327. },
  59328. {
  59329. name: "Giga++",
  59330. height: math.unit(8000, "km"),
  59331. allForms: true
  59332. },
  59333. {
  59334. name: "Terra",
  59335. height: math.unit(20000, "km"),
  59336. allForms: true
  59337. },
  59338. {
  59339. name: "Terra+",
  59340. height: math.unit(70000, "km"),
  59341. allForms: true
  59342. },
  59343. {
  59344. name: "Terra++",
  59345. height: math.unit(600000, "km"),
  59346. allForms: true
  59347. },
  59348. {
  59349. name: "Galactic",
  59350. height: math.unit(40, "galaxies"),
  59351. allForms: true
  59352. },
  59353. {
  59354. name: "Universal",
  59355. height: math.unit(40, "universes"),
  59356. allForms: true
  59357. },
  59358. ],
  59359. {
  59360. "hyena": {
  59361. name: "Hyena",
  59362. default: true
  59363. },
  59364. "shark": {
  59365. name: "Shark",
  59366. },
  59367. }
  59368. ))
  59369. characterMakers.push(() => makeCharacter(
  59370. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59371. {
  59372. anthro_front: {
  59373. height: math.unit(1.5, "meters"),
  59374. name: "Front",
  59375. image: {
  59376. source: "./media/characters/adelaide/anthro-front.svg",
  59377. extra: 860/783,
  59378. bottom: 60/920
  59379. },
  59380. form: "anthro",
  59381. default: true
  59382. },
  59383. hand: {
  59384. height: math.unit(0.65, "feet"),
  59385. name: "Hand",
  59386. image: {
  59387. source: "./media/characters/adelaide/hand.svg"
  59388. },
  59389. form: "anthro"
  59390. },
  59391. foot: {
  59392. height: math.unit(1.38 * 259 / 314, "feet"),
  59393. name: "Foot",
  59394. image: {
  59395. source: "./media/characters/adelaide/foot.svg",
  59396. extra: 259/259,
  59397. bottom: 55/314
  59398. },
  59399. form: "anthro"
  59400. },
  59401. feather: {
  59402. height: math.unit(0.85, "feet"),
  59403. name: "Feather",
  59404. image: {
  59405. source: "./media/characters/adelaide/feather.svg"
  59406. },
  59407. form: "anthro"
  59408. },
  59409. feral_side: {
  59410. height: math.unit(1, "meters"),
  59411. name: "Side",
  59412. image: {
  59413. source: "./media/characters/adelaide/feral-side.svg",
  59414. extra: 550/467,
  59415. bottom: 37/587
  59416. },
  59417. form: "feral",
  59418. default: true
  59419. },
  59420. feral_hand: {
  59421. height: math.unit(0.58, "feet"),
  59422. name: "Hand",
  59423. image: {
  59424. source: "./media/characters/adelaide/hand.svg"
  59425. },
  59426. form: "feral"
  59427. },
  59428. feral_foot: {
  59429. height: math.unit(1.2 * 259 / 314, "feet"),
  59430. name: "Foot",
  59431. image: {
  59432. source: "./media/characters/adelaide/foot.svg",
  59433. extra: 259/259,
  59434. bottom: 55/314
  59435. },
  59436. form: "feral"
  59437. },
  59438. feral_feather: {
  59439. height: math.unit(0.63, "feet"),
  59440. name: "Feather",
  59441. image: {
  59442. source: "./media/characters/adelaide/feather.svg"
  59443. },
  59444. form: "feral"
  59445. },
  59446. },
  59447. [
  59448. {
  59449. name: "Normal",
  59450. height: math.unit(1.5, "meters"),
  59451. form: "anthro",
  59452. default: true
  59453. },
  59454. {
  59455. name: "Normal",
  59456. height: math.unit(1, "meters"),
  59457. form: "feral",
  59458. default: true
  59459. },
  59460. ],
  59461. {
  59462. "anthro": {
  59463. name: "Anthro",
  59464. default: true
  59465. },
  59466. "feral": {
  59467. name: "Feral",
  59468. },
  59469. }
  59470. ))
  59471. characterMakers.push(() => makeCharacter(
  59472. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59473. {
  59474. front: {
  59475. height: math.unit(2.5, "meters"),
  59476. name: "Front",
  59477. image: {
  59478. source: "./media/characters/goa/front.svg",
  59479. extra: 1109/1013,
  59480. bottom: 150/1259
  59481. }
  59482. },
  59483. },
  59484. [
  59485. {
  59486. name: "Normal",
  59487. height: math.unit(2.5, "meters"),
  59488. default: true
  59489. },
  59490. ]
  59491. ))
  59492. characterMakers.push(() => makeCharacter(
  59493. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59494. {
  59495. front: {
  59496. height: math.unit(2, "meters"),
  59497. weight: math.unit(100, "kg"),
  59498. name: "Front",
  59499. image: {
  59500. source: "./media/characters/kiki-weavile/front.svg",
  59501. extra: 357/332,
  59502. bottom: 60/417
  59503. }
  59504. },
  59505. },
  59506. [
  59507. {
  59508. name: "Normal",
  59509. height: math.unit(2, "meters"),
  59510. default: true
  59511. },
  59512. ]
  59513. ))
  59514. characterMakers.push(() => makeCharacter(
  59515. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59516. {
  59517. side: {
  59518. height: math.unit(1.6, "meters"),
  59519. name: "Side",
  59520. image: {
  59521. source: "./media/characters/liza/side.svg",
  59522. extra: 943/915,
  59523. bottom: 72/1015
  59524. }
  59525. },
  59526. },
  59527. [
  59528. {
  59529. name: "Normal",
  59530. height: math.unit(1.6, "meters"),
  59531. default: true
  59532. },
  59533. ]
  59534. ))
  59535. characterMakers.push(() => makeCharacter(
  59536. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59537. {
  59538. side: {
  59539. height: math.unit(2.5, "meters"),
  59540. preyCapacity: math.unit(1, "people"),
  59541. name: "Side",
  59542. image: {
  59543. source: "./media/characters/persephone-sweetbreath/side.svg",
  59544. extra: 796/700,
  59545. bottom: 44/840
  59546. }
  59547. },
  59548. sideVore: {
  59549. height: math.unit(2.5, "meters"),
  59550. preyCapacity: math.unit(1, "people"),
  59551. name: "Side (Full)",
  59552. image: {
  59553. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59554. extra: 796/700,
  59555. bottom: 44/840
  59556. }
  59557. },
  59558. },
  59559. [
  59560. {
  59561. name: "Normal",
  59562. height: math.unit(2.5, "meters"),
  59563. default: true
  59564. },
  59565. ]
  59566. ))
  59567. characterMakers.push(() => makeCharacter(
  59568. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59569. {
  59570. front: {
  59571. height: math.unit(32, "meters"),
  59572. name: "Front",
  59573. image: {
  59574. source: "./media/characters/pierce/front.svg",
  59575. extra: 1695/1475,
  59576. bottom: 185/1880
  59577. }
  59578. },
  59579. side: {
  59580. height: math.unit(32, "meters"),
  59581. name: "Side",
  59582. image: {
  59583. source: "./media/characters/pierce/side.svg",
  59584. extra: 974/859,
  59585. bottom: 43/1017
  59586. }
  59587. },
  59588. frontWingless: {
  59589. height: math.unit(32, "meters"),
  59590. name: "Front (Wingless)",
  59591. image: {
  59592. source: "./media/characters/pierce/front-wingless.svg",
  59593. extra: 1695/1475,
  59594. bottom: 185/1880
  59595. }
  59596. },
  59597. sideWingless: {
  59598. height: math.unit(32, "meters"),
  59599. name: "Side (Wingless)",
  59600. image: {
  59601. source: "./media/characters/pierce/side-wingless.svg",
  59602. extra: 974/859,
  59603. bottom: 43/1017
  59604. }
  59605. },
  59606. maw: {
  59607. height: math.unit(19.3, "meters"),
  59608. name: "Maw",
  59609. image: {
  59610. source: "./media/characters/pierce/maw.svg"
  59611. }
  59612. },
  59613. },
  59614. [
  59615. {
  59616. name: "Small",
  59617. height: math.unit(8.5, "meters")
  59618. },
  59619. {
  59620. name: "Normal",
  59621. height: math.unit(32, "meters"),
  59622. default: true
  59623. },
  59624. ]
  59625. ))
  59626. characterMakers.push(() => makeCharacter(
  59627. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59628. {
  59629. front: {
  59630. height: math.unit(2.3, "meters"),
  59631. weight: math.unit(165, "kg"),
  59632. name: "Front",
  59633. image: {
  59634. source: "./media/characters/shira/front.svg",
  59635. extra: 924/919,
  59636. bottom: 17/941
  59637. },
  59638. form: "cobra",
  59639. default: true
  59640. },
  59641. back: {
  59642. height: math.unit(2.3, "meters"),
  59643. weight: math.unit(165, "kg"),
  59644. name: "Back",
  59645. image: {
  59646. source: "./media/characters/shira/back.svg",
  59647. extra: 928/922,
  59648. bottom: 18/946
  59649. },
  59650. form: "cobra"
  59651. },
  59652. frontLewd: {
  59653. height: math.unit(2.3, "meters"),
  59654. weight: math.unit(165, "kg"),
  59655. name: "Front (Lewd)",
  59656. image: {
  59657. source: "./media/characters/shira/front-lewd.svg",
  59658. extra: 924/919,
  59659. bottom: 17/941
  59660. },
  59661. form: "cobra"
  59662. },
  59663. backLewd: {
  59664. height: math.unit(2.3, "meters"),
  59665. weight: math.unit(165, "kg"),
  59666. name: "Back (Lewd)",
  59667. image: {
  59668. source: "./media/characters/shira/back-lewd.svg",
  59669. extra: 928/922,
  59670. bottom: 18/946
  59671. },
  59672. form: "cobra"
  59673. },
  59674. maw: {
  59675. height: math.unit(1.14, "feet"),
  59676. name: "Maw",
  59677. image: {
  59678. source: "./media/characters/shira/maw.svg"
  59679. },
  59680. form: "cobra"
  59681. },
  59682. magma_front: {
  59683. height: math.unit(2.3, "meters"),
  59684. weight: math.unit(165, "kg"),
  59685. name: "Front",
  59686. image: {
  59687. source: "./media/characters/shira/magma-front.svg",
  59688. extra: 1870/1693,
  59689. bottom: 24/1894
  59690. },
  59691. form: "magma",
  59692. },
  59693. magma_back: {
  59694. height: math.unit(2.3, "meters"),
  59695. weight: math.unit(165, "kg"),
  59696. name: "Back",
  59697. image: {
  59698. source: "./media/characters/shira/magma-back.svg",
  59699. extra: 1918/1756,
  59700. bottom: 46/1964
  59701. },
  59702. form: "magma",
  59703. },
  59704. },
  59705. [
  59706. {
  59707. name: "Incognito",
  59708. height: math.unit(2.3, "meters"),
  59709. allForms: true
  59710. },
  59711. {
  59712. name: "Home Size",
  59713. height: math.unit(150, "meters"),
  59714. default: true,
  59715. allForms: true
  59716. },
  59717. {
  59718. name: "Macro",
  59719. height: math.unit(2, "km"),
  59720. allForms: true
  59721. },
  59722. {
  59723. name: "Mega",
  59724. height: math.unit(30, "km"),
  59725. allForms: true
  59726. },
  59727. {
  59728. name: "Giga",
  59729. height: math.unit(450, "km"),
  59730. allForms: true
  59731. },
  59732. {
  59733. name: "Giga+",
  59734. height: math.unit(3000, "km"),
  59735. allForms: true
  59736. },
  59737. {
  59738. name: "Giga++",
  59739. height: math.unit(6000, "km"),
  59740. allForms: true
  59741. },
  59742. {
  59743. name: "Terra",
  59744. height: math.unit(80000, "km"),
  59745. allForms: true
  59746. },
  59747. {
  59748. name: "Terra+",
  59749. height: math.unit(350000, "km"),
  59750. allForms: true
  59751. },
  59752. {
  59753. name: "Solar",
  59754. height: math.unit(1e6, "km"),
  59755. allForms: true
  59756. },
  59757. ],
  59758. {
  59759. "cobra": {
  59760. name: "Cobra",
  59761. default: true
  59762. },
  59763. "magma": {
  59764. name: "Magma Dragon",
  59765. },
  59766. }
  59767. ))
  59768. characterMakers.push(() => makeCharacter(
  59769. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59770. {
  59771. front: {
  59772. height: math.unit(2, "meters"),
  59773. weight: math.unit(160, "kg"),
  59774. name: "Front",
  59775. image: {
  59776. source: "./media/characters/daxerios/front.svg",
  59777. extra: 1334/1277,
  59778. bottom: 45/1379
  59779. }
  59780. },
  59781. frontLewd: {
  59782. height: math.unit(2, "meters"),
  59783. weight: math.unit(160, "kg"),
  59784. name: "Front (Lewd)",
  59785. image: {
  59786. source: "./media/characters/daxerios/front-lewd.svg",
  59787. extra: 1334/1277,
  59788. bottom: 45/1379
  59789. }
  59790. },
  59791. dick: {
  59792. height: math.unit(2.35, "feet"),
  59793. name: "Dick",
  59794. image: {
  59795. source: "./media/characters/daxerios/dick.svg"
  59796. }
  59797. },
  59798. },
  59799. [
  59800. {
  59801. name: "\"Small\"",
  59802. height: math.unit(5, "meters")
  59803. },
  59804. {
  59805. name: "Original Size",
  59806. height: math.unit(500, "meters"),
  59807. default: true
  59808. },
  59809. {
  59810. name: "Mega",
  59811. height: math.unit(2, "km")
  59812. },
  59813. {
  59814. name: "Mega+",
  59815. height: math.unit(35, "km")
  59816. },
  59817. {
  59818. name: "Giga",
  59819. height: math.unit(250, "km")
  59820. },
  59821. {
  59822. name: "Giga+",
  59823. height: math.unit(3000, "km")
  59824. },
  59825. {
  59826. name: "Terra",
  59827. height: math.unit(25000, "km")
  59828. },
  59829. {
  59830. name: "Terra+",
  59831. height: math.unit(300000, "km")
  59832. },
  59833. {
  59834. name: "Solar",
  59835. height: math.unit(1e6, "km")
  59836. },
  59837. ]
  59838. ))
  59839. characterMakers.push(() => makeCharacter(
  59840. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59841. {
  59842. front: {
  59843. height: math.unit(8 + 4/12, "feet"),
  59844. weight: math.unit(464, "lb"),
  59845. name: "Front",
  59846. image: {
  59847. source: "./media/characters/caveat/front.svg",
  59848. extra: 1861/1678,
  59849. bottom: 40/1901
  59850. }
  59851. },
  59852. },
  59853. [
  59854. {
  59855. name: "Normal",
  59856. height: math.unit(8 + 4/12, "feet"),
  59857. default: true
  59858. },
  59859. ]
  59860. ))
  59861. characterMakers.push(() => makeCharacter(
  59862. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59863. {
  59864. front: {
  59865. height: math.unit(12, "feet"),
  59866. weight: math.unit(1800, "lb"),
  59867. name: "Front",
  59868. image: {
  59869. source: "./media/characters/centbair/front.svg",
  59870. extra: 781/663,
  59871. bottom: 25/806
  59872. }
  59873. },
  59874. frontNsfw: {
  59875. height: math.unit(12, "feet"),
  59876. weight: math.unit(1800, "lb"),
  59877. name: "Front (NSFW)",
  59878. image: {
  59879. source: "./media/characters/centbair/front-nsfw.svg",
  59880. extra: 781/663,
  59881. bottom: 25/806
  59882. }
  59883. },
  59884. back: {
  59885. height: math.unit(12, "feet"),
  59886. weight: math.unit(1800, "lb"),
  59887. name: "Back",
  59888. image: {
  59889. source: "./media/characters/centbair/back.svg",
  59890. extra: 808/761,
  59891. bottom: 19/827
  59892. }
  59893. },
  59894. dick: {
  59895. height: math.unit(6.5, "feet"),
  59896. name: "Dick",
  59897. image: {
  59898. source: "./media/characters/centbair/dick.svg"
  59899. }
  59900. },
  59901. slit: {
  59902. height: math.unit(3.25, "feet"),
  59903. name: "Slit",
  59904. image: {
  59905. source: "./media/characters/centbair/slit.svg"
  59906. }
  59907. },
  59908. },
  59909. [
  59910. {
  59911. name: "Normal",
  59912. height: math.unit(12, "feet"),
  59913. default: true
  59914. },
  59915. ]
  59916. ))
  59917. characterMakers.push(() => makeCharacter(
  59918. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  59919. {
  59920. front: {
  59921. height: math.unit(5 + 7/12, "feet"),
  59922. name: "Front",
  59923. image: {
  59924. source: "./media/characters/andy/front.svg",
  59925. extra: 634/588,
  59926. bottom: 36/670
  59927. },
  59928. extraAttributes: {
  59929. "pawLength": {
  59930. name: "Paw Length",
  59931. power: 1,
  59932. type: "length",
  59933. base: math.unit(1, "feet")
  59934. },
  59935. }
  59936. },
  59937. side: {
  59938. height: math.unit(5 + 7/12, "feet"),
  59939. name: "Side",
  59940. image: {
  59941. source: "./media/characters/andy/side.svg",
  59942. extra: 641/596,
  59943. bottom: 34/675
  59944. },
  59945. extraAttributes: {
  59946. "pawLength": {
  59947. name: "Paw Length",
  59948. power: 1,
  59949. type: "length",
  59950. base: math.unit(1, "feet")
  59951. },
  59952. }
  59953. },
  59954. back: {
  59955. height: math.unit(5 + 7/12, "feet"),
  59956. name: "Back",
  59957. image: {
  59958. source: "./media/characters/andy/back.svg",
  59959. extra: 618/583,
  59960. bottom: 39/657
  59961. },
  59962. extraAttributes: {
  59963. "pawLength": {
  59964. name: "Paw Length",
  59965. power: 1,
  59966. type: "length",
  59967. base: math.unit(1, "feet")
  59968. },
  59969. }
  59970. },
  59971. paw: {
  59972. height: math.unit(1.13, "feet"),
  59973. name: "Paw",
  59974. image: {
  59975. source: "./media/characters/andy/paw.svg"
  59976. }
  59977. },
  59978. },
  59979. [
  59980. {
  59981. name: "Micro",
  59982. height: math.unit(4, "inches")
  59983. },
  59984. {
  59985. name: "Normal",
  59986. height: math.unit(5 + 7/12, "feet"),
  59987. default: true
  59988. },
  59989. {
  59990. name: "Macro",
  59991. height: math.unit(390.42, "feet")
  59992. },
  59993. ]
  59994. ))
  59995. characterMakers.push(() => makeCharacter(
  59996. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  59997. {
  59998. front: {
  59999. height: math.unit(7, "feet"),
  60000. weight: math.unit(250, "lb"),
  60001. name: "Front",
  60002. image: {
  60003. source: "./media/characters/vix-titan/front.svg",
  60004. extra: 460/428,
  60005. bottom: 15/475
  60006. },
  60007. extraAttributes: {
  60008. "pawWidth": {
  60009. name: "Paw Width",
  60010. power: 1,
  60011. type: "length",
  60012. base: math.unit(0.75, "feet")
  60013. },
  60014. }
  60015. },
  60016. },
  60017. [
  60018. {
  60019. name: "Normal",
  60020. height: math.unit(7, "feet"),
  60021. default: true
  60022. },
  60023. {
  60024. name: "Giant",
  60025. height: math.unit(1500, "feet")
  60026. },
  60027. {
  60028. name: "Mega",
  60029. height: math.unit(10, "miles")
  60030. },
  60031. {
  60032. name: "Giga",
  60033. height: math.unit(150, "miles")
  60034. },
  60035. {
  60036. name: "Tera",
  60037. height: math.unit(144000, "miles")
  60038. },
  60039. ]
  60040. ))
  60041. characterMakers.push(() => makeCharacter(
  60042. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60043. {
  60044. front: {
  60045. height: math.unit(6 + 2/12, "feet"),
  60046. name: "Front",
  60047. image: {
  60048. source: "./media/characters/reiku/front.svg",
  60049. extra: 1910/1757,
  60050. bottom: 103/2013
  60051. },
  60052. extraAttributes: {
  60053. "thighThickness": {
  60054. name: "Thigh Thickness",
  60055. power: 1,
  60056. type: "length",
  60057. base: math.unit(1.12, "feet")
  60058. },
  60059. "assThickness": {
  60060. name: "Ass Thickness",
  60061. power: 1,
  60062. type: "length",
  60063. base: math.unit(1.12*2, "feet")
  60064. },
  60065. }
  60066. },
  60067. side: {
  60068. height: math.unit(6 + 2/12, "feet"),
  60069. name: "Side",
  60070. image: {
  60071. source: "./media/characters/reiku/side.svg",
  60072. extra: 1846/1748,
  60073. bottom: 99/1945
  60074. },
  60075. extraAttributes: {
  60076. "thighThickness": {
  60077. name: "Thigh Thickness",
  60078. power: 1,
  60079. type: "length",
  60080. base: math.unit(1.12, "feet")
  60081. },
  60082. "assThickness": {
  60083. name: "Ass Thickness",
  60084. power: 1,
  60085. type: "length",
  60086. base: math.unit(1.12*2, "feet")
  60087. },
  60088. }
  60089. },
  60090. back: {
  60091. height: math.unit(6 + 2/12, "feet"),
  60092. name: "Back",
  60093. image: {
  60094. source: "./media/characters/reiku/back.svg",
  60095. extra: 1941/1786,
  60096. bottom: 34/1975
  60097. },
  60098. extraAttributes: {
  60099. "thighThickness": {
  60100. name: "Thigh Thickness",
  60101. power: 1,
  60102. type: "length",
  60103. base: math.unit(1.12, "feet")
  60104. },
  60105. "assThickness": {
  60106. name: "Ass Thickness",
  60107. power: 1,
  60108. type: "length",
  60109. base: math.unit(1.12*2, "feet")
  60110. },
  60111. }
  60112. },
  60113. head: {
  60114. height: math.unit(1.8, "feet"),
  60115. name: "Head",
  60116. image: {
  60117. source: "./media/characters/reiku/head.svg"
  60118. }
  60119. },
  60120. tailTop: {
  60121. height: math.unit(8.4, "feet"),
  60122. name: "Tail (Top)",
  60123. image: {
  60124. source: "./media/characters/reiku/tail-top.svg"
  60125. }
  60126. },
  60127. tailBottom: {
  60128. height: math.unit(8.4, "feet"),
  60129. name: "Tail (Bottom)",
  60130. image: {
  60131. source: "./media/characters/reiku/tail-bottom.svg"
  60132. }
  60133. },
  60134. foot: {
  60135. height: math.unit(2.6, "feet"),
  60136. name: "Foot",
  60137. image: {
  60138. source: "./media/characters/reiku/foot.svg"
  60139. }
  60140. },
  60141. footCurled: {
  60142. height: math.unit(2.3, "feet"),
  60143. name: "Foot (Curled)",
  60144. image: {
  60145. source: "./media/characters/reiku/foot-curled.svg"
  60146. }
  60147. },
  60148. footSide: {
  60149. height: math.unit(1.26, "feet"),
  60150. name: "Foot (Side)",
  60151. image: {
  60152. source: "./media/characters/reiku/foot-side.svg"
  60153. }
  60154. },
  60155. },
  60156. [
  60157. {
  60158. name: "Normal",
  60159. height: math.unit(6 + 2/12, "feet"),
  60160. default: true
  60161. },
  60162. ]
  60163. ))
  60164. characterMakers.push(() => makeCharacter(
  60165. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60166. {
  60167. front: {
  60168. height: math.unit(7, "feet"),
  60169. weight: math.unit(500, "kg"),
  60170. name: "Front",
  60171. image: {
  60172. source: "./media/characters/cialda/front.svg",
  60173. extra: 912/745,
  60174. bottom: 55/967
  60175. }
  60176. },
  60177. },
  60178. [
  60179. {
  60180. name: "Normal",
  60181. height: math.unit(7, "feet"),
  60182. default: true
  60183. },
  60184. ]
  60185. ))
  60186. characterMakers.push(() => makeCharacter(
  60187. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60188. {
  60189. side: {
  60190. height: math.unit(6, "feet"),
  60191. weight: math.unit(600, "lb"),
  60192. preyCapacity: math.unit(25, "liters"),
  60193. name: "Side",
  60194. image: {
  60195. source: "./media/characters/darkkin/side.svg",
  60196. extra: 1597/1447,
  60197. bottom: 101/1698
  60198. }
  60199. },
  60200. },
  60201. [
  60202. {
  60203. name: "Canon Height",
  60204. height: math.unit(568, "feet"),
  60205. default: true
  60206. },
  60207. ]
  60208. ))
  60209. characterMakers.push(() => makeCharacter(
  60210. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60211. {
  60212. front: {
  60213. height: math.unit(6, "feet"),
  60214. weight: math.unit(1500, "lb"),
  60215. preyCapacity: math.unit(3, "people"),
  60216. name: "Front",
  60217. image: {
  60218. source: "./media/characters/livnia/front.svg",
  60219. extra: 934/932,
  60220. bottom: 83/1017
  60221. }
  60222. },
  60223. back: {
  60224. height: math.unit(6, "feet"),
  60225. weight: math.unit(1500, "lb"),
  60226. preyCapacity: math.unit(3, "people"),
  60227. name: "Back",
  60228. image: {
  60229. source: "./media/characters/livnia/back.svg",
  60230. extra: 916/915,
  60231. bottom: 58/974
  60232. }
  60233. },
  60234. head: {
  60235. height: math.unit(1.53, "feet"),
  60236. name: "Head",
  60237. image: {
  60238. source: "./media/characters/livnia/head.svg"
  60239. }
  60240. },
  60241. maw: {
  60242. height: math.unit(0.78, "feet"),
  60243. name: "Maw",
  60244. image: {
  60245. source: "./media/characters/livnia/maw.svg"
  60246. }
  60247. },
  60248. genitals: {
  60249. height: math.unit(0.35, "feet"),
  60250. name: "Genitals",
  60251. image: {
  60252. source: "./media/characters/livnia/genitals.svg"
  60253. }
  60254. },
  60255. },
  60256. [
  60257. {
  60258. name: "Normal",
  60259. height: math.unit(1000, "feet"),
  60260. default: true
  60261. },
  60262. ]
  60263. ))
  60264. characterMakers.push(() => makeCharacter(
  60265. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60266. {
  60267. front: {
  60268. height: math.unit(4, "feet"),
  60269. weight: math.unit(73, "lb"),
  60270. name: "Front",
  60271. image: {
  60272. source: "./media/characters/hayaku/front.svg",
  60273. extra: 1011/888,
  60274. bottom: 33/1044
  60275. }
  60276. },
  60277. back: {
  60278. height: math.unit(4, "feet"),
  60279. weight: math.unit(73, "lb"),
  60280. name: "Back",
  60281. image: {
  60282. source: "./media/characters/hayaku/back.svg",
  60283. extra: 1040/930,
  60284. bottom: 20/1060
  60285. }
  60286. },
  60287. },
  60288. [
  60289. {
  60290. name: "Normal",
  60291. height: math.unit(4, "feet"),
  60292. default: true
  60293. },
  60294. ]
  60295. ))
  60296. characterMakers.push(() => makeCharacter(
  60297. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60298. {
  60299. front: {
  60300. height: math.unit(6 + 7/12, "feet"),
  60301. weight: math.unit(300, "lb"),
  60302. name: "Front",
  60303. image: {
  60304. source: "./media/characters/athena-bryzant/front.svg",
  60305. extra: 870/835,
  60306. bottom: 33/903
  60307. }
  60308. },
  60309. back: {
  60310. height: math.unit(6 + 7/12, "feet"),
  60311. weight: math.unit(300, "lb"),
  60312. name: "Back",
  60313. image: {
  60314. source: "./media/characters/athena-bryzant/back.svg",
  60315. extra: 858/823,
  60316. bottom: 30/888
  60317. }
  60318. },
  60319. head: {
  60320. height: math.unit(2.38, "feet"),
  60321. name: "Head",
  60322. image: {
  60323. source: "./media/characters/athena-bryzant/head.svg"
  60324. }
  60325. },
  60326. wings: {
  60327. height: math.unit(2.85, "feet"),
  60328. name: "Wings",
  60329. image: {
  60330. source: "./media/characters/athena-bryzant/wings.svg"
  60331. }
  60332. },
  60333. },
  60334. [
  60335. {
  60336. name: "Normal",
  60337. height: math.unit(6 + 7/12, "feet"),
  60338. default: true
  60339. },
  60340. {
  60341. name: "Big",
  60342. height: math.unit(8, "feet")
  60343. },
  60344. {
  60345. name: "Very Big",
  60346. height: math.unit(11, "feet")
  60347. },
  60348. ]
  60349. ))
  60350. characterMakers.push(() => makeCharacter(
  60351. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60352. {
  60353. side: {
  60354. height: math.unit(3, "meters"),
  60355. weight: math.unit(7500, "kg"),
  60356. preyCapacity: math.unit(1e12, "people"),
  60357. name: "Side",
  60358. image: {
  60359. source: "./media/characters/zel-kesh/side.svg",
  60360. extra: 910/407,
  60361. bottom: 147/1057
  60362. }
  60363. },
  60364. },
  60365. [
  60366. {
  60367. name: "Normal",
  60368. height: math.unit(3, "meters"),
  60369. default: true
  60370. },
  60371. ]
  60372. ))
  60373. characterMakers.push(() => makeCharacter(
  60374. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60375. {
  60376. front: {
  60377. height: math.unit(2, "meters"),
  60378. weight: math.unit(95, "kg"),
  60379. name: "Front",
  60380. image: {
  60381. source: "./media/characters/kane-fox/front.svg",
  60382. extra: 945/888,
  60383. bottom: 27/972
  60384. }
  60385. },
  60386. back: {
  60387. height: math.unit(2, "meters"),
  60388. weight: math.unit(95, "kg"),
  60389. name: "Back",
  60390. image: {
  60391. source: "./media/characters/kane-fox/back.svg",
  60392. extra: 959/914,
  60393. bottom: 15/974
  60394. }
  60395. },
  60396. frontLewd: {
  60397. height: math.unit(2, "meters"),
  60398. weight: math.unit(95, "kg"),
  60399. name: "Front (Lewd)",
  60400. image: {
  60401. source: "./media/characters/kane-fox/front-lewd.svg",
  60402. extra: 945/888,
  60403. bottom: 27/972
  60404. }
  60405. },
  60406. },
  60407. [
  60408. {
  60409. name: "Home Size",
  60410. height: math.unit(2, "meters"),
  60411. default: true
  60412. },
  60413. {
  60414. name: "Macro",
  60415. height: math.unit(200, "meters")
  60416. },
  60417. {
  60418. name: "Small Mega",
  60419. height: math.unit(3, "km")
  60420. },
  60421. {
  60422. name: "Mega",
  60423. height: math.unit(50, "km")
  60424. },
  60425. {
  60426. name: "Giga",
  60427. height: math.unit(200, "km")
  60428. },
  60429. {
  60430. name: "Giga+",
  60431. height: math.unit(2500, "km")
  60432. },
  60433. {
  60434. name: "Terra",
  60435. height: math.unit(70000, "km")
  60436. },
  60437. {
  60438. name: "Terra+",
  60439. height: math.unit(150000, "km")
  60440. },
  60441. {
  60442. name: "Terra++",
  60443. height: math.unit(400000, "km")
  60444. },
  60445. ]
  60446. ))
  60447. characterMakers.push(() => makeCharacter(
  60448. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60449. {
  60450. otter_front: {
  60451. height: math.unit(1.8, "meters"),
  60452. weight: math.unit(90, "kg"),
  60453. name: "Front",
  60454. image: {
  60455. source: "./media/characters/ayranus/otter-front.svg",
  60456. extra: 468/452,
  60457. bottom: 43/511
  60458. },
  60459. form: "otter",
  60460. },
  60461. otter_frontLewd: {
  60462. height: math.unit(1.8, "meters"),
  60463. weight: math.unit(90, "kg"),
  60464. name: "Front (Lewd)",
  60465. image: {
  60466. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60467. extra: 468/452,
  60468. bottom: 43/511
  60469. },
  60470. form: "otter",
  60471. },
  60472. lionbat_front: {
  60473. height: math.unit(1.8, "meters"),
  60474. weight: math.unit(90, "kg"),
  60475. name: "Front (Lewd)",
  60476. image: {
  60477. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60478. extra: 797/740,
  60479. bottom: 78/875
  60480. },
  60481. form: "lionbat",
  60482. },
  60483. paw: {
  60484. height: math.unit(1.5, "feet"),
  60485. name: "Paw",
  60486. image: {
  60487. source: "./media/characters/ayranus/paw.svg"
  60488. },
  60489. },
  60490. },
  60491. [
  60492. {
  60493. name: "Incognito",
  60494. height: math.unit(1.8, "meters"),
  60495. allForms: true
  60496. },
  60497. {
  60498. name: "Macro",
  60499. height: math.unit(60, "meters"),
  60500. allForms: true
  60501. },
  60502. {
  60503. name: "Macro+",
  60504. height: math.unit(200, "meters"),
  60505. allForms: true
  60506. },
  60507. {
  60508. name: "Mega",
  60509. height: math.unit(35, "km"),
  60510. allForms: true
  60511. },
  60512. {
  60513. name: "Giga",
  60514. height: math.unit(220, "km"),
  60515. allForms: true
  60516. },
  60517. {
  60518. name: "Giga+",
  60519. height: math.unit(1500, "km"),
  60520. allForms: true
  60521. },
  60522. {
  60523. name: "Terra",
  60524. height: math.unit(13000, "km"),
  60525. allForms: true
  60526. },
  60527. {
  60528. name: "Terra+",
  60529. height: math.unit(500000, "km"),
  60530. allForms: true
  60531. },
  60532. {
  60533. name: "Galactic",
  60534. height: math.unit(486080, "parsecs"),
  60535. default: true,
  60536. allForms: true
  60537. },
  60538. ],
  60539. {
  60540. "otter": {
  60541. name: "Otter",
  60542. default: true
  60543. },
  60544. "lionbat": {
  60545. name: "Lionbat",
  60546. },
  60547. }
  60548. ))
  60549. characterMakers.push(() => makeCharacter(
  60550. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60551. {
  60552. front: {
  60553. height: math.unit(7 + 4/12, "feet"),
  60554. weight: math.unit(400, "lb"),
  60555. name: "Front",
  60556. image: {
  60557. source: "./media/characters/proxy/front.svg",
  60558. extra: 1605/1542,
  60559. bottom: 55/1660
  60560. }
  60561. },
  60562. side: {
  60563. height: math.unit(7 + 4/12, "feet"),
  60564. weight: math.unit(400, "lb"),
  60565. name: "Side",
  60566. image: {
  60567. source: "./media/characters/proxy/side.svg",
  60568. extra: 794/759,
  60569. bottom: 6/800
  60570. }
  60571. },
  60572. hand: {
  60573. height: math.unit(1.54, "feet"),
  60574. name: "Hand",
  60575. image: {
  60576. source: "./media/characters/proxy/hand.svg"
  60577. }
  60578. },
  60579. paw: {
  60580. height: math.unit(1.53, "feet"),
  60581. name: "Paw",
  60582. image: {
  60583. source: "./media/characters/proxy/paw.svg"
  60584. }
  60585. },
  60586. maw: {
  60587. height: math.unit(1.9, "feet"),
  60588. name: "Maw",
  60589. image: {
  60590. source: "./media/characters/proxy/maw.svg"
  60591. }
  60592. },
  60593. },
  60594. [
  60595. {
  60596. name: "Normal",
  60597. height: math.unit(7 + 4/12, "feet"),
  60598. default: true
  60599. },
  60600. ]
  60601. ))
  60602. characterMakers.push(() => makeCharacter(
  60603. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60604. {
  60605. front: {
  60606. height: math.unit(4, "meters"),
  60607. name: "Front",
  60608. image: {
  60609. source: "./media/characters/crocozilla/front.svg",
  60610. extra: 1790/1742,
  60611. bottom: 78/1868
  60612. }
  60613. },
  60614. },
  60615. [
  60616. {
  60617. name: "Normal",
  60618. height: math.unit(4, "meters"),
  60619. default: true
  60620. },
  60621. ]
  60622. ))
  60623. characterMakers.push(() => makeCharacter(
  60624. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60625. {
  60626. front: {
  60627. height: math.unit(1.8, "meters"),
  60628. weight: math.unit(120, "kg"),
  60629. name: "Front",
  60630. image: {
  60631. source: "./media/characters/kurz/front.svg",
  60632. extra: 1960/1824,
  60633. bottom: 41/2001
  60634. }
  60635. },
  60636. back: {
  60637. height: math.unit(1.8, "meters"),
  60638. weight: math.unit(120, "kg"),
  60639. name: "Back",
  60640. image: {
  60641. source: "./media/characters/kurz/back.svg",
  60642. extra: 1906/1787,
  60643. bottom: 60/1966
  60644. }
  60645. },
  60646. frontLewd: {
  60647. height: math.unit(1.8, "meters"),
  60648. weight: math.unit(120, "kg"),
  60649. name: "Front (Lewd)",
  60650. image: {
  60651. source: "./media/characters/kurz/front-lewd.svg",
  60652. extra: 1960/1824,
  60653. bottom: 41/2001
  60654. }
  60655. },
  60656. maw: {
  60657. height: math.unit(0.69, "meters"),
  60658. name: "Maw",
  60659. image: {
  60660. source: "./media/characters/kurz/maw.svg"
  60661. }
  60662. },
  60663. },
  60664. [
  60665. {
  60666. name: "Original Size",
  60667. height: math.unit(1.8, "meters")
  60668. },
  60669. {
  60670. name: "Incognito Size",
  60671. height: math.unit(2.4, "meters"),
  60672. default: true
  60673. },
  60674. {
  60675. name: "Macro",
  60676. height: math.unit(30, "meters")
  60677. },
  60678. {
  60679. name: "Macro+",
  60680. height: math.unit(250, "meters")
  60681. },
  60682. {
  60683. name: "Mega",
  60684. height: math.unit(2, "km")
  60685. },
  60686. {
  60687. name: "Mega+",
  60688. height: math.unit(35, "km")
  60689. },
  60690. {
  60691. name: "Mega++",
  60692. height: math.unit(75, "km")
  60693. },
  60694. {
  60695. name: "Giga",
  60696. height: math.unit(250, "km")
  60697. },
  60698. {
  60699. name: "Terra",
  60700. height: math.unit(15000, "km")
  60701. },
  60702. {
  60703. name: "Terra+",
  60704. height: math.unit(2250000, "km")
  60705. },
  60706. ]
  60707. ))
  60708. characterMakers.push(() => makeCharacter(
  60709. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60710. {
  60711. front: {
  60712. height: math.unit(16 + 3/12, "feet"),
  60713. weight: math.unit(3575, "lb"),
  60714. name: "Front",
  60715. image: {
  60716. source: "./media/characters/nikita/front.svg",
  60717. extra: 1064/955,
  60718. bottom: 47/1111
  60719. }
  60720. },
  60721. },
  60722. [
  60723. {
  60724. name: "Normal",
  60725. height: math.unit(16 + 3/12, "feet"),
  60726. default: true
  60727. },
  60728. {
  60729. name: "Big",
  60730. height: math.unit(21, "feet")
  60731. },
  60732. {
  60733. name: "Biggest",
  60734. height: math.unit(50, "feet")
  60735. },
  60736. ]
  60737. ))
  60738. characterMakers.push(() => makeCharacter(
  60739. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60740. {
  60741. front: {
  60742. height: math.unit(1.92, "m"),
  60743. weight: math.unit(76, "kg"),
  60744. name: "Front",
  60745. image: {
  60746. source: "./media/characters/kyara/front.svg",
  60747. extra: 1550/1438,
  60748. bottom: 139/1689
  60749. }
  60750. },
  60751. back: {
  60752. height: math.unit(1.92, "m"),
  60753. weight: math.unit(76, "kg"),
  60754. name: "Back",
  60755. image: {
  60756. source: "./media/characters/kyara/back.svg",
  60757. extra: 1523/1427,
  60758. bottom: 83/1606
  60759. }
  60760. },
  60761. head: {
  60762. height: math.unit(1.22, "feet"),
  60763. name: "Head",
  60764. image: {
  60765. source: "./media/characters/kyara/head.svg"
  60766. }
  60767. },
  60768. maw: {
  60769. height: math.unit(0.73, "feet"),
  60770. name: "Maw",
  60771. image: {
  60772. source: "./media/characters/kyara/maw.svg"
  60773. }
  60774. },
  60775. paws: {
  60776. height: math.unit(0.95, "feet"),
  60777. name: "Paws",
  60778. image: {
  60779. source: "./media/characters/kyara/paws.svg"
  60780. }
  60781. },
  60782. },
  60783. [
  60784. {
  60785. name: "Normal",
  60786. height: math.unit(1.92, "meters"),
  60787. default: true
  60788. },
  60789. {
  60790. name: "Mini Macro",
  60791. height: math.unit(192, "meters")
  60792. },
  60793. {
  60794. name: "Macro",
  60795. height: math.unit(480, "meters")
  60796. },
  60797. {
  60798. name: "Mega Macro",
  60799. height: math.unit(1440, "meters")
  60800. },
  60801. ]
  60802. ))
  60803. characterMakers.push(() => makeCharacter(
  60804. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  60805. {
  60806. front: {
  60807. height: math.unit(6, "feet"),
  60808. weight: math.unit(160, "lbs"),
  60809. preyCapacity: math.unit(0.05, "people"),
  60810. name: "Front",
  60811. image: {
  60812. source: "./media/characters/layla-amari/front.svg",
  60813. extra: 1922/1723,
  60814. bottom: 90/2012
  60815. }
  60816. },
  60817. back: {
  60818. height: math.unit(6, "feet"),
  60819. weight: math.unit(160, "lbs"),
  60820. preyCapacity: math.unit(0.05, "people"),
  60821. name: "Back",
  60822. image: {
  60823. source: "./media/characters/layla-amari/back.svg",
  60824. extra: 1917/1718,
  60825. bottom: 50/1967
  60826. }
  60827. },
  60828. frontDressed: {
  60829. height: math.unit(6, "feet"),
  60830. weight: math.unit(160, "lbs"),
  60831. preyCapacity: math.unit(0.05, "people"),
  60832. name: "Front (Dressed)",
  60833. image: {
  60834. source: "./media/characters/layla-amari/front-dressed.svg",
  60835. extra: 1922/1723,
  60836. bottom: 90/2012
  60837. }
  60838. },
  60839. face: {
  60840. height: math.unit(0.93, "feet"),
  60841. name: "Face",
  60842. image: {
  60843. source: "./media/characters/layla-amari/face.svg"
  60844. }
  60845. },
  60846. hand: {
  60847. height: math.unit(0.66 , "feet"),
  60848. name: "Hand",
  60849. image: {
  60850. source: "./media/characters/layla-amari/hand.svg"
  60851. }
  60852. },
  60853. foot: {
  60854. height: math.unit(1, "feet"),
  60855. name: "Foot",
  60856. image: {
  60857. source: "./media/characters/layla-amari/foot.svg"
  60858. }
  60859. },
  60860. necklace: {
  60861. height: math.unit(0.32, "feet"),
  60862. name: "Necklace",
  60863. image: {
  60864. source: "./media/characters/layla-amari/necklace.svg"
  60865. }
  60866. },
  60867. nipple: {
  60868. height: math.unit(0.2, "feet"),
  60869. name: "Nipple",
  60870. image: {
  60871. source: "./media/characters/layla-amari/nipple.svg"
  60872. }
  60873. },
  60874. slit: {
  60875. height: math.unit(0.26, "feet"),
  60876. name: "Slit",
  60877. image: {
  60878. source: "./media/characters/layla-amari/slit.svg"
  60879. }
  60880. },
  60881. },
  60882. [
  60883. {
  60884. name: "Natural",
  60885. height: math.unit(825, "feet"),
  60886. default: true
  60887. },
  60888. {
  60889. name: "Enhanced",
  60890. height: math.unit(8250, "feet")
  60891. },
  60892. {
  60893. name: "Apparent Size",
  60894. height: math.unit(9.04363e+8, "meters")
  60895. },
  60896. ]
  60897. ))
  60898. characterMakers.push(() => makeCharacter(
  60899. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  60900. {
  60901. front: {
  60902. height: math.unit(1.3, "meters"),
  60903. name: "Front",
  60904. image: {
  60905. source: "./media/characters/percy/front.svg",
  60906. extra: 1444/1289,
  60907. bottom: 54/1498
  60908. }
  60909. },
  60910. },
  60911. [
  60912. {
  60913. name: "Normal",
  60914. height: math.unit(1.3, "meters"),
  60915. default: true
  60916. },
  60917. ]
  60918. ))
  60919. characterMakers.push(() => makeCharacter(
  60920. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  60921. {
  60922. side: {
  60923. height: math.unit(10, "meters"),
  60924. name: "Side",
  60925. image: {
  60926. source: "./media/characters/grev/side.svg",
  60927. extra: 653/266,
  60928. bottom: 77/730
  60929. }
  60930. },
  60931. head: {
  60932. height: math.unit(16.2, "m"),
  60933. name: "Head",
  60934. image: {
  60935. source: "./media/characters/grev/head.svg"
  60936. }
  60937. },
  60938. dick: {
  60939. height: math.unit(2.8135932034, "m"),
  60940. name: "Dick",
  60941. image: {
  60942. source: "./media/characters/grev/dick.svg"
  60943. }
  60944. },
  60945. },
  60946. [
  60947. {
  60948. name: "Friend-Sized",
  60949. height: math.unit(80, "cm")
  60950. },
  60951. {
  60952. name: "Normal",
  60953. height: math.unit(10, "meters"),
  60954. default: true
  60955. },
  60956. {
  60957. name: "Macro",
  60958. height: math.unit(200, "meters")
  60959. },
  60960. ]
  60961. ))
  60962. characterMakers.push(() => makeCharacter(
  60963. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  60964. {
  60965. front: {
  60966. height: math.unit(19.75, "feet"),
  60967. weight: math.unit(20000, "lb"),
  60968. name: "Front",
  60969. image: {
  60970. source: "./media/characters/azuuca/front.svg",
  60971. extra: 1593/1511,
  60972. bottom: 55/1648
  60973. }
  60974. },
  60975. },
  60976. [
  60977. {
  60978. name: "Normal",
  60979. height: math.unit(19.75, "feet"),
  60980. default: true
  60981. },
  60982. ]
  60983. ))
  60984. characterMakers.push(() => makeCharacter(
  60985. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  60986. {
  60987. front: {
  60988. height: math.unit(15, "feet"),
  60989. weight: math.unit(1500, "lb"),
  60990. name: "Front",
  60991. image: {
  60992. source: "./media/characters/valuria/front.svg",
  60993. extra: 1588/1486,
  60994. bottom: 31/1619
  60995. }
  60996. },
  60997. },
  60998. [
  60999. {
  61000. name: "Normal",
  61001. height: math.unit(15, "feet"),
  61002. default: true
  61003. },
  61004. {
  61005. name: "Small",
  61006. height: math.unit(500, "feet")
  61007. },
  61008. {
  61009. name: "Macro",
  61010. height: math.unit(4000, "feet")
  61011. },
  61012. {
  61013. name: "Mega Macro",
  61014. height: math.unit(2000, "miles")
  61015. },
  61016. {
  61017. name: "Giga Macro",
  61018. height: math.unit(3e6, "miles")
  61019. },
  61020. ]
  61021. ))
  61022. characterMakers.push(() => makeCharacter(
  61023. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61024. {
  61025. front: {
  61026. height: math.unit(3500, "solarradii"),
  61027. name: "Front",
  61028. image: {
  61029. source: "./media/characters/terigaia/front.svg",
  61030. extra: 1531/1451,
  61031. bottom: 98/1629
  61032. }
  61033. },
  61034. },
  61035. [
  61036. {
  61037. name: "Normal",
  61038. height: math.unit(3500, "solarradii"),
  61039. default: true
  61040. },
  61041. ]
  61042. ))
  61043. characterMakers.push(() => makeCharacter(
  61044. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61045. {
  61046. front: {
  61047. height: math.unit(9.34, "feet"),
  61048. weight: math.unit(600, "lb"),
  61049. name: "Front",
  61050. image: {
  61051. source: "./media/characters/blair-blaziken/front.svg",
  61052. extra: 1557/1462,
  61053. bottom: 55/1612
  61054. }
  61055. },
  61056. },
  61057. [
  61058. {
  61059. name: "Normal",
  61060. height: math.unit(9.34, "feet"),
  61061. default: true
  61062. },
  61063. ]
  61064. ))
  61065. //characters
  61066. function makeCharacters() {
  61067. const results = [];
  61068. characterMakers.forEach(character => {
  61069. results.push(character());
  61070. });
  61071. return results;
  61072. }